Compare commits
90 Commits
v3.8.19
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b12ccafc81 | ||
|
|
01fe047f2b | ||
|
|
a4dc0fb0e6 | ||
|
|
0905ad98c1 | ||
|
|
6a309a9624 | ||
|
|
7969e51231 | ||
|
|
3c879b2523 | ||
|
|
783d016bd1 | ||
|
|
1436122b01 | ||
|
|
922e4f993b | ||
|
|
16d79ec11a | ||
|
|
f08158342a | ||
|
|
be7437d117 | ||
|
|
1a76eb8a83 | ||
|
|
24851106bd | ||
|
|
46e3692a03 | ||
|
|
196fbab5b1 | ||
|
|
f9e6e75c0c | ||
|
|
61363a1985 | ||
|
|
2c639c8f4e | ||
|
|
3cdf77ce54 | ||
|
|
1719e5dd21 | ||
|
|
2436aa527c | ||
|
|
855b2b5c36 | ||
|
|
b78b86cea3 | ||
|
|
047eec686d | ||
|
|
ff28962660 | ||
|
|
6751ebd110 | ||
|
|
03fbe79152 | ||
|
|
9abba8fd01 | ||
|
|
787e4cef0b | ||
|
|
56de3e28f5 | ||
|
|
4c1aeaab3d | ||
|
|
f9366f6da6 | ||
|
|
a9f3624a9b | ||
|
|
3305692808 | ||
|
|
4c50336793 | ||
|
|
ed89ea4a78 | ||
|
|
58bde8c26a | ||
|
|
39d4e94fbb | ||
|
|
a87e394b6d | ||
|
|
b48d11374f | ||
|
|
a8f913c020 | ||
|
|
3f4877a3a0 | ||
|
|
5feb6ffe34 | ||
|
|
90b61d035e | ||
|
|
05c21fb0a8 | ||
|
|
28cdf8e649 | ||
|
|
d1f2781929 | ||
|
|
6b57da0d8a | ||
|
|
b38f94ef39 | ||
|
|
06e3c76ac6 | ||
|
|
885bf041c4 | ||
|
|
ffe8574c51 | ||
|
|
910d34c721 | ||
|
|
5fec3a97c5 | ||
|
|
37f7dddac7 | ||
|
|
05d912e658 | ||
|
|
4bd87b2953 | ||
|
|
a4c843e51e | ||
|
|
7f9295ad54 | ||
|
|
0ab3d16be9 | ||
|
|
93f2e18811 | ||
|
|
ccd7324590 | ||
|
|
7323e8aa08 | ||
|
|
035830d7bc | ||
|
|
eaaefe2cf5 | ||
|
|
9499caf7b8 | ||
|
|
a677cf87cd | ||
|
|
2fc872ae6f | ||
|
|
27d4d14303 | ||
|
|
434f8819a2 | ||
|
|
97ad2dc158 | ||
|
|
8c1b8b5fda | ||
|
|
e179b7ae66 | ||
|
|
3af18b4fcb | ||
|
|
f4ddff64e9 | ||
|
|
0f587c4292 | ||
|
|
cc7f284d93 | ||
|
|
ebe6c50e15 | ||
|
|
19a4671e59 | ||
|
|
e505afe9df | ||
|
|
2632c6ed86 | ||
|
|
2f5ad3a338 | ||
|
|
7ea45a5f9b | ||
|
|
9d06ffe83a | ||
|
|
11394eaa9f | ||
|
|
8353161451 | ||
|
|
cbc52b977f | ||
|
|
e0b47d7501 |
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@@ -9,14 +9,14 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.5, 2.6, 2.7, 3.0]
|
||||
ruby: [2.7, '3.0', 3.1, 3.2]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2.3.4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
|
||||
|
||||
17
.github/workflows/docker.yml
vendored
17
.github/workflows/docker.yml
vendored
@@ -7,7 +7,7 @@ on:
|
||||
release:
|
||||
types: [published]
|
||||
schedule:
|
||||
- cron: '0 7 * * *'
|
||||
- cron: "0 7 * * *"
|
||||
|
||||
jobs:
|
||||
images:
|
||||
@@ -15,7 +15,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: checkout sources
|
||||
uses: actions/checkout@v2.3.4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set tag to latest
|
||||
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
|
||||
@@ -33,17 +33,24 @@ jobs:
|
||||
echo DOCKER_TAG is not set!
|
||||
exit 1
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
||||
- 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.10.0
|
||||
uses: docker/login-action@v2.1.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@v3
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
||||
push: true
|
||||
tags: wpscanteam/wpscan:${{ env.DOCKER_TAG }}
|
||||
|
||||
4
.github/workflows/gempush.yml
vendored
4
.github/workflows/gempush.yml
vendored
@@ -10,9 +10,9 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
|
||||
|
||||
@@ -90,15 +90,12 @@ The DB is located at ~/.wpscan/db
|
||||
|
||||
The WPScan CLI tool uses the [WordPress Vulnerability Database API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan.com](https://wpscan.com/register).
|
||||
|
||||
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 **75** API requests per day are given free of charge, that should be suitable to scan most WordPress websites at least once per day. When the daily 75 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data.
|
||||
|
||||
### 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 +134,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'])
|
||||
|
||||
@@ -59,13 +59,13 @@ module WPScan
|
||||
#
|
||||
# @return [ String, nil ] The best version number detected from the changelog section
|
||||
def from_changelog_section(body)
|
||||
extracted_versions = body.scan(%r{=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[ \ta-z0-9().\-/]*=+}i)
|
||||
extracted_versions = body.scan(/^=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[^=]*=+$/i)
|
||||
|
||||
return if extracted_versions.nil? || extracted_versions.empty?
|
||||
|
||||
extracted_versions.flatten!
|
||||
# must contain at least one number
|
||||
extracted_versions = extracted_versions.select { |x| x =~ /[0-9]+/ }
|
||||
extracted_versions = extracted_versions.grep(/[0-9]+/)
|
||||
|
||||
sorted = extracted_versions.sort do |x, y|
|
||||
Gem::Version.new(x) <=> Gem::Version.new(y)
|
||||
|
||||
@@ -24,6 +24,10 @@ module WPScan
|
||||
|
||||
FileUtils.mkdir_p(repo_directory.to_s) unless Dir.exist?(repo_directory.to_s)
|
||||
|
||||
# When --no-update is passed, return to avoid raising an error if the directory is not writable
|
||||
# Mainly there for Homebrew: https://github.com/wpscanteam/wpscan/pull/1455
|
||||
return if ParsedCli.update == false
|
||||
|
||||
unless repo_directory.writable?
|
||||
raise "#{repo_directory} is not writable (uid: #{Process.uid}, gid: #{Process.gid})"
|
||||
end
|
||||
@@ -131,7 +135,7 @@ module WPScan
|
||||
res = Typhoeus.get(file_url, request_params)
|
||||
raise Error::Download, res if res.timed_out? || res.code != 200
|
||||
|
||||
File.open(file_path, 'wb') { |f| f.write(res.body) }
|
||||
File.binwrite(file_path, res.body)
|
||||
|
||||
local_file_checksum(filename)
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.19'
|
||||
VERSION = '3.8.22'
|
||||
end
|
||||
|
||||
@@ -108,7 +108,8 @@ describe WPScan::Finders::PluginVersion::Readme do
|
||||
'advanced-most-recent-posts-mod' => '1.6.5.2',
|
||||
'a-lead-capture-contact-form-and-tab-button-by-awebvoicecom' => '3.1',
|
||||
'backup-scheduler' => '1.5.9',
|
||||
'release_date_slash' => '1.0.4'
|
||||
'release_date_slash' => '1.0.4',
|
||||
'cool_tag_cloud' => '2.27'
|
||||
}.each do |file, version_number|
|
||||
context "whith #{file}.txt" do
|
||||
it 'returns the expected version' do
|
||||
|
||||
20936
spec/fixtures/db/dynamic_finders.yml
vendored
20936
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
9214
spec/fixtures/dynamic_finders/expected.yml
vendored
9214
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
156
spec/fixtures/dynamic_finders/plugin_version/4partners/translation_file/languages/4partners-ru_RU.po
vendored
Normal file
156
spec/fixtures/dynamic_finders/plugin_version/4partners/translation_file/languages/4partners-ru_RU.po
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
# Copyright (C) 2022 4partners
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 4partners 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/4partners\n"
|
||||
"POT-Creation-Date: 2022-10-13T14:15:50+00:00\n"
|
||||
"PO-Revision-Date: 2022-10-13 17:18+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.0\n"
|
||||
"X-Domain: 4partners\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "4partners"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Description of the plugin
|
||||
msgid "-"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "4partners.io"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Plugin.php:145
|
||||
msgid ""
|
||||
"4partners plugin error: please install and activate WooCommerce wordpress "
|
||||
"plugin"
|
||||
msgstr ""
|
||||
"Ошибка плагина 4partners: пожалуйста, установите и активируйте WooCommerce "
|
||||
"плагин"
|
||||
|
||||
#: classes/Plugin.php:152
|
||||
msgid ""
|
||||
"4partners plugin error: please install and activate Cyr-To-Lat wordpress "
|
||||
"plugin"
|
||||
msgstr ""
|
||||
"Ошибка плагина 4partners: пожалуйста, установите и активируйте Cyr-To-Lat "
|
||||
"wordpress плагин"
|
||||
|
||||
#: classes/Services/CategoryService.php:164
|
||||
msgid "4partners price adjustment"
|
||||
msgstr "4partners увеличение цены"
|
||||
|
||||
#: classes/Services/CategoryService.php:176
|
||||
msgid "No less than"
|
||||
msgstr "Не менее чем"
|
||||
|
||||
#: classes/Services/ProductService.php:52
|
||||
msgid "Fix product field values"
|
||||
msgstr "Фиксировать значение полей товара"
|
||||
|
||||
#: classes/Services/ProductService.php:59
|
||||
msgid "Title"
|
||||
msgstr "Название"
|
||||
|
||||
#: classes/Services/ProductService.php:62
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: classes/Services/ProductService.php:65
|
||||
#: classes/Services/SettingsService.php:298
|
||||
msgid "Category"
|
||||
msgstr "Категория"
|
||||
|
||||
#: classes/Services/SettingsService.php:58
|
||||
#: classes/Services/SettingsService.php:133
|
||||
msgid "Synchronization"
|
||||
msgstr "Синхронизация"
|
||||
|
||||
#: classes/Services/SettingsService.php:59
|
||||
#: classes/Services/SettingsService.php:141
|
||||
#: classes/Services/SettingsService.php:385
|
||||
msgid "Categories"
|
||||
msgstr "Категории"
|
||||
|
||||
#: classes/Services/SettingsService.php:222
|
||||
msgid "Product catalog language"
|
||||
msgstr "Язык каталога товаров"
|
||||
|
||||
#: classes/Services/SettingsService.php:230
|
||||
msgid "Daily"
|
||||
msgstr "Ежедневно"
|
||||
|
||||
#: classes/Services/SettingsService.php:231
|
||||
msgid "Twice daily"
|
||||
msgstr "Дважды в день"
|
||||
|
||||
#: classes/Services/SettingsService.php:232
|
||||
msgid "Weekly"
|
||||
msgstr "Еженедельно"
|
||||
|
||||
#: classes/Services/SettingsService.php:240
|
||||
msgid "How often to sync products?"
|
||||
msgstr "Как часто синхронизировать товары?"
|
||||
|
||||
#: classes/Services/SettingsService.php:288
|
||||
msgid "Please check categories for import from API"
|
||||
msgstr "Пожалуйста, выберите категории для синхронизации с API"
|
||||
|
||||
#: classes/Services/SettingsService.php:295
|
||||
msgid "Check all"
|
||||
msgstr "Выбрать все"
|
||||
|
||||
#: classes/Services/SettingsService.php:299
|
||||
msgid "Amount"
|
||||
msgstr "Кол-во"
|
||||
|
||||
#: classes/Services/SettingsService.php:300
|
||||
msgid "Started at"
|
||||
msgstr "Начало"
|
||||
|
||||
#: classes/Services/SettingsService.php:301
|
||||
msgid "Ended at"
|
||||
msgstr "Окончание"
|
||||
|
||||
#: classes/Services/SettingsService.php:302
|
||||
msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#: classes/Services/SettingsService.php:303
|
||||
msgid "Items loaded"
|
||||
msgstr "Товаров загружено"
|
||||
|
||||
#: classes/Services/SettingsService.php:357
|
||||
msgid "Processing..."
|
||||
msgstr "В процессе..."
|
||||
|
||||
#: classes/Services/SettingsService.php:360
|
||||
msgid "Error"
|
||||
msgstr "Ошибка"
|
||||
|
||||
#: classes/Services/SettingsService.php:362
|
||||
msgid "Completed"
|
||||
msgstr "Завершен"
|
||||
|
||||
#: classes/Services/SettingsService.php:386
|
||||
msgid "Products"
|
||||
msgstr "Товары"
|
||||
|
||||
#: classes/Services/SettingsService.php:388
|
||||
msgid "Progress"
|
||||
msgstr "Прогресс"
|
||||
|
||||
#: classes/Services/SettingsService.php:440
|
||||
msgid "Checked categories"
|
||||
msgstr "Выбранные категории"
|
||||
@@ -0,0 +1,2 @@
|
||||
/**1.0.0 - 2022.04.01**/
|
||||
~ The first released.
|
||||
344
spec/fixtures/dynamic_finders/plugin_version/Ultimate_VC_Addons/change_log/changelog.txt
vendored
Normal file
344
spec/fixtures/dynamic_finders/plugin_version/Ultimate_VC_Addons/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,344 @@
|
||||
3.19.11 - 22 July 2021
|
||||
- Improvement: Compatibility with the WordPress 5.8
|
||||
- Fix: Advanced Carousel element not working properly.
|
||||
- Fix: The Price Box element is not showing horizontally.
|
||||
- Fix: Hotspot module styling options are not applying properly.
|
||||
- Fix: Functional code is showing when the interactive banner is used with the Advanced carousel.
|
||||
|
||||
3.19.10 - 04 June 2021
|
||||
- Improvement: Compatibility with the latest JavaScript and CSS standard rule.
|
||||
- Improvement: Added the prefix to all the PHP function and class name to avoid future conflicts.
|
||||
- Improvement: Added the prefix to the global variable, script and style handlers.
|
||||
- Fix: Fixed the PHP error foreach() argument must be of type array|object.
|
||||
- Fix: Fixed the PHP notice undefined index into the google font manager.
|
||||
|
||||
3.19.9 - 18 Feb 2021
|
||||
- Improvement : Updated the Smooth-scroll library.
|
||||
- Fix : Ultimate Icon conflict issue with Yoast SEO.
|
||||
- Fix : Console error unable to preventDefault inside passive event listener due to the target being treated as passive.
|
||||
- Fix : Console error cannot read property 'msie' of undefined.
|
||||
- Fix : Youtube video background is not working on MacOSX BigSur.
|
||||
- Fix : Console error cannot read property '1' of null.
|
||||
|
||||
3.19.8 - 12 Dec 2020
|
||||
- Improvement: Shortcode compatibility with PHP 8.0 – Deprecated: Function ultimate_wrap_shortcode_in_div().
|
||||
- Fix: Deprecated jquery issue into Interactive Mouse Parallax row background after WordPress - 5.6
|
||||
- Fix: Console warning jQuery.browser is deprecated after WordPress - 5.6
|
||||
- Fix: Console warning indexOf is not a function after WordPress - 5.6
|
||||
- Fix: Console warning jquery-fn-load is deprecated for below elements after WordPress - 5.6
|
||||
- Heading
|
||||
- Countdown
|
||||
- Creative-link
|
||||
- Dual-Button
|
||||
- Filp-Box
|
||||
- iHover
|
||||
- Info-banner
|
||||
- Info-Box
|
||||
- Info-circle
|
||||
- Modal popup
|
||||
- Team Module
|
||||
- Content Box
|
||||
- Image separator
|
||||
- Google Map
|
||||
- Advanced carousel
|
||||
|
||||
- Fix: Console warning pseudo-event is deprecated for below modules after WordPress - 5.6
|
||||
- Advanced Button
|
||||
- Flip-Box
|
||||
- Interactive Banner
|
||||
|
||||
3.19.7 - 09 Nov 2020
|
||||
- Improvement: Updated the jparallax.js library for the parallax effect.
|
||||
- Improvement: Updated the strings into the backend.
|
||||
- Fix - Console warning jquery-fn-load-is-deprecated.
|
||||
- Fix - Interactive Mouse Parallax row background not working.
|
||||
- Fix - Typography is not applied to prefix into the Fancy text element.
|
||||
|
||||
3.19.6 - 12 Aug 2020
|
||||
- Improvement: Compatibility to WordPress 5.5.
|
||||
- Fix: Google Fonts are not loading into the Google Font Manager tab for WordPress 5.5.
|
||||
- Fix: Upload the custom icon support is not working for WordPress 5.5.
|
||||
- Fix: Save button functionality is not working for the elements with the WordPress 5.5.
|
||||
- Fix: Switch buttons of the Element Tab and Debug Tab are not working with the WordPress 5.5.
|
||||
|
||||
3.19.5 - 16 June 2020
|
||||
- New: Users can now share non-personal usage data to help us test and develop better products. ( <a href="https://store.brainstormforce.com/usage-tracking/?utm_source=changelog&utm_medium=changelog&utm_campaign=usage_tracking" target="_blank" rel="noopener">Know More</a> )
|
||||
- Fix: Fixed the flip-box background overlapping issue into firefox.
|
||||
- Fix: Fixed the duplicate ID issue into the Counter element.
|
||||
- Fix: Fixed the PHP notice issue with the PHP 7.4
|
||||
- Fix: Breaking the UI for the video element while using the Vimeo link.
|
||||
- Fix: Fixed the PHP notice trying to access array offset on the value of type bool.
|
||||
|
||||
3.19.4 - 12 March 2020
|
||||
- Improvement: Updated Dual Color Heading element code for WPML compatibility.
|
||||
- Fix: PHP Notice of $icon_img variable is not defined.
|
||||
- Fix: Interactive Banner Captions come over the sticky header while scrolling.
|
||||
- Fix: PHP Notice of $img_width variable is not defined.
|
||||
- Fix: The hover text color of button2 stopped working for Dual button.
|
||||
- Fix: PHP Notice of $icon_size variable is not defined.
|
||||
- Fix: Rendering issue when background is not set for flip-box.
|
||||
- Fix: PHP Notice of $icon_border_radius variable is not defined.
|
||||
- Fix: Update the strings inside the modules.
|
||||
- Fix: PHP Notice of $icon_border_spacing variable is not defined.
|
||||
|
||||
3.19.3 - 20 Feb 2020
|
||||
- Improvement: Compatibility with latest WordPress PHP_CodeSniffer rules.
|
||||
|
||||
3.19.2 - 03 Feb 2020
|
||||
- Improvement: Hardened the security of the plugin.
|
||||
|
||||
3.19.1 - 22 Jan 2020
|
||||
- Security Fix: Cross-site scripting (XSS) vulnerability.
|
||||
|
||||
3.19.0 - 30 July 2019
|
||||
- New: Introducing Dual Color Heading Element.
|
||||
- Improvement: Added the Extra class option for the Hotspot item.
|
||||
- Improvement: Update WPML XML file for Compatibility.
|
||||
- Improvement: Update the string as an Element instead of Modules in backend settings.
|
||||
- Fix: PHP Notice of $ub variable is not initialized.
|
||||
- Fix: Hotspot glow animation color is not working.
|
||||
- Fix: PHP Warning in Team element appearing on the front end.
|
||||
- Removed purchase key License activation method as the API for this is now being deprecated by Envato.
|
||||
|
||||
3.18.0 - 18 Feb 2019
|
||||
- New: Introduce Ribbon element.
|
||||
- Improvement: Added the animation option for a marker in Google Map.
|
||||
- Fix: Advanced Carousel rendering issue when page refresh.
|
||||
- Fix: PHP Notice Undefined license-form-method variable.
|
||||
|
||||
3.17.1 - 6 Dec 2018
|
||||
- Improvement: Added Text transform option for Fancy text.
|
||||
- Improvement: Update WPML xml file for Compatibility.
|
||||
- Improvement: Added license key purchase form button in debug screen.
|
||||
- Fix: Spacing issue in Fancy text.
|
||||
- Fix: Advanced Carousel doesn't slide properly with one at a time option on Tablet and Mobile devices.
|
||||
|
||||
3.17.0 - 29 Oct 2018
|
||||
- New: Introduce Video element.
|
||||
- Improvement: Toolip will display in case of link in Just Icon.
|
||||
- Fix: Fancy Text not consistent in slide up option.
|
||||
- Removed purchase key License activation method as the API for this is now being deprecated by Envato.
|
||||
|
||||
3.16.26 - 27-Sept-2018
|
||||
- Improvement: Added Border radius option for Flip Box.
|
||||
- Fix: Advanced Tab collapsed when the value is not set for the Active tab.
|
||||
- Fix: Control option not working when Load script globally option is enabled in the hosted video.
|
||||
- Fix: Youtube video not working when the Viewport option is enabled.
|
||||
|
||||
3.16.25 - 22-Aug-2018
|
||||
- Improvement: Added Modal on menu option in Debug setting.
|
||||
- Improvement: Added Description color option for Flip Box.
|
||||
- Improvement: Updated YTplayer JS library for YouTube video.
|
||||
- Improvement: Updated fancy text element code for WPML compatibility.
|
||||
- Fix: Content visibility issue on mobile device in Advanced tab on accordion mode.
|
||||
- Fix: CSS duplication issue on resize in dual button element.
|
||||
- Fix: Timeline position issue in RTL condition.
|
||||
- Fix: Advanced carousel show slide issue in tab and mobile.
|
||||
|
||||
3.16.24 - 28-may-2018
|
||||
- Improvement: Updated registration form popup for updater with GDPR Compliance.
|
||||
- Improvement: Changed license to GPL v2.
|
||||
|
||||
3.16.23 - 15-may-2018
|
||||
- Improvement: Added post/page title select option for headings.
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for Timeline.
|
||||
- Improvement: Added custom JS option on click of the advanced button.
|
||||
- Fix: Advanced Tabs accordion issue on default active tab.
|
||||
- Fix: Set false to PauseOnFocus in advance carousel settings.
|
||||
- Fix: Flipbox visibility issue while using custom height option.
|
||||
|
||||
3.16.22 - 11-April-2018
|
||||
- Improvement: Updated page builder name as WPBakery Page Builder instead of visual composer.
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for package title and for subheading in Info table.
|
||||
- Improvement: New registration form popup for updater.
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for list item title in Info list.
|
||||
- Improvement: Added Focus on select option on advanced carousel.
|
||||
- Improvement: Improve UI.
|
||||
- Fix: Rel Attribute option space issue.
|
||||
- Fix: Icon not uploaded due to server issue.
|
||||
- Fix: Advanced tab js causing issue in IE.
|
||||
- Fix: Flipbox module animation issue in firefox browser.
|
||||
- Fix: Info circle item animation issue in different Browsers while initial load.
|
||||
|
||||
3.16.21 - 3-January-2018
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for package title and for subheading in Price Box.
|
||||
- Fix: Conflict with venus theme function name.
|
||||
- Fix: Counter in Module's list have different name on page element list.
|
||||
- Fix: Dual button height issue on First loading with Advanced Tab.
|
||||
- Fix: Advanced Tabs ID does not work in URL.
|
||||
- Fix: HTML validation error in counter element.
|
||||
- Fix: RTL issue in effect 18 of ihover element.
|
||||
- Fix: Rel Attribute option is not working in advance button.
|
||||
- Fix: Space issue in anchor tag attribute.
|
||||
- Fix: Change the labels from optimized to combined in script & style tab and separator instead of seperator in heading element.
|
||||
|
||||
3.16.20 - 21-November-2017
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for title in Info-banner.
|
||||
- Improvement: Update WPML xml file for Compatibility.
|
||||
- Fix: Advanced Tab Active Tab option issue.
|
||||
- Fix: WPBakery Page Builder map element has issue with advanced tabs.
|
||||
- Fix: Fancy text issue with special character(&) in string.
|
||||
- Fix: Info circle connector alignment issue in RTL condition.
|
||||
- Fix: Info circle item animation issue in Safari Browser.
|
||||
- Fix: Modal Box - Close Modal On Overlay Click and ESC not working when selector option is used.
|
||||
- Fix: Info-circle border not applied properly in safari browser.
|
||||
- Fix: Interactive banner2 link redirect issue in touch devices.
|
||||
- Fix: Toggle button issue while using Visual Composer starter theme.
|
||||
|
||||
3.16.19.1 - 13-November-2017
|
||||
- Fix: Row background pattern images are not showing in effect tab.
|
||||
|
||||
3.16.19 - 6-November-2017
|
||||
- Improvement: Added info list border type option.
|
||||
- Improvement: Optimize plugin code and improved performance.
|
||||
- Improvement: Added padding option for info-circle item.
|
||||
- Improvement: Added time delay option for redirecting the links on touch devices in interactive banner2.
|
||||
- Fix: Info circle clipped at bottom / top is not working properly.
|
||||
- Fix: Info circle image alignment issue.
|
||||
- Fix: Advanced Tab content height issue on First loading with animation style.
|
||||
- Fix: Anchor tag link and tooltip issue in Just Icon.
|
||||
- Fix: Anchor tag link issue in Icon.
|
||||
- Fix: Timeline issue without timeline item disappear.
|
||||
- Fix: Js error in row background.
|
||||
- Fix: Smooth Scroll issue in Chrome Browser.
|
||||
- Fix: Dual button getting collapse in Advanced Tabs.
|
||||
|
||||
3.16.18 - 20-September-2017
|
||||
Security Fix: A cross-site scripting (XSS) vulnerability was discovered in html links, WordPress core has patched it's vulnerability in 4.8.2 release and we've also fix it for Ultimate Addons for Visual Composer.
|
||||
|
||||
3.16.17 - 13-September-2017
|
||||
- Improvement: Added modal Close icon design feature.
|
||||
- Improvement: Added modal popup close on ESC key.
|
||||
- Improvement: Added hover color option for button in Modal.
|
||||
- Improvement: Added modal hide feature on page load for mobile/tablet devices.
|
||||
- Improvement: Advance Tab navigation icon for accordion updated.
|
||||
- Fix: Need to change CSS for pan style in Info banner element.
|
||||
- Fix: Info circle responsive issue.
|
||||
|
||||
3.16.16 - 29-August-2017
|
||||
- Improvement: Advanced Tab ID is now editable.
|
||||
- Improvement: Link markup condition for team element need improvement.
|
||||
- Improvement: Added image alignment option for image in image separator.
|
||||
- Fix: Row separator tilt left right issue.
|
||||
- Fix: Info-Circle does not include image in description area.
|
||||
- Fix: Info-Circle animation not working properly.
|
||||
- Fix: Hosted video background height issue.
|
||||
- Fix: Video background placeholder images do not show up after video completes.
|
||||
- Fix: Timeline right side item spacing issue.
|
||||
- Fix: Timeline has html markup issue and point issue.
|
||||
- Fix: Scripts Loading issue in Carousel.
|
||||
- Fix: Scripts Loading issue in Fancy text.
|
||||
|
||||
3.16.15 - 16-August-2017
|
||||
- Improvement: Added tag options for titles in Flipbox.
|
||||
- Improvement: iHover style addition.
|
||||
- Fix: Info List icon position in RTL should not change.
|
||||
- Fix: Fancy text slide up effect is not working in the Advanced tab.
|
||||
- Fix: Advanced carousel dot navigation color option is not working.
|
||||
- Fix: Dual button getting collapse in expandable section.
|
||||
- Fix: Carousel loading issue in tabs.
|
||||
- Fix: Interactive banner-2 title alignment issue.
|
||||
- Fix: iHover style not working in Internet Explorer.
|
||||
|
||||
3.16.14.1 - 11-August-2017
|
||||
- Fix: Element converting into text-blocks.
|
||||
|
||||
3.16.14 - 1-August-2017
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for title in modules.
|
||||
- Improvement: Interactive banner added Title tags option.
|
||||
- Improvement: iHover - added Title tags option.
|
||||
- Improvement: Compress plugin images.
|
||||
- Fix: Timeline issue with the link.
|
||||
- Fix: Info box alignment issue with icon at right with heading.
|
||||
- Fix: Dual button font size and line height option not working.
|
||||
- Fix: Hotspot RTL Compatibility.
|
||||
- Fix: Just icon tooltip text is not working.
|
||||
- Fix: Fatal error for redeclaration class in modules.
|
||||
- Fix: Advanced tabs scroll issue while click on tab.
|
||||
|
||||
3.16.13 - 18-July-2017
|
||||
- Improvement: Optimize all the plugin code.
|
||||
- Improvement: Provide filters for theme authors to disable enqueing google fonts in front end.
|
||||
- Fix: Flipbox flip not working on some of the websites.
|
||||
|
||||
3.16.12 - 4-May-2017
|
||||
- Fix: PHP Warning in font manager appearing on front end for some users.
|
||||
|
||||
3.16.11 - 29-Apr-2017
|
||||
- Improved overall security of the plugin by added sanitization wherever required, All the Ajax actions are now checked for user capabilities and nounce to harden the security.
|
||||
- Fix: Dual button not working properly for the second style.
|
||||
- Fix: WooCommere compatibility for version v3.0.4.
|
||||
|
||||
3.16.10 - 07-Apr-2017
|
||||
- Fix: Google Fonts Manager loading fonts with http instead of https in the preview.
|
||||
- Fix: Google Fonts URL returning 404 if the generated URL had duplicate '|' character.
|
||||
- Fix: JavaScript error on WooCommerce v3.0 product pages.
|
||||
- Fix: Option disable parallax on mobile not working.
|
||||
- Fix: Info list aligning besides each other instead of one below other.
|
||||
|
||||
3.16.9 - 07-Mar-2017
|
||||
- Fix: Token invalid error appearing for some users when activating the license. We apologize for the inconvenience.
|
||||
- Fix: Dual button icon images not aligned to center.
|
||||
- Fix: Dual button second button linking to the first buttons link.
|
||||
- Fix: Dual button first button background size option not working when "Design your own" option is selected.
|
||||
- Fix: Advanced Tabs causing Javascript errors on pages with anchors with # links.
|
||||
- Fix: Advanced button "rel" option not working.
|
||||
- Fix: Some users having issues with appear animations not triggering correctly when the row/element is in the viewport.
|
||||
|
||||
3.16.8 - 20-Feb-2017
|
||||
- New: Added WPML Compatibility.
|
||||
- New: Option to pause on hover and center mode in Advanced carousel
|
||||
- New: Option to open selected tab by providing tab index number.
|
||||
- New: Option for title alignment in expandable section element.
|
||||
- New: Added margin/padding options for highlight box.
|
||||
- New: Option to select Zoom control position in Google maps element.
|
||||
- New: Added Typography option for Countdown.
|
||||
- New: All new license activation method to activate license key with just one click.
|
||||
- Improvement: Added aria labels for Next/Prev buttons in Advanced Carousel.
|
||||
- Improvement: RTL Support for All the elements.
|
||||
- Improvement: Rel and Title tag for all the links in all elements.
|
||||
- Improvement: Maps - Added option to enable/disable dragging effect on the desktop.
|
||||
- Improvement: Info Box - Added option to select heading tags for the title.
|
||||
- Improvement: Modal Box - Added support for hosted videos in the modal box, Add any video with WordPress media selector and Select "Hosted video" in option What is this video about.
|
||||
- Improvement: Optimized images in the plugins package.
|
||||
- Fixed: Ultimate Addons menu not being registered in some multisite environments.
|
||||
- Fixed: JavaScript files not being loaded on pages even if shortcode was present on a page.
|
||||
- Fixed: Animation effects in advanced carousel not working.
|
||||
- Fixed: Interactive banner 2 - Multiple interactive banners opening links in new tab, each link did not open a new tab, rather loaded the page in the same new tab.
|
||||
- Fixed: Info list - List alignment set to right breaks the content alignment to enter.
|
||||
- Fixed: Disable Parallax on mobile option not working.
|
||||
- Fixed: Insufficient memory error when activating the plugin from WP-CLI.
|
||||
- Fixed: Flipbox center aligned not working on mobile devices.
|
||||
|
||||
3.16.7 - 04-Aug-2016
|
||||
- Fixed: Appear animation conflict causing pages to creash in salient theme.
|
||||
- Fixed: Flip boxes not working when added inside advanced carousel on mobile phones.
|
||||
- Fixed: Info list causing descriptions not aligned in the center of adjacent icons.
|
||||
- Fixed: Appear animation breaking for some users.
|
||||
- Updaed slick js to latest version which fixes compatibility issues in Ultimate Carousel.
|
||||
- Lots of minor bug fixes and browser compatibility fixes.
|
||||
|
||||
3.16.6
|
||||
- Fixed: Font Icons - SSL issue for $_SERVER[HTTPS] failing
|
||||
- Fixed: Icon Manager - Font zip are not showing after being uploaded
|
||||
- Fixed: Icon Manager - Filetype x-zip allowed to upload
|
||||
- Fixed: Advacned Button - Animation issue while background image applied
|
||||
- Fixed: Video backgrounds - Safari browser alignment issue
|
||||
- Improvement: Google Maps - Changed Google Map policy support to new domains with API key required - http://bsf.io/google-map-api-key
|
||||
|
||||
3.16.5
|
||||
- Fixed: PHP 5.2 fatal error for transient fallback
|
||||
|
||||
3.16.4
|
||||
- Fixed: Video Backgrounds - VC stretch row and full height conflict
|
||||
- Fixed: Hosted Video background - JS console error
|
||||
- Fixed: IB 2 - Style 11 iOS issue
|
||||
- Fixed: Image param - content pass as array instead string
|
||||
- Fixed: Hotspot - Misalignment
|
||||
- Fixed: Row Backgrounds - Image separator conflict with full height option
|
||||
- Fixed: Admin - Redux CSS conflicts with UAVC
|
||||
- Fixed: Timeline - Backend structure break due image alignment
|
||||
- Fixed: Multiple video backgrounds - Poster images not showing on mobile devices
|
||||
- Improvement - Advanced Tabs - Responsive accordion scroll to container on open tab option - http://bsf.io/lmde8
|
||||
- Improvement - Advanced Button - Inline alignment option added to display buttons inline - http://bsf.io/bvkn4
|
||||
- BSF Core v1.17 - With fallback to W3 Total Cache's deleting transients on every page reload
|
||||
@@ -0,0 +1,622 @@
|
||||
# Copyright (C) 2022 AcademyLMS
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Academy Starter Templates 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/academy-starter-templates\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-02-20T16:36:06+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: academy-starter-templates\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Academy Starter Templates"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://demo.academylms.net"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Demo importer plugin for academy lms."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "AcademyLMS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://academylms.net"
|
||||
msgstr ""
|
||||
|
||||
#: includes/hooks.php:183
|
||||
msgid "No relevent plugin for this demo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:38
|
||||
#: includes/library/customizer-importer.php:45
|
||||
msgid "Importing customizer settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:43
|
||||
msgid "Customizer settings import finished!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - file path
|
||||
#: includes/library/customizer-importer.php:73
|
||||
msgid "Error: The customizer import file is missing! File path: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:93
|
||||
msgid "Error: The customizer import file is not in a correct format. Please make sure to use the correct customizer import file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:99
|
||||
msgid "Error: The customizer import file is not suitable for current theme. You can only import customizer settings for the same theme or a child theme."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/downloader.php:59
|
||||
msgid "Missing URL for downloading a file!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s and %3$s - strong HTML tags, %2$s - file URL, %4$s - br HTML tag, %5$s - error code, %6$s - error message.
|
||||
#: includes/library/downloader.php:77
|
||||
msgid "An error occurred while fetching file from: %1$s%2$s%3$s!%4$sReason: %5$s - %6$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - br HTML tag, %2$s - file path
|
||||
#: includes/library/helpers.php:196
|
||||
#: includes/library/helpers.php:239
|
||||
msgid "An error occurred while writing file to your server! Tried to write a file to: %1$s%2$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - br HTML tag, %2$s - file path
|
||||
#: includes/library/helpers.php:273
|
||||
msgid "An error occurred while reading a file from your server! Tried reading file from path: %1$s%2$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s and %2$s - strong HTML tags, %3$s - HTML link to a doc page.
|
||||
#: includes/library/helpers.php:296
|
||||
msgid "This WordPress page does not have %1$sdirect%2$s write file access. This plugin needs it in order to save the demo import xml file to the upload directory of your site. You can change this setting with these instructions: %3$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:313
|
||||
msgid "An error occurred while retrieving reading/writing permissions to your server (could not retrieve WP filesystem credentials)!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:321
|
||||
msgid "Your WordPress login credentials don't allow to use WP_Filesystem!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:361
|
||||
msgid "Academy Starter Templates - "
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - opening div and paragraph HTML tags, %2$s - closing div and paragraph HTML tags.
|
||||
#: includes/library/helpers.php:395
|
||||
msgid "%1$sYour user role isn't high enough. You don't have permission to import demo data.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:428
|
||||
msgid "No file provided."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:456
|
||||
msgid "Content file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:460
|
||||
#: includes/library/helpers.php:476
|
||||
#: includes/library/helpers.php:492
|
||||
#: includes/library/helpers.php:503
|
||||
#: includes/library/helpers.php:522
|
||||
#: includes/library/helpers.php:530
|
||||
msgid "Upload files"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:472
|
||||
msgid "Widget file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:488
|
||||
msgid "Customizer file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:501
|
||||
msgid "Missing Redux option name! Please also enter the Redux option name!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:518
|
||||
msgid "Redux file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:528
|
||||
msgid "The import files were successfully uploaded!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the max execution time.
|
||||
#: includes/library/helpers.php:554
|
||||
msgid "Initial max execution time = %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - new line break, %2$s - the site URL, %3$s - the file path for content import, %4$s - the file path for widgets import, %5$s - the file path for widgets import, %6$s - the file path for redux import.
|
||||
#: includes/library/helpers.php:558
|
||||
msgid "Files info:%1$sSite URL = %2$s%1$sData file = %3$s%1$sWidget file = %4$s%1$sCustomizer file = %5$s%1$sRedux files:%1$s%6$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:561
|
||||
#: includes/library/helpers.php:562
|
||||
#: includes/library/helpers.php:563
|
||||
#: includes/library/helpers.php:564
|
||||
msgid "not defined!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:735
|
||||
#: includes/library/helpers.php:736
|
||||
msgid "Academy Starter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/importer.php:175
|
||||
msgid "New AJAX call!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:215
|
||||
msgid "No preview image defined for this import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:216
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:217
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:218
|
||||
msgid "Yes, import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:219
|
||||
msgid "Selected demo import:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:220
|
||||
msgid "Installing..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:221
|
||||
#: includes/library/wpcli-commands.php:154
|
||||
msgid "Importing..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:222
|
||||
msgid "Successfully Imported!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:223
|
||||
msgid "Install Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:224
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:225
|
||||
msgid "Import Failed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:226
|
||||
msgid "Whoops, there was a problem importing your content."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:227
|
||||
msgid "Looks like some of the plugins failed to install. Please try again. If this issue persists, please manually install the failing plugins and come back to this step to import the theme demo data."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:228
|
||||
msgid "Invalid file type detected! Please select an XML file for the Content Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:229
|
||||
msgid "Invalid file type detected! Please select a JSON or WIE file for the Widgets Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:230
|
||||
msgid "Invalid file type detected! Please select a DAT file for the Customizer Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:231
|
||||
msgid "Invalid file type detected! Please select a JSON file for the Redux Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:248
|
||||
msgid "Manual import files are missing! Please select the import files and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:263
|
||||
#: includes/library/one-click-demo-import.php:308
|
||||
msgid "Manually uploaded files"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:320
|
||||
#: includes/library/one-click-demo-import.php:331
|
||||
msgid "Downloaded files"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the name of the selected import.
|
||||
#: includes/library/one-click-demo-import.php:327
|
||||
msgid "The import files for: %s were successfully downloaded!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:335
|
||||
msgid "No import files specified!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:452
|
||||
#: views/import.php:118
|
||||
msgid "Import Complete!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:453
|
||||
#: views/import.php:121
|
||||
msgid "Congrats, your demo was imported successfully. You can now begin editing your site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:454
|
||||
msgid "Successful Import"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:457
|
||||
msgid "Your import completed, but some things may not have imported properly."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - link to the log file.
|
||||
#: includes/library/one-click-demo-import.php:461
|
||||
msgid "<p><a href=\"%s\" target=\"_blank\">View error log</a> for more information.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:86
|
||||
msgid "WPForms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:87
|
||||
msgid "Join 4,000,000+ professionals who build smarter forms and surveys with WPForms."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:93
|
||||
msgid "All in One SEO"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:94
|
||||
msgid "Use All in One SEO Pack to optimize your WordPress site for SEO."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:100
|
||||
msgid "MonsterInsights"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:101
|
||||
msgid "The #1 Google Analytics Plugin for WordPress that’s easy and powerful."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:107
|
||||
msgid "Custom Landing Pages by SeedProd"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:108
|
||||
msgid "Work on your site in private while visitors see a \"Coming Soon\" or \"Maintenance Mode\" page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:113
|
||||
msgid "Smash Balloon Social Photo Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:114
|
||||
msgid "Display beautifully clean, customizable, and responsive Instagram feeds."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:119
|
||||
msgid "WP Mail SMTP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:120
|
||||
msgid "Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, Mailgun, and more."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:225
|
||||
msgid "Could not install the plugin. You don't have permission to install plugins."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:231
|
||||
msgid "Could not install the plugin. Plugin slug is missing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:236
|
||||
msgid "Plugin is already installed and activated!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:244
|
||||
msgid "Plugin was already installed! We activated it for you."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:252
|
||||
msgid "Could not install the plugin. Don't have file permission."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:292
|
||||
msgid "Plugin installed and activated succesfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:299
|
||||
msgid "Could not install the plugin. WP Plugin installer could not retrieve plugin information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/view-helpers.php:20
|
||||
msgid "Academy Starter Templates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/view-helpers.php:22
|
||||
msgid "Questionmark icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/view-helpers.php:53
|
||||
msgid "Theme screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:41
|
||||
#: includes/library/widget-importer.php:52
|
||||
msgid "Importing widgets"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:88
|
||||
msgid "Error: Widget import file could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:118
|
||||
msgid "Error: Widget import data could not be read. Please try a different file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:156
|
||||
msgid "Sidebar does not exist in theme (moving widget to Inactive)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:177
|
||||
msgid "Site does not support widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:210
|
||||
msgid "Widget already exists"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:275
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:278
|
||||
msgid "Imported to Inactive"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:284
|
||||
msgid "No Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:331
|
||||
msgid "No results for widget import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:35
|
||||
msgid "There are no predefined demo imports for currently active theme!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:38
|
||||
msgid "Here are the predefined demo imports:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:72
|
||||
msgid "At least one of the possible options should be set! Check them with --help"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:123
|
||||
msgid "The \"predefined\" parameter should be a number (an index of the OCDI predefined demo import)!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:129
|
||||
msgid "The supplied predefined index does not exist! Please take a look at the available predefined demo imports:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:136
|
||||
msgid "Predefined demo import started! All other parameters will be ignored!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the name of the selected demo import.
|
||||
#: includes/library/wpcli-commands.php:141
|
||||
msgid "Selected predefined demo import: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:144
|
||||
msgid "Preparing the demo import files..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:149
|
||||
msgid "Demo import files could not be retrieved!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:152
|
||||
msgid "Demo import files retrieved successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:174
|
||||
msgid "Predefined import finished!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:186
|
||||
msgid "Content import file provided does not exist! Skipping this import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:195
|
||||
msgid "Importing content (this might take a while)..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:197
|
||||
msgid "Importing content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:202
|
||||
msgid "Content import finished!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:204
|
||||
msgid "There were some issues while importing the content!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:223
|
||||
msgid "Widgets import file provided does not exist! Skipping this import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:227
|
||||
msgid "Importing widgets..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:232
|
||||
msgid "Widgets imported successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:234
|
||||
msgid "There were some issues while importing widgets!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:253
|
||||
msgid "Customizer import file provided does not exist! Skipping this import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:257
|
||||
msgid "Importing customizer settings..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:262
|
||||
msgid "Customizer settings imported successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:264
|
||||
msgid "There were some issues while importing customizer settings!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the name of the executing action.
|
||||
#: includes/library/wpcli-commands.php:284
|
||||
msgid "Executing action: %s ..."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:28
|
||||
msgid "Before We Import Your Demo"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:30
|
||||
msgid "To ensure the best experience, installing the following plugins is strongly recommended, and in some cases required."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:43
|
||||
msgid "All required/recommended plugins are already installed. You can import your demo content."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:56
|
||||
#: views/import.php:89
|
||||
msgid "Star icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:71
|
||||
#: views/install-plugins.php:49
|
||||
msgid "Checkmark icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:73
|
||||
msgid "Lock icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:75
|
||||
#: views/install-plugins.php:50
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:85
|
||||
msgid "The plugins with %1$s are recommended by Academy Starter Templates plugin to help you grow your website. They are not required for the %2$s theme to work."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:98
|
||||
#: views/install-plugins.php:57
|
||||
msgid "Back icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:98
|
||||
#: views/install-plugins.php:57
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:99
|
||||
msgid "Continue & Import"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:108
|
||||
msgid "Importing Content"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:109
|
||||
msgid "Please sit tight while we import your content. Do not refresh the page or hit the back button."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:112
|
||||
msgid "Importing animation"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:129
|
||||
msgid "Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:130
|
||||
msgid "Visit Site"
|
||||
msgstr ""
|
||||
|
||||
#: views/install-plugins.php:25
|
||||
msgid "Install Recommended Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: views/install-plugins.php:27
|
||||
msgid "Want to use the best plugins for the job? Here is the list of awesome plugins that will help you achieve your goals."
|
||||
msgstr ""
|
||||
|
||||
#: views/install-plugins.php:58
|
||||
msgid "Install & Activate"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - the opening div and paragraph HTML tags, %2$s and %3$s - strong HTML tags, %4$s - the closing div and paragraph HTML tags.
|
||||
#: views/plugin-page.php:27
|
||||
msgid "%1$sWarning: your server is using %2$sPHP safe mode%3$s. This means that you might experience server timeout errors.%4$s"
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:50
|
||||
msgid "All Demos"
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:63
|
||||
msgid "Search Demos..."
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:86
|
||||
msgid "No preview image."
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:93
|
||||
msgid "Preview Demo"
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:95
|
||||
msgid "Import Demo"
|
||||
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,204 @@
|
||||
# Copyright (C) 2021 WP White Security
|
||||
# This file is distributed under the same license as the WP Activity Log Extension for TablePress plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Activity Log Extension for TablePress 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-tablepress\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-10-11T13:50:49+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wsal-tablepress\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Activity Log Extension for TablePress"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpactivitylog.com/extensions/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A WP Activity Log plugin extension for TablePress"
|
||||
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:15
|
||||
#: wp-security-audit-log/custom-alerts.php:4
|
||||
msgid "TablePress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:26
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:5
|
||||
msgid "Monitor TablePress"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:10
|
||||
msgid "A table was created"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:11
|
||||
msgid "Added the new table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:14
|
||||
#: wp-security-audit-log/custom-alerts.php:32
|
||||
#: wp-security-audit-log/custom-alerts.php:63
|
||||
#: wp-security-audit-log/custom-alerts.php:98
|
||||
#: wp-security-audit-log/custom-alerts.php:118
|
||||
#: wp-security-audit-log/custom-alerts.php:136
|
||||
#: wp-security-audit-log/custom-alerts.php:154
|
||||
msgid "Table ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:15
|
||||
#: wp-security-audit-log/custom-alerts.php:99
|
||||
msgid "Number of rows"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:16
|
||||
#: wp-security-audit-log/custom-alerts.php:100
|
||||
msgid "Number of columns"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:19
|
||||
#: wp-security-audit-log/custom-alerts.php:50
|
||||
#: wp-security-audit-log/custom-alerts.php:66
|
||||
#: wp-security-audit-log/custom-alerts.php:84
|
||||
#: wp-security-audit-log/custom-alerts.php:105
|
||||
#: wp-security-audit-log/custom-alerts.php:123
|
||||
#: wp-security-audit-log/custom-alerts.php:141
|
||||
#: wp-security-audit-log/custom-alerts.php:157
|
||||
msgid "View in the editor"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:28
|
||||
msgid "A table was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:29
|
||||
msgid "Deleted the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:42
|
||||
msgid "A table was duplicated"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:43
|
||||
msgid "Created a copy of the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:46
|
||||
msgid "New table name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:47
|
||||
#: wp-security-audit-log/custom-alerts.php:81
|
||||
msgid "New table ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:59
|
||||
msgid "A table was imported"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:60
|
||||
msgid "Imported the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:76
|
||||
msgid "A table ID was changed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:77
|
||||
msgid "Changed the ID of the table %table_name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:80
|
||||
msgid "Previous table ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:94
|
||||
msgid "A table was modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:95
|
||||
msgid "Made changes to the table %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:101
|
||||
msgid "Previous number of rows"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:102
|
||||
msgid "Previous number of columns"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:114
|
||||
msgid "A table row was added or removed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:115
|
||||
msgid "A row was added or removed from the table %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:119
|
||||
msgid "Previous row count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:120
|
||||
msgid "New row count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:132
|
||||
msgid "A table column was added or removed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:133
|
||||
msgid "A column was added or removed from the table %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:137
|
||||
msgid "Previous column count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:138
|
||||
msgid "New column count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:150
|
||||
msgid "A table option was modified"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:151
|
||||
msgid "Changed the status of the table option %option_name% in %table_name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:224
|
||||
msgid "The last row of the table is the table footer."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:226
|
||||
msgid "The first row of the table is the table header."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:228
|
||||
msgid "The background colors of consecutive rows shall alternate."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_TablePress.php:230
|
||||
msgid "Highlight a row while the mouse cursor hovers above it by changing its background color."
|
||||
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 ""
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/additional-block-styles/change_log/changelog.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/additional-block-styles/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Additional Block Styles Changelog
|
||||
|
||||
## 1.0.0, 20220330
|
||||
|
||||
- Initial release.
|
||||
@@ -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 ""
|
||||
35
spec/fixtures/dynamic_finders/plugin_version/admin-color-schemes/composer_file/package.json
vendored
Normal file
35
spec/fixtures/dynamic_finders/plugin_version/admin-color-schemes/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Admin-Color-Schemes",
|
||||
"slug": "admin-color-schemes",
|
||||
"description": "WordPress dashboard color schemes",
|
||||
"version": "3.0.0",
|
||||
"devDependencies": {
|
||||
"@wordpress/env": "4.2.0",
|
||||
"@wordpress/stylelint-config": "19.1.0",
|
||||
"gulp": "4.0.2",
|
||||
"gulp-concat": "2.6.1",
|
||||
"gulp-csso": "4.0.1",
|
||||
"gulp-dart-sass": "1.0.2",
|
||||
"gulp-rename": "2.0.0",
|
||||
"gulp-rtlcss": "1.4.2",
|
||||
"stylelint": "13.13.1"
|
||||
},
|
||||
"stylelint": {
|
||||
"extends": [
|
||||
"@wordpress/stylelint-config/scss"
|
||||
],
|
||||
"rules": {
|
||||
"no-descending-specificity": null
|
||||
},
|
||||
"ignoreFiles": [
|
||||
"_*.scss",
|
||||
"editor.css"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"wp-env": "wp-env",
|
||||
"start": "gulp",
|
||||
"build": "gulp build",
|
||||
"lint": "stylelint */*.scss"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2022 CodeRockz
|
||||
# This file is distributed under the same license as the Advance Cash On Delivery For WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advance Cash On Delivery For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/coderockz-wc-advance-cod-free\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-03-25T16:59:24+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: coderockz-wc-advance-cod-free\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Advance Cash On Delivery For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://coderockz.com/downloads/woocommerce-advance-cash-on-delivery/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This is a short description of what the plugin does. It's displayed in the WordPress admin area."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "CodeRockz"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://coderockz.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,84 @@
|
||||
# Copyright (C) 2022 bPlugins LLC
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advance Custom HTML 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/advance-custom-html\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-11-10T04:43:37+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: custom-html\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Advance Custom HTML"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "An advance html code editor which enable you to code professionally. It provides different skins, denting, correction and more."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://bplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:6
|
||||
#: dist/editor.js:29251
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:6
|
||||
#: dist/editor.js:29252
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:6
|
||||
#: dist/editor.js:29408
|
||||
#: dist/editor.js:29409
|
||||
#: dist/editor.js:29411
|
||||
#: dist/editor.js:29414
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:6
|
||||
#: dist/editor.js:29412
|
||||
msgid "HTML"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:6
|
||||
#: dist/editor.js:29415
|
||||
msgid "HTML with Preview"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "Advance Custom HTML"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "Write code like editor."
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "custom html"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "code"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "html"
|
||||
msgstr ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/advanced-quiz/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/advanced-quiz/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
= 1.0.0 =
|
||||
* WordPress 5.9 and PHP 8.0 ready
|
||||
|
||||
|
||||
47
spec/fixtures/dynamic_finders/plugin_version/agnoplay/translation_file/languages/nl.po
vendored
Normal file
47
spec/fixtures/dynamic_finders/plugin_version/agnoplay/translation_file/languages/nl.po
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: agnoplay wordpress v1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <info@agnoplay.com>\n"
|
||||
"POT-Creation-Date: 2021-08-04 11:36+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Egeniq <info@agnoplay.com>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: agnoplay-wordpress.php:98 agnoplay-wordpress.php:99
|
||||
#: agnoplay-wordpress.php:167
|
||||
msgid "Agnoplay settings"
|
||||
msgstr "Agnoplay instellingen"
|
||||
|
||||
#: agnoplay-wordpress.php:120
|
||||
msgid "Videoplayer brand ID"
|
||||
msgstr "Videospeler merk ID"
|
||||
|
||||
#: agnoplay-wordpress.php:128
|
||||
msgid "Liveplayer brand ID"
|
||||
msgstr "Livespeler merk ID"
|
||||
|
||||
#: agnoplay-wordpress.php:136
|
||||
msgid "Audioplayer brand ID"
|
||||
msgstr "Audiospeler merk ID"
|
||||
|
||||
#: agnoplay-wordpress.php:160
|
||||
msgid ""
|
||||
"Enter the brand ID of your players, including the equivalent license keys. "
|
||||
"Please contact Agnoplay for the correct values"
|
||||
msgstr ""
|
||||
"Voer het merk ID van uw spelers in, inclusief de bijbehorende "
|
||||
"licentiesleutels. Neem contact op met Agnoplay voor de correcte waarden"
|
||||
@@ -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"
|
||||
18
spec/fixtures/dynamic_finders/plugin_version/ajax-search-bar/composer_file/package.json
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/ajax-search-bar/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "mysearchplugin",
|
||||
"version": "1.0.0",
|
||||
"description": "this is search plugin",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start",
|
||||
"dev": "wp-scripts start",
|
||||
"devFast": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@wordpress/scripts": "*"
|
||||
}
|
||||
}
|
||||
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,35 @@
|
||||
# Copyright (C) 2020 RedNao
|
||||
# This file is distributed under the same license as the Easy Pricing Forms plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Easy Pricing Forms 1.2.13\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/easy-calculation-forms\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: 2020-04-25T13:05:42+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: rednaoeasycalculationforms\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Easy Pricing Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://smartforms.rednao.com/getit"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Order Forms, Quotes, Even Registration and more. If you need to calculate a price in your form this is the best builder for you."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "RedNao"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://rednao.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,7 @@
|
||||
Version 1.1 - February 18, 2022
|
||||
-Change Tutorial link
|
||||
-Fixed Bug related to Team configuration
|
||||
-Change the tested up
|
||||
|
||||
Version 1.0 - December 30, 2021
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/amzft/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/amzft/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "fragment-amzn",
|
||||
"version": "1.0.1",
|
||||
"description": "Amazonの商品を検索してブロックに追加します。",
|
||||
"author": "fragment.co.jp",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^7.0.2",
|
||||
"@wordpress/blocks": "^11.1.0",
|
||||
"@wordpress/i18n": "^4.2.2",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-loader": "^8.2.2",
|
||||
"babel-plugin-transform-react-jsx": "^6.24.1",
|
||||
"babel-preset-env": "^1.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^16.1.5"
|
||||
}
|
||||
}
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/ananas/change_log/CHANGELOG.md
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/ananas/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) with minor modifications,
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.0] - 8th Dec 2021
|
||||
Initial plugin release.
|
||||
|
||||
4380
spec/fixtures/dynamic_finders/plugin_version/anrghg/translation_file/languages/anrghg-en_GB.po
vendored
Normal file
4380
spec/fixtures/dynamic_finders/plugin_version/anrghg/translation_file/languages/anrghg-en_GB.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
32
spec/fixtures/dynamic_finders/plugin_version/arrayforms/composer_file/package.json
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/arrayforms/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "arrayforms",
|
||||
"version": "1.0.0",
|
||||
"description": "Build Array Forms Embed",
|
||||
"author": "BuildArray.com",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/api-fetch": "^5.1.1",
|
||||
"@wordpress/block-editor": "^6.1.0",
|
||||
"@wordpress/blocks": "^9.1.0",
|
||||
"@wordpress/core-data": "^3.1.7",
|
||||
"@wordpress/i18n": "^4.1.0",
|
||||
"@wordpress/plugins": "^3.1.2",
|
||||
"axios": "^0.21.1",
|
||||
"immer": "^9.0.3",
|
||||
"react-transition-group": "^4.4.2",
|
||||
"styled-components": "^5.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^16.1.0",
|
||||
"dotenv-webpack": "^7.0.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,230 @@
|
||||
# Copyright (C) 2022 Khorshid, ArvanCloud
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ArvanCloud CDN 0.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/temp-git\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-02-17T17:05:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: arvancloud-cdn\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: wp-arvancloud-cdn.php:29
|
||||
msgid "ArvanCloud CDN"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.arvancloud.com/en/products/cdn"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "ArvanCloud CDN service caches your website content. Using this plugin, you will be able to purge and update the cached version, either manually or automatically, so that your users visit the latest version of your website at any time."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Khorshid, ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:113
|
||||
msgid "Please Wait"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:114
|
||||
msgid "Request sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:115
|
||||
msgid "Updated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:116
|
||||
msgid "Update failed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:142
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:143
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:8
|
||||
msgid "CDN General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:151
|
||||
#: admin/partials/wp-arvancloud-cdn-about-us-display.php:2
|
||||
msgid "About ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:152
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:181
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:184
|
||||
msgid "Clear Cache"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:287
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:290
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:293
|
||||
msgid "Pending DNS changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:296
|
||||
msgid "Pending CDN"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:299
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:318
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:321
|
||||
msgid "Growth"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:324
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:327
|
||||
msgid "Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:47
|
||||
msgid "There was a problem. please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:73
|
||||
#: admin/inc/class-request-handler.php:162
|
||||
#: admin/inc/class-request-handler.php:268
|
||||
msgid "ArvanCloud is not responding right now. please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:79
|
||||
#: admin/inc/class-request-handler.php:170
|
||||
#: admin/inc/class-request-handler.php:270
|
||||
msgid "ArvanCloud API key is invalid. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:87
|
||||
msgid "Purging CDN cache request sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:195
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:15
|
||||
msgid "-- not shown --"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:198
|
||||
msgid "Enter your API key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:217
|
||||
msgid "settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:237
|
||||
msgid "Invalid security token sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:245
|
||||
msgid "Invalid item sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-about-us-display.php:6
|
||||
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/partials/wp-arvancloud-cdn-footer.php:5
|
||||
msgid "CDN Plans"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-footer.php:6
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-footer.php:7
|
||||
msgid "Email Us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:6
|
||||
msgid "Status: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:33
|
||||
msgid "Change API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:37
|
||||
msgid "Back to options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:43
|
||||
msgid "ArvanCloud panel →"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:18
|
||||
msgid "CDN Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:27
|
||||
msgid "Purge Cache"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:28
|
||||
msgid "This will help you to get the full version of the new data from your web server by clearing the cache data from Arvan servers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:37
|
||||
msgid "Always Online"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:38
|
||||
msgid "After activating of this feature, in case of website or webserver time out, the last saved version in arvancloud will be shown to the user. Arvancloud can only show the main page or dynamic pages if it has the permission to cache."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:47
|
||||
msgid "Development Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:48
|
||||
msgid "Activating Development Mode will temporarily stop caching so that developers can work easier. Web optimization will also be disabled."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:57
|
||||
msgid "Automatic cleaning"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:58
|
||||
msgid "Automatically clear cache when a post or page or custom post type is edited or created or deleted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:10
|
||||
msgid "Configure CDN API"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:18
|
||||
msgid "Get API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:20
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: wp-arvancloud-cdn.php:30
|
||||
msgid "wp-arvancloud-cdn"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,254 @@
|
||||
# Copyright (C) 2021 Ascendoor
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ascendoor Logo Slide 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ascendoor-logo-slide\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-10-21T10:44:52+05:45\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: ascendoor-logo-slide\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/includes/class-ascendoor-logo-slide-admin-settings.php:75
|
||||
#: admin/includes/class-ascendoor-logo-slide-admin-settings.php:76
|
||||
msgid "Ascendoor Logo Slide"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ascendoor.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Simple logo slide with CSS transition effects."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ascendoor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. PHP Version.
|
||||
#: includes/class-ascendoor-logo-slide-activate-deactivate.php:33
|
||||
msgid "Ascendoor Logo Slide plugin requires PHP version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. WordPress Version.
|
||||
#: includes/class-ascendoor-logo-slide-activate-deactivate.php:48
|
||||
msgid "Ascendoor Logo Slide plugin requires WordPress version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/build/index.js:1
|
||||
#: admin/resources/src/components/Loading/index.js:6
|
||||
msgid "Loading…"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:18
|
||||
#: admin/resources/src/components/Header/Info.js:136
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:26
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:40
|
||||
#: admin/resources/src/components/Header/Info.js:118
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:48
|
||||
msgid "Tablet"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Common/ResponsiveIcons.js:62
|
||||
#: admin/resources/src/components/Header/Info.js:100
|
||||
#: admin/resources/src/components/Header/ResponsivePreview.js:70
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:24
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:49
|
||||
msgid "Close info content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:62
|
||||
msgid "You have some inactive columns. Please use the guide below for the recommended setup."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:68
|
||||
msgid "Total Added Logos:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:80
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:99
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:83
|
||||
msgid "Min. No. of Logos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:89
|
||||
msgid "Inactive Columns"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Header/Info.js:167
|
||||
msgid "Duplicate logos to fill the inactive columns."
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:19
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:21
|
||||
msgid "Select Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/AddLogo.js:101
|
||||
msgid "Add Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:61
|
||||
msgid "Logo Alt Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:74
|
||||
msgid "Logo Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:87
|
||||
msgid "Logo Link To"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/EditLogo.js:102
|
||||
msgid "Link Open In"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:63
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:87
|
||||
msgid "Close Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:109
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/ManageLogo/index.js:144
|
||||
msgid "Manage Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:92
|
||||
msgid "Column"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/RowColumn/index.js:115
|
||||
msgid "Column Gap"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:49
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:55
|
||||
msgid "Slide Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:71
|
||||
msgid "Slide Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:74
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:104
|
||||
#: admin/resources/src/components/Tabs/GeneralTab/SlideType/index.js:107
|
||||
msgid "Pause on Hover"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/index.js:40
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/index.js:51
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:160
|
||||
msgid "Select Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:162
|
||||
msgid "Select Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:304
|
||||
msgid "Container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:311
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:390
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:181
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:469
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:260
|
||||
msgid "Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:481
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:495
|
||||
msgid "Background Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:516
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:535
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:582
|
||||
msgid "Update Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:564
|
||||
msgid "Add Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:599
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:610
|
||||
msgid "Background Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:658
|
||||
msgid "Background Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:686
|
||||
msgid "Background Repeat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Container/index.js:718
|
||||
msgid "Background Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:145
|
||||
msgid "Logos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:152
|
||||
msgid "Height (in PX)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/resources/src/components/Tabs/StyleTab/Logos/index.js:163
|
||||
msgid "Hint: 0 = Auto. The frontend logo container and the current backend preview container might not be the same. Set height based on frontend view."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,186 @@
|
||||
# Copyright (C) 2021 Ascendoor
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ascendoor Metadata Manager 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ascendoor-metadata-manager\n"
|
||||
"Last-Translator: Ascendoor <info@ascendoor.com>\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-10-27T14:44:34+05:45\n"
|
||||
"PO-Revision-Date: 2021-10-27 00:00+05:45\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: ascendoor-metadata-manager\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Ascendoor Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "View and manage posts, terms, users and comments metadata."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ascendoor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ascendoor.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:109
|
||||
msgid "Are you sure to delete this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:110
|
||||
msgid "Invalid Request!!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:111
|
||||
msgid "This meta data seems to be private. Are you sure to delete this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:112
|
||||
msgid "Reload page?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:113
|
||||
msgid "This meta data seems to be private. Are you sure to update this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ascendoor-metadata-manager-admin.php:114
|
||||
msgid "Are you sure to update this meta data?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:83
|
||||
msgid "Comment Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:112
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:124
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:133
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:122
|
||||
msgid "Meta Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:115
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:127
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:136
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:125
|
||||
msgid "Meta Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:118
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:130
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:139
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:128
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:104
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:156
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:168
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:177
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:166
|
||||
msgid "Meta data list is empty."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:165
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:177
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:186
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:175
|
||||
msgid "Meta data not found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:198
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:210
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:218
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:207
|
||||
msgid "You are not allowed to delete this meta data."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-comment-metas.php:230
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:242
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:250
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:239
|
||||
msgid "You are not allowed to update this meta data."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-post-metas.php:95
|
||||
msgid "Post Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:78
|
||||
msgid "Disable Metadata Manager for Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:109
|
||||
msgid "Disable Metadata Manager for Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:138
|
||||
msgid "Disable Metadata Manager for Users or Comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:145
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:157
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:187
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-settings.php:287
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:100
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-term-metas.php:107
|
||||
msgid "Term Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:90
|
||||
#: admin/includes/class-ascendoor-metadata-manager-admin-user-metas.php:97
|
||||
msgid "User Metadata Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:41
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:73
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:48
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:80
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - WordPress sanitization Function Name with Anchor Tag, %2$s - WordPress sanitization Function Name with Anchor Tag
|
||||
#. translators: %1$s - WordPress sanitization Function Name with Anchor Tag, %2$s - WordPress sanitization Function Name with Anchor Tag
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:59
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:91
|
||||
msgid "While updating, meta value will be sanitized and filtered with %1$s (if meta value contains HTML tags) or %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:107
|
||||
msgid "Delete meta key and value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ascendoor-metadata-manager-admin.php:118
|
||||
msgid "Edit meta value"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - PHP Version.
|
||||
#: includes/class-ascendoor-metadata-manager-activate-deactivate.php:34
|
||||
msgid "Ascendoor Metadata Manager plugin requires PHP version %s or higher."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - WordPress Version.
|
||||
#: includes/class-ascendoor-metadata-manager-activate-deactivate.php:49
|
||||
msgid "Ascendoor Metadata Manager plugin requires WordPress version %s or higher."
|
||||
msgstr ""
|
||||
149
spec/fixtures/dynamic_finders/plugin_version/atlas-content-modeler/change_log/CHANGELOG.md
vendored
Normal file
149
spec/fixtures/dynamic_finders/plugin_version/atlas-content-modeler/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
# Atlas Content Modeler Changelog
|
||||
|
||||
## 0.8.0 - 2021-10-13
|
||||
|
||||
### Added
|
||||
- Share models between sites using the new Export and Import models feature. Visit Content Modeler → Tools to get started.
|
||||
- Added "author" support to custom post types. This unlocks new functionality such as assigning specific users to a post, and querying posts by author in WPGraphQL.
|
||||
|
||||
### Fixed
|
||||
- Fixed bug where the model icon could not be changed when editing an existing model.
|
||||
- Fixed bug in the Number field where you could not define a Step value without also defining a Max value.
|
||||
- Improved duplicate field slug detection to ensure forward and reverse slugs for the Relationship field are unique in WPGraphQL.
|
||||
|
||||
### Changed
|
||||
- The `@wordpress/i18n` package is no longer bundled in the plugin's scripts, relying on the version that ships with WordPress instead.
|
||||
|
||||
## 0.7.0 - 2021-10-04
|
||||
|
||||
### Added
|
||||
- Relationship Field: one-to-one and one-to-many relationships were renamed to many-to-one and many-to-many to accurately reflect their function.
|
||||
- Relationship Field: fields can now optionally include reverse references.
|
||||
- Relationship Field: added [Beta] flag as the feature takes shape.
|
||||
- Chore: set "Requires at least" to WordPress version 5.7
|
||||
- Chore: set "Requires PHP" to version 7.2
|
||||
|
||||
### Fixed
|
||||
- Fixed bug where the app prompted about "Unsaved changes" when no changes had been made.
|
||||
|
||||
## 0.6.0 - 2021-09-09
|
||||
|
||||
### Added
|
||||
- Create one-to-one and one-to-many relationships between model entries with the new Relationship field.
|
||||
- A plugin icon will appear on the plugin update page during future updates.
|
||||
|
||||
### Fixed
|
||||
- Improved modal scroll behavior and positioning.
|
||||
|
||||
## 0.5.0 - 2021-08-12
|
||||
|
||||
### Added
|
||||
- You can now add custom Taxonomies and assign them to your models. Visit Atlas Content Modeler → Taxonomies to get started.
|
||||
- Models and Taxonomies submenu items now appear in the admin sidebar below Atlas Content Modeler.
|
||||
|
||||
### Changed
|
||||
- Refactored PHP tests.
|
||||
|
||||
## 0.4.2 - 2021-08-04
|
||||
|
||||
### Added
|
||||
- Ability to choose an icon when creating or editing a model.
|
||||
- Option to restrict file types for the media field.
|
||||
- Generate WordPress changelog from the Markdown changelog so that changes are visible from the WordPress changes modal.
|
||||
- Plugin developer improvements: GitHub Pull Request template; Code Climate configuration; Makefile for test environments.
|
||||
|
||||
### Changed
|
||||
- Change “API Identifier” field title on model entry forms to “Model ID” with a new description to better reflect its use.
|
||||
- Continuous Integration: the generated plugin zip is now tested and verified before deploying.
|
||||
|
||||
### Fixed
|
||||
- Improve query generation for “Open in GraphiQL” to include lowercase model names and models with the same plural and singular name.
|
||||
- Improve sanitization of model slugs. Includes safe migration of existing model slugs.
|
||||
- Prevent a PHP warning during title filtering if post info can not be found.
|
||||
- Improve number field validation.
|
||||
|
||||
## 0.4.1 - 2021-06-24
|
||||
### Added
|
||||
- Generate POT language file for translations.
|
||||
|
||||
### Changed
|
||||
- Use `include` in place of `require` so that missing or corrupt files do not take WordPress down.
|
||||
|
||||
### Removed
|
||||
- Removed the Multiple Choice field for now while we add support for custom choice API IDs.
|
||||
|
||||
## 0.4.0 - 2021-06-22
|
||||
- First public release. There may be breaking changes until 1.0.0.
|
||||
|
||||
### Added
|
||||
- New Multiple Choice field (beta) to create radio and checklist groups.
|
||||
- New “Send Feedback” button to share your experience with us.
|
||||
- New model option for “Private” or “Public” API visibility.
|
||||
- The Text field now includes an optional character minimum and maximum count in Advanced Settings.
|
||||
- The Number field now includes an optional minimum, maximum and step value in Advanced Settings.
|
||||
- Prompt to complete edits to an open field when attempting to open another field.
|
||||
- Added LICENSE, CONTRIBUTING and CHANGELOG files.
|
||||
|
||||
### Changed
|
||||
- REST responses now show Atlas Content Modeler fields under an `acm_fields` property.
|
||||
- REST responses now display detailed information about media fields.
|
||||
- Changed “Text Length” to “Input Type” in the Text field. Text length is now determined in Advanced Settings. Input type lets developers choose an input or textarea field.
|
||||
- Increased the clickable area on dropdown menu items in the developer app.
|
||||
- Adjusted styling in the publisher app.
|
||||
- Refactored default value handling to improve field load times.
|
||||
- Internal REST routes now include an `atlas` prefix.
|
||||
- The README now includes a getting started guide.
|
||||
|
||||
### Fixed
|
||||
- Pressing return in the publisher app will now submit the form, instead of clearing fields.
|
||||
- Corrected an issue preventing fields from appearing in REST responses.
|
||||
- Prevented custom fields from showing in REST when `show_in_rest` is false.
|
||||
- Strings in the publisher and developer interfaces are now translatable.
|
||||
- Fixed Jest tests and add to Continuous Integration workflow.
|
||||
- Improved admin URL handling for WordPress sites hosted in a subfolder.
|
||||
- Improved plugin update error messages to include the name of the plugin reporting them.
|
||||
- Prevented a styling issue with the Content Modeler admin menu item.
|
||||
|
||||
## 0.3.0 - 2021-06-01
|
||||
### Added
|
||||
- Developers can now mark fields as required.
|
||||
- Publishers will see inline errors prompting them to fill required fields.
|
||||
|
||||
### Changed
|
||||
- Rebranded to Atlas Content Modeler.
|
||||
- Changed data storage format.
|
||||
- Changed model data option name from wpe_content_model_post_types to atlas_content_modeler_post_types.
|
||||
- Updated admin sidebar icons for settings and entries.
|
||||
- Improved Rich Text fields, including adding media support.
|
||||
- Open fields now close when another field is created or opened.
|
||||
- Media fields now have a WPGraphQL type of MediaItem instead of String to enable complete queries for media information.
|
||||
|
||||
### Fixed
|
||||
- Improved model and field list appearance at mobile screen widths.
|
||||
- Improved client-side field validation for publishers.
|
||||
- Hid duplicate page title on new entry screens.
|
||||
- Corrected headers when editing entries.
|
||||
- Protected meta fields to prevent them appearing in the Custom Fields meta box.
|
||||
|
||||
### Removed
|
||||
- Repeater fields have been removed.
|
||||
- Screen options have been removed from entry pages for content model post types.
|
||||
- Post thumbnail support has been removed for content model post types.
|
||||
|
||||
## 0.2.0 - 2021-05-07
|
||||
### Added
|
||||
- Publishers can now enter model entries via a form.
|
||||
- Developers have the option to set a field as the title field.
|
||||
- The plugin now checks for updates.
|
||||
- Model and field options now close on blur or when the escape key is pressed.
|
||||
- Model options include “Open in GraphiQL” if the WPGraphQL plugin is active.
|
||||
- Improved developer tooling for linting, including pre-commit hooks.
|
||||
|
||||
### Changed
|
||||
- The media field is restricted to single file uploads for now.
|
||||
|
||||
### Removed
|
||||
- Unused “Created on” column from the model table.
|
||||
|
||||
## 0.1.0
|
||||
- Initial version.
|
||||
File diff suppressed because it is too large
Load Diff
7
spec/fixtures/dynamic_finders/plugin_version/atom-featured-image/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/atom-featured-image/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
## Changelog ##
|
||||
|
||||
### 1.0 ###
|
||||
* Initial Release
|
||||
|
||||
### 1.0.1 ###
|
||||
* Link to settings page now available in list of installed plugins
|
||||
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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
# Copyright (C) 2022 Thomas Zwirner
|
||||
# This file is distributed under the GPL-2.0-or-later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Auto Category for Posts 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/auto-category-for-posts\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-02-09T15:01:42+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: auto-category-for-posts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Auto Category for Posts"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Automatically add a default-category to each new post before it is first saved."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Thomas Zwirner"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.thomaszwirner.de"
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:97
|
||||
#: admin/js.js:24
|
||||
msgid "Set as default"
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:100
|
||||
#: admin/js.js:26
|
||||
msgid "Default category"
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:153
|
||||
msgid "Error on saving new settings for default category."
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:184
|
||||
msgid "Given category does not exists."
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:188
|
||||
msgid "No new category-id given."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,43 @@
|
||||
# Copyright (c) $(date +'%Y') Automatic Image Uploader.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Automatic Image Uploader 1.2.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/automatic-image-uploader\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-02-21T05:53:35+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: aiu\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Automatic Image Uploader"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.iranimij.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Upload your images automatically."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Iman Heydari"
|
||||
msgstr ""
|
||||
|
||||
#: automatic-image-uploader.php:263
|
||||
msgid "Automatic image uploader"
|
||||
msgstr ""
|
||||
|
||||
#: automatic-image-uploader.php:264
|
||||
msgid "AIU"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.php:101
|
||||
msgid "The data has been saved."
|
||||
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 ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/banggood-dropshipping/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/banggood-dropshipping/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
1.0.1
|
||||
* Initial release
|
||||
@@ -0,0 +1,146 @@
|
||||
# Copyright (C) 2021 Valice
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Banner Alerts 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/banner-alerts\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-28T21:27:03-07:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: banner-alerts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: src/Admin/AdminPages.php:42
|
||||
msgid "Banner Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.banneralertsplugin.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Provides an easy interface for creating and displaying alerts or notices as a banner on a website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Valice"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.valice.com/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:55
|
||||
msgid "Display title?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:58
|
||||
#: src/Admin/AdminPages.php:77
|
||||
#: src/Admin/AdminPages.php:92
|
||||
#: src/Admin/AdminPages.php:149
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:62
|
||||
#: src/Admin/AdminPages.php:81
|
||||
#: src/Admin/AdminPages.php:96
|
||||
#: src/Admin/AdminPages.php:153
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:66
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:70
|
||||
msgid "Display the title of alert in the banner alert popup?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:74
|
||||
msgid "Display read more link?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:85
|
||||
msgid "Display read more link in the banner alert popup?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:89
|
||||
msgid "Display dismiss link?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:100
|
||||
msgid "Allow alerts to be dismissed?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:104
|
||||
msgid "Display content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:107
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:111
|
||||
msgid "Full Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:115
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:119
|
||||
msgid "Choose the display setting for the alert message in the banner alert popup"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:123
|
||||
msgid "Open/Close Speed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:126
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:130
|
||||
msgid "Faster"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:134
|
||||
msgid "Slower"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:138
|
||||
msgid "Immediate"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:142
|
||||
msgid "Choose the speed in which the alert is opened and closed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:146
|
||||
msgid "Use Slider"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:157
|
||||
msgid "Display alerts in a slider when multiple alerts are active?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:161
|
||||
msgid "Display styles"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:118
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:119
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:131
|
||||
msgid "A valid unix timestamp is required."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,138 @@
|
||||
# Copyright (C) 2022 J Hanlon | Waas Hero
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Login Module for Beaver Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/login-module-for-beaver-builder\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-03-17T06:27:47+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: login-module-for-bb\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Login Module for Beaver Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://waashero.com/login-hero-pro-for-beaver-builder/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add an easy to use Beaver Builder Login/Logout button module. Works for single sites and multisite."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "J Hanlon | Waas Hero"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://waashero.com"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:11
|
||||
msgid "Login Modal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:12
|
||||
msgid "User Login Popup Button."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:13
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:28
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:31
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:37
|
||||
msgid "Log In Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:38
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:52
|
||||
msgid "Log In"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:39
|
||||
msgid "Enter the text for the Log In button."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:44
|
||||
msgid "Log Out Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:45
|
||||
msgid "Log Out"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:46
|
||||
msgid "Enter the text for the Log Out button."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:51
|
||||
msgid "Popup Title"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:53
|
||||
msgid "Enter the text for the header in the Log In popup."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:58
|
||||
msgid "Popup Reset Password Text"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:59
|
||||
msgid "Lost your password? Click here to reset."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:60
|
||||
msgid "Enter the text for the Reset Password link in the Log In popup."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:69
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:72
|
||||
msgid "Sign In Popup"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:77
|
||||
msgid "Popup Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:89
|
||||
msgid "Popup Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:103
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:108
|
||||
msgid "Log In Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:120
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:144
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:169
|
||||
msgid "Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:132
|
||||
msgid "Log Out Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:157
|
||||
msgid "Popup Log In Button Color"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "wordpress-invoices-plugin",
|
||||
"version": "1.0.0",
|
||||
"description": "Beautiful and easy invoices for Wordpress",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"clone": "git clone https://github.com/mokuappio/serverless-invoices.git",
|
||||
"pull": "cd serverless-invoices && git pull",
|
||||
"config": "copy vue.config.js serverless-invoices\\vue.config.js && copy app.config.js serverless-invoices\\src\\config\\app.config.js",
|
||||
"build": "npm run config && cd serverless-invoices && npm i && npm run build",
|
||||
"prepare-release": "mv serverless-invoices/node_modules ../node_modules_temp && cp -r . ../bci",
|
||||
"clean-release": "rm -rf ../bci/.idea && rm -rf ../bci/.git && rm -rf ../bci/serverless-invoices/.git && mv ../node_modules_temp serverless-invoices/node_modules",
|
||||
"compress-release": "mv ../bci beautiful-custom-invoices && tar -a -c -f beautiful-custom-invoices.zip beautiful-custom-invoices && rm -rf beautiful-custom-invoices",
|
||||
"release": "npm run prepare-release && npm run clean-release && npm run compress-release"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@bitbucket.org/elevateou/wordpress-invoices-plugin.git"
|
||||
},
|
||||
"author": "Elevate OU",
|
||||
"license": "ISC",
|
||||
"homepage": "https://bitbucket.org/elevateou/wordpress-invoices-plugin#readme"
|
||||
}
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/beer-blocks/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/beer-blocks/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
## [1.0.1] - 2021-09-29
|
||||
|
||||
- Fix fa-icon block type
|
||||
|
||||
## [1.0.0] - 2021-09-29
|
||||
|
||||
- First release
|
||||
156
spec/fixtures/dynamic_finders/plugin_version/bertha-ai-free/change_log/CHANGELOG.txt
vendored
Normal file
156
spec/fixtures/dynamic_finders/plugin_version/bertha-ai-free/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
Changelog
|
||||
|
||||
V1.8.3
|
||||
- Added Tutorial Videos for All Templates to help you use Bertha so much better. An Inbuilt Academy is now on every template.
|
||||
- Added Avoid Duplication Setting for Ideas. Bertha now learns much quicker as to what you require.
|
||||
- Improved UI - We made Bertha prettier and easier to navigate.
|
||||
- Fixed Empty Ideas. Bertha thinks harder now before producing content.
|
||||
- Fixed Long Form Notice. The notice was appearing out of context.
|
||||
- Fixed Template Redirection Issue. Sometimes a user was running out of words and being sent to the wrong upgrade page. This has now been fixed.
|
||||
|
||||
V1.8.2
|
||||
- Added Lazy Load Effect for History, Favourite and Draft Tabs
|
||||
- Added Redo Button to Long Form Content
|
||||
- Updated Security
|
||||
- Improved UI
|
||||
- Fixed Divi Tinymce Double Icon Issue
|
||||
- Fixed Gutenberg Title Block
|
||||
|
||||
V1.8.1
|
||||
- Fixed Minor Bugs
|
||||
|
||||
V1.8.0
|
||||
- Improved UI
|
||||
- Added Report
|
||||
- Added Word Limit for Specific Site
|
||||
- Fixed Bertha Icon Click Issue
|
||||
- Fixed Search Icon in Long Form
|
||||
- Changed Descriptions for templates and Categories
|
||||
- Added Header to all Bertha Pages
|
||||
- Fixed Category button conflict with Atarim
|
||||
- Fixed Empty Long Form Content
|
||||
- Fixed Minor Bugs
|
||||
|
||||
|
||||
V1.7.1
|
||||
- Improved UI
|
||||
- Fixed Bertha Icons for Elementor and Visual Composer
|
||||
- Fixed Notice if Cursor is not in focus in any input field while clicking Idea for Divi, Elementor and Visual Composer
|
||||
- Fixed Paragrapg Generator Taxonomies and History Filter
|
||||
|
||||
V1.7.0
|
||||
- Added Compatibility with Atarim
|
||||
- Added Frontend Bertha
|
||||
- Updated Icons UI
|
||||
- Fixed Minor Bugs
|
||||
|
||||
V1.6.0
|
||||
- Improved UI
|
||||
- Improved long form content
|
||||
- Fixed Compatibility issue with Divi Latest Version
|
||||
- Fixed Compatibility issue with Yoast SEO
|
||||
- Added Bertha Icons on Every Admin Page
|
||||
- Modified Edit Draft Flow
|
||||
- Added Template Sorting Categories
|
||||
- Changed Blurb Generator Name
|
||||
- Added Trash
|
||||
- Added AIDA Marketing Framework Template
|
||||
- Added SEO City Based Pages Template
|
||||
- Added Business or Product Name Template
|
||||
- Added Before, After and Bridge Template
|
||||
- Added PAS Framework Template
|
||||
- Added FAQs List Template
|
||||
- Added FAQ Answers Template
|
||||
- Added Content Summary Template
|
||||
- Added Contact Form Blurb Template
|
||||
- Added SEO Keyword Suggestions Template
|
||||
- Added Evil Bertha Template
|
||||
|
||||
V1.5.0
|
||||
- Added Bertha Long Form Content
|
||||
- Fixed Launch Bertha Notice Text
|
||||
- Fixed Minor Bugs
|
||||
- Added new Icon styling and Improved UI
|
||||
|
||||
V1.4.0
|
||||
- Added Bertha Everywhere
|
||||
- Added Seo Title Tag Template
|
||||
- Added Seo Description Tag Template
|
||||
- Added Additional Title Type for Section Title Generator Template
|
||||
|
||||
V1.3.0
|
||||
- Added Copy & Favourites
|
||||
- Fixed License Activation Flow
|
||||
- Fixed Idea CPT Visibility from SEO Plugins
|
||||
- Added Notice if Cursor is not in focus in any input field while clicking Idea
|
||||
|
||||
V1.2.0
|
||||
- Updated Full-on About Us Page Template
|
||||
- Added Company Mission & Vision Template
|
||||
|
||||
V1.1.2
|
||||
- Modified compatibility issue with Visual Composer
|
||||
- Fixed structural bugs
|
||||
|
||||
V1.1.1
|
||||
- Fixed Idea CPT Visibility Issue
|
||||
- Fixed License Redirection Modal Issue
|
||||
- Fixed Exclude Idea CPT from Search
|
||||
- Fixed Backslash Issue with Idea Generation
|
||||
- Fixed Divi Compatibility Issue
|
||||
|
||||
V1.1.0
|
||||
- Fixed Empty Idea Generation
|
||||
- Fixed bootstrap compatibility issues
|
||||
|
||||
V1.0.9
|
||||
- Fixed bootstrap compatibility issues
|
||||
|
||||
V1.0.8
|
||||
- Added partial compatibility with Thrive Architect
|
||||
- Added Monthly Reset Token
|
||||
- Fixed Zapier Email event for 95% word Limit
|
||||
- Fixed compatibility with Beaver Builder
|
||||
- Fixed Redirection Flow after License Activation
|
||||
- Minor Bug Fixes
|
||||
|
||||
V1.0.7
|
||||
- Fixed Tooltips
|
||||
- Added partial compatibility with Beaver Builder
|
||||
- Added partial compatibility with Visual Composer
|
||||
- Added partial compatibility with Oxygen Builder
|
||||
- Minor Bug Fixes
|
||||
|
||||
|
||||
V1.0.6
|
||||
- Fixed Premium Tag Flow
|
||||
- Fixed Live Search Filter Flow
|
||||
- Added Placeholder for Live Search Filter
|
||||
- Added Character Limit for All Bertha AI Inputs
|
||||
- Fixed Descriptions hide issue while Back Flow
|
||||
- Modified Redirection Flow After Onboarding Process
|
||||
- Added Zapier Email Event for 1% and 95% Word Limit
|
||||
- Fixed Visibility of Upgrade Now button in General Setting
|
||||
- Changed Join The Facebook Community Button Link
|
||||
- Changed Become Bertha's Partner Button Link
|
||||
- Changed Post a Review Button Link
|
||||
- Added Latest Vesion in License Page
|
||||
- Fixed Bertha AI Menu Blank Redirection
|
||||
- Fixed Word Limit Restriction for templates
|
||||
- Fixed Buy Url for Limit Exceed
|
||||
- Added Redirect Url to Ran Out of Words Page for Limit Exceeded Templates
|
||||
- Added Notification for Empty History Filter Result
|
||||
- Fixed Suggest a Template Hide from Live Search
|
||||
|
||||
|
||||
V1.0.5
|
||||
- Added Template Access for Free & Pro Version Respectively
|
||||
- Added Live Search Filter for template Selection
|
||||
- Fixed Empty Ideas
|
||||
- Fixed Syntax Errors
|
||||
- Added Class to Upgrade Button
|
||||
- Changed Upgrade button Link
|
||||
- Added Notice for Empty History Tab
|
||||
- Added Premium Tag for Premium Templates
|
||||
- Changed Premium Templates Notice for Free Version
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR BeTheme
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BeThemesMe 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-09 11:42+0530\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: includes/elementor-elements/features.php:42
|
||||
#: includes/elementor-elements/features.php:87
|
||||
msgid "Our Process"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:96
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:99
|
||||
msgid "Enter the title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:105
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:108
|
||||
msgid "Enter the description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:115
|
||||
msgid "Process Tabs"
|
||||
msgstr ""
|
||||
71
spec/fixtures/dynamic_finders/plugin_version/better-comments/change_log/changelog.txt
vendored
Normal file
71
spec/fixtures/dynamic_finders/plugin_version/better-comments/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
= 1.4.1 (2022-04-21) =
|
||||
* Add - add ALT text to gravatar images to solve SEO issues
|
||||
* Enhancement - better replytocom handling
|
||||
* Enhancement - code refactoring
|
||||
* Enhancement - rename sections for consistency
|
||||
* Fix - ensure $screen is defined when viewing the backend
|
||||
|
||||
= 1.4 (2022-03-03) =
|
||||
* Fix - optimize quicktags placement for Quick Reply on the backend's Comments page
|
||||
* Fix - ensure quicktags bar is displayed inline for all themes
|
||||
* Fix - local avatars now display correctly on the frontend, with a fallback on a custom default avatar, then gravatar as last resort
|
||||
* Fix - local avatars now display correctly in the backend: dashboard, edit comments pages
|
||||
* Fix - local avatars no longer take over other avatars on Settings > Discussion
|
||||
* Fix - local avatars (even on localhost!) now display correctly on Settings > Discussion
|
||||
* Add - add padding setting to reply links
|
||||
* Add - add setting to remove text-decoration from reply links
|
||||
* Enhancement - only apply styles for comment form if comments are enabled and the form shown
|
||||
* Enhancement - clarify the options names for the comment policy option
|
||||
* Enhancement - better custom quicktags scenario
|
||||
* Enhancement - better replytocom handling
|
||||
* Enhancement - better styles handling
|
||||
* Enhancement - better options handling
|
||||
* Update - Freemius SDK
|
||||
* Update - CF SDK
|
||||
|
||||
= 1.3 (2020-12-24) =
|
||||
|
||||
* New - introduce new sliders style
|
||||
* New - add better looking icons to the admin page, with dual colors
|
||||
* New - add new admin menu icon
|
||||
* New - translations and POT file
|
||||
* Enhancement - move menu underneath Comments menu for easy access and consistency
|
||||
* Enhancement - ensure avatar shapes are only applied to the comments avatars
|
||||
* Enhancement - enqueue and tie inline styles to the (child) theme
|
||||
* Enhancement - add further translatable strings
|
||||
* Performance - replace the font file with standalone SVG icons (this shaved 3.7 MB off the plugin)
|
||||
* Fix - display uploaded avatar as default if it is set
|
||||
* Update - CF SDK
|
||||
|
||||
= 1.2 (2020-11-05) =
|
||||
|
||||
* New - add new plugin icon, derived from the banner
|
||||
* New - add new tab colors
|
||||
* Fix - fix backend quicktags display on the comments and dashboard pages
|
||||
* Enhancement - ensure border-radius is not set when an avatar shape is set
|
||||
* Enhancement - only output avatar code if a shape has been set
|
||||
* Enhancement - add missing default colors for quicktags
|
||||
* Enhancement - improve frontend loading times by 40%
|
||||
* Enhancement - rename functions for consistency
|
||||
* Enhancement - refactor CSS
|
||||
* Update - Freemius SDK
|
||||
* Update - CF SDK
|
||||
|
||||
= 1.1 (2020-10-12) =
|
||||
|
||||
* New - add default colors and palettes for color controls
|
||||
* New - set maximum and minimum comment length
|
||||
* New - set reply title
|
||||
* New - set submit button label
|
||||
* New - add brand-new Avatars section
|
||||
* New - add more shapes for avatars
|
||||
* New - upload a sitewide default avatar
|
||||
* Fix - fix static methods for comments oEmbeds
|
||||
* Enhancement - reorganize Comments tab, add a new Avatars section
|
||||
* Enhancement - display our icon in the WP Admin sidebar
|
||||
* Enhancement - adjust readme.txt
|
||||
* Enhancement - ensure emojis are not intercepted by WP emoji functions on our settings page
|
||||
|
||||
= 1.0 (2020-10-08) =
|
||||
|
||||
Initial release.
|
||||
5214
spec/fixtures/dynamic_finders/plugin_version/bike-rental/translation_file/languages/bike-rental-ru_RU.po
vendored
Normal file
5214
spec/fixtures/dynamic_finders/plugin_version/bike-rental/translation_file/languages/bike-rental-ru_RU.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "buddypress-birthdays",
|
||||
"version": "1.6.0",
|
||||
"url": "https://github.com/vapvarun/buddypress-birthdays",
|
||||
"license": "GPL-2.0+",
|
||||
"description": "buddypress-birthdays",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-checktextdomain": "^1.0.1",
|
||||
"grunt-wp-i18n": "^1.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/vapvarun/buddypress-birthdays"
|
||||
},
|
||||
"dependencies": {
|
||||
"load-grunt-tasks": "^3.5.2",
|
||||
"npm": "^8.1.4"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
12
spec/fixtures/dynamic_finders/plugin_version/blaze-checkout/composer_file/package.json
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/blaze-checkout/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "blaze-woocommerce-plugin",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"repository": "git@github.com:Bureau-Inc/blaze-woocommerce-plugin",
|
||||
"author": "Blaze <palash@bureau.id>",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@prettier/plugin-php": "^0.17.6",
|
||||
"prettier": "^2.5.1"
|
||||
}
|
||||
}
|
||||
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,14 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block Editor Gallery Slider 1.0\n"
|
||||
"Report-Msgid-Bugs-To: hello@krasenslavov.com \n"
|
||||
"Last-Translator: Krasen Slavov <hello@krasenslavov.com>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2022-02-14 10:44+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/"
|
||||
@@ -0,0 +1,14 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block Editor Navigator 1.0\n"
|
||||
"Report-Msgid-Bugs-To: hello@krasenslavov.com \n"
|
||||
"Last-Translator: Krasen Slavov <hello@krasenslavov.com>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2022-02-14 10:44+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/"
|
||||
@@ -0,0 +1,14 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block Search and Replace 1.0\n"
|
||||
"Report-Msgid-Bugs-To: hello@krasenslavov.com \n"
|
||||
"Last-Translator: Krasen Slavov <hello@krasenslavov.com>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2022-02-14 10:44+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/"
|
||||
@@ -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 ""
|
||||
16
spec/fixtures/dynamic_finders/plugin_version/block-xray-attributes/composer_file/package.json
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/block-xray-attributes/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "block-xray-attributes",
|
||||
"version": "1.1.1",
|
||||
"description": "Shows the attributes of the current Gutenberg block in the Document sidebar.",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"dev": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Sal Ferrarello",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^20.0.1"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 02-12-2021 =
|
||||
* Initial release
|
||||
1304
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/translation_file/languages/blockart.pot
vendored
Normal file
1304
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/translation_file/languages/blockart.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
77
spec/fixtures/dynamic_finders/plugin_version/blockify/composer_file/package.json
vendored
Normal file
77
spec/fixtures/dynamic_finders/plugin_version/blockify/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
{
|
||||
"name": "blockify-plugin",
|
||||
"version": "0.0.3",
|
||||
"description": "Blockify plugin.",
|
||||
"author": "Blockify",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "src/index.tsx",
|
||||
"scripts": {
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start --hot",
|
||||
"rename:tsx": "./bin/build-tsx.js",
|
||||
"oslllo-svg-fixer": "node node_modules/oslllo-svg-fixer/src/cli.js -s assets/svg/feather -d assets/svg/feather-fix",
|
||||
"clean": "npm run rename:tsx",
|
||||
"build": "wp-scripts build",
|
||||
"build:public": "wp-scripts build wp-scripts build --webpack-src-dir=bin --config=webpack.public.config.js --output-path=build/public && npm run rename:tsx",
|
||||
"build:zip": "wp-scripts plugin-zip",
|
||||
"tsx": "wp-scripts build assets/js/index.tsx --webpack-src-dir=assets/js --output-path=assets/js/min"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^6.1.1",
|
||||
"@fortawesome/free-regular-svg-icons": "^6.1.1",
|
||||
"@glidejs/glide": "^3.5.2",
|
||||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
|
||||
"@react-google-maps/api": "^2.10.3",
|
||||
"@srexi/purecounterjs": "^1.5.0",
|
||||
"@types/jquery": "^3.5.14",
|
||||
"@wordpress/api-fetch": "^6.3.0",
|
||||
"@wordpress/block-editor": "^8.0.13",
|
||||
"@wordpress/blocks": "^11.1.5",
|
||||
"@wordpress/components": "^19.2.0",
|
||||
"@wordpress/compose": "^5.0.7",
|
||||
"@wordpress/data": "^6.3.0",
|
||||
"@wordpress/dependency-extraction-webpack-plugin": "^3.6.0",
|
||||
"@wordpress/dom-ready": "^3.6.0",
|
||||
"@wordpress/edit-post": "^6.3.0",
|
||||
"@wordpress/editor": "^12.5.1",
|
||||
"@wordpress/element": "^4.0.4",
|
||||
"@wordpress/hooks": "^3.6.0",
|
||||
"@wordpress/i18n": "^4.2.4",
|
||||
"@wordpress/icons": "^6.1.1",
|
||||
"@wordpress/keycodes": "^3.2.4",
|
||||
"@wordpress/plugins": "^4.4.0",
|
||||
"@wordpress/primitives": "^3.9.0",
|
||||
"@wordpress/scripts": "^21.0.1",
|
||||
"@wordpress/server-side-render": "^3.10.0",
|
||||
"classnames": "^2.3.1",
|
||||
"clean-webpack-plugin": "^4.0.0",
|
||||
"copy-webpack-plugin": "^10.2.4",
|
||||
"filemanager-webpack-plugin": "^7.0.0",
|
||||
"fs": "^0.0.1-security",
|
||||
"get-scrollbar-width": "^1.0.5",
|
||||
"glob": "^8.0.3",
|
||||
"google-map-react": "^2.1.10",
|
||||
"html-react-parser": "^1.4.5",
|
||||
"jquery": "github:jquery/jquery",
|
||||
"json-to-css": "^0.1.0",
|
||||
"lodash": "^4.17.21",
|
||||
"mini-css-extract-plugin": "^2.6.0",
|
||||
"node-fetch": "^3.2.3",
|
||||
"node-sass-glob-importer": "^5.3.2",
|
||||
"number-to-words": "^1.2.4",
|
||||
"oslllo-svg-fixer": "^2.1.1",
|
||||
"postcss-preset-env": "^7.4.3",
|
||||
"react-google-autocomplete": "^2.6.1",
|
||||
"remove-files-webpack-plugin": "^1.5.0",
|
||||
"run-for-every-file": "^1.1.0",
|
||||
"style-object-to-css-string": "^1.0.1",
|
||||
"svgo": "^2.8.0",
|
||||
"uglifyjs-folder": "^3.1.2",
|
||||
"webpack-bundle-analyzer": "^4.5.0",
|
||||
"webpack-remove-empty-scripts": "^0.7.2",
|
||||
"wp-pot": "^1.10.2"
|
||||
}
|
||||
}
|
||||
923
spec/fixtures/dynamic_finders/plugin_version/blockify/translation_file/assets/lang/blockify.pot
vendored
Normal file
923
spec/fixtures/dynamic_finders/plugin_version/blockify/translation_file/assets/lang/blockify.pot
vendored
Normal file
@@ -0,0 +1,923 @@
|
||||
# Copyright (C) 2022 Blockify
|
||||
# This file is distributed under the GPLv2-or-Later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Blockify 0.3.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blockify\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-09-03T14:11:40+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: blockify\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "Blockify"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://blockifywp.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Lightweight block library for full site editing themes."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://blockifywp.com/about/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/blocks.php:49
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/blocks/breadcrumbs.php:64
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: includes/blocks/form.php:62
|
||||
msgid "Thank you for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/blocks/form.php:146
|
||||
msgid "Invalid nonce."
|
||||
msgstr ""
|
||||
|
||||
#: includes/blocks/form.php:206
|
||||
msgid "User with email already exists."
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:38
|
||||
msgctxt "Block Pattern General Name"
|
||||
msgid "Block Patterns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:39
|
||||
msgctxt "Block Pattern Singular Name"
|
||||
msgid "Block Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:40
|
||||
msgid "Block Patterns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:41
|
||||
#: includes/patterns.php:68
|
||||
msgid "Block Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:42
|
||||
msgid "Item Archives"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:43
|
||||
msgid "Item Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:44
|
||||
#: includes/patterns.php:107
|
||||
msgid "Parent Item:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:45
|
||||
#: includes/patterns.php:105
|
||||
msgid "All Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:46
|
||||
#: includes/patterns.php:109
|
||||
msgid "Add New Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:47
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:48
|
||||
msgid "New Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:49
|
||||
#: includes/patterns.php:110
|
||||
msgid "Edit Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:50
|
||||
#: includes/patterns.php:111
|
||||
msgid "Update Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:51
|
||||
#: includes/patterns.php:112
|
||||
msgid "View Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:52
|
||||
msgid "View Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:53
|
||||
msgid "Search Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:54
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:55
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:56
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:57
|
||||
msgid "Set featured image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:58
|
||||
msgid "Remove featured image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:59
|
||||
msgid "Use as featured image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:60
|
||||
msgid "Place into item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:61
|
||||
msgid "Uploaded to this item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:62
|
||||
#: includes/patterns.php:120
|
||||
msgid "Items list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:63
|
||||
#: includes/patterns.php:121
|
||||
msgid "Items list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:64
|
||||
msgid "Filter items list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:69
|
||||
msgid "Block Pattern Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:102
|
||||
msgctxt "Pattern Category General Name"
|
||||
msgid "Pattern Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:103
|
||||
msgctxt "Pattern Category Singular Name"
|
||||
msgid "Pattern Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:104
|
||||
msgid "Pattern Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:106
|
||||
msgid "Parent Item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:108
|
||||
msgid "New Item Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:113
|
||||
msgid "Separate items with commas"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:114
|
||||
msgid "Add or remove items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:115
|
||||
msgid "Choose from the most used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:116
|
||||
msgid "Popular Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:117
|
||||
msgid "Search Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:118
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:119
|
||||
msgid "No items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:148
|
||||
#: includes/patterns.php:149
|
||||
msgid "Patterns"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:289
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/patterns.php:376
|
||||
msgid "Dark "
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/accordion/index.js:1
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/accordion/index.js:1
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/accordion/index.js:1
|
||||
msgid "Accordion item"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/accordion/index.js:1
|
||||
msgid "Item title"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/breadcrumbs/index.js:1
|
||||
msgid "Home / Page"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/index.js:1
|
||||
msgid "Counter Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/index.js:1
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/index.js:1
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/index.js:1
|
||||
msgid "Duration (seconds)"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/index.js:1
|
||||
msgid "Delay (seconds)"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/index.js:1
|
||||
msgid "HTML Tag"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/index.js:1
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a custom text input field."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "First name"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a first name input field."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Last name"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a last name input field."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays an email input field."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Email address"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Newsletter"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Sign up"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a website URL input field."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "https://example.com/"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a phone number input field."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Telephone"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Call"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a number input field."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a password input field."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Text Area"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a custom text area field."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Leave a message"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Input"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Show Label"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid " field"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Show icon"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a checkbox field"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Terms"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Tick"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Agree"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Agree to terms and conditions."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a submit button"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Submit settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Button width"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Enable reCAPTCHA v3"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Enter your Google reCAPTCHA v2 API key to enable the recaptcha field. Get your key here https://google.com/recaptcha/admin/site/"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "reCaptcha v2"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Displays a Google reCaptcha v2 field. (v3 can be enabled with the Submit block). Enter your API Key from the Blockify global settings tab on any page or post."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Google"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Recaptcha"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "reCaptcha Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Color Scheme"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Google reCaptcha V3"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Default (current page/post)"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Form Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Create WordPress user"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "If enabled, will attempt to register a new WordPress subscriber with the information provided."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Success page"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Select which page users should be redirected to after a successful form submission."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Success message"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/index.js:1
|
||||
msgid "Message to display to users after a successful form submission."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Marker"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Map Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Light style"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Ultra Light"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Subtle greyscale"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "WY"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Dark style"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Night mode"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Shades of grey"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Assassins Creed"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Modest"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/index.js:1
|
||||
msgid "Toggle dark mode preview"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/index.js:1
|
||||
msgid "Flip Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/index.js:1
|
||||
msgid "Flip Vertical"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/index.js:1
|
||||
msgid "Icon Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/index.js:1
|
||||
msgid "Select Icon Set"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/index.js:1
|
||||
msgid "Select Icon"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/index.js:1
|
||||
msgid "Icon Width"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/index.js:1
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/index.js:1
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/index.js:1
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/index.js:1
|
||||
msgid "Slide"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/index.js:1
|
||||
msgid "Slider Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/index.js:1
|
||||
msgid "Per View"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/index.js:1
|
||||
msgid "Number of slides to display in the viewport on desktop."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/index.js:1
|
||||
msgid "Show arrows"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/index.js:1
|
||||
msgid "Show dots"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/index.js:1
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/index.js:1
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/tabs/index.js:1
|
||||
msgid "Tab title"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/tabs/index.js:1
|
||||
msgid "Tab link colors"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/tabs/index.js:1
|
||||
msgid "Tab link"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/tabs/index.js:1
|
||||
msgid "Tab link active"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/tabs/index.js:1
|
||||
msgid "Tab link background"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/tabs/index.js:1
|
||||
msgid "Tab link background active"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/accordion/block.json
|
||||
#: src/blocks/accordion/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Accordion"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/accordion/block.json
|
||||
#: src/blocks/accordion/block.json
|
||||
msgctxt "block description"
|
||||
msgid "A simple, customizable, accordion/faq block."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/accordion/block.json
|
||||
#: src/blocks/accordion/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "Faq"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/accordion/block.json
|
||||
#: src/blocks/accordion/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/breadcrumbs/block.json
|
||||
#: src/blocks/breadcrumbs/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Breadcrumbs"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/breadcrumbs/block.json
|
||||
#: src/blocks/breadcrumbs/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Displays page and post breadcrumbs. This block will be removed if WordPress core adds a breadcrumbs block."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/breadcrumbs/block.json
|
||||
#: src/blocks/breadcrumbs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "links"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/block.json
|
||||
#: src/blocks/counter/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Counter"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/block.json
|
||||
#: src/blocks/counter/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Counts up or down from one number to another."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/block.json
|
||||
#: src/blocks/counter/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "countdown"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/block.json
|
||||
#: src/blocks/counter/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "timer"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/block.json
|
||||
#: src/blocks/counter/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "count"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/counter/block.json
|
||||
#: src/blocks/counter/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "clock"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/block.json
|
||||
#: src/blocks/form/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/block.json
|
||||
#: src/blocks/form/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Displays a form block. Please note that this block is still experimental."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/block.json
|
||||
#: src/blocks/form/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/block.json
|
||||
#: src/blocks/form/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "Newsletter"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/block.json
|
||||
#: src/blocks/form/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/form/block.json
|
||||
#: src/blocks/form/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/block.json
|
||||
#: src/blocks/google-map/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Google Map"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/google-map/block.json
|
||||
#: src/blocks/google-map/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Easy to use, customizable Google Map block. Also supports dark mode."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/block.json
|
||||
#: src/blocks/icon/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/block.json
|
||||
#: src/blocks/icon/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Lightweight, fully customizable SVG icon block. Default icon sets include Dashicons, Social icons and WordPress editor icons. Renders an inline SVG, no icon fonts are loaded. Supports gradients and shadows."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/block.json
|
||||
#: src/blocks/icon/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "font awesome"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/block.json
|
||||
#: src/blocks/icon/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "fontawesome"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/block.json
|
||||
#: src/blocks/icon/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "dashicons"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/icon/block.json
|
||||
#: src/blocks/icon/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "svg"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/block.json
|
||||
#: src/blocks/slider/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Slider"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/block.json
|
||||
#: src/blocks/slider/block.json
|
||||
msgctxt "block description"
|
||||
msgid "A simple, lightweight vanilla JS slider block."
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/block.json
|
||||
#: src/blocks/slider/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "slider"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/slider/block.json
|
||||
#: src/blocks/slider/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "carousel"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/tabs/block.json
|
||||
#: src/blocks/tabs/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/tabs/block.json
|
||||
#: src/blocks/tabs/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Simple and useful tabbed content section block. Can also be used for creating pricing table switches."
|
||||
msgstr ""
|
||||
2447
spec/fixtures/dynamic_finders/plugin_version/blockons/translation_file/lang/blockons.pot
vendored
Normal file
2447
spec/fixtures/dynamic_finders/plugin_version/blockons/translation_file/lang/blockons.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "luckies",
|
||||
"version": "2.0.1",
|
||||
"description": "",
|
||||
"main": "./src/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "Dragi Postolovski",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
||||
"@babel/preset-env": "^7.16.11",
|
||||
"@babel/preset-react": "^7.16.7",
|
||||
"@wordpress/scripts": "20.0.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,456 @@
|
||||
# Copyright (C) 2022 Wpmet
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Blocks for ShopEngine - Woocommerce Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/blocks-for-shopengine\n"
|
||||
"POT-Creation-Date: 2022-03-31 06:55:31+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"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: blocks/product-review/dummy-review.php:54
|
||||
msgid "1"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:55
|
||||
msgid "2"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:56
|
||||
msgid "3"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:57
|
||||
msgid "4"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:10
|
||||
#: blocks/product-review/dummy-review.php:58
|
||||
msgid "5"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/add-to-cart/screen.php:16
|
||||
msgid "To see the add to cart button , please set stock status as instock for - ."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/additional-information/screen.php:4
|
||||
#: blocks/checkout-form-additional/screen.php:38
|
||||
msgid "Additional information"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/advanced-search/screen.php:32
|
||||
msgid "Search for Products..."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/archive-description/screen.php:26
|
||||
msgid ""
|
||||
"This is a dummy archive description based paragraph. It only appears on "
|
||||
"editor page and will help you to customize your actual description"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/archive-result-count/screen.php:9
|
||||
msgid "Showing all results"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:51
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:67
|
||||
msgid "Remove this item"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:81
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:96
|
||||
msgid "Available on backorder"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:103
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:110
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-table/cart.php:138 blocks/cart-totals/screen.php:34
|
||||
#: blocks/cart-totals/screen.php:35
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-totals/screen.php:73 blocks/cart-totals/screen.php:74
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-totals/screen.php:93
|
||||
#. translators: %s location.
|
||||
msgid "(estimated for %s)"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cart-totals/screen.php:121 blocks/cart-totals/screen.php:122
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-coupon-form/screen.php:35
|
||||
msgid "Have a coupon?"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-coupon-form/screen.php:37
|
||||
msgid "Click here to enter your code"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-coupon-form/screen.php:43
|
||||
msgid "If you have a coupon code, please apply it below."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-coupon-form/screen.php:47
|
||||
msgid "Coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-coupon-form/screen.php:52
|
||||
msgid "Apply coupon"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-form-billing/screen.php:47
|
||||
msgid "Billing & Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-form-billing/screen.php:51
|
||||
msgid "Billing details"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-form-billing/screen.php:79
|
||||
msgid "Create an account?"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-form-shipping/screen.php:36
|
||||
msgid "Ship to a different address?"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-payment/screen.php:30
|
||||
msgid ""
|
||||
"Your cart is empty, please add some simple product in cart and then come "
|
||||
"back to editor to see checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-review-order/screen.php:4
|
||||
msgid "Your order"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-review-order/screen.php:21
|
||||
msgid "Some hardcoded html only for editor...."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/checkout-shipping-methods/screen.php:25
|
||||
msgid "Some hardcoded html for editor only for checkout shipping method widget!."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:89
|
||||
msgid "%"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:104 utils/helper.php:322
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:110 utils/helper.php:323
|
||||
msgid "Hours"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:115
|
||||
msgid "Min"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:120
|
||||
msgid "Sec"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:157
|
||||
msgid "Available:"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:161
|
||||
msgid "Sold:"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/deal-products/screen.php:173
|
||||
msgid "No deal products available"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:3
|
||||
msgid "Default sorting"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:4
|
||||
msgid "Sort by popularity"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:5
|
||||
msgid "Sort by average rating"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:6
|
||||
msgid "Sort by latest"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:7
|
||||
msgid "Sort by price: low to high"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:8
|
||||
msgid "Sort by price: high to low"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:9
|
||||
msgid "Sort by title: a to z"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:10
|
||||
msgid "Sort by title: z to a"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/filter-orderby/screen.php:24 blocks/filter-orderby/screen.php:35
|
||||
msgid "Shop order"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-categories/screen.php:26
|
||||
msgid "Category:"
|
||||
msgid_plural "Categories:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: blocks/product-category-lists/screen.php:41
|
||||
msgid "%s product"
|
||||
msgid_plural "%s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: blocks/product-category-lists/screen.php:64
|
||||
msgid "Add some category"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-excerpt/screen.php:21
|
||||
msgid ""
|
||||
"Dummy short description only for editor preview mode if and only if the "
|
||||
"editor selected product has no short description."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-image/screen.php:31
|
||||
msgid "% OFF"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-list/screen.php:231 utils/helper.php:268
|
||||
msgid "Sale!"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-list/screen.php:256
|
||||
msgid ","
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-list/screen.php:307
|
||||
msgid "No product found."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-rating/screen.php:23
|
||||
msgid "%s customer review"
|
||||
msgid_plural "%s customer reviews"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:4
|
||||
msgid "2 reviews for"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:4
|
||||
msgid "(dummy reviews, only for preview)"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:10
|
||||
msgid "Rated 5 out of 5"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:10
|
||||
#: blocks/product-review/dummy-review.php:27
|
||||
msgid "Rated"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:10
|
||||
#: blocks/product-review/dummy-review.php:27
|
||||
msgid "out of 5"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:12
|
||||
msgid "Jhon Doe"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:13
|
||||
#: blocks/product-review/dummy-review.php:30
|
||||
msgid "(verified owner)"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:27
|
||||
msgid "Rated 3 out of 5"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:29
|
||||
msgid "David"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:31
|
||||
msgid "May 26, 2021"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:47
|
||||
msgid "Cancel reply"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:51
|
||||
msgid "Your rating"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:51
|
||||
#: blocks/product-review/dummy-review.php:71
|
||||
msgid "*"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:62
|
||||
msgid "Rate…"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:63
|
||||
msgid "Perfect"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:64
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:65
|
||||
msgid "Average"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:66
|
||||
msgid "Not that bad"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:67
|
||||
msgid "Very poor"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:71
|
||||
msgid "Your review"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-review/dummy-review.php:75
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-sku/screen.php:10
|
||||
msgid "This product has no sku"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-sku/screen.php:30
|
||||
msgid "SKU:"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-sku/screen.php:34
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-stock/screen.php:57
|
||||
msgid "On backorder"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-stock/screen.php:59
|
||||
msgid "In Stock"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-stock/screen.php:61
|
||||
msgid "Out of stock"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-tags/screen.php:13
|
||||
msgid "This product has no tags"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/product-tags/screen.php:25
|
||||
msgid "TAG:"
|
||||
msgid_plural "TAGs:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: blocks/recently-viewed-products/screen.php:76
|
||||
msgid "Ends in "
|
||||
msgstr ""
|
||||
|
||||
#: blocks/related/screen.php:60
|
||||
msgid "Some hardcoded html only for editor"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/return-to-shop/screen.php:9
|
||||
msgid "Return to shop"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/up-sells/screen.php:44
|
||||
msgid "Some hardcoded html for only editor....."
|
||||
msgstr ""
|
||||
|
||||
#: shopengine-gutenberg-addon.php:102
|
||||
msgid "Shopengine Gutenberg Addon requires ShopEngine version 2.1.1 or higher. "
|
||||
msgstr ""
|
||||
|
||||
#: shopengine-gutenberg-addon.php:119
|
||||
msgid "Activate ShopEngine"
|
||||
msgstr ""
|
||||
|
||||
#: shopengine-gutenberg-addon.php:122
|
||||
msgid "Install ShopEngine"
|
||||
msgstr ""
|
||||
|
||||
#: shopengine-gutenberg-addon.php:130
|
||||
msgid ""
|
||||
"Shopengine Gutenberg Addon requires ShopEngine, which is currently NOT "
|
||||
"RUNNING. "
|
||||
msgstr ""
|
||||
|
||||
#: utils/helper.php:324
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#: utils/helper.php:325
|
||||
msgid "Seconds"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Blocks for ShopEngine - Woocommerce Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpmet.com/plugin/shopengine"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"ShopEngine Gutenberg Addon is the most-complete WooCommerce template "
|
||||
"builder for Elementor. It helps you build and customize the single product "
|
||||
"page, cart page, archive page, checkout page, order page, my account page, "
|
||||
"and thank-you page from scratch. It also packed with product comparison, "
|
||||
"wishlist, quick view, and variation swatches etc."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Wpmet"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpmet.com"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
204
spec/fixtures/dynamic_finders/plugin_version/boostimer/translation_file/languages/boostimer.pot
vendored
Normal file
204
spec/fixtures/dynamic_finders/plugin_version/boostimer/translation_file/languages/boostimer.pot
vendored
Normal file
@@ -0,0 +1,204 @@
|
||||
# Copyright (c) 2021 Zabir Anik. All Rights Reserved.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Boostimer - Product Availability Countdown And Scheduler For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/xaviranik/boostimer/issues\n"
|
||||
"Last-Translator: zabiranik.me@gmail.com\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-11-27T16:21:25+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: boostimer\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Boostimer - Product Availability Countdown And Scheduler For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "From sale to stock, Store-wise availability management in a breeze."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Zabir Anik"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://zabiranik.com"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:172
|
||||
msgid "View Boostimer documentation"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:172
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:173
|
||||
msgid "Visit Boostimer forums"
|
||||
msgstr ""
|
||||
|
||||
#: boostimer.php:173
|
||||
msgid "Community support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menu.php:32
|
||||
#: includes/Admin/Menu.php:33
|
||||
msgid "Boostimer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/ProductData/Sale.php:52
|
||||
msgid "Show sale timer?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/ProductData/Sale.php:55
|
||||
msgid "Show sale countdown timer if sale price and schedules are set"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:77
|
||||
#: src/pages/Settings.js:63
|
||||
msgid "Settings have been updated successfully"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:121
|
||||
msgid "Sale timer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:127
|
||||
msgid "Sale timer title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:135
|
||||
msgid "Is sale timer enabled.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:144
|
||||
msgid "Stock timer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:150
|
||||
msgid "Stock timer title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:158
|
||||
msgid "Is stock timer enabled.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Frontend/SaleTimer.php:22
|
||||
#: src/pages/Settings.js:153
|
||||
msgid "Sale ends in:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Frontend/StockTimer.php:22
|
||||
#: src/pages/Settings.js:170
|
||||
msgid "Expected restock in:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:20
|
||||
msgid "Show restock timer?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:23
|
||||
msgid "Show restock countdown timer"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:31
|
||||
msgid "Stock available after"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/stock-product-data.php:35
|
||||
msgid "Sets probable restock date"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:34
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:38
|
||||
msgid "Hours"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:42
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#: templates/countdown-timer.php:46
|
||||
msgid "Seconds"
|
||||
msgstr ""
|
||||
|
||||
#: templates/notice.php:24
|
||||
msgid "Boostimer is inactive"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
|
||||
#: templates/notice.php:33
|
||||
msgid "%1$sLooks like, WooCommerce is not installed.%2$s The %3$sWooCommerce plugin%4$s must be activated for Boostimer to rock. Please %5$sinstall WooCommerce »%6$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
|
||||
#: templates/notice.php:42
|
||||
msgid "%1$sLooks like, WooCommerce is deactivated.%2$s The %3$sWooCommerce plugin%4$s must be activated for Boostimer to rock. Please %5$sactivate WooCommerce%6$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Sidebar.js:41
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Home.js:11
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:58
|
||||
msgid "Saving settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:68
|
||||
msgid "Settings could not be saved. Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:107
|
||||
msgid "Show Countdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:114
|
||||
msgid "Show Sale Countdown Timer"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:115
|
||||
msgid "Enable this to show countdown timer for sale duration on single product"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:129
|
||||
msgid "Show Stock Countdown Timer"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:130
|
||||
msgid "Enable this to show countdown timer for next available stock on single product"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:141
|
||||
msgid "Timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:148
|
||||
msgid "Sale Timer Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:149
|
||||
msgid "This text will show on the sale timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:165
|
||||
msgid "Stock Timer Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:166
|
||||
msgid "This text will show on the stock timer title"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Settings.js:189
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,13 @@
|
||||
/**1.0.2 - 2021.11.29 **/
|
||||
- Fixed: Fixed bundle price with tax include/exclude
|
||||
|
||||
/**1.0.1 - 2021.11.25 **/
|
||||
- Updated: Compatible with WooCommerce 5.7.1
|
||||
- Updated: Update support file
|
||||
- Updated: Add language default template
|
||||
- Updated: Add product type prefix when searching the product on bundle product setting
|
||||
- Updated: Prevent image resize on bundle view
|
||||
- Updated: Slider for select product popup
|
||||
|
||||
/**1.0 - 2021.11 **/
|
||||
- The first released
|
||||
@@ -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,60 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BP Search Block 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/buddypress/bp-blocks/issues\n"
|
||||
"Last-Translator: imath <contact@imathi.eu>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-30T15:46:43+00:00\n"
|
||||
"PO-Revision-Date: 2021-12-30 16:49+0100\n"
|
||||
"Language: fr\n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"X-Domain: bp-search-block\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BP Search Block"
|
||||
msgstr "BP Search Block"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/buddypress/bp-blocks"
|
||||
msgstr "https://github.com/buddypress/bp-blocks"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Help the visitors or members of your BuddyPress powered community site to find the posts, the sites, the activities, the members or the groups they are looking for."
|
||||
msgstr "Aidez les visiteur·se·s ou membres de votre site communautaire motorisé par BuddyPress à trouver les articles, les sites, les activités, les membres ou les groupes qu’ils·elles recherchent."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "The BuddyPress Community"
|
||||
msgstr "La communauté BuddyPress"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://buddypress.org"
|
||||
msgstr "https://buddypress.org"
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "Community Search"
|
||||
msgstr "Recherche communautaire"
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "A Block to search for posts, sites, activities, members or groups from any post, page or widget of your BuddyPress powered community site!"
|
||||
msgstr "Un bloc pour rechercher des articles, des sites, des activités, des membres ou des groupes depuis n’importe quel article, page ou widget de votre site communautaire motorisé par BuddyPress !"
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "BuddyPress"
|
||||
msgstr "BuddyPress"
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "search"
|
||||
msgstr "recherche"
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "community"
|
||||
msgstr "communauté"
|
||||
@@ -0,0 +1,136 @@
|
||||
# Copyright (C) 2022 BPS
|
||||
# This file is distributed under the same license as the BPS Slider Block Using Splide plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BPS Slider Block Using Splide 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bps-splide-slider-block\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-24T13:41:53+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: bps-slider-block\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BPS Slider Block Using Splide"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Custom block for Splide slider with customizable parameters"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "BPS"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:96
|
||||
#: index.php:299
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:104
|
||||
msgid "Image width in px"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:107
|
||||
msgid "Image height in px"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:110
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:113
|
||||
msgid "Rewind"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:116
|
||||
#: index.php:131
|
||||
msgid "Height ratio"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:119
|
||||
#: index.php:134
|
||||
msgid "Gap in px"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:122
|
||||
#: index.php:137
|
||||
msgid "Padding in %"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:126
|
||||
msgid "Optional breakpoint settings"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:128
|
||||
msgid "Breakpoint in px"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:178
|
||||
msgid "Don't forget to regenerate thumbnails to apply the width change to existing images"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:182
|
||||
msgid "Image width value must be a number between 100 and 1000"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:190
|
||||
msgid "Don't forget to regenerate thumbnails to apply the height change to existing images"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:194
|
||||
msgid "Image height value must be a number between 100 and 1000"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:201
|
||||
msgid "Invalid type value"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:218
|
||||
msgid "Height ratio value must be a number between 0 and 1"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:227
|
||||
#: index.php:281
|
||||
msgid "Gap value must be a number between 0 and 100"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:236
|
||||
msgid "Padding value must be a number between 0 and 30"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:263
|
||||
msgid "Breakpoint value must be a number between 100 and 1500 or leave the field empty if you don't want a breakpoint"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:272
|
||||
msgid "Breakpoint height ratio value must be a number between 0 and 1"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:290
|
||||
msgid "Breakpoint padding value must be a number between 0 and 30"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.js:3494
|
||||
msgid "slider"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.js:3537
|
||||
msgid "Select image"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.js:3545
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.js:3563
|
||||
msgid "Slider images"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.js:3577
|
||||
msgid "Add image"
|
||||
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 ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/brandnestor/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/brandnestor/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "brandnestor",
|
||||
"version": "1.1.0",
|
||||
"description": "",
|
||||
"main": "gulpfile.js",
|
||||
"scripts": {
|
||||
"build": "gulp",
|
||||
"watch": "gulp watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/icons": "^6.0.1",
|
||||
"@wordpress/scripts": "^18.1.0",
|
||||
"cssnano": "^5.0.8",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-postcss": "^9.0.1",
|
||||
"gulp-sass": "^5.0.0",
|
||||
"sass": "^1.42.1",
|
||||
"webpack": "^5.59.0",
|
||||
"webpack-stream": "^7.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,705 @@
|
||||
# Copyright (C) 2021 Nikos Papadakis
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BrandNestor 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/brandnestor\n"
|
||||
"Last-Translator: Nikos Papadakis <nikos@papadakis.xyz>\n"
|
||||
"Language-Team: WebNestors <info@webnestors.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-10-30T16:36:44+00:00\n"
|
||||
"PO-Revision-Date: 2021-10-30T16:36:44+00:00\n"
|
||||
"X-Generator: WP-CLI 2.5.1-alpha-70ffdce\n"
|
||||
"X-Domain: brandnestor\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BrandNestor"
|
||||
msgstr "BrandNestor"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Customize the WordPress dashboard, login/register pages, and more."
|
||||
msgstr "Προσαρμόστε τον Πίνακα Ελέγχου του WordPress, τις σελίδες σύνδεσης/εγγραφής, και πολλά άλλα."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Nikos Papadakis"
|
||||
msgstr "Νίκος Παπαδάκης"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://gitlab.com/nikopap/brandnestor"
|
||||
msgstr "https://gitlab.com/nikopap/brandnestor"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:115
|
||||
msgid "General"
|
||||
msgstr "Γενικά"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:116
|
||||
msgid "General options."
|
||||
msgstr "Γενικές επιλογές."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:122
|
||||
#: src/Admin/Settings/Settings.php:244
|
||||
msgid "Dashboard"
|
||||
msgstr "Πίνακας Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:123
|
||||
msgid "Customize the Dashboard page with your own Welcome Panel. You can choose to create it with standard HTML, or using an Elementor Template page."
|
||||
msgstr "Προσαρμόστε τον Πίνακα Ελέγχου με το δικό σας Welcome Panel. Επιλέξτε να το δημιουργήσετε με HTML, ή με ένα Template του Elementor."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:129
|
||||
msgid "Admin Menus"
|
||||
msgstr "Μενού Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:130
|
||||
msgid "Hide admin menu items for user roles and for users."
|
||||
msgstr "Κρύψτε στοιχεία του μενού ανά ρόλο χρήστη ή ανά χρήστη."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:136
|
||||
msgid "Admin Bar"
|
||||
msgstr "Μπάρα Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:137
|
||||
msgid "Options for the admin bar on top of the page."
|
||||
msgstr "Επιλογές για την μπάρα διαχειριστικού στο πάνω μέρος της σελίδας."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:143
|
||||
msgid "Authentication"
|
||||
msgstr "Αυθεντικοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:144
|
||||
msgid "Enable custom login & registration pages for your users or clients. BrandNestor registers new Elementor Login and Registration Widgets that allow authentication execution to exist on the frontend by skipping using the wp-login.php page"
|
||||
msgstr "Ενεργοποιήστε δικές σας σελίδες εισόδου και εγγραφής για τους χρήστες ή του πελάτες. Το BrandNestor ενεργοποιεί νέα Widgets του Elementor που επιτρέπουν την πιστοποίηση να γίνεται στο frontend παραλείποντας το wp-login.php."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:169
|
||||
msgid "Are you sure you want to reset the plugin? This will permanently delete all of the plugin data!"
|
||||
msgstr "Σίγουρα θέλετε να επαναφέρετε το πρόσθετο; Η ενέργεια θα διαγράψει τα δεδομένα του πρόσθετου μόνιμα!"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:170
|
||||
msgid "An error occured during the request. See the developer console for details."
|
||||
msgstr "Υπήρξε λάθος κατά τη διάρκεια της άιτησης. Δείτε την κονσόλα προγραμματιστή για περισσότερες λεπτομέρειες."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:171
|
||||
msgid "Rule deleted"
|
||||
msgstr "Ο κανόνας διαγράφηκε"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:172
|
||||
msgid "Settings saved!"
|
||||
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν!"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:180
|
||||
msgid "Brand Name"
|
||||
msgstr "Όνομα Εταιρείας"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:181
|
||||
msgid "Your Brand name. Will be used to replace any WordPress mentions in admin pages."
|
||||
msgstr "Το Όνομα της Εταιρείας σας. Θα χρησιμοποιηθεί για να αντικαταστήσει το WordPress στις σελίδες Admin."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:190
|
||||
msgid "Footer Text"
|
||||
msgstr "Κείμενο footer"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:191
|
||||
msgid "Text to display on the WordPress admin footer."
|
||||
msgstr "Κείμενο για εμφάνιση στο Footer του διαχειριστικού."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:200
|
||||
msgid "Footer Image"
|
||||
msgstr "Εικόνα footer"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:201
|
||||
msgid "Image to display next to the footer text."
|
||||
msgstr "Εικόνα για εμφάνιση δίπλα στο κείμενο footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:210
|
||||
msgid "Footer URL"
|
||||
msgstr "Footer URL"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:211
|
||||
msgid "The link URL for the footer text."
|
||||
msgstr "Ο σύνδεσμος για το κείμενο του footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:220
|
||||
msgid "Hide Dashboard Contextual Help"
|
||||
msgstr "Απόκρυψη βοήθειας του πίνακα ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:221
|
||||
msgid "Hide the WordPress dashboard contextual help box that is on the top of admin pages."
|
||||
msgstr "Κρύψτε την βοήθεια του πίνακα ελέγχου που βρίσκεται στην κορυφή του διαχειριστικού."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:223
|
||||
#: src/Admin/Settings/Settings.php:234
|
||||
#: src/Admin/Settings/Settings.php:259
|
||||
#: src/Widgets/Login.php:98
|
||||
#: src/Widgets/Login.php:110
|
||||
#: src/Widgets/Register.php:88
|
||||
#: src/Widgets/Register.php:111
|
||||
msgid "Hide"
|
||||
msgstr "Απόκρυψη"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:231
|
||||
msgid "Hide WordPress Version"
|
||||
msgstr "Απόκρυψη αριθμού έκδοσης WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:232
|
||||
msgid "Hide the WordPress version number that is displayed on the footer."
|
||||
msgstr "Απόκρυψη του αριθμού έκδοσης του WordPress που εμφανίζεται στο footer."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:247
|
||||
#: src/Admin/Settings/Settings.php:334
|
||||
#: src/Admin/Settings/Settings.php:346
|
||||
msgid "Enable"
|
||||
msgstr "Ενεργοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:255
|
||||
msgid "Hide Widgets"
|
||||
msgstr "Απόκρυψη Widget"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:256
|
||||
msgid "Hide all Dashboard widgets."
|
||||
msgstr "Απόκρυψη όλων των Widget του Πίνακα Ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:267
|
||||
msgid "Welcome Panel Type"
|
||||
msgstr "Τύπος Πίνακα Καλωσορίσματος"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:268
|
||||
msgid "Choose between writing as HTML or an Elementor template as the type of the Dashboard Welcome Panel."
|
||||
msgstr "Επιλέξτε μεταξύ του HTML ή ενός Template του Elementor ως τύπο πίνακα καλωσορίσματος."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:287
|
||||
msgid "Elementor Template"
|
||||
msgstr "Template Elementor"
|
||||
|
||||
#. translators: %s Elementor library URL link
|
||||
#: src/Admin/Settings/Settings.php:290
|
||||
msgid "Choose a custom Welcome Panel from an Elementor Template page. <a href=\"%s\">Create one from here.</a>"
|
||||
msgstr "Επιλέξτε ένα δικό σας πίνακα Welcome από τα Templates του Elementor. <a href=\"%s\">Δημιουργία νέου από εδώ.</a>"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:303
|
||||
msgid "Dashboard HTML"
|
||||
msgstr "HTML Πίνακα Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:304
|
||||
msgid "Insert custom HTML that is going to be placed on the Dashboard page."
|
||||
msgstr "Εισάγετε προσαρμοσμένο HTML που θα τοποθετηθεί στην σελίδα του πίνακα ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:314
|
||||
msgid "Dashboard CSS"
|
||||
msgstr "CSS Πίνακα Ελέγχου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:315
|
||||
msgid "Insert custom CSS styling that is going to be placed on the Dashboard page."
|
||||
msgstr "Εισάγετε προσαρμοσμένο CSS που θα τοποθετηθεί στην σελίδα του πίνακα ελέγχου."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:359
|
||||
msgid "Hide admin menus for:"
|
||||
msgstr "Απόκρυψη μενού διαχειριστή για:"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:363
|
||||
msgid "Role"
|
||||
msgstr "Ρόλος"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:364
|
||||
msgid "User"
|
||||
msgstr "Χρήστης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:392
|
||||
msgid "Guest"
|
||||
msgstr "Επισκέπτης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:399
|
||||
msgid "Branding Logo"
|
||||
msgstr "Λογότυπο Εταιρείας"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:400
|
||||
msgid "Image logo to display on the Dashboard Admin Bar."
|
||||
msgstr "Εικόνα λογότυπου για εμφάνιση στην Μπάρα Διαχειριστή."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:409
|
||||
msgid "Branding Logo URL"
|
||||
msgstr "URL Λογότυπου"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:410
|
||||
msgid "Link URL for the Branding Logo on the Dashboard Admin Bar."
|
||||
msgstr "Σύνδεσομς URL για το λογότυπο στην Μπάρα Διαχειριστή."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:419
|
||||
msgid "Bar Menu Visibility"
|
||||
msgstr "Ορατότητα Μπάρας Διαχειριστή"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:420
|
||||
msgid "With this, you can change the Admin Bar menu visibility for logged in or logged out users on the frontend."
|
||||
msgstr "Με αυτό, μπορείτε να αλλάξετε την ορατότητα της μπάρας διαχειριστή για συνδεδεμένους ή αποσυνδεδεμένους χρήστες στο frontend."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:441
|
||||
msgid "Login Page"
|
||||
msgstr "Σελίδα Εισόδου"
|
||||
|
||||
#. translators: %1$s Shortcode help URL, %2$s Widget Help URL
|
||||
#: src/Admin/Settings/Settings.php:444
|
||||
msgid "Enable a custom Login Page for WordPress. Login URLs and redirects will point to this page. To add a login form to a page use the <a href=\"%1$s\"><strong>brandnestor_login</strong> shortcode</a>, or use the Elementor Widget <a href=\"%2$s\"><strong>BrandNestor Login</strong></a>."
|
||||
msgstr "Ενεργοποιήστε μία προσαρμοσμένη σας σελίδα εισόδου για το WordPress. Τα URLs εισόδου θα ανακατευθύνονται σε αυτή την σελίδα. Για να προσθέσετε μια φόρμα εισόδου σε μία σελίδα χρησιμοποιήστε το <a href=\"%1$s\"><strong>brandnestor_login</strong> shortcode</a>, ή χρησιμοποιήστε το Widget του Elementor <a href=\"%2$s\"><strong>BrandNestor Login</strong></a>."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:457
|
||||
msgid "Register Page"
|
||||
msgstr "Σελίδα Εγγραφής"
|
||||
|
||||
#. translators: %1$s Shortcode help URL, %2$s Widget Help URL
|
||||
#: src/Admin/Settings/Settings.php:460
|
||||
msgid "Enable a custom Register Page for WordPress. Register URLs and redirects will point to this page. To add a register form to a page use the <a href=\"%1$s\"><strong>brandnestor_register</strong> shortcode</a>, or use the Elementor Widget <a href=\"%2$s\"><strong>BrandNestor Register</strong></a>."
|
||||
msgstr "Ενεργοποιήστε μία προσαρμοσμένη σας σελίδα εγγραφής για το WordPress. Τα URL για εγγραφή θα ανακατευθύνονται σε αυτή την σελίδα. Για να προσθέσετε μια φόρμα εγγραφής σε μία σελίδα χρησιμοποιήστε το <a href=\"%1$s\"><strong>brandnestor_register</strong> shortcode</a>, ή χρησιμοποιήστε το Widget του Elementor <a href=\"%2$s\"><strong>BrandNestor Register</strong></a>."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:473
|
||||
msgid "Redirect URL On Login"
|
||||
msgstr "URL ανακατεύθυνσης σύνδεσης"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:474
|
||||
msgid "URL to redirect to on successful user login. <strong>Note</strong>: Only redirects to the same <strong>site domain</strong> are allowed."
|
||||
msgstr "Το URL ανακατεύθυνσης κατά την επιτυχή σύνδεση χρήστη. <strong>Σημείωση</strong>: Μόνο ανακατευθύνσεις στην ίδια <strong>ιστοσελίδα</strong> επιτρέπονται."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:483
|
||||
msgid "Redirect URL On Registration"
|
||||
msgstr "URL ανακατεύθυνσης εγγραφής"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:484
|
||||
msgid "URL to redirect to on successful user registration. <strong>Note</strong>: Only redirects to the same <strong>site domain</strong> are allowed."
|
||||
msgstr "Το URL ανακατεύθυνσης κατά την επιτυχή εγγραφή χρήστη. <strong>Σημείωση</strong>: Μόνο ανακατευθύνσεις στην ίδια <strong>ιστοσελίδα</strong> επιτρέπονται."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:493
|
||||
msgid "WordPress Login Page Logo"
|
||||
msgstr "Λογότυπο σελίδας σύνδεσης του WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:494
|
||||
msgid "Replace the default WordPress login page logo with your own <strong>(84x84 pixels).</strong> Useful if there are plugins that rely on the default WP login form, such as Two Factor."
|
||||
msgstr "Αντικαθιστά το λογότυπο του WordPress στην σελίδα σύνδεσης με το δικό σας <strong>(84x84 pixel).</strong> Χρήσιμο αν υπάρχουν πρόσθετα που βασίζονται στην προεπιλεγμένη σελίδα σύνδεσης, όπως το Two Factor."
|
||||
|
||||
#: src/Admin/Settings/Settings.php:503
|
||||
msgid "Disable Default WordPress Login Page"
|
||||
msgstr "Απενεργοποίηση Προεπιλεγμένης Σελίδας Εισόδου του WordPress"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:504
|
||||
msgid "Disable the default WordPress login & register page. <span style=\"color:red\">WARNING: Make sure that your custom login and register pages work correctly, otherwise <strong>nobody</strong> will be able to sign in!</span>"
|
||||
msgstr "Απενεργοποίηση των προεπιλεγμένων σελίδων εισόδου και εγγραφής του WordPress. <span style=\"color:red\">ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Σιγουρευτείτε ότι οι δικές σας σελίδες εισόδου και εγγραφής δουλεύουν σωστά, διαφορετικά <strong>κανένας</strong> δεν θα μπορεί να κάνει είσοδο!</span>"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:506
|
||||
#: src/Admin/Settings/Settings.php:517
|
||||
msgid "Disable"
|
||||
msgstr "Απενεργοποίηση"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:514
|
||||
msgid "Disable /wp-admin/ Page Redirect"
|
||||
msgstr "Απενεργοποίηση Ανακατεύθυνσης /wp-admin/"
|
||||
|
||||
#: src/Admin/Settings/Settings.php:515
|
||||
msgid "Disables /wp-admin/ to login page redirection for non-logged in users to proactively hide your login and registration pages as a security feature."
|
||||
msgstr "Απενεργοποιεί το /wp-admin/ στην σελίδα εισόδου για χρήστες που δεν έχουν κάνει είσοδο ώστε να κρύψει την σελίδα εισόδου και εγγραφής."
|
||||
|
||||
#: src/Admin/Settings/SettingsImageField.php:26
|
||||
msgid "Upload Image"
|
||||
msgstr "Μεταφόρτωση εικόνας"
|
||||
|
||||
#: src/Admin/Settings/SettingsRuleField.php:53
|
||||
msgid "Add New"
|
||||
msgstr "Προσθήκεη νέου"
|
||||
|
||||
#: src/Admin/Settings/SettingsRuleField.php:67
|
||||
msgid "Delete"
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
#: src/Admin/Settings/SettingsSelectField.php:44
|
||||
msgid "-- None Selected --"
|
||||
msgstr "-- Κανένα Επιλεγμένο --"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:59
|
||||
msgid "View Documentation"
|
||||
msgstr "Προβολή εγχειριδίου"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:72
|
||||
msgid "Save Changes"
|
||||
msgstr "Αποθήκευση αλλαγών"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:80
|
||||
msgid "Upload"
|
||||
msgstr "Μεταφόρτωση"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:84
|
||||
msgid "Import Settings"
|
||||
msgstr "Εισαγωγή ρυθμίσεων"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:87
|
||||
msgid "Export Settings"
|
||||
msgstr "Εξαγωγή ρυθμίσεων"
|
||||
|
||||
#: src/Admin/Settings/tmpl/settings-page.php:90
|
||||
msgid "Reset Plugin"
|
||||
msgstr "Επαναφορά προσθέτου"
|
||||
|
||||
#: src/Core/AjaxHandler.php:43
|
||||
#: src/Core/AjaxHandler.php:60
|
||||
#: src/Core/AjaxHandler.php:72
|
||||
#: src/Core/AjaxHandler.php:103
|
||||
#: src/Core/AjaxHandler.php:130
|
||||
#: src/Core/AjaxHandler.php:154
|
||||
msgid "Current user does not have the required capability"
|
||||
msgstr "Ο χρήστης δεν έχει τα απαιτούμενα δικαιώματα"
|
||||
|
||||
#: src/Core/RequestHandler.php:57
|
||||
msgid "<strong>Error:</strong> Incorrect username/email or password."
|
||||
msgstr "<strong>Λάθος:</strong> Εσφαλμένο όνομα χρήστη/email ή κωδικός."
|
||||
|
||||
#: src/Core/RequestHandler.php:299
|
||||
msgid "Import error: The uploaded file type is not allowed."
|
||||
msgstr "Σφάλμα εισαγωγής: Ο τύπος αρχείου φόρτωσης δεν επιτρέπεται."
|
||||
|
||||
#: src/Core/RequestHandler.php:314
|
||||
msgid "Settings successfully imported. It is recommended to manually check that all image URLs are pointing to your site, and that all page reference their correct IDs."
|
||||
msgstr "Οι ρυθμίσεις εισάχθηκαν με επιτυχία. Συνιστάται ο χειροκίνητος έλεγχος οτι οι επιλογές με URL αντιστοιχούν για την ιστοσελίδα σας, και ότι όλες αναφορές σελιδών είναι σωστές."
|
||||
|
||||
#: src/Core/RequestHandler.php:316
|
||||
msgid "Import error: The upload file is invalid."
|
||||
msgstr "Σφάλμα εισαγωγής: Το αρχείο φόρτωσης δεν είναι έγκυρο."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:45
|
||||
#: src/Front/Models/RegisterModel.php:40
|
||||
#: src/Widgets/Base_Form.php:479
|
||||
#: src/Widgets/Base_Form.php:480
|
||||
msgid "Submit"
|
||||
msgstr "Υποβολή"
|
||||
|
||||
#: src/Front/Models/LoginModel.php:46
|
||||
#: assets/js/build/blocks/blocks.js:202
|
||||
#: assets/js/src/blocks/login/block.js:33
|
||||
#: assets/js/build/blocks/blocks.js:119
|
||||
msgid "Get New Password"
|
||||
msgstr "Ζητήστε νέο συνθηματικό"
|
||||
|
||||
#: src/Front/Models/LoginModel.php:62
|
||||
msgid "You are now logged out."
|
||||
msgstr "Έχετε αποσυνδεθεί."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:66
|
||||
msgid "User registration is currently disabled."
|
||||
msgstr "Η εγγραφή χρηστών έχει απενεργοποιηθεί προς το παρόν."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:70
|
||||
msgid "Your password has been reset. You can now log in with the form below."
|
||||
msgstr "Ο κωδικός πρόσβασής σας έχει επαναφερθεί. Μπορείτε τώρα να συνδεθείτε με την παρακάτω φόρμα."
|
||||
|
||||
#. translators: %s login page URL
|
||||
#: src/Front/Models/LoginModel.php:75
|
||||
msgid "Registration complete. Please check your email, then visit the <a href=\"%s\">login page</a>."
|
||||
msgstr "Η εγγραφή σας ολοκληρώθηκε. Παρακαλώ δείτε το email σας και στην συνέχεια επισκεφτείτε την <a href=\"%s\">σελίδα εισόδου</a>."
|
||||
|
||||
#. translators: %s register page URL
|
||||
#: src/Front/Models/LoginModel.php:80
|
||||
msgid "Check your email for the confirmation link, then visit the <a href=\"%s\">login page</a>."
|
||||
msgstr "Ελέγξτε το email σας για τον σύνδεσμο επιβεβαίωσης και στη συνέχεια επισκεφτείτε τη <a href=\"%s\">σελίδα εισόδου</a>."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:84
|
||||
msgid "Your password reset link has expired. Please request a new link below."
|
||||
msgstr "Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης έχει λήξει. Παρακαλώ ζητήστε έναν νέο σύνδεσμο παρακάτω."
|
||||
|
||||
#: src/Front/Models/LoginModel.php:88
|
||||
msgid "Your password reset link appears to be invalid. Please request a new link below."
|
||||
msgstr "Ο σύνδεσμος επαναφοράς κωδικού πρόσβασης φαίνεται να μην είναι έγκυρος. Παρακαλώ ζητήστε έναν νέο σύνδεσμο παρακάτω."
|
||||
|
||||
#: src/Widgets/Base_Form.php:32
|
||||
msgid "Style"
|
||||
msgstr "Στιλ"
|
||||
|
||||
#: src/Widgets/Base_Form.php:40
|
||||
msgid "Form Label Typography"
|
||||
msgstr "Τυπογραφία ετικέτας εισόδου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:49
|
||||
msgid "Text Typography"
|
||||
msgstr "Τυπογραφία κειμένου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:58
|
||||
#: src/Widgets/Base_Form.php:92
|
||||
#: src/Widgets/Base_Form.php:359
|
||||
msgid "Text Color"
|
||||
msgstr "Χρώμα κειμένου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:76
|
||||
msgid "Inputs"
|
||||
msgstr "Εισόδοι"
|
||||
|
||||
#: src/Widgets/Base_Form.php:104
|
||||
#: src/Widgets/Base_Form.php:370
|
||||
msgid "Background Color"
|
||||
msgstr "Χρώμα Φόντου"
|
||||
|
||||
#: src/Widgets/Base_Form.php:155
|
||||
#: src/Widgets/Base_Form.php:469
|
||||
msgid "Button"
|
||||
msgstr "Κουμπί"
|
||||
|
||||
#: src/Widgets/Base_Form.php:343
|
||||
msgid "Message Box"
|
||||
msgstr "Κουτί μηνύματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:351
|
||||
msgid "Message Styling"
|
||||
msgstr "Στυλ μηνύματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:389
|
||||
msgid "Error Message Styling"
|
||||
msgstr "Στυλ μηνύματος σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:397
|
||||
msgid "Error Text Color"
|
||||
msgstr "Χρώμα κειμένου σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:408
|
||||
msgid "Error Background Color"
|
||||
msgstr "Χρώμα φόντου σφάλματος"
|
||||
|
||||
#: src/Widgets/Base_Form.php:477
|
||||
msgid "Button Label"
|
||||
msgstr "Κείμενου κουμπιού"
|
||||
|
||||
#: src/Widgets/Base_Form.php:487
|
||||
msgid "Alignment"
|
||||
msgstr "Ευθυγράμμιση"
|
||||
|
||||
#: src/Widgets/Base_Form.php:491
|
||||
msgid "Left"
|
||||
msgstr "Αριστερά"
|
||||
|
||||
#: src/Widgets/Base_Form.php:495
|
||||
msgid "Center"
|
||||
msgstr "Κέντρο"
|
||||
|
||||
#: src/Widgets/Base_Form.php:499
|
||||
msgid "Right"
|
||||
msgstr "Δεξιά"
|
||||
|
||||
#: src/Widgets/Base_Form.php:503
|
||||
msgid "Justified"
|
||||
msgstr "Justified"
|
||||
|
||||
#: src/Widgets/Base_Form.php:513
|
||||
msgid "Button Icon"
|
||||
msgstr "Εικονίδιο κουμπιού"
|
||||
|
||||
#: src/Widgets/Login.php:57
|
||||
#: src/Widgets/Register.php:57
|
||||
#: assets/js/build/blocks/blocks.js:283
|
||||
#: assets/js/build/blocks/blocks.js:523
|
||||
#: assets/js/src/blocks/login/edit.js:49
|
||||
#: assets/js/src/blocks/register/edit.js:48
|
||||
#: assets/js/build/blocks/blocks.js:194
|
||||
#: assets/js/build/blocks/blocks.js:404
|
||||
msgid "Content"
|
||||
msgstr "Περιεχόμενο"
|
||||
|
||||
#: src/Widgets/Login.php:65
|
||||
msgid "Login Label"
|
||||
msgstr "Ετικέτα ψευδώνυμου"
|
||||
|
||||
#: src/Widgets/Login.php:75
|
||||
msgid "Password Label"
|
||||
msgstr "Ετικέτα συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:85
|
||||
msgid "Remember Me Label"
|
||||
msgstr "Ετικέτα «να με θυμάσαι»"
|
||||
|
||||
#: src/Widgets/Login.php:95
|
||||
#: assets/js/build/blocks/blocks.js:285
|
||||
#: assets/js/src/blocks/login/edit.js:51
|
||||
#: assets/js/build/blocks/blocks.js:196
|
||||
msgid "Show Lost Password"
|
||||
msgstr "Εμφάνιση φόρμας υπενθύμισης συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:97
|
||||
#: src/Widgets/Login.php:109
|
||||
#: src/Widgets/Register.php:87
|
||||
#: src/Widgets/Register.php:110
|
||||
msgid "Show"
|
||||
msgstr "Εμφάνιση"
|
||||
|
||||
#: src/Widgets/Login.php:107
|
||||
#: assets/js/build/blocks/blocks.js:292
|
||||
#: assets/js/src/blocks/login/edit.js:61
|
||||
#: assets/js/build/blocks/blocks.js:206
|
||||
msgid "Show Register URL"
|
||||
msgstr "Εμφάνιση συνδέσμου εγγραφής"
|
||||
|
||||
#: src/Widgets/Login.php:119
|
||||
msgid "New Password Button Label"
|
||||
msgstr "Ετικέτα κουμπιού νέου συνθηματικού"
|
||||
|
||||
#: src/Widgets/Login.php:135
|
||||
#: src/Widgets/Register.php:137
|
||||
#: assets/js/build/blocks/blocks.js:334
|
||||
#: assets/js/build/blocks/blocks.js:568
|
||||
#: assets/js/src/blocks/login/edit.js:96
|
||||
#: assets/js/src/blocks/register/edit.js:89
|
||||
#: assets/js/build/blocks/blocks.js:241
|
||||
#: assets/js/build/blocks/blocks.js:445
|
||||
msgid "Sample message."
|
||||
msgstr "Δείγμα μηνύματος"
|
||||
|
||||
#: src/Widgets/Login.php:136
|
||||
#: src/Widgets/Register.php:138
|
||||
msgid "Sample <strong>error</strong> message."
|
||||
msgstr "Δείγμα μηνύματος <strong>σφάλματος</strong>."
|
||||
|
||||
#: src/Widgets/Register.php:65
|
||||
msgid "Username Label"
|
||||
msgstr "Ετικέτα ψευδόνυμου"
|
||||
|
||||
#: src/Widgets/Register.php:75
|
||||
msgid "Email Label"
|
||||
msgstr "Ετικέτα Email"
|
||||
|
||||
#: src/Widgets/Register.php:85
|
||||
#: assets/js/build/blocks/blocks.js:525
|
||||
#: assets/js/src/blocks/register/edit.js:50
|
||||
#: assets/js/build/blocks/blocks.js:406
|
||||
msgid "Show First Name Input"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#: src/Widgets/Register.php:97
|
||||
msgid "First Name Label"
|
||||
msgstr "Ετικέτα Ονόματος"
|
||||
|
||||
#: src/Widgets/Register.php:108
|
||||
#: assets/js/build/blocks/blocks.js:532
|
||||
#: assets/js/src/blocks/register/edit.js:60
|
||||
#: assets/js/build/blocks/blocks.js:416
|
||||
msgid "Show Last Name Input"
|
||||
msgstr "Εμφάνιση Επώνυμου"
|
||||
|
||||
#: src/Widgets/Register.php:120
|
||||
msgid "Last Name Label"
|
||||
msgstr "Ετικέτα Επώνυμου"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:175
|
||||
#: assets/js/src/blocks/login/block.js:6
|
||||
#: assets/js/build/blocks/blocks.js:92
|
||||
msgid "BrandNestor Login"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:176
|
||||
#: assets/js/src/blocks/login/block.js:7
|
||||
#: assets/js/build/blocks/blocks.js:93
|
||||
msgid "A custom Login widget for WordPress"
|
||||
msgstr "Ένα προσαρμοσμένο widget σύνδεσης για το WordPress"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:290
|
||||
#: assets/js/src/blocks/login/edit.js:56
|
||||
#: assets/js/build/blocks/blocks.js:201
|
||||
msgid "Showing lost password link"
|
||||
msgstr "Εμφάνιση συνδέσμου χαμένου συνθηματικού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:290
|
||||
#: assets/js/src/blocks/login/edit.js:57
|
||||
#: assets/js/build/blocks/blocks.js:202
|
||||
msgid "Toggle to show lost password link"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανιστεί ο σύνδεσμος χαμένου κωδικού πρόσβασης"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:297
|
||||
#: assets/js/src/blocks/login/edit.js:66
|
||||
#: assets/js/build/blocks/blocks.js:211
|
||||
msgid "Showing register link"
|
||||
msgstr "Εμφάνιση συνδέσμου εγγραφής"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:297
|
||||
#: assets/js/src/blocks/login/edit.js:67
|
||||
#: assets/js/build/blocks/blocks.js:212
|
||||
msgid "Toggle to show register link"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανιστεί ο σύνδεσμος εγγραφής"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:299
|
||||
#: assets/js/src/blocks/login/edit.js:71
|
||||
#: assets/js/build/blocks/blocks.js:216
|
||||
msgid "New Password Button Text"
|
||||
msgstr "Κείμενο κουμπιού Νέου Συνθηματικού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:304
|
||||
#: assets/js/build/blocks/blocks.js:538
|
||||
#: assets/js/src/blocks/login/edit.js:76
|
||||
#: assets/js/src/blocks/register/edit.js:70
|
||||
#: assets/js/build/blocks/blocks.js:221
|
||||
#: assets/js/build/blocks/blocks.js:426
|
||||
msgid "Button Alignment"
|
||||
msgstr "Ευθυγράμμιση κουμπιού"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:336
|
||||
#: assets/js/build/blocks/blocks.js:570
|
||||
#: assets/js/src/blocks/login/edit.js:97
|
||||
#: assets/js/src/blocks/register/edit.js:90
|
||||
#: assets/js/build/blocks/blocks.js:242
|
||||
#: assets/js/build/blocks/blocks.js:446
|
||||
msgid "Sample error message."
|
||||
msgstr "Δείγμα μηνύματος σφάλματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:346
|
||||
#: assets/js/build/blocks/blocks.js:580
|
||||
#: assets/js/src/blocks/login/edit.js:105
|
||||
#: assets/js/src/blocks/register/edit.js:98
|
||||
#: assets/js/build/blocks/blocks.js:250
|
||||
#: assets/js/build/blocks/blocks.js:454
|
||||
msgid "Add a username label…"
|
||||
msgstr "Προσθέστε ετικέτα ονόματος χρήστη…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:358
|
||||
#: assets/js/src/blocks/login/edit.js:114
|
||||
#: assets/js/build/blocks/blocks.js:259
|
||||
msgid "Add a password label…"
|
||||
msgstr "Προσθέστε ετικέτα συνθηματικού…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:415
|
||||
#: assets/js/src/blocks/register/block.js:6
|
||||
#: assets/js/build/blocks/blocks.js:303
|
||||
msgid "BrandNestor Register"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:416
|
||||
#: assets/js/src/blocks/register/block.js:7
|
||||
#: assets/js/build/blocks/blocks.js:304
|
||||
msgid "A custom Register widget for WordPress"
|
||||
msgstr "Ένα προσαρμοσμένο widget εγγραφής για το WordPress"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:530
|
||||
#: assets/js/build/blocks/blocks.js:537
|
||||
#: assets/js/src/blocks/register/edit.js:55
|
||||
#: assets/js/src/blocks/register/edit.js:65
|
||||
#: assets/js/build/blocks/blocks.js:411
|
||||
#: assets/js/build/blocks/blocks.js:421
|
||||
msgid "Showing a first name input field"
|
||||
msgstr "Εμφάνιση πεδίου εισαγωγής ονόματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:530
|
||||
#: assets/js/src/blocks/register/edit.js:56
|
||||
#: assets/js/build/blocks/blocks.js:412
|
||||
msgid "Toggle to show the first name input field"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανίσετε το πεδίο εισαγωγής ονόματος"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:537
|
||||
#: assets/js/src/blocks/register/edit.js:66
|
||||
#: assets/js/build/blocks/blocks.js:422
|
||||
msgid "Toggle to show the last name input field"
|
||||
msgstr "Κάντε εναλλαγή για να εμφανίσετε το πεδίο εισαγωγής επώνυμου"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:592
|
||||
#: assets/js/src/blocks/register/edit.js:107
|
||||
#: assets/js/build/blocks/blocks.js:463
|
||||
msgid "Add an email label…"
|
||||
msgstr "Προσθέστε ετικέτα email…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:604
|
||||
#: assets/js/src/blocks/register/edit.js:117
|
||||
#: assets/js/build/blocks/blocks.js:473
|
||||
msgid "Add a first name label…"
|
||||
msgstr "Προσθέστε ετικέτα ονόματος…"
|
||||
|
||||
#: assets/js/build/blocks/blocks.js:616
|
||||
#: assets/js/src/blocks/register/edit.js:128
|
||||
#: assets/js/build/blocks/blocks.js:484
|
||||
msgid "Add a last name label…"
|
||||
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"
|
||||
}
|
||||
}
|
||||
17
spec/fixtures/dynamic_finders/plugin_version/btcpaywall/composer_file/package.json
vendored
Normal file
17
spec/fixtures/dynamic_finders/plugin_version/btcpaywall/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "BTCPayWall",
|
||||
"version": "1.0.0",
|
||||
"description": "BTCPayWall is a WordPress plugin for publishers to charge for paid content. With the help of WordPress BTCPayWall plugin you can offer previews of your blog posts and accept bitcoin payment for a single post (pay-per-post) via Lightning Network.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"start": "wp-scripts start",
|
||||
"build": "wp-scripts build"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^17.0.0"
|
||||
}
|
||||
}
|
||||
325
spec/fixtures/dynamic_finders/plugin_version/bumbal/translation_file/languages/bumbal.pot
vendored
Normal file
325
spec/fixtures/dynamic_finders/plugin_version/bumbal/translation_file/languages/bumbal.pot
vendored
Normal file
@@ -0,0 +1,325 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Bumbal 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-01 13:05+0100\n"
|
||||
"PO-Revision-Date: 2021-03-01 13:05+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bumbal\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-bumbal-admin.php:109 backup/bumbal_config.php:24
|
||||
msgid "Bumbal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:127 backup/bumbal_config.php:37
|
||||
msgid "Bumbal connection settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:129
|
||||
msgid "All the settings for making a connection with Bumbal."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:134 backup/bumbal_config.php:44
|
||||
msgid "Instance name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:136
|
||||
msgid "Instance name for Bumbal."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:142 backup/bumbal_config.php:52
|
||||
msgid "API-key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:144
|
||||
msgid "API-key for Bumbal."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:150
|
||||
msgid "Status for sending"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:152
|
||||
msgid "Select the order status whereby the order is send to Bumbal."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:156
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:157
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:167 backup/bumbal_config.php:65
|
||||
msgid "Bumbal communication settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:169
|
||||
msgid "All the settings for sending communication to Bumbal."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:174 backup/bumbal_config.php:72
|
||||
msgid "Send invite"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:176
|
||||
msgid ""
|
||||
"Send an invite message for scheduling a timeslot when the order is send to "
|
||||
"Bumbal."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:181
|
||||
msgid "Send invite after error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:183
|
||||
msgid ""
|
||||
"Send an invite message for scheduling a timeslot when an order is send "
|
||||
"manual after an error occured."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:188 backup/bumbal_config.php:79
|
||||
msgid "Send reminder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:190
|
||||
msgid "Send a reminder when no timeslot is booked yet."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:195 backup/bumbal_config.php:86
|
||||
msgid "Send confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:197
|
||||
msgid "Send a confirmation message when a timesloot is booked."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:202 backup/bumbal_config.php:93
|
||||
msgid "Send plannend"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:204
|
||||
msgid "Send a message when the activity is planned on a route."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:209
|
||||
msgid "Send ETA"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:211
|
||||
msgid "send an estimated time of arrival message."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:216
|
||||
msgid "Send finished"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:218 backup/bumbal_config.php:109
|
||||
msgid "Send a message when the activity is finished."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:223
|
||||
msgid "Send cancelled"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:225 backup/bumbal_config.php:116
|
||||
msgid "Send a message when the activity is cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:238
|
||||
msgid "Bumbal shipping method settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:240
|
||||
msgid "Select all the shipping methods whereby the order is send to Bumbal."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:338
|
||||
msgid "Activity planned"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:339
|
||||
msgid "Activity in progress"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:340
|
||||
msgid "Activity executed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:341
|
||||
msgid "Activity incomplete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:342
|
||||
msgid "Activity new"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:343
|
||||
msgid "Activity accepted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:344
|
||||
msgid "Activity cancelled"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bumbal-admin.php:345
|
||||
msgid "Activity awaiting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bumbal-show-status.php:17
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bumbal-show-status.php:24
|
||||
msgid "API error"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bumbal-show-status.php:28
|
||||
#: admin/partials/bumbal-show-status.php:40
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bumbal-show-status.php:34
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/bumbal-show-status.php:47
|
||||
msgid "Route"
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:39
|
||||
msgid "All the settings for making a connection with Bumbal"
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:46
|
||||
msgid "Instance name for Bumbal"
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:54
|
||||
msgid "API-key for Bumbal"
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:67
|
||||
msgid "All the settings for sending communication with Bumbal"
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:74
|
||||
msgid "Send an invite email for making a appointment when order is made."
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:81
|
||||
msgid "Send a reminder if no appointment is made."
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:88
|
||||
msgid "Send an email if prefered times are added"
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:95
|
||||
msgid "Send an email if activity is planned"
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:100
|
||||
msgid "Send ETA message"
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:102
|
||||
msgid "Send an estimated time of arrival message"
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:107
|
||||
msgid "Send finished message"
|
||||
msgstr ""
|
||||
|
||||
#: backup/bumbal_config.php:114
|
||||
msgid "Send cancelled message"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:116 public/class-bumbal-public.php:173
|
||||
#: public/class-bumbal-public.php:201
|
||||
msgid "Can not connect to Bumbal API"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:132
|
||||
msgid "Thank you, we have booked your timeslot."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:133
|
||||
msgid "Timeslot succesfully booked by client."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:136
|
||||
msgid "Sorry, we where not able to book your timeslot."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:137
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Failed to book timeslot. API responded with %s. Check BumbalTimeSlotResponse "
|
||||
"meta data."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:207
|
||||
#, php-format
|
||||
msgid "Error code (%s) when retrieving timeslots."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:208
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Failed to retrieve timeslot, API responded with: %s. \n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t\t\tCheck BumbalRetrieveTimeSlotError meta data."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:218
|
||||
msgid "Thank you, we already received your preferred timeslot."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:233
|
||||
#, php-format
|
||||
msgid "Can not retrieving timeslots: %s."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:234
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Failed to retrieve timeslot, API responded with: %s. \n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t Check BumbalRetrieveTimeSlotError meta data."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:274
|
||||
msgid ""
|
||||
"Order not send to Bumbal because it could not connect to Bumbal API. Check "
|
||||
"BumbalError in meta_data."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:296
|
||||
msgid "Invite message triggered."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:302
|
||||
#, php-format
|
||||
msgid "Order successfully send to Bumbal (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bumbal-public.php:308
|
||||
msgid "Bumbal API responded with failed. Check BumbalAPIresponse meta data."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/bumbal-public-time-slot.php:17
|
||||
msgid "Schedule your appointment:"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/bumbal-public-time-slot.php:48
|
||||
#, php-format
|
||||
msgid "From <b>%s</b> to <b>%s</b>"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,116 @@
|
||||
# Copyright (C) 2022 mrjz
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Buy Now Button, Direct Checkout, Quick Checkout/Purchase Button For "
|
||||
"WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/buy-now-direct-checkout-for-"
|
||||
"woocommerce\n"
|
||||
"POT-Creation-Date: 2022-10-31T15:41:43+01:00\n"
|
||||
"PO-Revision-Date: 2022-10-31 20:46+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: hi_IN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
|
||||
"X-Generator: Poedit 3.2\n"
|
||||
"X-Domain: buy-now-direct-checkout-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Buy Now Button, Direct Checkout, Quick Checkout/Purchase Button For WooCommerce"
|
||||
msgstr "WooCommerce के लिए अभी खरीदें बटन, प्रत्यक्ष चेकआउट, त्वरित चेकआउट/खरीद बटन"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/buy-now-direct-checkout-for-woocommerce"
|
||||
msgstr "https://wordpress.org/plugins/buy-now-direct-checkout-for-woocommerce"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"This plugin will add a \"Buy Now\" button below the \"Add to cart\" button that add product "
|
||||
"to cart and quickly redirects the customer directly to the checkout page for a quick "
|
||||
"purchase using custom ajax call. This plugin is designed to help boost your business "
|
||||
"conversion rate by reducing the number of steps required to complete a purchase. With the "
|
||||
"\"Buy Now\" button, customers can be taken directly to the checkout page, skipping the "
|
||||
"traditional cart page redirect of WooCommerce."
|
||||
msgstr ""
|
||||
"यह प्लगइन \"कार्ट में जोड़ें\" बटन के नीचे एक \"अभी खरीदें\" बटन जोड़ देगा जो उत्पाद को कार्ट में जोड़ता है और "
|
||||
"कस्टम अजाक्स कॉल का उपयोग करके त्वरित खरीदारी के लिए ग्राहक को सीधे चेकआउट पृष्ठ पर रीडायरेक्ट करता है। "
|
||||
"यह प्लगइन खरीदारी को पूरा करने के लिए आवश्यक चरणों की संख्या को कम करके आपके व्यापार रूपांतरण दर को बढ़ाने "
|
||||
"में मदद करने के लिए डिज़ाइन किया गया है। \"अभी खरीदें\" बटन के साथ, ग्राहकों को सीधे चेकआउट पृष्ठ पर ले "
|
||||
"जाया जा सकता है, WooCommerce के पारंपरिक कार्ट पेज रीडायरेक्ट को छोड़कर।"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "mrjz"
|
||||
msgstr "mrjz"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/mrjz/"
|
||||
msgstr "https://profiles.wordpress.org/mrjz/"
|
||||
|
||||
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:108
|
||||
msgid "Buy now button settings"
|
||||
msgstr "अभी खरीदें बटन सेटिंग"
|
||||
|
||||
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:109
|
||||
msgid "Buy Now Button"
|
||||
msgstr "अभी खरीदें बटन"
|
||||
|
||||
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:123
|
||||
msgid "Buy Now, Direct Checkout For WooCommerce Settings."
|
||||
msgstr "WooCommerce के लिए अभी खरीदें, डायरेक्ट चेकआउट सेटिंग्स।"
|
||||
|
||||
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:129
|
||||
msgid "Buy now button CSS class:"
|
||||
msgstr "अभी खरीदें बटन CSS वर्ग:"
|
||||
|
||||
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:132
|
||||
msgid ""
|
||||
"Specify CSS class to be applied on Buy now button. (You can specify multiple CSS classes "
|
||||
"separated by space)"
|
||||
msgstr ""
|
||||
"अभी खरीदें बटन पर लागू होने वाली CSS क्लास निर्दिष्ट करें। (आप अंतरिक्ष द्वारा अलग किए गए कई सीएसएस वर्ग "
|
||||
"निर्दिष्ट कर सकते हैं)"
|
||||
|
||||
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:136
|
||||
msgid "Remove other product from cart"
|
||||
msgstr "कार्ट से अन्य उत्पाद निकालें"
|
||||
|
||||
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:138
|
||||
msgid ""
|
||||
"When checked, previously added product(s) into the cart will be removed and only product(s) "
|
||||
"added by Buy now button remain in the cart."
|
||||
msgstr ""
|
||||
"चेक किए जाने पर, कार्ट में पहले जोड़े गए उत्पाद हटा दिए जाएंगे और कार्ट में केवल अभी खरीदें बटन द्वारा जोड़े गए "
|
||||
"उत्पाद ही बचे रहेंगे।"
|
||||
|
||||
#: buy-now-direct-checkout-for-woocommerce.php:45
|
||||
msgid ""
|
||||
"Sorry, but \"Buy Now, Direct Checkout For WooCommerce\" plugin is deactivated as it "
|
||||
"requires WooCommerce in order to work. Please ensure that WooCommerce is installed and "
|
||||
"activated."
|
||||
msgstr ""
|
||||
"क्षमा करें, लेकिन \"WooCommerce के लिए अभी खरीदें बटन, प्रत्यक्ष चेकआउट\" प्लगइन निष्क्रिय है क्योंकि इसे काम "
|
||||
"करने के लिए WooCommerce की आवश्यकता होती है। कृपया सुनिश्चित करें कि WooCommerce स्थापित और सक्रिय है।"
|
||||
|
||||
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:120
|
||||
msgid "Buy now"
|
||||
msgstr "अभी खरीदें"
|
||||
|
||||
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:127
|
||||
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:144
|
||||
msgid "Error : Security check failed!"
|
||||
msgstr "त्रुटि : सुरक्षा जांच विफल!"
|
||||
|
||||
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:151
|
||||
msgid "Error : Product data not received"
|
||||
msgstr "त्रुटि: उत्पाद डेटा प्राप्त नहीं हुआ"
|
||||
|
||||
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:158
|
||||
msgid "Error : Product variation data not received"
|
||||
msgstr "त्रुटि : उत्पाद विविधता डेटा प्राप्त नहीं हुआ"
|
||||
|
||||
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:165
|
||||
msgid "Error: Cart object not defined"
|
||||
msgstr "त्रुटि: कार्ट ऑब्जेक्ट परिभाषित नहीं है"
|
||||
@@ -0,0 +1,370 @@
|
||||
# Copyright (C) 2021 Casso Team
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Casso - Automatically confirm bank transfer payments 2.0."
|
||||
"0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/casso-wordpress-"
|
||||
"plugin\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Tiếng Việt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-06-08T08:18:22+00:00\n"
|
||||
"PO-Revision-Date: 2021-07-23 07:29+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"X-Domain: casso-wordpress-plugin\n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Loco-Version: 2.5.2; wp-5.7.2"
|
||||
|
||||
#: inc/banks/class-casso-base.php:735
|
||||
msgid ""
|
||||
" <div class='power_by'>Automatic transaction checking by Casso Robot</div>"
|
||||
msgstr ""
|
||||
" <div class='power_by'>Tra soát giao dịch tự động bởi Casso Robot</div>"
|
||||
|
||||
#: inc/class-casso-admin-page.php:268
|
||||
msgid "Acceptance difference"
|
||||
msgstr "Chênh lệch chấp nhận"
|
||||
|
||||
#: inc/banks/class-casso-base.php:404 inc/banks/class-casso-momo.php:152
|
||||
msgid "Account number"
|
||||
msgstr "Số tài khoản"
|
||||
|
||||
#: inc/class-casso-admin-page.php:213
|
||||
msgid "Account on/off"
|
||||
msgstr "Bật/tắt tài khoản"
|
||||
|
||||
#: wc-gateway-casso.php:322
|
||||
msgid "Active"
|
||||
msgstr "Đang hoạt động"
|
||||
|
||||
#: inc/banks/class-casso-base.php:281 inc/banks/class-casso-base.php:424
|
||||
#: inc/banks/class-casso-momo.php:91 inc/banks/class-casso-momo.php:172
|
||||
msgid "Amount"
|
||||
msgstr "Số tiền"
|
||||
|
||||
#: inc/class-casso-admin-page.php:163
|
||||
msgid "Authorization code"
|
||||
msgstr "Mã xác nhận"
|
||||
|
||||
#: inc/banks/class-casso-base.php:412 inc/banks/class-casso-momo.php:160
|
||||
msgid "Bank"
|
||||
msgstr "Ngân hàng"
|
||||
|
||||
#: inc/banks/class-casso-base.php:333 inc/banks/class-casso-momo.php:123
|
||||
msgid "Bank transfer QR code"
|
||||
msgstr "Mã QR chuyển khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:186
|
||||
msgid "Bussiness name"
|
||||
msgstr "Tên doanh nghiệp"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Casso - Tự động xác nhận thanh toán chuyển khoản ngân hàng"
|
||||
msgstr ""
|
||||
|
||||
#: wc-gateway-casso.php:437
|
||||
msgid ""
|
||||
"Casso announces received <b>%s</b> VND, content <B>%s</B> has been moved to "
|
||||
"<b>Account number %s</b>"
|
||||
msgstr ""
|
||||
"Casso thông báo nhận <b>%s</b> VND, nội dung <B>%s</B> chuyển vào <b>STK "
|
||||
"%s</b>"
|
||||
|
||||
#: wc-gateway-casso.php:263
|
||||
msgid ""
|
||||
"Casso is not running because WooCommerce is not active. Please activate both "
|
||||
"plugins."
|
||||
msgstr ""
|
||||
"Casso không chạy vì WooCommerce không hoạt động. Vui lòng kích hoạt cả hai "
|
||||
"plugin."
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Casso plugin developed to connect Vietnamese banks with Wordpress. Help "
|
||||
"automatically confirm the order has been paid by wire transfer in Vietnam."
|
||||
msgstr ""
|
||||
"Plugin Casso phát triển để kết nối các ngân hàng Việt Nam vào Wordpress. "
|
||||
"Giúp tự động xác nhận các đơn hàng được thanh toán bằng hình thức chuyển "
|
||||
"khoản ngân hàng Việt Nam."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Casso Team"
|
||||
msgstr "Casso Team"
|
||||
|
||||
#: inc/class-casso-admin-page.php:155
|
||||
msgid "Click here to show manual configuration"
|
||||
msgstr "Click vào đây hiện thị cấu hình thủ công"
|
||||
|
||||
#: inc/class-casso-admin-page.php:178
|
||||
msgid "Connection Information"
|
||||
msgstr "Thông tin kết nối"
|
||||
|
||||
#: inc/banks/class-casso-base.php:285 inc/banks/class-casso-base.php:436
|
||||
#: inc/banks/class-casso-momo.php:95 inc/banks/class-casso-momo.php:184
|
||||
msgid "Content"
|
||||
msgstr "Nội dung"
|
||||
|
||||
#: inc/class-casso-admin-page.php:369 inc/class-casso-admin-page.php:394
|
||||
msgid "Default"
|
||||
msgstr "Mặc định"
|
||||
|
||||
#: inc/class-casso-admin-page.php:147
|
||||
msgid "Enable QR code display mode VietQR"
|
||||
msgstr "Bật chế độ hiển thị mã VietQR"
|
||||
|
||||
#: inc/class-casso-admin-page.php:129
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Mở/Đóng"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://casso.vn/"
|
||||
msgstr "https://casso.vn/"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://casso.vn/plugin-ket-noi-ngan-hang/"
|
||||
msgstr "https://casso.vn/plugin-ket-noi-ngan-hang/"
|
||||
|
||||
#: inc/banks/class-casso-base.php:307 inc/banks/class-casso-base.php:620
|
||||
msgid "I have already paid"
|
||||
msgstr "Tôi đã thanh toán"
|
||||
|
||||
#: wc-gateway-casso.php:320
|
||||
msgid "Inactive"
|
||||
msgstr "Ngưng hoạt động"
|
||||
|
||||
#: inc/class-casso-admin-page.php:152
|
||||
msgid "Link Casso"
|
||||
msgstr "Liên kết Casso"
|
||||
|
||||
#: inc/class-casso-admin-page.php:188
|
||||
msgid "List of bank accounts"
|
||||
msgstr "Danh sách tài khoản ngân hàng"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:32
|
||||
msgid "Make payment by bank transfer via Momo."
|
||||
msgstr "Thanh toán bằng chuyển khoản qua Momo."
|
||||
|
||||
#: inc/banks/class-casso-acb.php:32 inc/banks/class-casso-agribank.php:30
|
||||
#: inc/banks/class-casso-bidv.php:31 inc/banks/class-casso-mbbank.php:31
|
||||
#: inc/banks/class-casso-ocb.php:31 inc/banks/class-casso-techcombank.php:30
|
||||
#: inc/banks/class-casso-timoplus.php:33 inc/banks/class-casso-tpbank.php:31
|
||||
#: inc/banks/class-casso-vietcombank.php:32
|
||||
#: inc/banks/class-casso-vietinbank.php:31 inc/banks/class-casso-vpbank.php:31
|
||||
msgid "Make payment by bank transfer."
|
||||
msgstr "Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. "
|
||||
|
||||
#: inc/banks/class-casso-momo.php:25
|
||||
msgid ""
|
||||
"Make payment by money transfer via momo. The system automatically confirms "
|
||||
"the order payment after the transfer is completed"
|
||||
msgstr ""
|
||||
"Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. Hệ thống tự "
|
||||
"động xác nhận thanh toán đơn hàng sau khi chuyển khoản hoàn tất"
|
||||
|
||||
#: inc/class-casso-admin-page.php:254
|
||||
msgid ""
|
||||
"Maximum 15 characters, no spaces and no special characters. If contained, it "
|
||||
"will be deleted"
|
||||
msgstr ""
|
||||
"Tối đa 15 kí tự, không chứa khoảng trắng và kí tự đặc biệt. Nếu chứa sẽ bị "
|
||||
"xóa"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:20
|
||||
msgid "Momo Wallet"
|
||||
msgstr "Ví Momo"
|
||||
|
||||
#: inc/class-casso-admin-page.php:184
|
||||
msgid "No banks found"
|
||||
msgstr "Không tìm thấy tài khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:181 inc/class-casso-admin-page.php:337
|
||||
msgid "No connection"
|
||||
msgstr "Chưa kết nối"
|
||||
|
||||
#: inc/banks/class-casso-base.php:459
|
||||
msgid ""
|
||||
"No matching transfers were found. The system is still checking the "
|
||||
"transaction"
|
||||
msgstr ""
|
||||
"Không tìm thấy giao dịch nào phù hợp. Hệ thống vẫn đang kiểm tra. Có thể tốn "
|
||||
"1 khoảng thời gian "
|
||||
|
||||
#: inc/class-casso-admin-page.php:154
|
||||
msgid "or"
|
||||
msgstr "hoặc"
|
||||
|
||||
#: wc-gateway-casso.php:460
|
||||
msgid "Order has been overpaid"
|
||||
msgstr "Đơn hàng đã thanh toán dư"
|
||||
|
||||
#: wc-gateway-casso.php:324
|
||||
msgid "Out of money"
|
||||
msgstr "Hết tiền"
|
||||
|
||||
#: wc-gateway-casso.php:140 wc-gateway-casso.php:145 wc-gateway-casso.php:171
|
||||
msgid "Paid"
|
||||
msgstr "Đã thanh toán"
|
||||
|
||||
#: inc/banks/class-casso-acb.php:25 inc/banks/class-casso-agribank.php:23
|
||||
#: inc/banks/class-casso-bidv.php:24 inc/banks/class-casso-mbbank.php:24
|
||||
#: inc/banks/class-casso-ocb.php:24 inc/banks/class-casso-techcombank.php:23
|
||||
#: inc/banks/class-casso-timoplus.php:26 inc/banks/class-casso-tpbank.php:24
|
||||
#: inc/banks/class-casso-vietcombank.php:25
|
||||
#: inc/banks/class-casso-vietinbank.php:24 inc/banks/class-casso-vpbank.php:24
|
||||
msgid ""
|
||||
"Payment by bank transfer. The system automatically confirms the paid order "
|
||||
"after the transfer is completed."
|
||||
msgstr ""
|
||||
"Thực hiện thanh toán bằng hình thức chuyển khoản qua ngân hàng. Hệ thống tự "
|
||||
"động xác nhận thanh toán đơn hàng sau khi chuyển khoản hoàn tất"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:26 inc/banks/class-casso-momo.php:31
|
||||
msgid "Payment Momo"
|
||||
msgstr "Thanh toán Momo"
|
||||
|
||||
#: inc/banks/class-casso-acb.php:24 inc/banks/class-casso-acb.php:26
|
||||
#: inc/banks/class-casso-acb.php:31 inc/banks/class-casso-agribank.php:22
|
||||
#: inc/banks/class-casso-agribank.php:24 inc/banks/class-casso-agribank.php:29
|
||||
#: inc/banks/class-casso-bidv.php:23 inc/banks/class-casso-bidv.php:25
|
||||
#: inc/banks/class-casso-bidv.php:30 inc/banks/class-casso-mbbank.php:23
|
||||
#: inc/banks/class-casso-mbbank.php:25 inc/banks/class-casso-mbbank.php:30
|
||||
#: inc/banks/class-casso-ocb.php:23 inc/banks/class-casso-ocb.php:25
|
||||
#: inc/banks/class-casso-ocb.php:30 inc/banks/class-casso-techcombank.php:22
|
||||
#: inc/banks/class-casso-techcombank.php:24
|
||||
#: inc/banks/class-casso-techcombank.php:29
|
||||
#: inc/banks/class-casso-timoplus.php:25 inc/banks/class-casso-timoplus.php:27
|
||||
#: inc/banks/class-casso-timoplus.php:32 inc/banks/class-casso-tpbank.php:23
|
||||
#: inc/banks/class-casso-tpbank.php:25 inc/banks/class-casso-tpbank.php:30
|
||||
#: inc/banks/class-casso-vietcombank.php:24
|
||||
#: inc/banks/class-casso-vietcombank.php:26
|
||||
#: inc/banks/class-casso-vietcombank.php:31
|
||||
#: inc/banks/class-casso-vietinbank.php:23
|
||||
#: inc/banks/class-casso-vietinbank.php:25
|
||||
#: inc/banks/class-casso-vietinbank.php:30 inc/banks/class-casso-vpbank.php:23
|
||||
#: inc/banks/class-casso-vpbank.php:25 inc/banks/class-casso-vpbank.php:30
|
||||
msgid "Payment via bank %s"
|
||||
msgstr "Thanh toán ngân hàng %s"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:108
|
||||
msgid "Phone number"
|
||||
msgstr "Số điện thoại"
|
||||
|
||||
#: inc/banks/class-casso-base.php:385 inc/banks/class-casso-momo.php:133
|
||||
msgid ""
|
||||
"Please transfer the correct content <b style='font-size: 20px;'>%s</b> for "
|
||||
"we can confirm the payment"
|
||||
msgstr ""
|
||||
"Vui lòng chuyển đúng nội dung <b style = 'font-size: 20px;'>% s </b> để "
|
||||
"chúng tôi xác nhận thanh toán"
|
||||
|
||||
#: inc/banks/class-casso-base.php:367
|
||||
msgid "SAVE IMAGE QR"
|
||||
msgstr "LƯU ẢNH QR"
|
||||
|
||||
#: inc/banks/class-casso-momo.php:24
|
||||
msgid "Scan code Momo"
|
||||
msgstr "Quét mã Momo"
|
||||
|
||||
#: inc/class-casso-admin-page.php:203
|
||||
msgid "Security Key"
|
||||
msgstr "Key bảo mật"
|
||||
|
||||
#: inc/class-casso-admin-page.php:152
|
||||
msgid "Set up a link with Casso"
|
||||
msgstr "Thiết lập liên kết với Casso"
|
||||
|
||||
#: inc/class-casso-admin-page.php:154
|
||||
msgid "Set up automatic Casso link"
|
||||
msgstr "Thiết lập liên kết với Casso"
|
||||
|
||||
#: wc-gateway-casso.php:331
|
||||
msgid "Settings"
|
||||
msgstr "Thiết lập"
|
||||
|
||||
#: inc/class-casso-admin-page.php:182 inc/class-casso-admin-page.php:338
|
||||
msgid "Show details"
|
||||
msgstr "Hiển thị chi tiết"
|
||||
|
||||
#: inc/class-casso-admin-page.php:334
|
||||
msgid "Show less"
|
||||
msgstr "Thu gọn"
|
||||
|
||||
#: inc/class-casso-admin-page.php:274
|
||||
msgid "Status after full payment or balance:"
|
||||
msgstr "Trạng thái sau khi thanh toán đủ hoặc dư:"
|
||||
|
||||
#: inc/class-casso-admin-page.php:289
|
||||
msgid "Status if payment is missing:"
|
||||
msgstr "Trạng thái nếu thanh toán bị thiếu:"
|
||||
|
||||
#: wc-gateway-casso.php:443
|
||||
msgid "The order is underpaid so it is not completed"
|
||||
msgstr "Đơn hàng bị thanh toán thiếu nên chưa hoàn tất"
|
||||
|
||||
#: inc/banks/class-casso-base.php:368
|
||||
msgid "Then open the banking App and scan the transfer QR"
|
||||
msgstr " Sau đó mở App ngân hàng quét QR chuyển khoản"
|
||||
|
||||
#: wc-gateway-casso.php:433
|
||||
msgid "Transaction is too old, not processed"
|
||||
msgstr "Giao dịch quá cũ, không xử lý"
|
||||
|
||||
#: inc/class-casso-admin-page.php:251
|
||||
msgid "Transaction prefix"
|
||||
msgstr "Tiền tố giao dịch"
|
||||
|
||||
#: inc/banks/class-casso-base.php:90
|
||||
msgid "Transfer"
|
||||
msgstr "Chuyển khoản"
|
||||
|
||||
#: inc/banks/class-casso-base.php:97
|
||||
msgid ""
|
||||
"Transfer money to our account<b> %s</b>. The order will be confirmed "
|
||||
"immediately after the transfer"
|
||||
msgstr ""
|
||||
"Chuyển khoản vào tài khoản <b>%s</b> của chúng tôi. Đơn hàng sẽ được xác "
|
||||
"nhận ngay sau khi chuyển khoản"
|
||||
|
||||
#: wc-gateway-casso.php:323
|
||||
msgid "Trial"
|
||||
msgstr "Dùng thử"
|
||||
|
||||
#: inc/class-casso-admin-page.php:137
|
||||
msgid "Turn on bank transfer"
|
||||
msgstr "Bật chuyển khoản ngân hàng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:258 inc/class-casso-admin-page.php:262
|
||||
msgid "Turn on Case Sensitivity"
|
||||
msgstr "Bật Phân biệt chữ hoa / chữ thường"
|
||||
|
||||
#: wc-gateway-casso.php:148 wc-gateway-casso.php:153 wc-gateway-casso.php:172
|
||||
msgid "Underpaid"
|
||||
msgstr "Thanh toán thiếu"
|
||||
|
||||
#: inc/class-casso-admin-page.php:229
|
||||
msgid "Updating account name"
|
||||
msgstr "Đang cập nhật tên tài khoản"
|
||||
|
||||
#: inc/class-casso-admin-page.php:187
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
#: inc/class-casso-admin-page.php:142
|
||||
msgid "VietQR"
|
||||
msgstr ""
|
||||
|
||||
#: inc/banks/class-casso-momo.php:107
|
||||
msgid "Wallet"
|
||||
msgstr "Ví điện tử"
|
||||
|
||||
#: inc/class-casso-admin-page.php:204 inc/class-casso-admin-page.php:245
|
||||
msgid "Webhook URL"
|
||||
msgstr "Webhook URL"
|
||||
|
||||
#: inc/banks/class-casso-base.php:312 inc/banks/class-casso-base.php:615
|
||||
msgid "You paid"
|
||||
msgstr "Bạn đã thanh toán thành công"
|
||||
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
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
/**1.0.1 - 2021.10.15**/
|
||||
- Updated: Update support file
|
||||
|
||||
/**1.0.0 - 2021.10.14**/
|
||||
~ The first released
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/cf-image-resizing/change_log/CHANGELOG.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/cf-image-resizing/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
##### Version 1.3 (2022-03-04)
|
||||
|
||||
- Rewrite: The plugin was re-written to include fixes for all the bugs reported via github, new features (and flexibility to add more features), configurable settings/options and more.
|
||||
- Tested up to WordPress 5.9.1
|
||||
- Tested for several weeeks on several large production websites
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user