Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6da9540a97 | ||
|
|
44da286d5d | ||
|
|
96b6b81d78 | ||
|
|
de4f65e69b | ||
|
|
bce3b48ac7 | ||
|
|
2c1eb27f79 | ||
|
|
a423b15d53 | ||
|
|
162fcf4c2d | ||
|
|
2613fdcc6b | ||
|
|
fbabd509f0 | ||
|
|
a075c93e6f | ||
|
|
d2a8bf92d9 | ||
|
|
39459fb5a1 | ||
|
|
c11f4b9064 | ||
|
|
4fb47e1c3b | ||
|
|
1260a6480f | ||
|
|
598c6ebb69 | ||
|
|
289e2d80c1 | ||
|
|
cb7cd9aac2 | ||
|
|
99fca11958 | ||
|
|
ea020aa8a5 | ||
|
|
4d30fecc36 | ||
|
|
369bbbe084 | ||
|
|
0ddc3cc10b | ||
|
|
a5adcfec97 |
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -9,11 +9,11 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.7, '3.0', 3.1]
|
||||
ruby: [2.7, '3.0', 3.1, 3.2]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: ruby/setup-ruby@v1
|
||||
|
||||
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: checkout sources
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set tag to latest
|
||||
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
|
||||
@@ -43,7 +43,7 @@ jobs:
|
||||
install: true
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2.1.0
|
||||
uses: docker/login-action@v2.2.0
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
4
.github/workflows/gempush.yml
vendored
4
.github/workflows/gempush.yml
vendored
@@ -10,11 +10,11 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Ruby 2.6
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
ruby-version: 2.6
|
||||
|
||||
#- name: Publish to GPR
|
||||
# run: |
|
||||
|
||||
@@ -2,7 +2,7 @@ require: rubocop-performance
|
||||
AllCops:
|
||||
NewCops: enable
|
||||
SuggestExtensions: false
|
||||
TargetRubyVersion: 2.5
|
||||
TargetRubyVersion: 2.7
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
- 'vendor/**/*'
|
||||
|
||||
@@ -25,8 +25,7 @@
|
||||
## Prerequisites
|
||||
|
||||
- (Optional but highly recommended: [RVM](https://rvm.io/rvm/install))
|
||||
- Ruby >= 2.5 - Recommended: latest
|
||||
- Ruby 2.5.0 to 2.5.3 can cause an 'undefined symbol: rmpd_util_str_to_d' error in some systems, see [#1283](https://github.com/wpscanteam/wpscan/issues/1283)
|
||||
- Ruby >= 2.7 - Recommended: latest
|
||||
- Curl >= 7.72 - Recommended: latest
|
||||
- The 7.29 has a segfault
|
||||
- The < 7.72 could result in `Stream error in the HTTP/2 framing layer` in some cases
|
||||
@@ -39,7 +38,9 @@ When using a pentesting distubution (such as Kali Linux), it is recommended to i
|
||||
|
||||
### In macOSX via Homebrew
|
||||
|
||||
`brew install wpscanteam/tap/wpscan`
|
||||
```shell
|
||||
brew install wpscanteam/tap/wpscan
|
||||
```
|
||||
|
||||
### From RubyGems
|
||||
|
||||
|
||||
@@ -7,6 +7,10 @@ module WPScan
|
||||
class KnownLocations < CMSScanner::Finders::Finder
|
||||
include CMSScanner::Finders::Finder::Enumerator
|
||||
|
||||
def valid_response_codes
|
||||
@valid_response_codes ||= [200, 206].freeze
|
||||
end
|
||||
|
||||
SQL_PATTERN = /(?:DROP|(?:UN)?LOCK|CREATE|ALTER) (?:TABLE|DATABASE)|INSERT INTO/.freeze
|
||||
|
||||
# @param [ Hash ] opts
|
||||
@@ -17,7 +21,7 @@ module WPScan
|
||||
def aggressive(opts = {})
|
||||
found = []
|
||||
|
||||
enumerate(potential_urls(opts), opts.merge(check_full_response: 200)) do |res|
|
||||
enumerate(potential_urls(opts), opts.merge(check_full_response: valid_response_codes)) do |res|
|
||||
if res.effective_url.end_with?('.zip')
|
||||
next unless %r{\Aapplication/zip}i.match?(res.headers['Content-Type'])
|
||||
else
|
||||
|
||||
@@ -92,7 +92,7 @@ module WPScan
|
||||
tags: 'Tags',
|
||||
text_domain: 'Text Domain'
|
||||
}.each do |attribute, tag|
|
||||
instance_variable_set(:"@#{attribute}", parse_style_tag(style_body, tag))
|
||||
instance_variable_set(:"@#{attribute}", parse_style_tag(style_body, tag)&.force_encoding('UTF-8'))
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -16,5 +16,8 @@ def classify_slug(slug)
|
||||
classified = slug.to_s.gsub(/[^a-z\d\-]/i, '-').gsub(/-{1,}/, '_').camelize.to_s
|
||||
classified = "D_#{classified}" if /\d/.match?(classified[0])
|
||||
|
||||
# Special case for slugs with all non-latin characters.
|
||||
classified = "HexSlug_#{slug.bytes.map { |i| i.to_s(16) }.join}" if classified.empty?
|
||||
|
||||
classified.to_sym
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.23'
|
||||
VERSION = '3.8.25'
|
||||
end
|
||||
|
||||
3162
spec/fixtures/db/dynamic_finders.yml
vendored
3162
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1485
spec/fixtures/dynamic_finders/expected.yml
vendored
1485
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,170 @@
|
||||
# Copyright (C) 2023 Qewebby
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 360 Product Viewer for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp_360view\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-05-11T17:47:24+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: wp360view\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
msgid "360 Product Viewer for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/360-product-viewer-for-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Qewebby"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.qewebby.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:108
|
||||
msgid "360 Product image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:141
|
||||
msgid "Delete image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:141
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add 360 Product images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add to 360 Product gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Delete 360 Product image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add 360 product images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:39
|
||||
msgid "360 View Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:56
|
||||
msgid "Shortcode Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:78
|
||||
msgid "Advance Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:88
|
||||
msgid "Enable Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:90
|
||||
msgid "Enable navigation panel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:91
|
||||
msgid "Enable or disable navigation panel globally OR you can override this settings by <b>\"navigation\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:99
|
||||
#: includes/admin/class-wp360view-settings.php:101
|
||||
msgid "Enable dragging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:102
|
||||
msgid "Enable or disable dragging option globally OR you can override this settings by <b>\"drag\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:106
|
||||
#: includes/admin/class-wp360view-settings.php:110
|
||||
msgid "Play Speed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:111
|
||||
msgid "Add/change play speed of 360 slider globally OR you can override this settings by <b>\"playspeed\"</b> attibute by shortcode. Default value is <b>100</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:115
|
||||
#: includes/admin/class-wp360view-settings.php:119
|
||||
msgid "Frame Rate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:120
|
||||
msgid "Add/change frame rate of 360 slider globally OR you can override this settings by <b>\"framerate\"</b> attibute by shortcode. Default value is <b>10</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:128
|
||||
msgid "Enable Spin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:130
|
||||
msgid "Enable spin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:131
|
||||
msgid "Enable or disable spin settings globally OR you can override this settings by <b>\"enablespin\"</b> attibute by shortcode. Default value is <b>false</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:139
|
||||
#: includes/admin/class-wp360view-settings.php:141
|
||||
msgid "Show Cursor"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:142
|
||||
msgid "Hide or show cursor globally OR you can override this settings by <b>\"showcursor\"</b> attibute by shortcode. Default value is <b>false</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:151
|
||||
msgid "Fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:153
|
||||
msgid "Enable full screen support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:154
|
||||
msgid "Enable or disable full screen support settings globally OR you can override this settings by <b>\"fullscreen\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:162
|
||||
msgid "Zoom In/Out"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:164
|
||||
msgid "Enable Zoom In/Out"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:165
|
||||
msgid "Enable or disable zoom in/out settings globally OR you can override this settings by <b>\"zoominout\"</b> attibute by shortcode. Default value is <b>true</b>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/360-product.php:22
|
||||
#: templates/shortcode-template.php:26
|
||||
msgid "360 Product View"
|
||||
msgstr ""
|
||||
|
||||
#: wp_360view.php:134
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: wp_360view.php:176
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,75 @@
|
||||
# Copyright (C) 2023 Neeb Plugins
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Access Guard 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/access-guard\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-07-13T19:05:53+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.8.1\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: access-guard.php:44
|
||||
#: access-guard.php:45
|
||||
#: access-guard.php:56
|
||||
#: access-guard.php:243
|
||||
#: access-guard.php:250
|
||||
msgid "Access Guard"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://neebplugins.com/access-guard"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Enhance access protection, control user permissions, and provide IP banning functionality."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Neeb Plugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://neebplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: access-guard.php:57
|
||||
msgid "Configure access protection settings here."
|
||||
msgstr ""
|
||||
|
||||
#: access-guard.php:78
|
||||
msgid "Access Protection Settings"
|
||||
msgstr ""
|
||||
|
||||
#: access-guard.php:85
|
||||
msgid "IP Block List"
|
||||
msgstr ""
|
||||
|
||||
#: access-guard.php:93
|
||||
msgid "Custom Ban Messages"
|
||||
msgstr ""
|
||||
|
||||
#: access-guard.php:101
|
||||
msgid "Access Control Rules"
|
||||
msgstr ""
|
||||
|
||||
#: access-guard.php:109
|
||||
msgid "<p>Configure the access protection settings below:</p>"
|
||||
msgstr ""
|
||||
|
||||
#: access-guard.php:115
|
||||
msgid "<p class=\"description\">Enter the IP addresses or ranges to block, one per line.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: access-guard.php:121
|
||||
msgid "<p class=\"description\">Enter the custom ban message to display to blocked users.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: access-guard.php:209
|
||||
msgid "This content is restricted. Please contact the administrator for access."
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/ai-co-pilot-for-wp/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/ai-co-pilot-for-wp/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.1 - 29 May 2023 =
|
||||
* Fix: Some minor issues
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/ai-contact-form/change_log/changelog.txt
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/ai-contact-form/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 11-22-2023
|
||||
* Initial Release.
|
||||
|
||||
= 1.0.1 - 11-23-2023
|
||||
* Fix - Broken Url Links.
|
||||
1518
spec/fixtures/dynamic_finders/plugin_version/ai-scribe/translation_file/languages/aiscribe.pot
vendored
Normal file
1518
spec/fixtures/dynamic_finders/plugin_version/ai-scribe/translation_file/languages/aiscribe.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,160 @@
|
||||
# Copyright (C) 2023 Allpay
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Allpay payment gateway 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/allpay-payment-"
|
||||
"gateway.1.0.2\n"
|
||||
"POT-Creation-Date: 2023-07-19T19:35:49+03:00\n"
|
||||
"PO-Revision-Date: 2023-07-19 19:49+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ru_RU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Domain: allpay-payment-gateway\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Allpay payment gateway"
|
||||
msgstr "Платежный шлюз Allpay"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.allpay.co.il/integrations/woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allpay Payment Gateway for WooCommerce."
|
||||
msgstr "Платежный шлюз Allpay для WooCommerce."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Allpay"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://allpay.co.il"
|
||||
msgstr ""
|
||||
|
||||
#: allpay-gateway.php:47
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: allpay.php:12 allpay.php:16
|
||||
msgid "Bank cards payments Allpay"
|
||||
msgstr "Оплата банковскими картами Allpay"
|
||||
|
||||
#: allpay.php:14
|
||||
msgid "Allpay Payment Gateway Plug-in for WooCommerce"
|
||||
msgstr "Плагин платежного шлюза Allpay для WooCommerce"
|
||||
|
||||
#: allpay.php:55
|
||||
msgid "Enable / Disable"
|
||||
msgstr "Включить/ Выключить"
|
||||
|
||||
#: allpay.php:56
|
||||
msgid "Enable this payment gateway"
|
||||
msgstr "Включить этот метод оплаты"
|
||||
|
||||
#: allpay.php:61
|
||||
msgid "Title"
|
||||
msgstr "Заголовок"
|
||||
|
||||
#: allpay.php:63
|
||||
msgid "Payment title the customer will see during the checkout process."
|
||||
msgstr ""
|
||||
"Заголовок платежа, который покупатель увидит в процессе оформления заказа."
|
||||
|
||||
#: allpay.php:64
|
||||
msgid "Credit card"
|
||||
msgstr "Кредитная карта"
|
||||
|
||||
#: allpay.php:67
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: allpay.php:69
|
||||
msgid "Payment description the customer will see during the checkout process."
|
||||
msgstr ""
|
||||
"Описание платежа, которое покупатель увидит в процессе оформления заказа."
|
||||
|
||||
#: allpay.php:70
|
||||
msgid "Pay securely using your credit card."
|
||||
msgstr "Платите безопасно с помощью кредитной карты."
|
||||
|
||||
#: allpay.php:74
|
||||
msgid "API login"
|
||||
msgstr "API логин"
|
||||
|
||||
#: allpay.php:76
|
||||
msgid "Allpay API Login"
|
||||
msgstr "Логин API Allpay"
|
||||
|
||||
#: allpay.php:79
|
||||
msgid "API key"
|
||||
msgstr "API ключ"
|
||||
|
||||
#: allpay.php:81
|
||||
msgid "Allpay API Key"
|
||||
msgstr "Ключ API Allpay"
|
||||
|
||||
#: allpay.php:84
|
||||
msgid "Installment max payments"
|
||||
msgstr "Платежей в рассрочку до"
|
||||
|
||||
#: allpay.php:86
|
||||
msgid "Maximum number of installment payments. Up to 12, zero to disable."
|
||||
msgstr ""
|
||||
"Максимальное количество платежей в рассрочку. Максимум до12-и платежей. 0 "
|
||||
"для отключения."
|
||||
|
||||
#: allpay.php:87
|
||||
msgid ""
|
||||
"Allows client to choose number of payments. Valid for credit cards only (no "
|
||||
"debit cards)"
|
||||
msgstr ""
|
||||
"Позволяет клиенту выбрать количество платежей. Действительно только для "
|
||||
"кредитных карт (без дебетовых карт)"
|
||||
|
||||
#: allpay.php:91
|
||||
msgid "Installment min order amount"
|
||||
msgstr "Минимальная сумма заказа в рассрочку"
|
||||
|
||||
#: allpay.php:93
|
||||
msgid "Minimum order amount for installments. Zero for orders of any amount."
|
||||
msgstr "Минимальная сумма заказа в рассрочку. Ноль для заказов на любую сумму."
|
||||
|
||||
#: allpay.php:94
|
||||
msgid ""
|
||||
"Enables installment option when payment amount equals or above this value"
|
||||
msgstr ""
|
||||
"Включает опцию рассрочки, когда сумма платежа равна или превышает это "
|
||||
"значение"
|
||||
|
||||
#: allpay.php:98
|
||||
msgid "First payment amount"
|
||||
msgstr "Сумма первого платежа"
|
||||
|
||||
#: allpay.php:100
|
||||
msgid "First Installment payment. Zero for auto."
|
||||
msgstr "Оплата первого взноса. Ноль для автоматического расчета."
|
||||
|
||||
#: allpay.php:101
|
||||
msgid ""
|
||||
"Makes first payment amount fixed. If set to 0, the system will calculate the "
|
||||
"first payment"
|
||||
msgstr ""
|
||||
"Фиксирует сумму первого платежа. Если установлено 0, система рассчитает "
|
||||
"первый платеж"
|
||||
|
||||
#: allpay.php:146
|
||||
msgid ""
|
||||
"We are currently experiencing problems trying to connect to this payment "
|
||||
"gateway. Sorry for the inconvenience."
|
||||
msgstr ""
|
||||
"В настоящее время у нас возникают проблемы с подключением к этому платежному "
|
||||
"шлюзу. Приносим извинения за неудобства."
|
||||
|
||||
#: allpay.php:149
|
||||
msgid "Allpay's Response was empty."
|
||||
msgstr "Пустой ответ от платежного шлюза."
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "mvam-animiate",
|
||||
"version": "1.0.1",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^19.2.1"
|
||||
}
|
||||
}
|
||||
249
spec/fixtures/dynamic_finders/plugin_version/ask-faq/translation_file/languages/ask-faq-pro.pot
vendored
Normal file
249
spec/fixtures/dynamic_finders/plugin_version/ask-faq/translation_file/languages/ask-faq-pro.pot
vendored
Normal file
@@ -0,0 +1,249 @@
|
||||
# Copyright (C) 2023 ThemeAtelier
|
||||
# This file is distributed under the same license as the Ask FAQ Pro plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ask FAQ Pro 0.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ask-faq-pro\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-04-19T04:37:38+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: ask-faq-pro\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Ask FAQ Pro"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Best FAQ block including tab and accordion version what provides to use text, audio and video as Write Answer."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ThemeAtelier"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://themeatelier.net/"
|
||||
msgstr ""
|
||||
|
||||
#: ask-faq.php:55
|
||||
msgid "Ask FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:72
|
||||
#: build/tab/index.js:96
|
||||
#: build/accordion-block/index.js:52
|
||||
#: build/tab/index.js:94
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:75
|
||||
#: build/tab/index.js:99
|
||||
#: build/accordion-block/index.js:53
|
||||
#: build/tab/index.js:95
|
||||
msgid "Audio"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:78
|
||||
#: build/tab/index.js:102
|
||||
#: build/accordion-block/index.js:54
|
||||
#: build/tab/index.js:96
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:85
|
||||
#: build/accordion-block/index.js:90
|
||||
#: build/accordion-block/index.js:157
|
||||
#: build/tabs/index.js:3631
|
||||
#: build/tabs/index.js:3632
|
||||
#: build/accordion-block/index.js:68
|
||||
#: build/accordion-block/index.js:73
|
||||
#: build/accordion-block/index.js:171
|
||||
#: build/tabs/index.js:3194
|
||||
#: build/tabs/index.js:3198
|
||||
msgid "Write Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:91
|
||||
#: build/accordion-block/index.js:74
|
||||
msgid "Write your question to show as Write Question."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:93
|
||||
#: build/tab/index.js:105
|
||||
#: build/accordion-block/index.js:80
|
||||
#: build/tab/index.js:104
|
||||
msgid "Type of Write Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:106
|
||||
#: build/tab/index.js:118
|
||||
#: build/accordion-block/index.js:89
|
||||
#: build/tab/index.js:113
|
||||
msgid "Choose the type of answer you wanna show"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:108
|
||||
#: build/accordion-block/index.js:113
|
||||
#: build/accordion-block/index.js:184
|
||||
#: build/tab/index.js:120
|
||||
#: build/tab/index.js:123
|
||||
#: build/accordion-block/index.js:96
|
||||
#: build/accordion-block/index.js:101
|
||||
#: build/accordion-block/index.js:209
|
||||
msgid "Write Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:114
|
||||
#: build/accordion-block/index.js:102
|
||||
msgid "Write your answer to show as Write Answer."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:205
|
||||
#: build/tab/index.js:139
|
||||
#: build/tab/index.js:184
|
||||
#: build/accordion-block/index.js:233
|
||||
#: build/tab/index.js:142
|
||||
#: build/tab/index.js:202
|
||||
msgid "Upload Audio"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:207
|
||||
#: build/tab/index.js:186
|
||||
#: build/accordion-block/index.js:242
|
||||
#: build/tab/index.js:211
|
||||
msgid "No Audio Uploaded Yet"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:228
|
||||
#: build/tab/index.js:155
|
||||
#: build/tab/index.js:207
|
||||
#: build/accordion-block/index.js:271
|
||||
#: build/tab/index.js:162
|
||||
#: build/tab/index.js:238
|
||||
msgid "Upload Video"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:230
|
||||
#: build/tab/index.js:209
|
||||
#: build/accordion-block/index.js:280
|
||||
#: build/tab/index.js:247
|
||||
msgid "No Video Uploaded Yet"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:261
|
||||
#: build/accordion-block/index.js:313
|
||||
msgid "Accordion Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:262
|
||||
#: build/accordion-block/index.js:314
|
||||
msgid "A accordion question item"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:518
|
||||
#: build/tabs/index.js:3692
|
||||
#: build/accordion-block/index.js:561
|
||||
#: build/tabs/index.js:3304
|
||||
msgid "Show Searchbar for filtering questions."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:522
|
||||
#: build/accordion-block/index.js:527
|
||||
#: build/tabs/index.js:3696
|
||||
#: build/tabs/index.js:3701
|
||||
#: build/accordion-block/index.js:570
|
||||
#: build/accordion-block/index.js:575
|
||||
#: build/tabs/index.js:3313
|
||||
#: build/tabs/index.js:3318
|
||||
msgid "Search Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:528
|
||||
#: build/tabs/index.js:3702
|
||||
#: build/accordion-block/index.js:579
|
||||
#: build/tabs/index.js:3322
|
||||
msgid "Change search filed placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:530
|
||||
#: build/tabs/index.js:3704
|
||||
#: build/accordion-block/index.js:586
|
||||
#: build/tabs/index.js:3329
|
||||
msgid "Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/index.js:64
|
||||
#: build/tab/index.js:59
|
||||
msgid "%1$s (%2$d of %3$d)"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/index.js:163
|
||||
#: build/tab/index.js:180
|
||||
msgid "Add Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Ask Accordion"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Accordion for Ask FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "ask"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "faq"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "accordion"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Tab for ask faq"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Ask Tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block style label"
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block style label"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,6 @@
|
||||
= 1.2.0 =
|
||||
New: support for WooCommerce 8.0.1
|
||||
New: support for WordPress 6.3
|
||||
|
||||
= 1.1.0 =
|
||||
New: support for WooCommerce 7.9
|
||||
@@ -0,0 +1,184 @@
|
||||
# Copyright (C) 2023 Bayarcash
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Bayarcash GiveWP 3.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bayarcash-givewp\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-06-22T02:18:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: bayarcash-givewp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Bayarcash GiveWP"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://bayarcash.com/?utm_source=wp-plugins-givewp&utm_campaign=plugin-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Accept online donation from Malaysia internet online banking via Bayarcash. Currently, Bayarcash support FPX and Direct Debit payment channels."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/src/Givewp.php:43
|
||||
#: includes/src/Givewp.php:44
|
||||
#: includes/src/Givewp.php:51
|
||||
#: includes/src/Givewp.php:168
|
||||
msgid "Bayarcash"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://bayarcash.com/?utm_source=wp-plugins-givewps&utm_campaign=author-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/donor-profile.php:14
|
||||
msgid "Phone Numbers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/donor-profile.php:19
|
||||
msgid "This donor does not have any phone number saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:120
|
||||
#: includes/admin/form-fields.php:125
|
||||
#: includes/src/Givewp.php:277
|
||||
msgid "Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:122
|
||||
msgid "We require a phone number for verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:131
|
||||
msgid "Identification Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:133
|
||||
msgid "We require a identification type for verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:152
|
||||
#: includes/admin/form-fields.php:157
|
||||
#: includes/src/Givewp.php:278
|
||||
msgid "Identification Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:154
|
||||
msgid "We require a identification number for verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Bayarcash.php:123
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Bayarcash.php:157
|
||||
msgid "Bayarcash require GiveWP plugin. Please install and activate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:70
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:75
|
||||
#: includes/src/Givewp.php:134
|
||||
msgid "Personal Access Token (PAT)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:76
|
||||
#: includes/src/Givewp.php:135
|
||||
msgid "Enter your Personal Access Token (PAT). You can retrieve it from Bayarcash console at Dashboard > Profile."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:81
|
||||
#: includes/src/Givewp.php:140
|
||||
msgid "Portal Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:82
|
||||
#: includes/src/Givewp.php:141
|
||||
msgid "Enter your portal key. You can retrieve it from Bayarcash console at Dashboard > Portals."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:91
|
||||
msgid "Reference Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:96
|
||||
#: includes/src/Givewp.php:146
|
||||
msgid "Billing Fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:97
|
||||
#: includes/src/Givewp.php:147
|
||||
msgid "This option will enable the billing details section at the donation form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:102
|
||||
#: includes/src/Givewp.php:152
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:103
|
||||
#: includes/src/Givewp.php:153
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:123
|
||||
msgid "Do you want to customize the donation instructions for this form?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:128
|
||||
msgid "Global Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:129
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:130
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:205
|
||||
msgid "Make your donation quickly and securely with Bayarcash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:206
|
||||
msgid "How it works:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:207
|
||||
msgid "You will be redirected to Bayarcash to pay using your online banking. You will then be brought back to this page to view your receipt."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:316
|
||||
msgid "Please tick the create account button if you want to create a subscription donation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:397
|
||||
msgid "Please enter phone number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:401
|
||||
msgid "Please enter identification number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:405
|
||||
msgid "Please select identification type."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: payment data
|
||||
#: includes/src/Givewp.php:455
|
||||
msgid "Payment creation failed before sending donor to Bayarcash. Payment data: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:456
|
||||
msgid "Payment Error"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,194 @@
|
||||
# Copyright (C) 2023 thingsym
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Better Website Performance 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/better-website-performance\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-05-31T08:54:57+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: better-website-performance\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Better Website Performance"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/thingsym/better-website-performance"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The Better Website Performance plugin adds advanced features to improve website performance."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "thingsym"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.thingslabo.com/"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-better-website-performance.php:107
|
||||
msgid "Become a sponsor"
|
||||
msgstr ""
|
||||
|
||||
#: inc/customizer/class-panel.php:39
|
||||
msgid "Performance Settings (Better Website Performance)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emoji/class-emoji.php:169
|
||||
msgid "Emoji resource"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emoji/class-emoji.php:188
|
||||
msgid "Enable Emoji resource"
|
||||
msgstr ""
|
||||
|
||||
#: inc/image-srcset/class-image-srcset.php:162
|
||||
msgid "Image Srcset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/image-srcset/class-image-srcset.php:181
|
||||
msgid "Enable Image Srcset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:200
|
||||
msgid "JavaScript"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:219
|
||||
msgid "Async type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:243
|
||||
#: inc/style/class-concat.php:329
|
||||
msgid "Exclude"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:246
|
||||
#: inc/style/class-concat.php:332
|
||||
msgid "Enter handle names to exclude."
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:228
|
||||
msgid "jQuery"
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:247
|
||||
msgid "Enable jQuery"
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:266
|
||||
msgid "Enable jQuery Migrate"
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:285
|
||||
msgid "Place jQuery in the footer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/preload/class-preload.php:193
|
||||
#: inc/preload/class-preload.php:214
|
||||
msgid "Preload"
|
||||
msgstr ""
|
||||
|
||||
#: inc/preload/class-preload.php:220
|
||||
#: inc/resource-hints/class-resource-hints.php:240
|
||||
#: inc/resource-hints/class-resource-hints.php:265
|
||||
#: inc/resource-hints/class-resource-hints.php:290
|
||||
#: inc/resource-hints/class-resource-hints.php:315
|
||||
msgid "See <a href=\"%1$s\" target=\"_blank\">Specification</a>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:213
|
||||
msgid "Resource Hints"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:234
|
||||
msgid "DNS-Prefetch"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:259
|
||||
msgid "Preconnect"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:284
|
||||
msgid "Prefetch"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:309
|
||||
msgid "Prerender"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:267
|
||||
msgid "Style Sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:286
|
||||
msgid "Loading type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:290
|
||||
msgid "Default: Load external css file"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:291
|
||||
msgid "Inline each stylesheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:292
|
||||
msgid "Inline concated Stylesheets"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:310
|
||||
msgid "Enable minify"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-custom-css/class-wp-custom-css.php:180
|
||||
msgid "Place custom CSS in the footer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:195
|
||||
msgid "HTML Head"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:214
|
||||
msgid "Display the links to the general feeds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:233
|
||||
msgid "Display the links to the extra feeds (such as category feeds)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:252
|
||||
msgid "Display Really Simple Discovery (EditURI)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:271
|
||||
msgid "Display Windows Live Writer (wlwmanifest)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:290
|
||||
msgid "Display WordPress generator"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:309
|
||||
msgid "Display canonical"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:328
|
||||
msgid "Display shortlink"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:347
|
||||
msgid "Display the REST API link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:366
|
||||
msgid "Display oEmbed discovery links"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,47 @@
|
||||
# Beyond Identity Changelog
|
||||
|
||||
## [1.0.0] - 2023-04-03
|
||||
|
||||
- Initial release of the Beyond Identity Passwordless Authentication plugin.
|
||||
|
||||
- Adds the ability to generate a Beyond Identity Universal Passkey that is sent to the users email address or directly created when the user is logged in.
|
||||
- Adds a customizable shortcodes to generate passkeys.
|
||||
- Adds a Beyond Identity settings page to configure the Beyond Identity account.
|
||||
- Adds a Beyond Identity users filter to the admin users page to display users who have a Beyond Identity ID.
|
||||
|
||||
- Integrates with the WordPress login flow and provides a fallback option for users who prefer to log in with a password.
|
||||
|
||||
- Uses OpenID Connect (OIDC) protocol for authentication, based on the OpenID Connect Generic Client v3.9.1 licensed under GPLv2 or later.
|
||||
|
||||
- Licensed under the GNU General Public License (GPL) version 2 or later, consistent with OpenID Connect Generic Client plugin.
|
||||
|
||||
- Removes the following OpenID Connect Generic Client files as they are not necessary for the Beyond Identity Passwordless Authentication plugin and helps to reduce the plugin size and complexity:
|
||||
|
||||
- CHANGELOG.md
|
||||
- readme.txt
|
||||
- docker-compose.yml
|
||||
- docker-compose.wp-env.yml
|
||||
- openid-connect-generic-settings-page.php
|
||||
|
||||
- Removes the OpenID Connect Generic Client settings page as all values can be configured from the Beyond Identity settings page.
|
||||
- Removes the OpenID Connect Generic Client button from the WordPress login page.
|
||||
- Removes the OpenID Connect Generic Client upgrade.
|
||||
- Removes the OpenID Connect Generic Client cron jobs.
|
||||
- Removes the OpenID Connect Generic Client Activation and Deactivation hooks.
|
||||
- Removes the OpenID_Connect_Generic_Option_Logger.
|
||||
|
||||
- Modifies the OpenID Connect Generic Client shortcode default button_text from "Login with OpenID Connect" to "Log in Passwordless" to reflect the passwordless authentication option.
|
||||
- Modifies the OpenID Connect Generic Client shortcode to allow customized redirect_to.
|
||||
- Modifies OpenID_Connect_Generic class to remove the OpenID_Connect_Generic_Settings_Page class.
|
||||
- Modifies OpenID_Connect_Generic bootstrap() to use Beyond Identity values set in the Beyond Identity settings page for the OpenID_Connect_Generic_Option_Settings class initalization.
|
||||
- Modifies OpenID_Connect_Generic login button shortcode with button color, text color and border color attributes.
|
||||
- Modified OpenID_Connect_Generic_Client_Wrapper to not redirect back to origin page. This may cause an infinite loop when generating passkeys. Instead, the forms dictate the redirect_to parameter.
|
||||
- Modified OpenID_Connect_Generic_Client_Wrapper to use the user's email for display_name and nickname.
|
||||
- Modified OpenID_Connect_Generic_Option_Settings set values as the default_settings.
|
||||
|
||||
- Rename OpenID_Connect_Generic login button shortcode to beyond_identity_login_button
|
||||
- Rename OpenID_Connect_Generic authentication URL shortcode to beyond_identity_auth_url.
|
||||
|
||||
- Prefix all OpenID_Connect with BYNDID to address Wordpress plugin review.
|
||||
- Rename filters with beyond-identity-passwordless
|
||||
- Rename text domain to beyond-identity-passwordless
|
||||
@@ -0,0 +1,55 @@
|
||||
# Copyright (C) 2023 Bit Apps
|
||||
# This file is distributed under the gpl2+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Bit Social (Beta) 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bit-social\n"
|
||||
"Last-Translator: developer@bitapps.pro\n"
|
||||
"Language-Team: support@bitapps.pro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-10-11T04:58:50+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: bit-social\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Bit Social (Beta)"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://bitapps.pro/bit-social"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Integrates with other platform"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Bit Apps"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://bitapps.pro"
|
||||
msgstr ""
|
||||
|
||||
#: backend/app/Config.php:172
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: backend/app/Config.php:176
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: backend/app/Config.php:209
|
||||
msgid "Bit Social - Your social of automation's"
|
||||
msgstr ""
|
||||
|
||||
#: backend/app/Config.php:210
|
||||
msgid "Bit Social"
|
||||
msgstr ""
|
||||
|
||||
#: backend/app/HTTP/Services/Schedule/CustomSchdule.php:65
|
||||
msgid "Every "
|
||||
msgstr ""
|
||||
@@ -0,0 +1,232 @@
|
||||
# Copyright (C) 2023 bPlugins LLC
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mailchimp block 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-block\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-07-08T12:12:42+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: mail-collections\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Mailchimp block"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Connect your MailChimp with your WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://bplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form 1"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form 2"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form 3"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Read Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Would you please rate us?"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "We are new and we need your help to grow!🙏"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Config"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Configure Api Key"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Audience Id"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Elements"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Placeholder Text"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Forms"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Background:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Input"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Colors"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Hovers Colors"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Title Here"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Description Here"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Please Insert Your Api Key"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "MailChimp"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "MailChimp API key"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Save Information"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "Mailchimp-block"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "Description of MailChimp Block."
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "mail"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "mailchimp"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "key3"
|
||||
msgstr ""
|
||||
479
spec/fixtures/dynamic_finders/plugin_version/boomerang/translation_file/languages/boomerang.pot
vendored
Normal file
479
spec/fixtures/dynamic_finders/plugin_version/boomerang/translation_file/languages/boomerang.pot
vendored
Normal file
@@ -0,0 +1,479 @@
|
||||
# Copyright (C) 2023 Ben Roberts
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Boomerang - Feature Request Platform 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/boomerang\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-11-17T12:28:20+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: boomerang\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Boomerang - Feature Request Platform"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.bouncingsprout.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A slick, modern feature request platform for WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ben Roberts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:140
|
||||
msgid "Disable Google Fonts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:141
|
||||
msgid "We use Google Icons inside Boomerang. These icons are locally hosted and are therefore GDPR compliant. However, if you would like to disable these, click the button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:149
|
||||
msgid "Disable Boomerang's Own Styles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:150
|
||||
msgid "Boomerang has a set of default styles. To disable these, and use your theme's native styles, click this."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:174
|
||||
msgid "Board Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:198
|
||||
msgid "Label For Title Input"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:204
|
||||
msgid "Label For Content Input"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:210
|
||||
msgid "Label For Tags Input"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:216
|
||||
msgid "Label For Submit Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:231
|
||||
msgid "Admin Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:232
|
||||
msgid "Enter an email address to send notifications when Boomerangs are created."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:240
|
||||
msgid "Send New Boomerang Notification"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: ID of the current board
|
||||
#: admin/inc/classes/class-boomerang-admin.php:262
|
||||
msgid "Shortcode: [boomerang board=\"%s\"]"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:271
|
||||
msgid "Require Approval"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:272
|
||||
msgid "If turned on, new Boomerangs will be given the status of pending, and will need to be approved before publication."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:280
|
||||
msgid "Enable Comments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:281
|
||||
msgid "This allows users to comment on individual Boomerangs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:286
|
||||
msgid "Enable Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:287
|
||||
msgid "Tags are a convenient way of grouping Boomerangs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:292
|
||||
msgid "Enable Statuses"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:293
|
||||
msgid "Statuses may be helpful for organising Boomerang priority."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:298
|
||||
msgid "Enable Votes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:299
|
||||
msgid "This allows users to vote on individual Boomerangs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:304
|
||||
msgid "Enable Downvoting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:305
|
||||
msgid "Downvoting allows users to register disapproval for a Boomerang rather than simply a neutral opinion."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:313
|
||||
msgid "Show Board Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:314
|
||||
msgid "Show the board title in the archive view. If using as a shortcode, you may create your own heading instead."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:323
|
||||
msgid "Enable Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:324
|
||||
msgid "This allows users to upload a picture that helps represent a Boomerang."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:332
|
||||
msgid "Show Published Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:333
|
||||
msgid "This displays the date the Boomerang was created."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:338
|
||||
msgid "Show Friendly Dates"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:339
|
||||
msgid "Shows the publication date in a friendly way."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:344
|
||||
msgid "Show Author"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:345
|
||||
msgid "This displays the details of the user who created the Boomerangs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:350
|
||||
msgid "Show Author's Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:351
|
||||
msgid "Shows the profile picture of the author next to the author's username."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:360
|
||||
msgid "Show Filters"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:361
|
||||
msgid "Show a set of filters on a board directory to assist users to find Boomerangs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:371
|
||||
msgid "Container Width"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/classes/class-boomerang-admin.php:372
|
||||
msgid "Use this to match the width of Boomerang content with that of your theme."
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:147
|
||||
msgid "Sort by"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:153
|
||||
msgid "Latest"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:154
|
||||
msgid "Popular"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:155
|
||||
msgid "Created by me"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:156
|
||||
msgid "Voted on by me"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:162
|
||||
#: inc/boomerang-templates.php:542
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:37
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:182
|
||||
msgid "tags"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:203
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. translators: time
|
||||
#: inc/boomerang-templates.php:361
|
||||
#: inc/boomerang-templates.php:639
|
||||
msgid "%s ago"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Publish date.
|
||||
#: inc/boomerang-templates.php:367
|
||||
#: inc/boomerang-templates.php:645
|
||||
msgid "Published %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Publish date.
|
||||
#: inc/boomerang-templates.php:412
|
||||
msgid "Comments: %d"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:512
|
||||
msgid "Select Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:529
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:553
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:561
|
||||
msgid "To change statuses, enable them under Board Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:568
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:573
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:129
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:199
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/boomerang-templates.php:580
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the plural label of the boomerang 'status' taxonomy.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang post type.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang board post type.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:40
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:80
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:139
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:209
|
||||
msgid "Search %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the plural label of the boomerang 'status' taxonomy.
|
||||
#. translators: Placeholder %s is the plural label of the boomerang post type.
|
||||
#. translators: Placeholder %s is the plural label of the boomerang board post type.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:42
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:82
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:125
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:195
|
||||
msgid "All %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang post type.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang board post type.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:44
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:84
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:145
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:215
|
||||
msgid "Parent %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:46
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:86
|
||||
msgid "Parent %s:"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang post type.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang board post type.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:48
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:88
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:131
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:201
|
||||
msgid "Edit %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:50
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:90
|
||||
msgid "Update %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:52
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:92
|
||||
msgid "Add New %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Name of the Boomerang status menu label.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:56
|
||||
msgid "Status Center"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the singular label of the boomerang 'status' taxonomy.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang post type.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang board post type.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:94
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:133
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:203
|
||||
msgid "New %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:126
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:196
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the singular label of the boomerang post type.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang board post type.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:128
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:198
|
||||
msgid "Add %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the singular label of the boomerang post type.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang board post type.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:135
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:137
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:205
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:207
|
||||
msgid "View %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the singular label of the boomerang post type.
|
||||
#. translators: Placeholder %s is the singular label of the boomerang board post type.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:141
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:211
|
||||
msgid "No %s found"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder %s is the plural label of the boomerang post type.
|
||||
#. translators: Placeholder %s is the plural label of the boomerang board post type.
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:143
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:213
|
||||
msgid "No %s found in trash"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:247
|
||||
msgid "Boomerang Board base"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-cpt-helper.php:255
|
||||
msgid "Boomerang base"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-frontend.php:86
|
||||
#: inc/classes/class-boomerang-frontend.php:216
|
||||
msgid "Saved!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-frontend.php:127
|
||||
#: inc/classes/class-boomerang-frontend.php:461
|
||||
#: inc/classes/class-boomerang-frontend.php:500
|
||||
#: inc/classes/class-boomerang-frontend.php:576
|
||||
#: inc/classes/class-boomerang-votes.php:41
|
||||
msgid "Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-frontend.php:151
|
||||
msgid "Please enter a title. Titles must be at least three characters long."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-frontend.php:200
|
||||
msgid "Please upload one of the following filetypes: jpg, jpeg, png."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-frontend.php:218
|
||||
msgid "We will process your submission shortly. Thank you!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-frontend.php:292
|
||||
msgid "You must be logged in to submit. Sorry."
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-frontend.php:360
|
||||
msgid "Drop file here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-frontend.php:366
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-frontend.php:377
|
||||
msgid "Choose a file"
|
||||
msgstr ""
|
||||
|
||||
#: inc/classes/class-boomerang-frontend.php:479
|
||||
msgid "Status Set"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Base for our Boomerang CPT
|
||||
#: inc/classes/class-boomerang-frontend.php:684
|
||||
msgid "New %s created"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: Base for our Boomerang CPT %2$s: Boomerang permalink
|
||||
#: inc/classes/class-boomerang-frontend.php:689
|
||||
msgid "A new %1$s has been created. You may review it <a href=\"%2$s\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: templates/comments.php:28
|
||||
msgid "Add comment"
|
||||
msgstr ""
|
||||
|
||||
#: templates/comments.php:40
|
||||
msgid "Activity"
|
||||
msgstr ""
|
||||
|
||||
#: templates/comments.php:57
|
||||
msgid "Comment navigation"
|
||||
msgstr ""
|
||||
|
||||
#: templates/comments.php:58
|
||||
msgid "← Older Comments"
|
||||
msgstr ""
|
||||
|
||||
#: templates/comments.php:59
|
||||
msgid "Newer Comments →"
|
||||
msgstr ""
|
||||
|
||||
#: templates/comments.php:64
|
||||
msgid "Comments are closed."
|
||||
msgstr ""
|
||||
|
||||
#: admin/assets/js/boomerang-block.js:35
|
||||
msgid "Boomerang"
|
||||
msgstr ""
|
||||
|
||||
#: admin/assets/js/boomerang-block.js:56
|
||||
msgid "Select a Boomerang Board"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,152 @@
|
||||
# Copyright (C) 2023 Carmo Product GTIN for WooCommerce
|
||||
# This file is distributed under the same license as the Carmo Product GTIN for WooCommerce package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Carmo Product GTIN for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/"
|
||||
"qs_tool_wp_pot_gen_1685090187_0439_962967\n"
|
||||
"POT-Creation-Date: 2023-05-26 10:54+0100\n"
|
||||
"PO-Revision-Date: 2023-05-26 10:55+0100\n"
|
||||
"Last-Translator: João Carmo Pereira <mail@carmo.pt>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.1\n"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:37
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Carmo Woo Product GTIN is active but WooCommerce is not. Please <a "
|
||||
"href=\"%s\">install and activate WooCommerce by Automattic</a> plugin to use "
|
||||
"this feature."
|
||||
msgstr ""
|
||||
"O Carmo Woo Product GTIN está activo, mas o WooCommerce não está. <a "
|
||||
"href=\"%s\">Instale e active o plugin WooCommerce by Automattic</a> para "
|
||||
"utilizar esta funcionalidade."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:53
|
||||
#: carmo-product-gtin-for-woocommerce.php:76
|
||||
msgid "Enter gtin (ean/upc) value"
|
||||
msgstr "Introduzir o gtin (ean/upc)"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:55
|
||||
#: carmo-product-gtin-for-woocommerce.php:79
|
||||
msgid ""
|
||||
"The GTIN, including EAN (European Article Number) and UPC (Universal Product "
|
||||
"Code), is a standardized numerical identifier and barcode used to uniquely "
|
||||
"identify products in the global marketplace, facilitating efficient "
|
||||
"inventory management and supply chain operations."
|
||||
msgstr ""
|
||||
"O GTIN, incluindo o EAN (Número Europeu de Artigo) e o UPC (Código Universal "
|
||||
"de Produto), é um identificador numérico normalizado e um código de barras "
|
||||
"utilizado para identificar exclusivamente os produtos no mercado global, "
|
||||
"facilitando a gestão eficiente do inventário e as operações da cadeia de "
|
||||
"abastecimento."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:152
|
||||
msgid ""
|
||||
"WooCommerce must be installed and active to see how many products have GTIN"
|
||||
msgstr ""
|
||||
"O WooCommerce tem de estar instalado e activo para ver quantos produtos têm "
|
||||
"GTIN"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:170
|
||||
msgid "Statistics"
|
||||
msgstr "Estatísticas"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:173
|
||||
#, php-format
|
||||
msgid "You have used the GTIN field: %s time(s)."
|
||||
msgstr "O campo GTIN foi utilizado: %s vezes."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:176
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:178
|
||||
msgid ""
|
||||
"Warning: This will delete all product data associated with Carmo GTIN. Are "
|
||||
"you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Aviso: Isto irá eliminar todos os dados do produto associados ao Carmo GTIN. "
|
||||
"Tem a certeza de que pretende continuar?"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:179
|
||||
msgid ""
|
||||
"If you delete the data don't forget to flush your object cache if present."
|
||||
msgstr ""
|
||||
"Se eliminar os dados, não se esqueça de limpar a sua cache de objectos, se "
|
||||
"existir."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:180
|
||||
msgid "Delete all carmo GTIN data"
|
||||
msgstr "Eliminar todos os dados do carmo GTIN"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:189
|
||||
msgid "About"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:192
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This plugin was created with love. If you have any question or suggestion, "
|
||||
"please contact using <a href='mailto:%s'>%s</a>."
|
||||
msgstr ""
|
||||
"Este plugin foi criado com amor. Se existir alguma dúvida ou sugestão, entre "
|
||||
"em contato pelo e-email <a href='mailto:%s'>%s</a>."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:220
|
||||
msgid "All data has been deleted."
|
||||
msgstr "Todos os dados foram apagados."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:225
|
||||
msgid "An error occurred while trying to delete data."
|
||||
msgstr "Ocorreu um erro ao tentar apagar os dados."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:232
|
||||
msgid ""
|
||||
"Are you sure you want to delete all product data associated with Carmo GTIN?"
|
||||
msgstr ""
|
||||
"Tem a certeza de que pretende eliminar todos os dados do produto associados "
|
||||
"ao Carmo GTIN?"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:233
|
||||
msgid "This action cannot be undone."
|
||||
msgstr "Esta acção é irreversível."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:234
|
||||
msgid "It will delete all meta_key = 'carmogtin' from wp_postmeta table."
|
||||
msgstr ""
|
||||
"Este procedimento irá eliminar todas as entradas meta_key = 'carmogtin' na "
|
||||
"tabela wp_postmeta."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:235
|
||||
msgid "Yes I'm sure"
|
||||
msgstr "Sim, tenho a certeza"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:248
|
||||
msgid "Settings"
|
||||
msgstr "Opções"
|
||||
|
||||
#~ msgid "Carmo Product GTIN for WooCommerce"
|
||||
#~ msgstr "Carmo Product GTIN for WooCommerce"
|
||||
|
||||
#~ msgid "https://www.carmo.pt/project/woo-product-gtin/"
|
||||
#~ msgstr "https://www.carmo.pt/project/woo-product-gtin/"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Adds a numeric GTIN field on Simple Products and Variation if they exist. "
|
||||
#~ "This field can be used via shortcode on product pages and for product "
|
||||
#~ "feeds."
|
||||
#~ msgstr ""
|
||||
#~ "Adiciona um GTIN numérico em Produtos Simples e em Produtos Variáveis "
|
||||
#~ "(caso existam). Este campo pode ser utilizado via shortcode nos template "
|
||||
#~ "de página de produto e para feeds de produto."
|
||||
|
||||
#~ msgid "carmo"
|
||||
#~ msgstr "carmo"
|
||||
|
||||
#~ msgid "https://carmo.pt"
|
||||
#~ msgstr "https://carmo.pt"
|
||||
@@ -0,0 +1,4 @@
|
||||
*** Chained Product for Woocommerce Change log ***
|
||||
|
||||
2023-09-10 - version 1.0.0
|
||||
* Initial release of the plugin.
|
||||
@@ -0,0 +1,139 @@
|
||||
# Clean My WP Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"Clean My WP v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Webdeclic "
|
||||
"<contact@webdeclic.com>\n"
|
||||
"POT-Creation-Date: "
|
||||
"2023-07-27 16:08+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: "
|
||||
"Webdeclic "
|
||||
"<contact@webdeclic.com>\n"
|
||||
"Language-Team: Webdeclic "
|
||||
"<contact@webdeclic.com>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"1.6.4\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit "
|
||||
"3.3.2\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
"X-Poedit-"
|
||||
"SearchPathExcluded-0: "
|
||||
"public/assets/"
|
||||
"node_modules\n"
|
||||
"X-Poedit-"
|
||||
"SearchPathExcluded-1: "
|
||||
"public/assets\n"
|
||||
|
||||
#: admin/class-tools.php:44
|
||||
#: admin/class-tools.php:45
|
||||
msgid "🛠️ Clean My WP"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-tools.php:109
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-tools.php:110
|
||||
msgid "Disk Explorer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-tools.php:111
|
||||
msgid ""
|
||||
"Are you sure you want to "
|
||||
"delete this file ?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-tools.php:112
|
||||
msgid ""
|
||||
"Are you sure you want to "
|
||||
"delete this folder and "
|
||||
"all its content ?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-tools.php:131
|
||||
#: admin/class-tools.php:214
|
||||
msgid "No path provided"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-tools.php:142
|
||||
#: admin/class-tools.php:222
|
||||
msgid "Invalid path"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-tools.php:228
|
||||
msgid "File does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-tools.php:241
|
||||
msgid ""
|
||||
"Error while deleting file"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-tools.php:246
|
||||
msgid "File deleted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/page-tools-parts/home.php:3
|
||||
msgid ""
|
||||
"🛠️ Welcome to Clean My WP"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/page-tools-parts/home.php:6
|
||||
msgid ""
|
||||
"This plugin is a toolbox "
|
||||
"to help you clean your "
|
||||
"WordPress installation. "
|
||||
"Now you can explore your "
|
||||
"WordPress installation "
|
||||
"and find out what's "
|
||||
"taking up space. For "
|
||||
"this, click on the 'Disk "
|
||||
"Explorer' tab."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/page-tools-parts/home.php:9
|
||||
msgid ""
|
||||
"You can contribute to "
|
||||
"the development of this "
|
||||
"plugin by making a "
|
||||
"donation. For this, "
|
||||
"click on the "
|
||||
"'Contribute' button in "
|
||||
"the menu."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/page-tools.php:23
|
||||
msgid "Contribute ☕️"
|
||||
msgstr ""
|
||||
93
spec/fixtures/dynamic_finders/plugin_version/coreactivity/change_log/changelog.md
vendored
Normal file
93
spec/fixtures/dynamic_finders/plugin_version/coreactivity/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,93 @@
|
||||
# coreActivity
|
||||
|
||||
## Changelog
|
||||
|
||||
### Version: 1.4 / November 15 2023
|
||||
|
||||
* **new** component: `GD Forum Manager` plugin, with 4 events
|
||||
* **new** component: `Forminator` plugin, with 1 event
|
||||
* **new** logs panel view support for the object by ID or name
|
||||
* **new** store statistics for each event on the daily base
|
||||
* **new** filter events by the plugin it originated from
|
||||
* **edit** optimized logs panel views processing and matching
|
||||
* **edit** log item dialog view updated rendering for expandability
|
||||
* **edit** improved `Event` view display for the Logs panel
|
||||
* **edit** Dev4Press Library 4.4 Beta
|
||||
* **fix** several small issues with the `Live` Logs updates
|
||||
* **fix** object filtering for logs panel was unfinished
|
||||
* **fix** notifications property not found for new events
|
||||
|
||||
### Version: 1.3 / November 6 2023
|
||||
|
||||
* **new** geolocation with the use of `MaxMind GeoLite2` database
|
||||
* **new** `MaxMind GeoLite2` support for weekly downloading of Lite database
|
||||
* **new** option to hide the `Object` column from the Logs
|
||||
* **new** plugin dashboard widget for the GEO Location information
|
||||
* **new** component `DebugPress` expanded with two new events
|
||||
* **new** logs panel option to filter by country based on geolocation
|
||||
* **new** logs panel popup dialog with overview of all event data split in tabs
|
||||
* **edit** changes in the order for some columns on the log panel
|
||||
* **edit** expanded `SweepPress` sweeping job logged data
|
||||
* **edit** various improvements to the Logs panel styling
|
||||
* **edit** improved method for running the GEO Location database update
|
||||
* **edit** Dev4Press Library 4.4 Beta
|
||||
* **fix** initial GEO Location database update is not triggered properly
|
||||
|
||||
### Version: 1.2 / October 30 2023
|
||||
|
||||
* **new** database: logs table has new `country_code` column
|
||||
* **new** logging: options for logging country code and other location information
|
||||
* **new** geolocation settings: choose between online and `IP2Location` database
|
||||
* **new** geolocation with the use of `IP2Location` database
|
||||
* **new** `IP2Location` support for weekly downloading of Lite database
|
||||
* **new** registered weekly maintenance background job
|
||||
* **edit** Dev4Press Library 4.4 Beta
|
||||
* **fix** logs override filtering not working properly always
|
||||
* **fix** all CRON handlers registered as filters and not actions
|
||||
* **fix** weekly digest scheduled to run each day
|
||||
|
||||
### Version: 1.1 / October 16 2023
|
||||
|
||||
* **new** component: WooCommerce plugin, with 3 events
|
||||
* **new** notifications component: support for WooCommerce `WC_Email` logging
|
||||
* **new** logs panel action to stop logging some of the object type by value
|
||||
* **new** logs panel metadata column as alternative to the metadata row
|
||||
* **new** logs panel with added views for context and method
|
||||
* **new** tool for bulk control of events notifications status
|
||||
* **new** more settings related to object types exclusions
|
||||
* **edit** sitemeta component: default object type is now `sitemeta`
|
||||
* **edit** many improvements to the `Logs` class for expandability
|
||||
* **edit** few improvements to the base `Component` class
|
||||
* **edit** few improvements to the Logs table and rendering
|
||||
* **edit** Dev4Press Library 4.4 Beta
|
||||
* **fix** logs filtering in some cases not working properly
|
||||
* **fix** some events not always obeying exclusion conditions
|
||||
* **fix** few issues with the content terms relationship change event
|
||||
|
||||
### Version: 1.0.5 / October 5 2023
|
||||
|
||||
* **edit** Dev4Press Library 4.3.5
|
||||
* **fix** admin pages header IP display may be broken if IP is unknown
|
||||
|
||||
### Version: 1.0.4 / October 2 2023
|
||||
|
||||
* **edit** more changes related to PHPCS and WPCS validation
|
||||
* **edit** Dev4Press Library 4.3.4
|
||||
|
||||
### Version: 1.0.3 / September 26 2023
|
||||
|
||||
* **edit** more changes related to PHPCS and WPCS validation
|
||||
* **edit** Dev4Press Library 4.3.3
|
||||
|
||||
### Version: 1.0.2 / September 25 2023
|
||||
|
||||
* **edit** Dev4Press Library 4.3.2
|
||||
|
||||
### Version: 1.0.1 / September 20 2023
|
||||
|
||||
* **edit** more changes related to PHPCS and WPCS validation
|
||||
* **edit** Dev4Press Library 4.3.1
|
||||
|
||||
### Version: 1.0 / September 6 2023
|
||||
|
||||
* **new** first official release
|
||||
15
spec/fixtures/dynamic_finders/plugin_version/crosswinds-blocks/change_log/changelog.md
vendored
Normal file
15
spec/fixtures/dynamic_finders/plugin_version/crosswinds-blocks/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0.2 - November 20, 2023
|
||||
### Fixed
|
||||
- Fixed issue with some files not being in the SVN repository.
|
||||
|
||||
## 1.0.1 - November 18, 2023
|
||||
### Fixed
|
||||
- Fixed issues with the copyright block.
|
||||
|
||||
### Updated
|
||||
- Updated the branding for the Crosswinds Framework and Crosswinds Blocks.
|
||||
|
||||
## 1.0 - October 28,2023
|
||||
- Initial release to the repository.
|
||||
20
spec/fixtures/dynamic_finders/plugin_version/ctcl-floating-cart/composer_file/package.json
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/ctcl-floating-cart/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "ctcl-floating-cart",
|
||||
"version": "0.1.0",
|
||||
"description": "Example block scaffolded with Create Block tool.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"plugin-zip": "wp-scripts plugin-zip",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^26.6.0"
|
||||
}
|
||||
}
|
||||
269
spec/fixtures/dynamic_finders/plugin_version/debrandify/translation_file/languages/dbrdify.pot
vendored
Normal file
269
spec/fixtures/dynamic_finders/plugin_version/debrandify/translation_file/languages/dbrdify.pot
vendored
Normal file
@@ -0,0 +1,269 @@
|
||||
# Copyright (C) 2023 Tahoe Beetschen
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Debrandify 1.1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/debrandify\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-09-25T11:24:12+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: debrandify\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Debrandify"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/morceaudebois/debrandify"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Debrandify is a simple WordPress plugin that lets you hide WordPress' branding and replace it with yours."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Tahoe Beetschen"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://tahoe.be"
|
||||
msgstr ""
|
||||
|
||||
#: debrandify.php:198
|
||||
msgid "No feed available, please visit the "
|
||||
msgstr ""
|
||||
|
||||
#: debrandify.php:200
|
||||
msgid "homepage"
|
||||
msgstr ""
|
||||
|
||||
#: debrandify.php:381
|
||||
msgid "The WordPress REST API has been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/php/notices.php:26
|
||||
#: src/php/notices.php:81
|
||||
msgid "Donate"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/notices.php:41
|
||||
msgid "Thank you for installing <b>Debrandify</b>! You can start getting rid of WordPress' branding right away."
|
||||
msgstr ""
|
||||
|
||||
#: src/php/notices.php:43
|
||||
msgid "Visit settings page"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/notices.php:78
|
||||
msgid "You've been using Debrandify for a while now, I hope you like it! If so, please consider giving a review or donating, that would help a lot 😊"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/notices.php:80
|
||||
msgid "Review"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:13
|
||||
msgid "Your site uses WordPress Multisite, which means Debrandify options are set up "
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:13
|
||||
msgid "on the network level"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:13
|
||||
msgid ". You can prioritise this specific site's settings by toggling this option."
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:63
|
||||
msgid "Debrandify multisite settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:64
|
||||
msgid "Debrandify Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:68
|
||||
msgid "These will impact your whole network of sites. If you wish to set things up specifically for a site, head to the Debrandify settings of its dashboard."
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:73
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:77
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:81
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:85
|
||||
msgid "Bonus features!"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:95
|
||||
msgid "Prioritise these settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:100
|
||||
msgid "WordPress admin bar logo"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:101
|
||||
msgid "Thank you sentence in admin footer"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:101
|
||||
#: src/php/settings.php:102
|
||||
msgid "Your own text"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:102
|
||||
msgid "WordPress version in admin footer"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:105
|
||||
msgid "Login logo image"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:109
|
||||
msgid "Default WordPress logo"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:113
|
||||
msgid "Site logo (if there is one)"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:117
|
||||
msgid "Site title"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:121
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:128
|
||||
msgid "\"— WordPress\" suffix in tab titles of dashboard pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:130
|
||||
msgid "\"News and events\" widget on dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:133
|
||||
msgid "\"Elementor overview\" widget on dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:136
|
||||
msgid "Integrated smileys"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:137
|
||||
msgid "Integrated RSS feed"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:138
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:141
|
||||
msgid "\"From\" text of emails sent by your site"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:141
|
||||
msgid "Your site's name"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:142
|
||||
msgid "Username of the email adress that sends from your site"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:142
|
||||
msgid "First part of email"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:145
|
||||
msgid "Global inline styles"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:146
|
||||
msgid "Unnecessary code in head tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:147
|
||||
msgid "Embeds"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:148
|
||||
msgid "Block library"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:151
|
||||
msgid "SVG upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:152
|
||||
msgid "Center login form vertically"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:153
|
||||
msgid "REST API"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:154
|
||||
msgid "jQuery (if possible)"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:168
|
||||
msgid "Made in France with ❤️ by "
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:170
|
||||
msgid "If you like Debrandify, please consider "
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:170
|
||||
msgid "giving it a review"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:170
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:170
|
||||
msgid "donating"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:171
|
||||
msgid "This is what motivates me to keep it updated and create new projects as an indie developer 😊"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:174
|
||||
msgid "As this is my first WordPress plugin, it might have some bugs! 🐞"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:176
|
||||
msgid "If you find some, please "
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:177
|
||||
msgid "report them here"
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:178
|
||||
msgid "so that I can fix them quickly."
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:247
|
||||
msgid "Settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: src/php/settings.php:247
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
935
spec/fixtures/dynamic_finders/plugin_version/delivengo/translation_file/languages/wc_delivengo.pot
vendored
Normal file
935
spec/fixtures/dynamic_finders/plugin_version/delivengo/translation_file/languages/wc_delivengo.pot
vendored
Normal file
@@ -0,0 +1,935 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Delivengo : Méthodes de livraison pour WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/delivengo/\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-06-14\n"
|
||||
"X-Domain: wc_delivengo\n"
|
||||
|
||||
|
||||
msgid "Preparing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deposited"
|
||||
msgstr ""
|
||||
|
||||
msgid "In progress"
|
||||
msgstr ""
|
||||
|
||||
msgid "Distributed"
|
||||
msgstr ""
|
||||
|
||||
msgid "AR received"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reclamation asked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Incident"
|
||||
msgstr ""
|
||||
|
||||
msgid "No handling information from La Poste for more than 5 days"
|
||||
msgstr ""
|
||||
|
||||
msgid "No evolution of parcel tracking for more than 30 days"
|
||||
msgstr ""
|
||||
|
||||
msgid "AR not received within 30 days following distribution"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND not received within 15/30 days following the non-delivery"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND Access or address error"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND Addressee unknown at address"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND Parcel refused by the addressee"
|
||||
msgstr ""
|
||||
|
||||
msgid "PND Arrival notified and not claimed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Complaint resolved: Parcel found by La Poste"
|
||||
msgstr ""
|
||||
|
||||
msgid "Complaint abandoned"
|
||||
msgstr ""
|
||||
|
||||
msgid "Complaint resolved: La Poste compensation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sent (international)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Handling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resent to distribution"
|
||||
msgstr ""
|
||||
|
||||
msgid "This plugin gives you the possibility to use the Delivengo shipping methods in WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not save the deposit"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not save the label"
|
||||
msgstr ""
|
||||
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
msgid "Free from order value"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping cost will be free if the order value is over the one specified."
|
||||
msgstr ""
|
||||
|
||||
msgid "Always free?"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, rates calculation for this shipping method will always be zero."
|
||||
msgstr ""
|
||||
|
||||
msgid "Title if free"
|
||||
msgstr ""
|
||||
|
||||
msgid "This controls the title which the user sees during checkout if the shipping methods is free. Leave empty to always use standard title."
|
||||
msgstr ""
|
||||
|
||||
msgid "Handling fee"
|
||||
msgstr ""
|
||||
|
||||
msgid "This amount is added to the shipping cost during checkout."
|
||||
msgstr ""
|
||||
|
||||
msgid "Free if at least one item in the cart has one of the free shipping classes above"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, delivery will be free, even if the other items in the cart do not have one of the free shipping classes above"
|
||||
msgstr ""
|
||||
|
||||
msgid "Free shipping classes"
|
||||
msgstr ""
|
||||
|
||||
msgid "These shipping classes qualify for free shipping"
|
||||
msgstr ""
|
||||
|
||||
msgid "Excluded shipping classes"
|
||||
msgstr ""
|
||||
|
||||
msgid "The current shipping method will not be displayed if one product in the cart has one of these shipping classes. This option takes precedence over the option Free shipping classes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo Economic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping without tracking in mailbox, in Economic delivery time to international destinations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo Priority"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping without tracking in mailbox, in Priority delivery time to international destinations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo Tracked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping with tracking in mailbox to international destinations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo With acknowledgement of receipt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping with tracking and signature, registered mail with acknowledgement of receipt, to international destinations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo Without acknowledgement of receipt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping with tracking and signature, registered mail without acknowledgement of receipt, to international destinations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
msgid "No label found in the request"
|
||||
msgstr ""
|
||||
|
||||
msgid "The statuses update process has started. Depending on the number of orders you have, it may take a few minutes to update all statuses."
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing order id in the request"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error creating the shipment: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing api key in the request"
|
||||
msgstr ""
|
||||
|
||||
msgid "This API key is valid"
|
||||
msgstr ""
|
||||
|
||||
msgid "The content of the file is empty"
|
||||
msgstr ""
|
||||
|
||||
msgid "HS codes imported successfully"
|
||||
msgstr ""
|
||||
|
||||
msgid "An error occurred while importing the default shipping prices."
|
||||
msgstr ""
|
||||
|
||||
msgid "The log file is empty"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hi %s,"
|
||||
msgstr ""
|
||||
|
||||
msgid "here"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tracking number: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping address:"
|
||||
msgstr ""
|
||||
|
||||
msgid "You can follow up your order here: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unit price (%s)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unit weight (grams)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit prices and weights"
|
||||
msgstr ""
|
||||
|
||||
msgid "Editing prices and weights may create inconsistency between CN23 or labels and invoice. Edit these values only if you really need it."
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping costs (%s)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Packaging weight (grams)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Total weight (items + packaging)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Customs category"
|
||||
msgstr ""
|
||||
|
||||
msgid "Generate label"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo tracking link"
|
||||
msgstr ""
|
||||
|
||||
msgid "<b>Addresses saved on your MyDelivengo account</b> (click on the address of your choice to auto-fill the form)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Label format"
|
||||
msgstr ""
|
||||
|
||||
msgid "Offer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print format"
|
||||
msgstr ""
|
||||
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unique format"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print example"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download example"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test your API key"
|
||||
msgstr ""
|
||||
|
||||
msgid "See logs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping rates"
|
||||
msgstr ""
|
||||
|
||||
msgid "From weight"
|
||||
msgstr ""
|
||||
|
||||
msgid "Included"
|
||||
msgstr ""
|
||||
|
||||
msgid "To weight"
|
||||
msgstr ""
|
||||
|
||||
msgid "Excluded"
|
||||
msgstr ""
|
||||
|
||||
msgid "From cart price"
|
||||
msgstr ""
|
||||
|
||||
msgid "To cart price"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping class"
|
||||
msgstr ""
|
||||
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add rate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Import Delivengo Europe prices"
|
||||
msgstr ""
|
||||
|
||||
msgid "Import Delivengo World prices"
|
||||
msgstr ""
|
||||
|
||||
msgid "This will replace the currently existing prices you've configured"
|
||||
msgstr ""
|
||||
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not call Delivengo API: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid API key"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error responded from Delivengo API with status code %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Account type unknown, make sure to enter your API key in the settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not retrieve the parcel status"
|
||||
msgstr ""
|
||||
|
||||
msgid "No format option saved in the settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "No format option saved for this contract, check the settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "No product found for the order %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing HS code or country of manufacture on product %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "External label ids or order ids are missing"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Order #%s]"
|
||||
msgstr ""
|
||||
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billing address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping address"
|
||||
msgstr ""
|
||||
|
||||
msgid "VAT Number: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid file list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default HS code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orders per page"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
msgid "This order is not shipped by Delivengo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download deposit"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping status: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sale of merchandise"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gift"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sample"
|
||||
msgstr ""
|
||||
|
||||
msgid "Return of merchandise"
|
||||
msgstr ""
|
||||
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgid "Document"
|
||||
msgstr ""
|
||||
|
||||
msgid "You need to select at least one item to generate a label"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Generate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select your containers"
|
||||
msgstr ""
|
||||
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping method"
|
||||
msgstr ""
|
||||
|
||||
msgid "Order status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Generate labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Generate deposit"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print deposit"
|
||||
msgstr ""
|
||||
|
||||
msgid "Choose container"
|
||||
msgstr ""
|
||||
|
||||
msgid "Access denied! (Security check failed)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deposit"
|
||||
msgstr ""
|
||||
|
||||
msgid "The label couldn't be generated: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Label not generated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Label generated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Label printed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Label not printed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgid "My Delivengo account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "My addresses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Products configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete the selected rates?"
|
||||
msgstr ""
|
||||
|
||||
msgid "An email is sent to the customer when the deposit is generated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Your order is being prepared"
|
||||
msgstr ""
|
||||
|
||||
msgid "[%s] Your order is being prepared"
|
||||
msgstr ""
|
||||
|
||||
msgid "All countries"
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgid "All shipping methods"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show filters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "All statuses"
|
||||
msgstr ""
|
||||
|
||||
msgid "All order statuses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo Orders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update shipping statuses"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter an API key"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse the address"
|
||||
msgstr ""
|
||||
|
||||
msgid "You are about the fill the form above with this address. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deposit not generated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deposit generated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deposit n°%s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Company name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Complete name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Address line 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Address line 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Postal box"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zip code"
|
||||
msgstr ""
|
||||
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipment outside of EU"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipment type"
|
||||
msgstr ""
|
||||
|
||||
msgid "United Kingdom EORI Number"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default HS code to use if no specific ones have been set on the products"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default country of manufacture"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default country of manufacture to use if no specific ones have been set on the products"
|
||||
msgstr ""
|
||||
|
||||
msgid "VAT number"
|
||||
msgstr ""
|
||||
|
||||
msgid "The VAT number is needed for delivery to United Kingdom"
|
||||
msgstr ""
|
||||
|
||||
msgid "The packaging weight will be added to the products weight on label generation. It is taken into account when calculating the shipping price to show to the customers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Calculate shipping method before applying coupons"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the available shipping methods and fees will be calculated based on the cart price before applying any coupon."
|
||||
msgstr ""
|
||||
|
||||
msgid "Log messages"
|
||||
msgstr ""
|
||||
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
msgid "My Delivengo solutions %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download deposit n°%s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Not tracked"
|
||||
msgstr ""
|
||||
|
||||
msgid "You can only create one deposit per day. Are you sure you want to create the deposit with these orders?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown status"
|
||||
msgstr ""
|
||||
|
||||
msgid "The Economic Operator Registration and Identification number is required for the United Kingdom."
|
||||
msgstr ""
|
||||
|
||||
msgid "Default shipping fee"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default shipping fee to apply for CN23 in case the shipping amount is 0 (free shipping for the client for example)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Every fifteen minutes"
|
||||
msgstr ""
|
||||
|
||||
msgid "No IBAN found on your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Go to your Delivengo account to add an IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgid "No data found for the product: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Product not found for provided SKU: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Product ID and SKU missing, at least one is required: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "One or more errors occurred:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsuccessful distribution attempt - Pending or returning to sender"
|
||||
msgstr ""
|
||||
|
||||
msgid "Your parcel is ready to be deposited at La Poste"
|
||||
msgstr ""
|
||||
|
||||
msgid "Handled by La Poste"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detained at the request of the sending country"
|
||||
msgstr ""
|
||||
|
||||
msgid "Departure from the exchange office of the country of dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrival at the exchange office of the destination country"
|
||||
msgstr ""
|
||||
|
||||
msgid "Return to exchange office"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retained in customs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrival at the exchange office of the country of dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering customs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Exiting customs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Departure from the exchange office of the destination country"
|
||||
msgstr ""
|
||||
|
||||
msgid "Departure from the transit exchange office"
|
||||
msgstr ""
|
||||
|
||||
msgid "Departure"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrival at the transit exchange office"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrival at the distribution office"
|
||||
msgstr ""
|
||||
|
||||
msgid "Welcome to your Delivengo module!"
|
||||
msgstr ""
|
||||
|
||||
msgid "<u>Not yet registered on Delivengo?</u> Here is how to do it:"
|
||||
msgstr ""
|
||||
|
||||
msgid "<b>Delivengo profil offer</b> (+ than 2000 shippings/year): I get my Delivengo profil credentials by filling %s to sign a contract"
|
||||
msgstr ""
|
||||
|
||||
msgid "this commercial contact form"
|
||||
msgstr ""
|
||||
|
||||
msgid "<b>Delivengo easy offer</b> (- than 2000 shippings/year): I create my Delivengo easy account by %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "clicking here"
|
||||
msgstr ""
|
||||
|
||||
msgid "<u>Already registered on Delivengo?</u> Here is how to configure your module:"
|
||||
msgstr ""
|
||||
|
||||
msgid "I associate my account to the Delivengo module"
|
||||
msgstr ""
|
||||
|
||||
msgid "To connect the module, you must retrieve your Delivengo API key. Get your API key in your Delivengo account, via \"My account\", then \"API key\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "I configure my settings to simplify my shipping preparations thanks to Delivengo features"
|
||||
msgstr ""
|
||||
|
||||
msgid "Choose the format of your labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save your default customs formalities for your shipments outside the European Union"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select or enter your sender address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configure your HS code by categories or products. If you have a lot of products, you can use our import feature (see the \"Products configuration\" tab)"
|
||||
msgstr ""
|
||||
|
||||
msgid "I configure my shipping rates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Head to the \"Shipping\" tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select a shipping zone and click on \"Add shipping method\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Add the Delivengo solutions then configure the rates."
|
||||
msgstr ""
|
||||
|
||||
msgid "You can customize the title of the delivery solution for your customers"
|
||||
msgstr ""
|
||||
|
||||
msgid "Be careful: Delivengo doesn't handle parcels over 2kg. Be careful when you modify the weight ranges."
|
||||
msgstr ""
|
||||
|
||||
msgid "Everything is ready!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We have created a special page just for you, to view your new orders in WooCommerce > Delivengo orders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connect your Delivengo account with your WordPress website. To do this, retrieve your API key available in %s (hover over your username in the top right corner of the screen, then click on \"My account\", then \"Show API key\")."
|
||||
msgstr ""
|
||||
|
||||
msgid "your MyDelivengo account"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, log messages will be collected each time an action is performed by the plugin. This is mainly used to investigate when an error occurs."
|
||||
msgstr ""
|
||||
|
||||
msgid "Customs declaration"
|
||||
msgstr ""
|
||||
|
||||
msgid "For expeditions outside the EU, you must specify the fields below. Without these elements, your label will not be generated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sender address"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must enter your sender address here. We have retrieved below your sender addresses available in your MyDelivengo account."
|
||||
msgstr ""
|
||||
|
||||
msgid "NB: If no address is available in your MyDelivengo account, we invite you to enter one (in MyDelivengo, hover over your username in the top right corner of the screen, then click on \"My account\", then \"Sender addresses\")."
|
||||
msgstr ""
|
||||
|
||||
msgid "The HS code and the country of origin of your products must be filled in for shipments outside the European Union."
|
||||
msgstr ""
|
||||
|
||||
msgid "To facilitate the addition of these information to your products, we offer you to import them directly into your catalog."
|
||||
msgstr ""
|
||||
|
||||
msgid "Import a CSV file that will have in the first line either <b>id,hscode,country</b> or <b>sku,hscode,country</b>"
|
||||
msgstr ""
|
||||
|
||||
msgid "Then, enter on each line the product's id or SKU, the HS code and the country (each element separated by a comma). Ex: 11,123456,FR"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping with tracking in mailbox"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delivengo orders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Priority delivery in mailbox, without tracking"
|
||||
msgstr ""
|
||||
|
||||
msgid "Economy delivery in mailbox, without tracking"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tracked delivery against signature with acknowledgement of receipt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tracked delivery against signature without acknowledgement of receipt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping in mailbox with tracking"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping statuses won't be automatically collected because a webhook already exists on your MyDelivengo account. Click the \"Update shipping statuses\" button, or remove the existing webhook on your MyDelivengo account."
|
||||
msgstr ""
|
||||
|
||||
msgid "No order to create shipment"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sending to Norway, Australia or New-Zealand"
|
||||
msgstr ""
|
||||
|
||||
msgid "If you are shipping to these destinations, you must enter your VOEC, AU GST, and/or NZ GST numbers directly into your %s account."
|
||||
msgstr ""
|
||||
|
||||
msgid "For more information, please visit our %s (2nd yellow box at the bottom of the page)."
|
||||
msgstr ""
|
||||
|
||||
msgid "support page"
|
||||
msgstr ""
|
||||
|
||||
msgid ": offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "<b>Warning: </b>you must generate the deposit slip before depositing your items. To do this, after generating the labels, check the orders to be deposited, select \"Generate deposit\" in Grouped actions, then click on \"Apply\". NB: you can only generate one deposit slip per day. Be sure to select all the orders to be deposited."
|
||||
msgstr ""
|
||||
|
||||
msgid "Good news, your order #%s has been shipped."
|
||||
msgstr ""
|
||||
|
||||
msgid "The tracking number is:"
|
||||
msgstr ""
|
||||
|
||||
msgid "The carrier's tracking information will be updated and available within 24 to 48 hours."
|
||||
msgstr ""
|
||||
|
||||
msgid "Thank you for your confidence."
|
||||
msgstr ""
|
||||
|
||||
msgid "Your order {order_number} will be shipped soon"
|
||||
msgstr ""
|
||||
|
||||
msgid "We are pleased to announce that your %s order has been shipped"
|
||||
msgstr ""
|
||||
|
||||
msgid "Automatic update of tracking status"
|
||||
msgstr ""
|
||||
|
||||
msgid "We are unable to automatically update the status of your Delivengo folds on WooCommerce. We have detected that there is already a webhook for your Delivengo account. For each account, only one webhook is allowed. To update them manually, you need to go to the \"Delivengo Orders\" page and click on \"Update shipping status\". You can also request the deactivation of the webhook from the technical hotline (contact@assistance-mdelivengo.fr), to make the update automatic on WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
msgid "Economy delivery in mailbox, without tracking: offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "Priority delivery in mailbox, without tracking: offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shipping in mailbox with tracking: offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tracked delivery against signature with acknowledgement of receipt: offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tracked delivery against signature without acknowledgement of receipt: offered"
|
||||
msgstr ""
|
||||
|
||||
msgid "deposit_slip.pdf"
|
||||
msgstr ""
|
||||
|
||||
msgid "delivengo_label.pdf"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error responded from Delivengo API with the message: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
msgid "To guide you when setting up your module, you can consult our user guide by %s."
|
||||
msgstr ""
|
||||
|
||||
msgid "You can also contact our technical support by e-mail: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "The tracking number is: %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
# <!=Copyright (C) 2014 Rilwis
|
||||
# This file is distributed under the GPL2+.=!>
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MB Settings Page 1.1.3\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/meta-box\n"
|
||||
"POT-Creation-Date: 2016-06-06 10:52+0700\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Meta Box <admin@metabox.io>\n"
|
||||
"X-Generator: Poedit 1.8.8\n"
|
||||
"X-Poedit-KeywordsList: __;_x;_e;_ex;_n;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: js\n"
|
||||
"X-Poedit-SearchPathExcluded-1: demo\n"
|
||||
"X-Poedit-SearchPathExcluded-2: tests\n"
|
||||
"X-Poedit-SearchPathExcluded-3: css\n"
|
||||
"X-Poedit-SearchPathExcluded-4: lang\n"
|
||||
|
||||
#: inc/settings-page.php:163
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings-page.php:224
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 0.1 =
|
||||
* Initial release.
|
||||
@@ -0,0 +1,149 @@
|
||||
# Copyright (c) 2023 weDevs Pte. Ltd. All Rights Reserved.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Dokan Migrator 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/weDevsOfficial/dokan-migrator/issues\n"
|
||||
"Last-Translator: support@wedevs.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: 2023-04-17T06:41:09+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: dokan-migrator\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/Admin/Menu.php:36
|
||||
#: includes/Admin/Menu.php:37
|
||||
msgid "Dokan Migrator"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://WeDevs.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "An e-commerce marketplace migration plugin for WordPress. Powered by WooCommerce and WeDevs."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WeDevs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://WeDevs.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Helpers/MigrationHelper.php:57
|
||||
msgid "Dokan vendor dashboard activated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Helpers/MigrationHelper.php:91
|
||||
msgid "Migrate to dokan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Helpers/MigrationHelper.php:95
|
||||
msgid "Migrate Wcfm To Dokan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Migrator/Ajax.php:59
|
||||
msgid "Item count successfull."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Migrator/Ajax.php:93
|
||||
msgid "Import successfull."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Migrator/Ajax.php:117
|
||||
msgid "Nonce verification failed!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Migrator/Manager.php:215
|
||||
msgid "Invalid import type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Processors/Order.php:79
|
||||
#: includes/Processors/Vendor.php:91
|
||||
#: includes/Processors/Withdraw.php:97
|
||||
msgid "Migrator class not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Processors/Order.php:94
|
||||
msgid "No orders found to migrate to dokan."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Processors/Vendor.php:104
|
||||
msgid "No vendors found to migrate to dokan."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Processors/Withdraw.php:125
|
||||
msgid "No withdraws found to migrate to dokan."
|
||||
msgstr ""
|
||||
|
||||
#: templates/app.php:2
|
||||
msgid "Loading.."
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-active-vendor-dashboard.php:17
|
||||
msgid "Activate dokan vendor dashboard."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$s: opening anchor tag, 2$s: closing anchor tag
|
||||
#: templates/template-active-vendor-dashboard.php:21
|
||||
msgid "%1$sActive now%2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$s: the plugin to migrate to dokan
|
||||
#: templates/template-alert-migrate-to-dokan.php:21
|
||||
msgid "Do You Want To %1$s ?"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1$s: opening anchor tag, 2$s: closing anchor tag
|
||||
#: templates/template-alert-migrate-to-dokan.php:27
|
||||
msgid "Click %1$1sHere%2$2s to move to the migration process."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Congratulations."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "You have successful migrated to Dokan. Enjoy 🎉"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "You have successfully migrated to dokan."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Withdraw"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Active dokan vendor dashboard."
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "Start migration"
|
||||
msgstr ""
|
||||
|
||||
#: assets/dist/index.js:1
|
||||
msgid "No plugin found to migrate to dokan"
|
||||
msgstr ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/dropp-pay-per-use/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/dropp-pay-per-use/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
### 1.0.0
|
||||
* Release of Dropp micropayment enabled pay per use solution.
|
||||
@@ -0,0 +1,36 @@
|
||||
# Changelog
|
||||
|
||||
Všechny změny a vylepšení pluginu jsou zaznamenány v tomto souboru.
|
||||
|
||||
## Verze 1.2.1 (datum vydání: 14.06.2023)
|
||||
|
||||
### Added
|
||||
- Přidána možnost aktualizovat již existujícího uživatele, pokud ho již máte v seznamu (update_existing = true/false)
|
||||
- Přidána možnost znovu přihlásit odhlášeného odběratele (resubscribe = true/false)
|
||||
- Přepracována funkce odesílání dat (subscriber_data), aby se přes API posílaly jen položky opravdu vyplněné
|
||||
|
||||
## Verze 1.2.0 (datum vydání: 13.06.2023)
|
||||
|
||||
### Added
|
||||
- Přidána nová kolonka pro integraci telefonního čísla
|
||||
- Přidána možnost napsat tagy pro další segmentaci v rámci seznamů v Ecomail
|
||||
|
||||
## Verze 1.1.1 (datum vydání: 07.06.2023)
|
||||
|
||||
### Added
|
||||
- Přidána funkcionality 'trigger_autoresponders' => true, aby se odesílaly automatizace.
|
||||
|
||||
## Verze 1.1.0 (datum vydání: 22.03.2023)
|
||||
|
||||
### Added
|
||||
- Přidána možnost specifikovat field ID pro jméno a příjmení.
|
||||
|
||||
## Verze 1.0.0 (datum vydání: 21.03.2023)
|
||||
|
||||
### Added
|
||||
- První vydání pluginu Elementor Ecomail Integration
|
||||
- Základní integrace Ecomailu s widgetem formuláře Elementor Pro
|
||||
- Přidána možnost nastavit Ecomail integraci v nastavení formuláře Elementor Pro
|
||||
- Možnost zadat klíč API Ecomail do pole "Ecomail API Key"
|
||||
- Možnost zadat identifikátor seznamu Ecomail (List ID) do pole "Ecomail List ID"
|
||||
- Přidána Ecomail akce do možností formuláře "Actions After Submit"
|
||||
@@ -0,0 +1,333 @@
|
||||
# Copyright (C) 2023 Email Notice WP Document Revisions 1.0
|
||||
# This file is distributed under the same license as the Email Notice WP Document Revisions 1.0 package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Email Notice WP Document Revisions 1.0\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-05-31 09:31+0000\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:11, includes/class-wpdr-en-all-users-bulk-action.php:11, includes/class-wpdr-en-user-log-table.php:11
|
||||
msgid "You are not allowed to call this file directly."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:122
|
||||
msgid "Email From"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:123
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:127
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:128
|
||||
msgid "Notification mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:129
|
||||
msgid "Notify users about"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:130
|
||||
msgid "Notification e-mail subject"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:131
|
||||
msgid "Notification e-mail content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:213, includes/class-wpdr-email-notice.php:516
|
||||
msgid "Sending email notifications..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:214
|
||||
msgid "Error sending emails."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:215, includes/class-wpdr-email-notice.php:507, includes/class-wpdr-email-notice.php:500
|
||||
msgid "Re-send notification email(s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:216, includes/class-wpdr-email-notice.php:1208
|
||||
msgid "email(s) out of"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:217
|
||||
msgid "notification(s) sent. Check"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:218, includes/class-wpdr-email-notice.php:1208
|
||||
msgid "sent with"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:219
|
||||
msgid "log issues. Check"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:220
|
||||
msgid "log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:221, includes/class-wpdr-email-notice.php:1213, includes/class-wpdr-email-notice.php:1208, includes/class-wpdr-email-notice.php:1204
|
||||
msgid "for details."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:242
|
||||
msgid "By default all notification e-mails received from \"WordPress\" < wordpress@"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:242
|
||||
msgid "You can change these below."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:280
|
||||
msgid "Tags available to make e-mail subject and/or content dynamic:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:282
|
||||
msgid "means title of the post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:283
|
||||
msgid "means URL of the post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:284
|
||||
msgid "means URL with title of the post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:285
|
||||
msgid "means the name of the post author"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:286
|
||||
msgid "means excerpt of the post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:286
|
||||
msgid "Only available to those who can edit the document"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:287
|
||||
msgid "means the first n (must be an integer number) number of word(s) extracted from the post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:288
|
||||
msgid "means display name of the user who receives the e-mail"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:299
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:299
|
||||
msgid "(send e-mails automatically when you publish a post)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:300
|
||||
msgid "Manual"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:300
|
||||
msgid "(you need to press a button to send notification)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:325
|
||||
msgid "Public posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:326
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:326
|
||||
msgid "protected posts (password will"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:326
|
||||
msgid "NOT"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:326
|
||||
msgid "be included in notification e-mail)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:327
|
||||
msgid "Private posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:328
|
||||
msgid "Notifications are sent only to those who can read the document"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:339
|
||||
msgid "Hint: HTML tags are not allowed here, e.g.: %title_with_permalink% will revert to %title%."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:351
|
||||
msgid "Hint: HTML tags are welcome here to make your notification e-mails more personalized."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:390
|
||||
msgid "Notify me by e-mail when a new document is published"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:392
|
||||
msgid "Also send me the document as an attachment by e-mail when a new document is published"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:482, includes/class-wpdr-email-notice.php:1330
|
||||
msgid "Document Email Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:505, includes/class-wpdr-email-notice.php:503
|
||||
msgid "Send notification email(s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:553
|
||||
msgid "Document Notification Email Log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:553
|
||||
msgid "Document Email Log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:584
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:591
|
||||
msgid "Document Email Notification Log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:598
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:843
|
||||
msgid "New document: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:939
|
||||
msgid "Document too large to be attached."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:937
|
||||
msgid "Document attached."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:928
|
||||
msgid "Document not attached."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:954
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:951
|
||||
msgid "Successful"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:951
|
||||
msgid "Success Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1100, includes/class-wpdr-email-notice.php:1116, includes/class-wpdr-email-notice.php:1140
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1081
|
||||
msgid "Not logged and/or sent out successfully any mails."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1213
|
||||
msgid "notification(s) sent."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1213, includes/class-wpdr-email-notice.php:1208, includes/class-wpdr-email-notice.php:1204
|
||||
msgid "Check log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1208
|
||||
msgid "log issues."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1204
|
||||
msgid "Error sending notifications."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1331
|
||||
msgid "Notification emails can be sent (or re-sent) for published documents to internal users by clicking on \"Send notification emails\"."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-email-notice.php:1332
|
||||
msgid "Internal users are those with user-ids for the site. They can decide whether they wish to receive these notifications or not and whether the mail should include a copy of the document."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-all-users-bulk-action.php:40
|
||||
msgid "Subscribe to Document Email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-all-users-bulk-action.php:41
|
||||
msgid "Unsubscribe from Document Email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-all-users-bulk-action.php:68
|
||||
msgid "Error subscribing users."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-all-users-bulk-action.php:77
|
||||
msgid "Error unsubscribing users."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:37
|
||||
msgid "Notification email sent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:38
|
||||
msgid "Notification emails sent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:55
|
||||
msgid "Post Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:56
|
||||
msgid "E-mail sent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:57
|
||||
msgid "User Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:58
|
||||
msgid "User E-mail"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:59
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wpdr-en-user-log-table.php:206
|
||||
msgid "No e-mails sent out, yet."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Do not translate Email Notice WP Document Revisions or WP Document Revisions.
|
||||
#: wpdr-email-notice.php:28
|
||||
msgid "Plugin Email Notice WP Document Revisions is activated but its required plugin WP Document Revisions is not."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Do not translate Email Notice WP Document Revisions.
|
||||
#: wpdr-email-notice.php:31
|
||||
msgid "Plugin Email Notice WP Document Revisions will not activate its functionality."
|
||||
msgstr ""
|
||||
133
spec/fixtures/dynamic_finders/plugin_version/enable-cors/translation_file/languages/enable-cors.pot
vendored
Normal file
133
spec/fixtures/dynamic_finders/plugin_version/enable-cors/translation_file/languages/enable-cors.pot
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
# Copyright (C) 2023 Dev Kabir
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Enable CORS 1.1.6\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/enable-cors\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-07-22T19:02:20+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.8.1\n"
|
||||
"X-Domain: enable-cors\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: src/Admin/Menu.php:36
|
||||
#: src/Admin/Menu.php:37
|
||||
#: src/Admin/Menu.php:87
|
||||
msgid "Enable CORS"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.fiverr.com/share/7kXeLW"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Enable Cross-Origin Resource Sharing for any or specific origin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Dev Kabir"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.fiverr.com/developerkabir"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:84
|
||||
msgid "Please check your settings."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:88
|
||||
msgid "Configure the server to include CORS headers in the response to allow cross-origin requests."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:92
|
||||
msgid "Allowed Websites"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:93
|
||||
msgid "Specify the specific website (e.g., https://devkabir.shop) that is allowed to make requests."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:95
|
||||
msgid "Enter a website domain like https://example.com"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:98
|
||||
msgid "Allowed Request Methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:99
|
||||
msgid "Specify the allowed HTTP methods (e.g., GET,POST,OPTIONS) for cross-origin requests."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:101
|
||||
msgid "Invalid HTTP methods"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:104
|
||||
msgid "Set Response Headers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:105
|
||||
msgid "Set the desired response headers (e.g., Content-Type,Authorization) to be included in the response for other websites."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:107
|
||||
msgid "Invalid HTTP headers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:110
|
||||
msgid "Allow Credentials"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:111
|
||||
msgid "Configure the server to allow credentials (such as cookies or authorization headers) to be included in the cross-origin request."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:114
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:115
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:118
|
||||
msgid "Thank You"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:120
|
||||
msgid "Found issue on non-root server installations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:124
|
||||
msgid "Notice"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:125
|
||||
msgid "To enable CORS on your site, please save settings."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:126
|
||||
msgid "Your API endpoint is"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Menu.php:127
|
||||
msgid ""
|
||||
" means that any website can send a request to your\n"
|
||||
" WordPress site and access the server's response. This can be a potential\n"
|
||||
" security risk."
|
||||
msgstr ""
|
||||
|
||||
#: src/Api/Settings.php:79
|
||||
msgid "Settings Updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:158
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,79 @@
|
||||
# Copyright (C) 2023 Watch The Dot
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Easy Coming Soon 1.0.4\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ez-coming-soon\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-11-30T11:41:44+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: ez-coming-soon\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Easy Coming Soon"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://support.watchthedot.com/our-plugins/easy-coming-soon/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds a basic coming soon or maintenance page to your site. No fuss."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Watch The Dot"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.watchthedot.com/"
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:146
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:296
|
||||
msgid "You cannot login to the site right now. Try again when we have launched"
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:309
|
||||
msgid "Site coming soon. Access to the REST API not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:440
|
||||
msgid "What should be used to all access to the site? Using the manage_options or bypass_coming_soon capability"
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:451
|
||||
msgid "Allows users who can access wp-admin to set a cookie to bypass the coming soon checks when signed out."
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:456
|
||||
msgid "The site's logo that will be displayed on the basic message and maintainence pages"
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:462
|
||||
msgid "Disable the REST API for users that can't bypass the coming soon page"
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:468
|
||||
msgid "Fully disable XML-RPC, including all endpoints, while the coming soon page is enabled"
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:473
|
||||
msgid "Redirect all requests to homepage before showing template (Doesn't work with login option)"
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:478
|
||||
msgid "Enable IP Whitelisting. This allows users access without logging in."
|
||||
msgstr ""
|
||||
|
||||
#: coming-soon.php:493
|
||||
msgid "List all the IP Address seperated by a new line that should be allowed through the coming soon page"
|
||||
msgstr ""
|
||||
232
spec/fixtures/dynamic_finders/plugin_version/filter-plus/translation_file/languages/filter-plus.pot
vendored
Normal file
232
spec/fixtures/dynamic_finders/plugin_version/filter-plus/translation_file/languages/filter-plus.pot
vendored
Normal file
@@ -0,0 +1,232 @@
|
||||
# Copyright (C) 2023 Wooplugin
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Filter Plus 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/filter-plus\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-10-25T03:25:31+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.8.1\n"
|
||||
"X-Domain: filter-plus\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: core/admin/menus.php:91
|
||||
#: core/admin/menus.php:92
|
||||
msgid "Filter Plus"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://product.woooplugin.com/filter-plus"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Advanced filter plugin for WooCommerce that allows users to add multiple filters like filter by category, product search, etc."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Wooplugin"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://woooplugin.com/"
|
||||
msgstr ""
|
||||
|
||||
#: bootstrap.php:43
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: bootstrap.php:45
|
||||
msgid "Go To Premium"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/menus.php:44
|
||||
msgid "Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/menus.php:45
|
||||
msgid "Woo Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:6
|
||||
msgid "ShortCodes"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:13
|
||||
msgid "Select Template:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:23
|
||||
msgid "Category List:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:28
|
||||
msgid "Display Colors:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:32
|
||||
msgid "Display Size:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:36
|
||||
#: core/admin/views/shortcodes.php:82
|
||||
msgid "Display Tags:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:43
|
||||
msgid "Tag List:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:50
|
||||
msgid "Display Attributes:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:57
|
||||
msgid "Attribute List:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:63
|
||||
msgid "Display Reviews:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:68
|
||||
msgid "Display Price Range:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:73
|
||||
msgid "Display Sorting:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:78
|
||||
msgid "Product List:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:86
|
||||
msgid "Display Categories:"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortcodes.php:91
|
||||
msgid "Copy Filer Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: core/admin/views/shortocdes-fields.php:43
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#: core/frontend/search-filter/actions.php:72
|
||||
msgid "No Product Found"
|
||||
msgstr ""
|
||||
|
||||
#: filter-plus.php:116
|
||||
msgid "Activate WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: filter-plus.php:119
|
||||
msgid "Install WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: filter-plus.php:129
|
||||
msgid "Filter Plus requires WooCommerce , which is currently NOT RUNNING."
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/sort-option.php:8
|
||||
msgid "Default Sorting"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/sort-option.php:9
|
||||
msgid "Sort by popularity"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/sort-option.php:10
|
||||
msgid "Sort by Rating"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/sort-option.php:11
|
||||
msgid "Sort by latest"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/sort-option.php:12
|
||||
msgid "Sort by price: low to high"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/sort-option.php:13
|
||||
msgid "Sort by price: high to low"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-1/left-side/categories.php:7
|
||||
#: templates/search-filter/template-2/left-side/categories.php:8
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-1/left-side/categories.php:19
|
||||
#: templates/search-filter/template-1/left-side/filter-layout-attr-grid.php:27
|
||||
#: templates/search-filter/template-1/left-side/filter-layout-grid.php:22
|
||||
#: templates/search-filter/template-1/left-side/filter-param.php:38
|
||||
#: templates/search-filter/template-1/left-side/product-search.php:18
|
||||
#: templates/search-filter/template-2/left-side/categories.php:23
|
||||
#: templates/search-filter/template-2/left-side/filter-layout-attr-grid.php:33
|
||||
#: templates/search-filter/template-2/left-side/filter-layout-grid.php:29
|
||||
#: templates/search-filter/template-2/left-side/filter-param.php:44
|
||||
#: templates/search-filter/template-2/left-side/product-search.php:18
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-1/left-side/filter-param.php:8
|
||||
msgid "Filter By Size"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-1/left-side/product-search.php:12
|
||||
#: templates/search-filter/template-2/left-side/product-search.php:12
|
||||
msgid "Search Products"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-1/right-side/sort-bar.php:8
|
||||
#: templates/search-filter/template-2/right-side/sort-bar.php:8
|
||||
msgid "Showing"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-1/right-side/sort-bar.php:8
|
||||
#: templates/search-filter/template-2/right-side/sort-bar.php:8
|
||||
msgid " of"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-1/right-side/sort-bar.php:8
|
||||
#: templates/search-filter/template-2/right-side/sort-bar.php:8
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-1/template-1.php:21
|
||||
msgid "Filter By Brand"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-2/left-side/filter-param.php:8
|
||||
msgid "Best Match Item"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-2/left-side/title.php:7
|
||||
msgid "Filters"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-2/left-side/title.php:8
|
||||
msgid "Clean All"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-filter/template-2/template-2.php:22
|
||||
msgid "Find Favorite Item"
|
||||
msgstr ""
|
||||
|
||||
#: utils/helper.php:667
|
||||
msgid "single image blank"
|
||||
msgstr ""
|
||||
|
||||
#: utils/helper.php:677
|
||||
msgid "product image"
|
||||
msgstr ""
|
||||
|
||||
#: utils/helper.php:723
|
||||
msgid "Add to cart"
|
||||
msgstr ""
|
||||
38
spec/fixtures/dynamic_finders/plugin_version/financial-ratio/composer_file/package.json
vendored
Normal file
38
spec/fixtures/dynamic_finders/plugin_version/financial-ratio/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "financial-ratio-block",
|
||||
"version": "1.0.1",
|
||||
"description": "Example block scaffolded with Create Block tool.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build --webpack-copy-php",
|
||||
"format": "wp-scripts format",
|
||||
"lint": "wp-scripts lint-style && wp-scripts lint-js",
|
||||
"lint:fix": "wp-scripts lint-style --fix && wp-scripts lint-js --fix",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"plugin-zip": "wp-scripts plugin-zip",
|
||||
"start": "wp-scripts start --webpack-copy-php",
|
||||
"env": "wp-env",
|
||||
"audit": "npm audit --registry='https://registry.npmjs.org/'",
|
||||
"audit:fix": "npm audit fix --registry='https://registry.npmjs.org/'",
|
||||
"test:unit": "echo 'skipping, no tests configured yet'"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/components": "^23.9.0",
|
||||
"@wordpress/env": "^6.0.0",
|
||||
"@wordpress/scripts": "^26.3.0",
|
||||
"eslint": "^8.40.0",
|
||||
"eslint-config-standard": "^17.0.0",
|
||||
"eslint-plugin-import": "^2.27.5",
|
||||
"eslint-plugin-n": "^15.7.0",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"eslint-plugin-react": "^7.32.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/blocks": "^12.10.0",
|
||||
"@wordpress/element": "^5.10.0",
|
||||
"mutation-observer": "^1.0.3",
|
||||
"react": "^18.2.0"
|
||||
}
|
||||
}
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/fusewp/change_log/changelog.txt
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/fusewp/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.1.1.0 =
|
||||
* Pro [MemberPress integration](https://fusewp.com/article/sync-memberpress-email-marketing/?ref=changelog)
|
||||
* Added [Campaign Monitor integration](https://fusewp.com/article/connect-wordpress-to-campaign-monitor/?ref=changelog)
|
||||
* Added "any roles" support to user role sync.
|
||||
* Fixed bug where mailchimp subscription fails on empty merge fields.
|
||||
* PHP 8 improvements.
|
||||
* Fixed bug where disabled sync rules might still be triggered.
|
||||
* Fixed bug where integration select-dropdown included unconnected integrations.
|
||||
* Fixed bug where Add new sync rule page left the menu inactive.
|
||||
|
||||
= 1.1.0.0 =
|
||||
* The genesis
|
||||
846
spec/fixtures/dynamic_finders/plugin_version/fusewp/translation_file/languages/fusewp.pot
vendored
Normal file
846
spec/fixtures/dynamic_finders/plugin_version/fusewp/translation_file/languages/fusewp.pot
vendored
Normal file
@@ -0,0 +1,846 @@
|
||||
# Copyright (C) 2023 FuseWP - Lite
|
||||
# This file is distributed under the same license as the FuseWP - Lite package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FuseWP - Lite 1.1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fusewp\n"
|
||||
"POT-Creation-Date: 2023-06-26 13:26:35+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: src/core/src/Admin/AdminNotices.php:83
|
||||
msgid ""
|
||||
"Hey, I noticed you have been using FuseWP for at least 7 days now - that's "
|
||||
"awesome! Could you please do me a BIG favor and give it a %1$s5-star rating "
|
||||
"on WordPress?%2$s This will help us spread the word and boost our motivation "
|
||||
"- thanks!"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/AdminNotices.php:87
|
||||
msgid "Sure! I'd love to give a review"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/AdminNotices.php:89
|
||||
msgid "Dismiss Forever"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/AdminNotices.php:108
|
||||
msgid ""
|
||||
"Did you know you can sync your MemberPress members to your email list based "
|
||||
"on their memberships and subscription status? %sLearn more%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/AdminNotices.php:114
|
||||
msgid ""
|
||||
"Did you know you can sync your members in WooCommerce Memberships to your "
|
||||
"email list based on their subscribed plan and membershio status? %sLearn "
|
||||
"more%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:112
|
||||
#: src/core/src/Integrations/ContactFieldEntity.php:57
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:113
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:114
|
||||
#: src/core/src/Integrations/ContactFieldEntity.php:56
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:114
|
||||
#: src/core/src/Integrations/ContactFieldEntity.php:58
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/AbstractFieldEntity.php:115
|
||||
#: src/core/src/Integrations/ContactFieldEntity.php:59
|
||||
msgid "Multiselect"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/FieldMap.php:46
|
||||
msgid "Data"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/FieldMap.php:47
|
||||
msgid "Data Type"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/Fields/FieldMap.php:65
|
||||
msgid "Map Another Field"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:25
|
||||
msgid "FuseWP Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:26
|
||||
msgid "FuseWP"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:108
|
||||
msgid "Request Support"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:114
|
||||
msgid "Premium Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:120
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:125
|
||||
msgid "Review"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:241
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:245
|
||||
msgid "Need Support?"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:260
|
||||
msgid "Double-Optin Control"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:261
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:133
|
||||
msgid "Custom Field Mapping"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:262
|
||||
msgid "Assign Tag to Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:271
|
||||
msgid ""
|
||||
"Enhance the power of FuseWP with the Pro version featuring integrations with "
|
||||
"many plugins. %sLearn more%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:284
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:23
|
||||
msgid "Get FuseWP Pro →"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:302
|
||||
msgid ""
|
||||
"Whether you need help or have a new feature request, let us know. %sRequest "
|
||||
"Support%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:310
|
||||
msgid ""
|
||||
"Detailed documentation is also available on the plugin website. %sView "
|
||||
"Knowledge Base%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/AbstractSettingsPage.php:318
|
||||
msgid ""
|
||||
"If you are enjoying FuseWP and find it useful, please consider leaving a "
|
||||
"★★★★★ review on WordPress.org. %sLeave a Review%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:31
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:40
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:69
|
||||
msgid "You're using FuseWP Lite - no license needed. Enjoy! 😊"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s Opening anchor tag, do not translate. %2$s Closing anchor
|
||||
#. tag, do not translate.
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:77
|
||||
msgid ""
|
||||
"Already purchased? Simply %1$sretrieve your license key%2$s and enter it "
|
||||
"below to connect with FuseWP Pro."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:104
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:105
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:107
|
||||
msgid "Unlock Premium Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:120
|
||||
msgid "Unlock Powerful Premium Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:127
|
||||
msgid "Double Optin Control"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:139
|
||||
msgid "Assign Tags to Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:145
|
||||
msgid "WooCommerce Memberships Sync"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:151
|
||||
msgid "MemberPress Sync"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:159
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:69
|
||||
msgid "Upgrade to FuseWP Premium"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s Opening anchor tag, do not translate. %2$s Closing anchor
|
||||
#. tag, do not translate.
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:172
|
||||
msgid ""
|
||||
"<strong>Bonus</strong>: Loyal FuseWP Lite users get <u>10%% off</u> regular "
|
||||
"price using the coupon code <u>10PERCENTOFF</u>, automatically applied at "
|
||||
"checkout. %1$sUpgrade to Premium →%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:217
|
||||
msgid "You are not allowed to install plugins."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:223
|
||||
msgid "Please enter your license key to connect."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:227
|
||||
msgid "Only the Lite version can be upgraded."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s Opening anchor tag, do not translate. %2$s Closing anchor
|
||||
#. tag, do not translate.
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:260
|
||||
msgid ""
|
||||
"Oops! We could not automatically install an upgrade. Please download the "
|
||||
"plugin from fusewp.com and install it manually."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:299
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:360
|
||||
msgid "Plugin installed & activated."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/LicenseUpgrader.php:340
|
||||
msgid "You are not licensed."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:27
|
||||
msgid ""
|
||||
"Thank you for using <a href=\"%1$s\" target=\"_blank\">FuseWP</a>! Please <a "
|
||||
"href=\"%2$s\" target=\"_blank\">rate us ★★★★★</a> on <a href=\"%2$s\" "
|
||||
"target=\"_blank\">WordPress.org</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:50
|
||||
msgid "View FuseWP documentation"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:50
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:51
|
||||
msgid "Visit customer support"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:51
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:56
|
||||
msgid "Upgrade to PRO"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:56
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:77
|
||||
msgid "Go Premium"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/ProUpgrade.php:71
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:45
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:26
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:60
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:44
|
||||
msgid "Settings - FuseWP"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:114
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:117
|
||||
msgid "Install Missing DB Tables"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:118
|
||||
msgid "Fix Database"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:123
|
||||
msgid "Remove Data on Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:124
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:191
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:269
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:154
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:183
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:219
|
||||
#: src/core/src/Admin/SettingsPage/views/action.php:48
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:25
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:125
|
||||
msgid ""
|
||||
"Check this box if you would like FuseWP to completely remove all of its data "
|
||||
"when the plugin is deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:141
|
||||
msgid "Integrations"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:154
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/Settings.php:156
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:27
|
||||
msgid "sync_rule"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:28
|
||||
msgid "sync_rules"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:112
|
||||
msgid "Add Your First Sync Rule"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:113
|
||||
msgid ""
|
||||
"Keep WordPress synchronize with external marketing integrations and third-"
|
||||
"party applications."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:114
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:127
|
||||
msgid "Add Sync Rule"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:119
|
||||
msgid ""
|
||||
"New to FuseWP? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
||||
"started guide</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:138
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:29
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:139
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:38
|
||||
msgid "Destinations"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:140
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:167
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:207
|
||||
msgid "[Not Set]"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:190
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:218
|
||||
#: src/core/src/Admin/SettingsPage/views/action.php:47
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncList.php:257
|
||||
msgid "Toggle Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:26
|
||||
msgid "sync_log"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:27
|
||||
msgid "sync_logs"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:102
|
||||
msgid "No logs found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:112
|
||||
msgid "Integration"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogList.php:113
|
||||
msgid "Error Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogPage.php:38
|
||||
#: src/core/src/Admin/SettingsPage/SyncLogPage.php:52
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:135
|
||||
msgid "Sync Logs"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:75
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:113
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:159
|
||||
msgid "Sync Rules"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:94
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:124
|
||||
msgid "User Sync"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:114
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:131
|
||||
msgid "Edit Sync Rule"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:167
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:221
|
||||
#: src/core/src/Admin/SettingsPage/views/action.php:50
|
||||
msgid "New Destination"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/SyncPage.php:242
|
||||
#: src/core/src/Admin/SettingsPage/views/action.php:71
|
||||
msgid "Select Integration"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:47
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/add-edit-sync-rule.php:60
|
||||
msgid "Upgrade to FuseWP Pro %sUpgrade Now%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/destination.php:28
|
||||
#: src/core/src/RegisterScripts.php:43
|
||||
msgid ""
|
||||
"No source has been selected. Add one before you can set up sync destination."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/destination.php:47
|
||||
msgid "+ Add Destination"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:15
|
||||
msgid "Status:"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:17
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:18
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/sidebar.php:31
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/source.php:28
|
||||
msgid ""
|
||||
"Select the user role, membership plan or source plugin to synchronize from."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:3
|
||||
msgid "Custom Fields & Tagging Support"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:4
|
||||
msgid ""
|
||||
"Upgrade to map custom fields to profile information and assign tags to users "
|
||||
"for supported email marketing platforms."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:7
|
||||
msgid ""
|
||||
"Sync users in WooCommerce memberships with your email marketing software "
|
||||
"based on their subscribed plans and membership status. If a user's "
|
||||
"membership status changes, they will be moved to the corresponding email "
|
||||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Admin/SettingsPage/views/sync/view.pro-upsell.php:10
|
||||
msgid ""
|
||||
"Sync members in MemberPress with your email marketing software based on "
|
||||
"their memberships and subscription status. If a user's subscription status "
|
||||
"changes, they will be moved to the corresponding email list."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/AjaxHandler.php:34
|
||||
msgid "No source selected."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/AjaxHandler.php:47
|
||||
msgid "No destination item in selected source."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/AjaxHandler.php:58 src/core/src/AjaxHandler.php:91
|
||||
msgid "Selected integration not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/AjaxHandler.php:80 src/core/src/AjaxHandler.php:123
|
||||
msgid "No integration field found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/AjaxHandler.php:95
|
||||
msgid "Selected integration list ID not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Functions/CustomSettingsPageApi.php:982
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Functions/CustomSettingsPageApi.php:1060
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:81
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Functions/functions.php:348
|
||||
msgid "No Sync rule source has been selected."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Functions/functions.php:356
|
||||
msgid "Sync rule for the selected source already exist."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractIntegration.php:129
|
||||
msgid "rate limit exceeded"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:24
|
||||
msgid "%s Error:"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:31
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:58
|
||||
msgid "Connect to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:36
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:63
|
||||
msgid "Reconnect to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:38
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:65
|
||||
msgid ""
|
||||
"requires external authorization. You will need to connect our application "
|
||||
"with your account to proceed."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:42
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:69
|
||||
msgid "Connected to"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:44
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:71
|
||||
msgid "Connection Successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractOauthAdminSettingsPage.php:51
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:78
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:21
|
||||
msgid "User Data"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:22
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:55
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:23
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:56
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:24
|
||||
msgid "Biography"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:25
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:26
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:27
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:28
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:29
|
||||
msgid "URL-friendly user name"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:30
|
||||
msgid "User ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:31
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:32
|
||||
#: src/core/src/Sync/Sources/WPUserRoles.php:49
|
||||
msgid "User Role"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:33
|
||||
msgid "Registration Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/AbstractSyncAction.php:34
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/CampaignMonitor/AdminSettingsPage.php:93
|
||||
msgid "FuseWP Error: Client ID is %smissing in %s settings%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/CampaignMonitor/CampaignMonitor.php:152
|
||||
msgid "CampaignMonitor access token not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/CampaignMonitor/SyncAction.php:28
|
||||
#: src/core/src/Integrations/ConstantContact/SyncAction.php:52
|
||||
msgid "Select List"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/CampaignMonitor/SyncAction.php:45
|
||||
#: src/core/src/Integrations/ConstantContact/SyncAction.php:78
|
||||
#: src/core/src/Integrations/Mailchimp/SyncAction.php:54
|
||||
msgid "Map Custom Fields"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:57
|
||||
msgid "Job Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:58
|
||||
msgid "Company Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:59
|
||||
msgid "Birthday Month"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:60
|
||||
msgid "Birthday Day"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:61
|
||||
msgid "Anniversary"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:62
|
||||
msgid "Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:65
|
||||
msgid "Home Address Street"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:66
|
||||
msgid "Home Address City"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:67
|
||||
msgid "Home Address State"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:68
|
||||
msgid "Home Address Postal Code"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:69
|
||||
msgid "Home Address Country"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:72
|
||||
msgid "Work Address Street"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:73
|
||||
msgid "Work Address City"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:74
|
||||
msgid "Work Address State"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:75
|
||||
msgid "Work Address Postal Code"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:76
|
||||
msgid "Work Address Country"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:79
|
||||
msgid "Other Address Street"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:80
|
||||
msgid "Other Address City"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:81
|
||||
msgid "Other Address State"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:82
|
||||
msgid "Other Address Postal Code"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:83
|
||||
msgid "Other Address Country"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/ConstantContact.php:166
|
||||
msgid "ConstantContact access token not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/SyncAction.php:58
|
||||
#: src/core/src/Integrations/Mailchimp/SyncAction.php:35
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/ConstantContact/SyncAction.php:62
|
||||
msgid "Select the tags to assign to contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:50
|
||||
msgid "Mailchimp Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:54
|
||||
msgid "Sync Double Optin"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:55
|
||||
msgid "Check to Enable"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:56
|
||||
msgid ""
|
||||
"Double optin requires users to confirm their email address before they are "
|
||||
"added or subscribed."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/AdminSettingsPage.php:63
|
||||
msgid ""
|
||||
"Upgrade to FuseWP Premium to enable double optin when subscribing users to "
|
||||
"Mailchimp during sync."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/Mailchimp.php:163
|
||||
msgid "Mailchimp access token not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/SyncAction.php:29
|
||||
msgid "Select Audience"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/SyncAction.php:37
|
||||
msgid "tag1, tag2"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Integrations/Mailchimp/SyncAction.php:38
|
||||
msgid "Enter a comma-separated list of tags to assign to contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/RegisterScripts.php:41
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/RegisterScripts.php:44
|
||||
msgid ""
|
||||
"No destination added. Click the %s+ Add Destination%s button to add one."
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Sync/Sources/WPUserRoles.php:11
|
||||
msgid "User Roles"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Sync/Sources/WPUserRoles.php:39
|
||||
msgid "Any Roles"
|
||||
msgstr ""
|
||||
|
||||
#: src/core/src/Sync/Sources/WPUserRoles.php:55
|
||||
msgid ""
|
||||
"Sync WordPress users with your email marketing software based on their "
|
||||
"registered user roles. Changes to user profile information are automatically "
|
||||
"synced as well. And if a user is deleted, they are automatically "
|
||||
"unsubscribed. %sLearn more%s"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "FuseWP - Lite"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# fusewp.pot (FuseWP - Lite 1.1.1.0) #-#-#-#-#
|
||||
#. Plugin URI of the plugin/theme
|
||||
#. #-#-#-#-# fusewp.pot (FuseWP - Lite 1.1.1.0) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://fusewp.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Connect WordPress to your email marketing software and CRM."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "FuseWP Team"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,180 @@
|
||||
# Copyright (C) 2023 getgenieai
|
||||
# This file is distributed under the GPLv3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Genie Image AI 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/genie-image\n"
|
||||
"POT-Creation-Date: 2023-10-22 08:45:42+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: app/Providers/SideMenuProvider.php:39 app/Providers/SideMenuProvider.php:40
|
||||
msgid "Genie Image"
|
||||
msgstr ""
|
||||
|
||||
#: app/Providers/SideMenuProvider.php:50
|
||||
msgid "Image License | Genie Image"
|
||||
msgstr ""
|
||||
|
||||
#: app/Providers/SideMenuProvider.php:51
|
||||
msgid "Image License"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:24 app/Services/History/Cpt.php:24
|
||||
msgid "Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:25 app/Services/History/Cpt.php:25
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:26 app/Services/History/Cpt.php:26
|
||||
msgid "Item Archives"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:27 app/Services/History/Cpt.php:27
|
||||
msgid "Item Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:28 app/Services/History/Cpt.php:28
|
||||
msgid "Parent Item:"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:29 app/Services/History/Cpt.php:29
|
||||
msgid "All Items"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:30 app/Services/History/Cpt.php:30
|
||||
msgid "Add New Item"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:31 app/Services/History/Cpt.php:31
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:32 app/Services/History/Cpt.php:32
|
||||
msgid "New Item"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:33 app/Services/History/Cpt.php:33
|
||||
msgid "Edit Item"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:34 app/Services/History/Cpt.php:34
|
||||
msgid "Update Item"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:35 app/Services/History/Cpt.php:35
|
||||
msgid "View Item"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:36 app/Services/History/Cpt.php:36
|
||||
msgid "View Items"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:37 app/Services/History/Cpt.php:37
|
||||
msgid "Search Item"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:38 app/Services/History/Cpt.php:38
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:39 app/Services/History/Cpt.php:39
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:40 app/Services/History/Cpt.php:40
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:41 app/Services/History/Cpt.php:41
|
||||
msgid "Set featured image"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:42 app/Services/History/Cpt.php:42
|
||||
msgid "Remove featured image"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:43 app/Services/History/Cpt.php:43
|
||||
msgid "Use as featured image"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:44 app/Services/History/Cpt.php:44
|
||||
msgid "Insert into item"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:45 app/Services/History/Cpt.php:45
|
||||
msgid "Uploaded to this item"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:46 app/Services/History/Cpt.php:46
|
||||
msgid "Items list"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:47 app/Services/History/Cpt.php:47
|
||||
msgid "Items list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:48 app/Services/History/Cpt.php:48
|
||||
msgid "Filter items list"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:51
|
||||
msgid "getgenie chat"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:52
|
||||
msgid "getgenie chats"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/History/Cpt.php:51
|
||||
msgid "genieimage history"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/History/Cpt.php:52
|
||||
msgid "genieimage histories"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Genie Image AI"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://getgenie.ai/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Genie Image AI is the most intuitive A.I Content Wordpress Plugin that can "
|
||||
"help you save time and generate unique images."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "getgenieai"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:22
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "getgenie chat"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/History/Cpt.php:22
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "genieimage histories"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/GenieChat/Cpt.php:23
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "getgenie chat"
|
||||
msgstr ""
|
||||
|
||||
#: app/Services/History/Cpt.php:23
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "genieimage history"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,11 @@
|
||||
/**1.0.3 - 2023.07.03**/
|
||||
– Updated: Compatible with WooCommerce HPOS(COT)
|
||||
|
||||
/**1.0.2 - 2023.03.23**/
|
||||
- Added: PPDF file name in email
|
||||
|
||||
/**1.0.1 - 2023.03.01**/
|
||||
- Fixed: Expiry date format
|
||||
|
||||
/**1.0.0 - 2023.02.14**/
|
||||
~ The first released.
|
||||
56
spec/fixtures/dynamic_finders/plugin_version/grow-for-wp/change_log/changelog.txt
vendored
Normal file
56
spec/fixtures/dynamic_finders/plugin_version/grow-for-wp/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0.0 - 2023-10-18
|
||||
- Plugin Released
|
||||
- Update plugin assets for parsing
|
||||
- Fix type and link for Main Menu and feature link (#83)
|
||||
- Add support for validity and connectedness in status api (#82)
|
||||
- Update readme and add banner (#81)
|
||||
- Pass site path to Grow Auth (#80)
|
||||
- fix: WordPress dev container always restarts (#79)
|
||||
- Escape the values output in the grow script initializer (#78)
|
||||
- fix: feature descriptions URL-escaped (#77)
|
||||
- feature: add WP_Mock (#74)
|
||||
- feature: add dev container support (#73)
|
||||
- fix: non-compliant escaping and file access (#72)
|
||||
- move screenshots to correct directory (#71)
|
||||
- add screenshots to readme (#70)
|
||||
- chore: update readme (#69)
|
||||
- feat: Add settings link to Plugins Page and Update Plugin URI
|
||||
- feat: Add Support for wp build testing workflow with alternate wp builds
|
||||
- feat: Use Custom Lighthouse Orb
|
||||
- fix: Update docker image
|
||||
- Update docker image
|
||||
- Update docker image
|
||||
- Update docker image
|
||||
- Fix Frontent Test
|
||||
|
||||
|
||||
## 1.0.0 - 2023-10-18
|
||||
|
||||
|
||||
|
||||
## 0.1.7 - 2023-08-11
|
||||
* fix: Adjust Typography on Settings Page
|
||||
* fix: Bigger Images for Settings Page
|
||||
|
||||
## 0.1.6 - 2023-07-26
|
||||
* fix: Window Size for site authentication now larger
|
||||
* fix: Open Help Doc Links in New Tab
|
||||
|
||||
## 0.1.5 - 2023-07-10
|
||||
* fix: Open Authenticated Link in new tab
|
||||
* chore: Add Test for Authenticated View
|
||||
|
||||
## 0.1.4 - 2023-06-26
|
||||
* chore: Remove Author URI
|
||||
|
||||
## 0.1.3 - 2023-06-23
|
||||
* chore: Name changed to Grow for WP
|
||||
|
||||
## 0.1.2 - 2023-06-22
|
||||
* fix: Don't Stretch Images in Settings page
|
||||
|
||||
## 0.1.1 - 2023-06-20
|
||||
* feat: Add changelog Generation
|
||||
* fix: Direct Users to correct Grow Site
|
||||
@@ -0,0 +1,432 @@
|
||||
# Copyright (C) 2023 Jegstudio
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gutenverse Form 0.5.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gutenverse-form\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-10-03T08:43:13+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.8.1\n"
|
||||
"X-Domain: gutenverse-form\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Gutenverse Form"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://gutenverse.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Powerful and intuitive form builder plugin designed to streamline the process of creating and managing forms on your WordPress website."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Jegstudio"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://jegtheme.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:72
|
||||
msgid "All Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:294
|
||||
msgid "no-form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:303
|
||||
msgid "no-referral"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:315
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:316
|
||||
#: includes/class-form.php:66
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:317
|
||||
#: includes/class-form.php:49
|
||||
#: includes/class-form.php:50
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:318
|
||||
msgid "Referral"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:319
|
||||
#: includes/class-form.php:69
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:333
|
||||
msgid "Entry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:344
|
||||
msgid "Entry #"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:362
|
||||
#: includes/class-entries.php:363
|
||||
#: includes/class-entries.php:364
|
||||
#: includes/class-form.php:67
|
||||
msgid "Entries"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:365
|
||||
msgid "New Entries"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:366
|
||||
msgid "Create Entry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:367
|
||||
msgid "View Entry Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:368
|
||||
msgid "New Entry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:369
|
||||
msgid "View Entry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:370
|
||||
msgid "Search Entry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:371
|
||||
#: includes/class-form.php:187
|
||||
msgid "No entry found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:372
|
||||
msgid "No Entry in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:375
|
||||
msgid "Gutenverse Form Entries"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:405
|
||||
msgid "Form Info"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:415
|
||||
msgid "Entry Info"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:425
|
||||
#: includes/class-mail.php:164
|
||||
msgid "Browser Info"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:447
|
||||
msgid "empty"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:475
|
||||
msgid "Form is not set"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-entries.php:477
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:68
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:103
|
||||
msgid "Export CSV"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:178
|
||||
#: includes/class-form.php:179
|
||||
#: includes/class-form.php:180
|
||||
msgid "Form Action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:181
|
||||
msgid "New Form Action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:182
|
||||
msgid "Create Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:183
|
||||
msgid "Edit Form Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:184
|
||||
msgid "New Form Entry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:185
|
||||
msgid "View Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:186
|
||||
msgid "Search Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:188
|
||||
msgid "No Form in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:191
|
||||
msgid "Gutenverse Form Action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form.php:312
|
||||
msgid " Clone"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mail.php:60
|
||||
msgid "Error. User email not found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mail.php:89
|
||||
msgid "Submission"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mail.php:94
|
||||
msgid "Entry Details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mail.php:111
|
||||
msgid "Error. Notification email not found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mail.php:146
|
||||
msgid "Form ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mail.php:148
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mail.php:152
|
||||
msgid "Entry ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mail.php:154
|
||||
msgid "Entry Data"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-builder/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Form Builder"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-builder/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Build a flexible form with many field choices."
|
||||
msgstr ""
|
||||
|
||||
#: block/form-builder/block.json
|
||||
#: block/form-input-checkbox/block.json
|
||||
#: block/form-input-date/block.json
|
||||
#: block/form-input-email/block.json
|
||||
#: block/form-input-multiselect/block.json
|
||||
#: block/form-input-number/block.json
|
||||
#: block/form-input-radio/block.json
|
||||
#: block/form-input-select/block.json
|
||||
#: block/form-input-switch/block.json
|
||||
#: block/form-input-telp/block.json
|
||||
#: block/form-input-text/block.json
|
||||
#: block/form-input-textarea/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "form"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-builder/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "entry"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-builder/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "submit"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-checkbox/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-checkbox/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Input Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-checkbox/block.json
|
||||
#: block/form-input-date/block.json
|
||||
#: block/form-input-email/block.json
|
||||
#: block/form-input-multiselect/block.json
|
||||
#: block/form-input-number/block.json
|
||||
#: block/form-input-radio/block.json
|
||||
#: block/form-input-select/block.json
|
||||
#: block/form-input-switch/block.json
|
||||
#: block/form-input-telp/block.json
|
||||
#: block/form-input-text/block.json
|
||||
#: block/form-input-textarea/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "input"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-checkbox/block.json
|
||||
#: block/form-input-date/block.json
|
||||
#: block/form-input-email/block.json
|
||||
#: block/form-input-multiselect/block.json
|
||||
#: block/form-input-number/block.json
|
||||
#: block/form-input-radio/block.json
|
||||
#: block/form-input-select/block.json
|
||||
#: block/form-input-submit/block.json
|
||||
#: block/form-input-switch/block.json
|
||||
#: block/form-input-telp/block.json
|
||||
#: block/form-input-text/block.json
|
||||
#: block/form-input-textarea/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "gutenverse"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-date/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Date Input"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-date/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Input Date"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-email/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Email Input"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-email/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Input Email"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-multiselect/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Multi Select"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-multiselect/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Input Multi Select"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-number/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Number Input"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-number/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Input Number"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-radio/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Radio"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-radio/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Input Radio"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-select/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-select/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Select"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-submit/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Submit Button"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-submit/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Create an interactive and beautiful action button."
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-submit/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "button"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-submit/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "url"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-submit/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "action"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-switch/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Switch"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-switch/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Switch"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-telp/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Telp Input"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-telp/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Input Telp"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-text/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Text Input"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-text/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Input Text"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-textarea/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Textarea"
|
||||
msgstr ""
|
||||
|
||||
#: block/form-input-textarea/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Gutenverse Input Textarea"
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/helpfulnessmeter/change_log/changelog.txt
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/helpfulnessmeter/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
*** HelpfulnessMeter Changelog ***
|
||||
2023-06-18 - version 1.0.2
|
||||
* Update: changelog URL
|
||||
* Fix: nonce names
|
||||
* Deleted: misnamed assets
|
||||
|
||||
2023-06-17 - version 1.0.1
|
||||
* Update: readme file.
|
||||
* Fix: backslashes were added to the backup if the texts contained apostrophes for example.
|
||||
|
||||
2023-06-16 - version 1.0
|
||||
* First Release.
|
||||
|
||||
@@ -0,0 +1,247 @@
|
||||
# Copyright (C) 2023 GrandPlugins
|
||||
# This file is distributed under the same license as the Image Type Converter [[GrandPlugins]] plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Image Type Converter [[GrandPlugins]] 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gpls-wicor-image-converter\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-04-18T15:14:28+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: image-type-converter\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Image Type Converter [[GrandPlugins]]"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Convert Image Types easily in WP."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "GrandPlugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://grandplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/ImageConverter.php:213
|
||||
msgid "Animated images are not supported yet."
|
||||
msgstr ""
|
||||
|
||||
#: includes/ImageConverter.php:227
|
||||
msgid "Image not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/ImageConverter.php:264
|
||||
msgid "The image file doesn't exist!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/ImageConverter.php:376
|
||||
msgid "Image type is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:41
|
||||
msgid "Image Conversions History [GrandPlugins]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:80
|
||||
msgid "Conversion History"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:94
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:102
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:111
|
||||
msgid "Extension"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:126
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:137
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:140
|
||||
msgid " convert"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConversionHistoryMetaBox.php:152
|
||||
msgid "No conversions yet!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConverterMetaBox.php:41
|
||||
msgid "Image Type Converter [GrandPlugins]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgConverterMetaBox.php:69
|
||||
msgid "You are about to convert the image type, proceed?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/MetaBoxes/ImgSubsizesMetaBox.php:39
|
||||
msgid "Image Subsizes List [GrandPlugins]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/SelectImagesModule.php:84
|
||||
msgid "Select images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/SelectImagesModule.php:85
|
||||
msgid "Preview Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/SelectImagesModule.php:86
|
||||
msgid "Select Preview Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/SelectImagesModule.php:87
|
||||
msgid "Search Term"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:16
|
||||
msgid "Select Images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:21
|
||||
msgid "Select images directly"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:22
|
||||
msgid "Select images from media"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:27
|
||||
msgid "Select Images by posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:28
|
||||
msgid "Select images attached to posts [ images uploaded to posts ]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:33
|
||||
msgid "Full Select"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modules/SelectImages/templates/main-template.php:34
|
||||
msgid "Convert all images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:47
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:58
|
||||
msgid "Image Converter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:67
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:72
|
||||
msgid "Auto Convert"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:73
|
||||
msgid "Convert images automatically on upload"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:77
|
||||
msgid "Bulk Convert"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Pages/SettingsPage.php:78
|
||||
msgid "Convert images type in bulk"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:19
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:22
|
||||
msgid "Enable Auto Conversion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:29
|
||||
msgid "Conversion Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:36
|
||||
msgid "General Conversion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:37
|
||||
msgid "Convert all images to single image type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:41
|
||||
msgid "Custom Conversion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:42
|
||||
msgid "Make custom conversions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:52
|
||||
msgid "Target Type to convert all uploaded images to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:82
|
||||
msgid "Uploaded image type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Fields/settings-fields.php:90
|
||||
msgid "Target conversion type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/metaboxes/img-converter-metabox-template.php:36
|
||||
msgid "Convert To:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/metaboxes/img-converter-metabox-template.php:58
|
||||
msgid "Keep file extension?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/metaboxes/img-converter-metabox-template.php:65
|
||||
msgid "This option will keep the same old image file extension after conversion. This will keep the same image URL without change."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:19
|
||||
msgid "PHP Version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:32
|
||||
msgid "GD Version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:52
|
||||
msgid "ImageMagick Version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:73
|
||||
msgid "AVIF Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:89
|
||||
msgid "WEBP Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:106
|
||||
msgid "AVIF requires %1$s compiled with AVIF support OR %2$s at least. please contact your hosting support regarding that."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Templates/pages/status-template.php:112
|
||||
msgid "AVIF images are not allowed for upload. If you want to upload and use AVIF images, we recommend our plugin %s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,201 @@
|
||||
# Copyright (C) 2023 Khalti
|
||||
# This file is distributed under the same license as the Integrate Khalti in WC Store plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Integrate Khalti in WC Store 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/integrate-khalti-in-wc\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-05-26T05:57:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: woocommerce-khalti\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Integrate Khalti in WC Store"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://khalti.com/payment-gateway/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Integrate Khalti in WooCommerce is a plugin that enables payment via Khalti Wallet in WooCommerce shop in Nepal."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/class-wc-gateway-khalti.php:61
|
||||
#: includes/gateways/settings-khalti.php:29
|
||||
msgid "Khalti"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://khalti.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-khalti.php:60
|
||||
msgid "Proceed to Khalti"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-khalti.php:62
|
||||
msgid "Take payments via Khalti - sends customers to Khalti portal to enter their payment information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-khalti.php:90
|
||||
msgid "SANDBOX ENABLED. You can use testing accounts only."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-khalti.php:191
|
||||
msgid "Gateway Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-khalti.php:195
|
||||
msgid "Khalti does not support your store currency."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-khalti-txn-report.php:19
|
||||
#: includes/class-woocommerce-khalti-txn-report.php:23
|
||||
msgid "Khalti Transaction Online Report"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-khalti.php:139
|
||||
msgid "View WooCommerce Khalti settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-khalti.php:141
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: woocommerce version
|
||||
#: includes/class-woocommerce-khalti.php:155
|
||||
msgid "Integrate Khalti in WooCommerce depends on %s or later to work!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-khalti.php:160
|
||||
msgid "WooCommerce 4.5"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/class-wc-gateway-khalti-ipn-handler.php:213
|
||||
msgid "IPN payment completed"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: payment status
|
||||
#: includes/gateways/class-wc-gateway-khalti-ipn-handler.php:245
|
||||
#: includes/gateways/class-wc-gateway-khalti-ipn-handler.php:260
|
||||
msgid "Payment %s via IPN."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order ID.
|
||||
#: includes/gateways/class-wc-gateway-khalti-ipn-handler.php:275
|
||||
msgid "Payment for cancelled order %s received"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order link.
|
||||
#: includes/gateways/class-wc-gateway-khalti-ipn-handler.php:283
|
||||
msgid "Order #%s has been marked paid by Khalti IPN, but was previously cancelled. Admin handling required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:16
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:18
|
||||
msgid "Enable Khalti Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:22
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:25
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:32
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:35
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:39
|
||||
msgid "Pay via Khalti; you can pay with Khalti securely."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:45
|
||||
msgid "Live merchant secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:48
|
||||
msgid "Please enter your live Khalti merchant secret; this is needed to take the payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:55
|
||||
msgid "Test Merchant secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:58
|
||||
msgid "Please enter your test Khalti merchant secret; this is needed to test the payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:65
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:70
|
||||
msgid "Sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:72
|
||||
msgid "Enable Sandbox Mode"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Khalti contact page
|
||||
#: includes/gateways/settings-khalti.php:76
|
||||
msgid "Enable Khalti sandbox to test payments. Please contact Khalti Merchant/Service Provider for a <a href=\"%s\" target=\"_blank\">developer account</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:84
|
||||
msgid "Send customer info"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:86
|
||||
msgid "Send customer info to Khalti"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:90
|
||||
msgid "Send amount breakdown"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:92
|
||||
msgid "Send total amount breakdown to Khalti"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:99
|
||||
msgid "Debug log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:101
|
||||
msgid "Enable logging"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Khalti log file path
|
||||
#: includes/gateways/settings-khalti.php:105
|
||||
msgid "Log Khalti events, such as IPN requests, inside <code>%s</code>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:113
|
||||
msgid "IPN email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:115
|
||||
msgid "Enable IPN email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-khalti.php:117
|
||||
msgid "Send email when an IPN is received from Khalti for cancelled order."
|
||||
msgstr ""
|
||||
47
spec/fixtures/dynamic_finders/plugin_version/joes-recent-users-activity/change_log/changelog.txt
vendored
Normal file
47
spec/fixtures/dynamic_finders/plugin_version/joes-recent-users-activity/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
1.9 (9th November 2023)
|
||||
- changed the default icon in the admin menu
|
||||
- added title and subheader for mobile explaining sorting
|
||||
|
||||
1.8 (9th November 2023)
|
||||
- added mobile responsiveness for the main table
|
||||
|
||||
1.7 (7th November 2023)
|
||||
- table increased to 100 most recent users' activity (from 10)
|
||||
- paginaton introduced
|
||||
- most visited page display increased to 10 (from 5)
|
||||
|
||||
1.6 (1st November 2023)
|
||||
- sanitize function renamed to match the rest of the plugin functions
|
||||
|
||||
1.5 (28th October 2023)
|
||||
- additional data sanitized and escaped, nonce added to clear all results button
|
||||
|
||||
1.4 (25th October 2023)
|
||||
- additional data sanitized and escaped
|
||||
|
||||
1.3 (16th October 2023)
|
||||
- Nonce added to the POST call to prevent unauthorised access.
|
||||
- prepare() added to database clear query to protect the code from SQL injection vulnerabilities.
|
||||
- detail about PayPal Donate button usage added to readme,txt
|
||||
- all necessary data sanitized, escaped, and validated
|
||||
- variables escaped when echo'd
|
||||
|
||||
1.2 (9th October 2023)
|
||||
- All data being read from any of these PHP global variables $_POST / $_GET / $_REQUEST / $_COOKIE / $_SERVER / $_SESSION / $_FILES has been sanitized before storing it in another variable or doing something else with it.
|
||||
|
||||
In this code, the following sanitization functions have been used:
|
||||
|
||||
sanitize_text_field() for text fields.
|
||||
absint() for integers.
|
||||
esc_url_raw() for raw URLs.
|
||||
These sanitization functions ensure that the input data is safe to use and minimize the risk of security vulnerabilities.
|
||||
|
||||
- Appropriate escaping functions (esc_html, esc_url_raw, sanitize_text_field) added to the variables that are being echoed or printed to ensure that the output is safe from XSS vulnerabilities.
|
||||
|
||||
1.1 (27th July 2023)
|
||||
- Added top 5 most exited pages (with clickable links), Top 5 exited pages only include front-end pages and exclude admin-ajax.php, 'nonce', 'wp-json', and others not matching front-end permalinks.
|
||||
- Added line space and contact details under the main title.
|
||||
- Added a 'Clear all results' button in case the table becomes bloated
|
||||
|
||||
1.0 (24th July 2023)
|
||||
- Initial release
|
||||
80
spec/fixtures/dynamic_finders/plugin_version/leaf-crm/translation_file/languages/leaf-crm.pot
vendored
Normal file
80
spec/fixtures/dynamic_finders/plugin_version/leaf-crm/translation_file/languages/leaf-crm.pot
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
# Copyright (C) 2023 Leaf CRM
|
||||
# This file is distributed under the same license as the Leaf CRM package.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Leaf CRM 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/leaf-crm\n"
|
||||
"POT-Creation-Date: 2023-04-13 10:14+0800\n"
|
||||
"PO-Revision-Date: 2013-05-10 10:37-0500\n"
|
||||
"Last-Translator: Leaf CRM Team <developer@leaf.my>\n"
|
||||
"Language-Team: Leaf CRM Team <developer@leaf.my>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
|
||||
"esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:47
|
||||
msgid "Leaf WordPress Integration"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:50
|
||||
msgid "Send Leads to Leaf CRM"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:55
|
||||
msgid "Leaf CRM Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:59
|
||||
msgid ""
|
||||
"Get the integration token after you have added the WordPress lead "
|
||||
"source to your Campaign in Leaf CRM"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:72
|
||||
msgid "Website Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:76
|
||||
msgid ""
|
||||
"This Website Name will be displayed under the Lead Source "
|
||||
"information in the Leaf app"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:86
|
||||
msgid "Contacts Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:90
|
||||
msgid ""
|
||||
"Choose which Contacts Form plugins you want to integrate with Leaf"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:92
|
||||
msgid ""
|
||||
"Leaf CRM works with multiple Contacts Form plugins. Simply enter "
|
||||
"your Leaf CRM Token above and click SAVE to turn on the integration!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:102
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:103
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:157
|
||||
#: admin/partials/leaf-crm-admin-display.php:198
|
||||
msgid "Your settings have been updated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/leaf-crm-admin-display.php:164
|
||||
msgid "Failed to update your settings. Please try again later."
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/luciditi-age-assurance/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/luciditi-age-assurance/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.0 = May 20th, 2023
|
||||
* First release.
|
||||
@@ -0,0 +1,361 @@
|
||||
# Copyright (C) 2023 Luciditi
|
||||
# This file is distributed under the same license as the Luciditi Age Assurance package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Luciditi Age Assurance 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://luciditi.co.uk/age-assurance\n"
|
||||
"POT-Creation-Date: 2023-09-22 19:13:37+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: 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"
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:339
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:410
|
||||
msgid "A temporary session was not detected for this entry."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:489
|
||||
#: includes/class-luciditi-age-assurance.php:945
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:490
|
||||
#: includes/class-luciditi-age-assurance.php:946
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:491
|
||||
#: includes/class-luciditi-age-assurance.php:947
|
||||
msgid ""
|
||||
"This site contains age restricted content so as first time visitor, we'll "
|
||||
"need to verify that you meet the minumum age requirements."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:492
|
||||
#: includes/class-luciditi-age-assurance.php:948
|
||||
msgid ""
|
||||
"From time to time we need to re-verify that you meet the minumum age "
|
||||
"requirements."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:493
|
||||
#: includes/class-luciditi-age-assurance.php:949
|
||||
msgid ""
|
||||
"Unfortunately, we were unable to verify your age. If you havent done so "
|
||||
"already, you can retry using a valid ID document."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:582
|
||||
msgid "Request failed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:609
|
||||
msgid "Your session could not be retrieved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:672
|
||||
msgid "Your sign up data could not be retrieved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:694
|
||||
msgid "A start up code ID was not detected."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:725
|
||||
msgid "Sorry, your start up code ID could not be saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:728
|
||||
msgid "Sorry, we were unable to store your start up code ID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:756
|
||||
msgid "Aborted"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:785
|
||||
msgid "Something went wrong, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:786
|
||||
msgid "A start up token could not be generated, please contact website admin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:787
|
||||
msgid "Sorry, your age verification has failed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:807
|
||||
msgid "You do not have sufficient pilchards to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:820
|
||||
msgid "Luciditi Age Assurance Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:824
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:825
|
||||
msgid "API Credentials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:826
|
||||
msgid "Step Up"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:827
|
||||
msgid "Landing Pages & Styling"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:828
|
||||
#: includes/class-luciditi-age-assurance.php:1037
|
||||
msgid "Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:847
|
||||
msgid ""
|
||||
"Welcome to Luciditi Age Assurance. This plugin enables you to set a site "
|
||||
"wide age restriction so that only users over a specified age can access "
|
||||
"your site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:850
|
||||
msgid ""
|
||||
"It uses age estimation technology to allow users who are clearly adults to "
|
||||
"obtain quick access using nothing more than a selfie taken with their phone."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:853
|
||||
msgid ""
|
||||
"Anyone that looks younger than (<your specified minimum age> - 6 years) "
|
||||
"will need to prove their age using a valid government ID before they are "
|
||||
"granted access."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:856
|
||||
msgid ""
|
||||
"If you would like to try it out for yourself, please visit: <a "
|
||||
"href=\"https://luciditi.co.uk/ageassurance-wp\">https://luciditi.co.uk/"
|
||||
"ageassurance-wp</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:859
|
||||
msgid ""
|
||||
"In order to enable this plugin, you will first need to create a Luciditi "
|
||||
"Business Account, verify the identity of a responsible person and setup "
|
||||
"billing. Once active you will be able to access your API credentials. To "
|
||||
"find out how to do this, please visit <a "
|
||||
"href=\"https://luciditi.co.uk/ageassurance-wp\">https://luciditi.co.uk/"
|
||||
"ageassurance-wp</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:865
|
||||
msgid ""
|
||||
"<strong>IMPORTANT:</strong> It is your responsibility to ensure that this "
|
||||
"plugin (which uses age estimation and ID document verification) is an "
|
||||
"acceptable means of age assurance for your website and the territories, "
|
||||
"countries and regions that it operates within. Please be aware that certain "
|
||||
"industries may prohibit use of such technology and require a different "
|
||||
"approach."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:871
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:872
|
||||
msgid "Enable age assurance sitewide restriction."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:875
|
||||
msgid "Minimum age"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:878
|
||||
msgid "years"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:882
|
||||
msgid "Retention period"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:885
|
||||
msgid "days"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:901
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:905
|
||||
msgid "Caller username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:922
|
||||
msgid "Step up options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:924
|
||||
msgid "With ID Document"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:926
|
||||
msgid "With Data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:954
|
||||
msgid "Branding & Colors"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:960
|
||||
msgid "Your logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:961
|
||||
msgid "(please use a transparent image)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:965
|
||||
msgid "Browse..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:966
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:971
|
||||
msgid "Primary color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:975
|
||||
msgid "Secondary color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:979
|
||||
msgid "Text color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:987
|
||||
msgid "Landing Page Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:991
|
||||
msgid "Start text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:995
|
||||
msgid "Retry text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:1003
|
||||
msgid "Landing Page Messages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:1007
|
||||
msgid "First time user"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:1013
|
||||
msgid "Returning user"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:1019
|
||||
msgid "Failed validation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:1038
|
||||
msgid "Wipe all plugin data upon uninstall."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:1038
|
||||
msgid ""
|
||||
"(This will delete all sessions, settings and all database entries "
|
||||
"associated with the plugin.)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:1054
|
||||
msgid ""
|
||||
"<strong>DISCLAIMER:</strong> This application is provided by Arissian Ltd "
|
||||
"on an \"as is\" and \"as available\" basis. Arissian makes no "
|
||||
"representations or warranties of any kind, express or implied, as to the "
|
||||
"operation of the application or the information, content, materials. To the "
|
||||
"full extent permissible by applicable law, arissian disclaims all "
|
||||
"warranties, express or implied, including, but not limited to, implied "
|
||||
"warranties of merchantability and fitness for a particular purpose. You "
|
||||
"acknowledge, by your use of the application, that your use of the "
|
||||
"application is at your sole risk."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:1062
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-luciditi-age-assurance.php:1066
|
||||
msgid "Download Logs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/luciditi-helpers.php:274
|
||||
msgid "Age Assurance API credentials are not setup correctly."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/luciditi-helpers.php:371
|
||||
msgid "Age Assurance API failed authentication."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/luciditi-helpers.php:375
|
||||
#. translators: the error message
|
||||
msgid "Something went wrong (%s)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/luciditi-helpers.php:378
|
||||
#. translators: the error code number
|
||||
msgid "Something went wrong (error code %d)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/templates/body/failed-validation.php:19
|
||||
#: includes/templates/body/first-time.php:19
|
||||
#: includes/templates/body/returning.php:20
|
||||
msgid "Age Verification"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Luciditi Age Assurance"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://luciditi.co.uk/age-assurance"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Add frictionless, privacy-preserving Age Assurance using Luciditi Age "
|
||||
"Estimation or Age Verification."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Luciditi"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://luciditi.co.uk"
|
||||
msgstr ""
|
||||
15
spec/fixtures/dynamic_finders/plugin_version/mobile-bottom-menu-for-wp/change_log/changelog.txt
vendored
Normal file
15
spec/fixtures/dynamic_finders/plugin_version/mobile-bottom-menu-for-wp/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
= 1.0.1 - 23 March 2023 =
|
||||
|
||||
* Fix: Menu location issues
|
||||
|
||||
= 1.0.2 - 07 May 2023 =
|
||||
|
||||
* new: z Index setting
|
||||
|
||||
= 1.0.3 - 13 May 2023 =
|
||||
|
||||
* new: Scrollbar show/Hide Option
|
||||
|
||||
= 1.0.4 - 13 June 2023 =
|
||||
|
||||
* fix: error log issues
|
||||
@@ -0,0 +1,173 @@
|
||||
# Copyright (C) 2023 Lumen Spei
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MojUredFiscalization 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mojured\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-07-11T09:09:08+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: mojuredfiscalization\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "MojUredFiscalization"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://lumenspei.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Sync your products and generate invoices"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Lumen Spei"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:109
|
||||
msgid "MojUred"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:133
|
||||
msgid "MojUred settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:140
|
||||
#: admin/class-mojured-admin.php:146
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:145
|
||||
msgid "Enter your API key from user section on eured.digitalnakomora.hr"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:152
|
||||
msgid "Ignore payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:157
|
||||
msgid "Choose payment methods which don't need fiscalization"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:163
|
||||
msgid "Auto-fiscalize on status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:168
|
||||
msgid "Select a status on which to fiscalize invoice automatically"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:174
|
||||
msgid "Sync - only update"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:180
|
||||
msgid "Sync will only update existing Woocommerce product that exist in both Woocommerce and MojUred"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:186
|
||||
msgid "Enable test server"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:192
|
||||
msgid "Connect to test server"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:204
|
||||
msgid "Set up your connection to eured.digitalnakomora.hr"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:246
|
||||
msgid "Don't auto-fiscalize"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:428
|
||||
msgid "MojUred synchronisation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:429
|
||||
msgid "Sync now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:450
|
||||
msgid "Couldn't retrieve products from MojUred"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:457
|
||||
msgid "No products retrieved from MojUred"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:627
|
||||
msgid "Product sync completed succesfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:649
|
||||
msgid "Generate invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:658
|
||||
msgid "Download invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:661
|
||||
msgid "Fiscalize invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:790
|
||||
msgid "Order ID is not set!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:801
|
||||
msgid "Order ID %s not found!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:934
|
||||
#: admin/class-mojured-admin.php:1019
|
||||
msgid "Error occured when sending data to eured.digitalnakomora.hr and server returned following message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:967
|
||||
msgid "Invoice generated succefully but no file returned"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:975
|
||||
msgid "Invoice generated succefully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:984
|
||||
msgid "Unknown error occured"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:1056
|
||||
msgid "Fiscalized succefully but no file returned"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:1068
|
||||
msgid "Invoice fiscalized succesfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:1077
|
||||
msgid "Error occured"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mojured-admin.php:1092
|
||||
msgid "Order couldn't be fiscalized because it's not paid"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/class-mojured-frontend.php:65
|
||||
msgid "OIB"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/class-mojured-frontend.php:66
|
||||
msgid "Your company OIB"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/class-mojured-frontend.php:87
|
||||
msgid "Your OIB is required if you are ordering as a company"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,99 @@
|
||||
# Copyright (C) 2023 guelben
|
||||
# This file is distributed under the same license as the MotionMagic (Premium) plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MotionMagic (Premium) 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/motionmagic-premium\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-04-28T23:36:09+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: motion-magic\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "MotionMagic (Premium)"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Enhance Gutenberg with beautifull animations (on scroll, on hover and on click). Works with any block, new or premade. Commpatible with any block plugins: spectra, Toolset, Stackable, genesis ultimate..."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "guelben"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:173
|
||||
msgid "Animations by MotionMagic"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:174
|
||||
msgid "Animation"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:175
|
||||
msgid "Duration"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:176
|
||||
msgid "Effect"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:177
|
||||
msgid "Easing"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:445
|
||||
msgid "Welcome to MotionMagic"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:448
|
||||
msgid "Thank you for choosing MotionMagic, the easiest way to add beautifull css animations to any Gutenberg block."
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:454
|
||||
msgid "How to get started?"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:458
|
||||
msgid "Inspect Any Block"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:461
|
||||
msgid "Toggle the MotionMagic Panel"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:464
|
||||
msgid "Enjoy!"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:486
|
||||
msgid "Default settings"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:499
|
||||
msgid "Animation On Scroll Duration (ms):"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:583
|
||||
msgid "On Scroll Effect Easing:"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:708
|
||||
msgid "Play on scroll animations multiple times :"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:718
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:725
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: motion-magic.php:733
|
||||
msgid "Minimum width to display on scroll animations (in px)"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,109 @@
|
||||
# Copyright (C) 2023 wpxpo
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Multi Vendor Marketplace B2B for WholesaleX Dokan 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/multi-vendor-marketplace-b2b-for-wholesalex-dokan\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-08-03T03:38:45+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: multi-vendor-marketplace-b2b-for-wholesalex-dokan\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Multi Vendor Marketplace B2B for WholesaleX Dokan"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/multi-vendor-marketplace-b2b-for-wholesalex-dokan"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This is a wholesalex addon plugin, that Turn Dokan marketplace into a wholesale multi vendor marketplace by letting vendors add wholesale prices, control product visibility, and use the conversation feature."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "wpxpo"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpxpo.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:265
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:265
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:266
|
||||
msgid "Activating.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:266
|
||||
msgid "Installing.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:267
|
||||
msgid "Activated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:267
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:399
|
||||
msgid "WholesaleX for Dokan needs the “WholesaleX” plugin to run."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:540
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:550
|
||||
msgid "WholesaleX Activation Failed!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:543
|
||||
msgid "WholesaleX Installation Failed!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan.php:555
|
||||
msgid "Successfully Installed and Activated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan-public.php:59
|
||||
#: includes/public/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan-public.php:159
|
||||
msgid "Dynamic Rules"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan-public.php:67
|
||||
msgid "Conversations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan-public.php:155
|
||||
msgid "Dokan Integration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan-public.php:160
|
||||
msgid "Enable Dynamic Rule feature for vendors."
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan-public.php:165
|
||||
msgid "Role-Based Pricing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan-public.php:166
|
||||
msgid "Let vendors add wholesale prices based on user roles."
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan-public.php:171
|
||||
msgid "WholesaleX Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-multi-vendor-marketplace-b2b-for-wholesalex-dokan-public.php:172
|
||||
msgid " Enable WholesaleX options on product editing page."
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/my-askai/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/my-askai/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
@@ -0,0 +1,44 @@
|
||||
# Copyright (C) 2023 Dhimas Kirana
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Native Maintenance 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/native-maintenance\n"
|
||||
"Last-Translator: Dhimas Kirana <me@dhimaskirana.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: 2023-05-28T04:54:48+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: native-maintenance\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Native Maintenance"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.dhimaskirana/native-maintenance/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A super simple maintenance mode plugin using native maintenance mode WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Dhimas Kirana"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.dhimaskirana.com/"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Home url 2: Name of blog
|
||||
#: native-maintenance.php:61
|
||||
msgid "<h1>Website Under Maintenance</h1><br /><a href=\"%1$s\">%2$s</a> is currently undergoing scheduled maintenance.<br />We have got some exciting updates lined up for you. We will be back online!<br /><br />Thank you."
|
||||
msgstr ""
|
||||
|
||||
#: native-maintenance.php:68
|
||||
msgid "Website Under Maintenance"
|
||||
msgstr ""
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/omniform/change_log/changelog.txt
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/omniform/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
1.0.5 / 2023-11-10
|
||||
==================
|
||||
|
||||
* Fix is_required() method to return false if both contexts are null
|
||||
* Fix field name sanitization in BaseControlBlock
|
||||
* Toolbar Addition: Set Fields or Fieldsets as Required [#17](https://github.com/jrtashjian/omniform/pull/17)
|
||||
* Focus message container after submission
|
||||
* Textarea placeholder should not be the value
|
||||
|
||||
1.0.4 / 2023-09-19
|
||||
==================
|
||||
|
||||
* Make newsletter notice dismissable [#16](https://github.com/jrtashjian/omniform/pull/16)
|
||||
* Show the form editor post title
|
||||
|
||||
1.0.3 / 2023-09-09
|
||||
==================
|
||||
|
||||
* Field specific validation rules [#15](https://github.com/jrtashjian/omniform/pull/15)
|
||||
* Language pack support [#14](https://github.com/jrtashjian/omniform/pull/14)
|
||||
|
||||
1.0.2 / 2023-09-06
|
||||
==================
|
||||
|
||||
* Initial release on WordPress.org!
|
||||
@@ -0,0 +1,120 @@
|
||||
# Copyright (C) 2023 Password Sentry
|
||||
# This file is distributed under the same license as the Password Sentry WP Plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Password Sentry WP Plugin v1.0.13\n"
|
||||
"MIME-Version: 1.0.13\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-03T07:21:52+00:00\n"
|
||||
"PO-Revision-Date: 2023-11-07T07:21:52+00:00\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: password-sentry\n"
|
||||
|
||||
#: passwordsentry.php:53
|
||||
msgid "Cannot retrieve the PS API Endpoint URL!"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:58
|
||||
msgid "PS API Endpoint URL does not appear to be valid!"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:62
|
||||
msgid "Cannot enable Tracking if invalid PS API Endpoint URL defined!"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:67
|
||||
msgid "Cannot enable Tracking if PS API Endpoint URL not defined!"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:83
|
||||
msgid "Plugin Settings Updated!"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:118
|
||||
msgid "PS Links"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:120
|
||||
msgid "Download PS"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:123
|
||||
msgid "Note that you must first download and install PS before you can activate, configure, and use this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:127
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:144
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:146
|
||||
msgid "PS API Endpoint URL"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:136
|
||||
msgid "URL to PS sentry.php file. Must be in the following format: <b>https://www.yoursite.com/ps_installation_folder/sentry.php?setupname=setup1</b>"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:137
|
||||
msgid "After a user successfully logs in, the plugin will ping the <b>PS API Endpoint URL</b>. PS tracks the login, and takes any action as appropriate. For example, deny access and suspend the user if the number of unique logins for that user exceeds threshold (as defined via PS AdminCP)."
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:15
|
||||
msgid "You must first download and install PS (Free Essential or Paid Premium Version) before you can use this plugin. Note that the plugin will not be active until you have defined <b>PS API Endpoint URL</b>."
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:151
|
||||
msgid "Credit Link"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:153
|
||||
msgid "If enabled, Password Sentry will display the following message on the login page (link opens in new window)"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:155
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:156
|
||||
msgid "WordPress Login protected by"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:157
|
||||
msgid "If enabled, Plugin will track logins. To stop or pause tracking, set to Disabled."
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:159
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:160
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:159
|
||||
msgid "Optional. This goes a long ways to deter people from sharing passwords and from trying to guess passwords, and also spreads the word about the plugin so others can protect their blogs. Default value is disabled. You can enable or disable this message below"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:161
|
||||
msgid "Show Credit Link [Recommended]"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:162
|
||||
msgid "Hide Credit Link"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:165
|
||||
msgid "Update Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:167
|
||||
msgid "Thank you for protecting your WordPress site with"
|
||||
msgstr ""
|
||||
|
||||
#: passwordsentry.php:180
|
||||
msgid "WordPress Login protected by"
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/paytiko/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/paytiko/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
2023-01-26 - version 1.0.0
|
||||
* Initial release
|
||||
37
spec/fixtures/dynamic_finders/plugin_version/penny-black/composer_file/composer.json
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/penny-black/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "pennyblack/woocommerce-pennyblack",
|
||||
"type": "wordpress-plugin",
|
||||
"description": "Woocommerce plugin to integrate Penny Black for transmitting orders and triggering personalise prints",
|
||||
"version": "1.2.3",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Penny Black",
|
||||
"email": "engineers@pennyblack.io"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=7.4.0",
|
||||
"guzzlehttp/guzzle": "^7.5",
|
||||
"pennyblack/php-sdk": "^1.4.0"
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "vcs",
|
||||
"url": "git@github.com:pennyblack-io/php-sdk.git"
|
||||
}
|
||||
],
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"PennyBlackWoo\\": "src/"
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"platform": {
|
||||
"php": "7.4.0"
|
||||
},
|
||||
"preferred-install": "dist",
|
||||
"optimize-autoloader": true,
|
||||
"prepend-autoloader": false
|
||||
}
|
||||
}
|
||||
51
spec/fixtures/dynamic_finders/plugin_version/pos-entegrator/change_log/changelog.txt
vendored
Normal file
51
spec/fixtures/dynamic_finders/plugin_version/pos-entegrator/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
== Changelog ==
|
||||
|
||||
= v1.3.14 - (2023-07-03) =
|
||||
|
||||
|
||||
Bug Fixes
|
||||
|
||||
* Plugin helper zorunlu guncellemesi
|
||||
|
||||
= v1.3.13 - (2023-07-03) =
|
||||
|
||||
|
||||
Bug Fixes
|
||||
|
||||
* PHP 5.6 ve öncesi için sınıf isimi ile geri döndürme kaldırıldı
|
||||
|
||||
= v1.3.12 - (2023-07-03) =
|
||||
|
||||
|
||||
Bug Fixes
|
||||
|
||||
* Site isimlerinden dolay kaynaklanabilecek link hataları düzeltildi
|
||||
|
||||
= v1.3.11 - (2023-06-26) =
|
||||
|
||||
|
||||
Bug Fixes
|
||||
|
||||
* Eklenti ikonu guncellendi
|
||||
* Eklenti ikonu guncellendi
|
||||
* Ingilizce cevirileri eklendi
|
||||
* İngilizce çevirilieri düzeltildi.
|
||||
* Ingilizce metinler duzenlendi
|
||||
|
||||
= v1.3.10 - (2023-06-25) =
|
||||
|
||||
|
||||
Bug Fixes
|
||||
|
||||
* WordPress README duzenlendi
|
||||
|
||||
= v1.3.6 - (2023-06-25) =
|
||||
|
||||
|
||||
Bug Fixes
|
||||
|
||||
* Esnekpos sanal pos eklendi
|
||||
|
||||
= v1.3.4 - (2023-06-24) =
|
||||
|
||||
* WordPress'de yayınlandı
|
||||
@@ -0,0 +1,368 @@
|
||||
# Copyright (C) 2023 Shewa
|
||||
# This file is distributed under the same license as the Post Designer plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Post Designer 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/post-designer\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-10-04T16:05:13+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.8.1\n"
|
||||
"X-Domain: post-designer\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Post Designer"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Post Designer is a WordPress plugin that adds two new Gutenberg blocks: Post List and Post Carousel. The Post List block allows you to display a list of posts, while the Post Carousel block allows you to display a carousel of posts."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Shewa"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://shewazone.com"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Post Date: "
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "In:"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "By "
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Latest"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Oldest"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Comments Count"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Card"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Layouts"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Query"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Authors"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Term"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Order By"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Carousel Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Slide to Show"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Slide to Scroll"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "First Slide"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Infinite Loop"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Let the carousel rotating infinitely"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Auto Play"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Rotation Speed"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Center Slide"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Show Dots"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Show Arrows"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "Focus on Select"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
msgid "RTL"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Border Radius"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Show Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Meta"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Show Meta"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Show post meta"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Label Color"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Label Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Value Color"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Value Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Show Category"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Category Color"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Category Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Show Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Length"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Read More Text"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Read More Color"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Read More Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Show Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Avatar Size"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Border Radius (%)"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Show Name"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Name Color"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "Name Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: build/carousel/index.js:1
|
||||
#: build/list/index.js:1
|
||||
msgid "No posts found"
|
||||
msgstr ""
|
||||
|
||||
#: build/list/index.js:1
|
||||
msgid "Column per Row"
|
||||
msgstr ""
|
||||
|
||||
#: build/list/index.js:1
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: build/list/index.js:1
|
||||
msgid "Posts per page"
|
||||
msgstr ""
|
||||
|
||||
#: build/list/index.js:1
|
||||
msgid "No Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: build/list/index.js:1
|
||||
msgid "On only if you want to display all posts together"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,51 @@
|
||||
# Copyright (C) 2023 joelmelon
|
||||
# This file is distributed under the same license as the Postr For Nostr plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Postr For Nostr 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/postr-for-nostr\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-10-26T07:28:42+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.8.1\n"
|
||||
"X-Domain: postr-for-nostr\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Postr For Nostr"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/postr-for-nostr/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Share your WordPress posts to Nostr with Postr For Nostr 🫂"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "joelmelon"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://postr-for-nostr.joelstuedle.ch"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s = already used class name, %2$s = plugin class
|
||||
#: classes/Plugin.php:125
|
||||
msgctxt "Theme instance load_classes() error message"
|
||||
msgid "There was a problem with the Plugin. Only one class with name “%1$s” can be use used in “%2$s”."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Plugin.php:185
|
||||
msgctxt "Postr for Nostr window meta title"
|
||||
msgid "Postr for Nostr"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Plugin.php:210
|
||||
msgctxt "Post Column Action"
|
||||
msgid "Post to Nostr"
|
||||
msgstr ""
|
||||
199
spec/fixtures/dynamic_finders/plugin_version/qform/translation_file/languages/qform-ru_RU.po
vendored
Normal file
199
spec/fixtures/dynamic_finders/plugin_version/qform/translation_file/languages/qform-ru_RU.po
vendored
Normal file
@@ -0,0 +1,199 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Blank WordPress Pot v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
||||
"POT-Creation-Date: 2023-09-14 07:39+0300\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Your Team <translations@example.com>\n"
|
||||
"Language: ru\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-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-qform-admin.php:73 public/class-qform-public.php:34
|
||||
msgid "Check qform token!"
|
||||
msgstr "Проверьте токен qform !"
|
||||
|
||||
#: admin/class-qform-admin.php:90
|
||||
msgid "Error validation!"
|
||||
msgstr "Ошибка валидации!"
|
||||
|
||||
#: admin/class-qform-admin.php:114 admin/templates/short-page-template.php:84
|
||||
msgid "Choose form"
|
||||
msgstr "Выберите форму"
|
||||
|
||||
#: admin/class-qform-admin.php:115
|
||||
msgid "Add"
|
||||
msgstr "Вставить"
|
||||
|
||||
#: admin/class-qform-admin.php:116
|
||||
msgid "How to create a form?"
|
||||
msgstr "Как создать форму?"
|
||||
|
||||
#: admin/class-qform-admin.php:128
|
||||
msgid "Qform main"
|
||||
msgstr "Глваная qform"
|
||||
|
||||
#: admin/class-qform-admin.php:129
|
||||
msgid "Qform"
|
||||
msgstr "Qform"
|
||||
|
||||
#: admin/class-qform-admin.php:139
|
||||
msgid "Qform settings"
|
||||
msgstr "Qform настройки"
|
||||
|
||||
#: admin/class-qform-admin.php:140 admin/class-qform-admin.php:170
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: admin/class-qform-admin.php:147
|
||||
msgid "Shortcode menu"
|
||||
msgstr "Шорткод меню"
|
||||
|
||||
#: admin/class-qform-admin.php:148 admin/templates/short-page-template.php:138
|
||||
#: admin/templates/short-page-template.php:151
|
||||
msgid "Shortcode"
|
||||
msgstr "Шорткод формы"
|
||||
|
||||
#: admin/class-qform-admin.php:178
|
||||
msgid "Authorization token"
|
||||
msgstr "Токен авторизации"
|
||||
|
||||
#: admin/class-qform-admin.php:181
|
||||
msgid "Enter token"
|
||||
msgstr "Введите токен"
|
||||
|
||||
#: admin/class-qform-admin.php:240 admin/class-qform-admin.php:248
|
||||
#: admin/class-qform-admin.php:302
|
||||
msgid "Error!"
|
||||
msgstr "Ошибка!"
|
||||
|
||||
#: admin/class-qform-admin.php:257
|
||||
msgid "Form fields are required"
|
||||
msgstr "Поля формы обязательны для заполнения"
|
||||
|
||||
#: admin/class-qform-admin.php:279
|
||||
msgid "Shortcode added"
|
||||
msgstr "Добавлен шорткод"
|
||||
|
||||
#: admin/class-qform-admin.php:285
|
||||
msgid "Error add shortcode"
|
||||
msgstr "Ошибка добавления шорткода"
|
||||
|
||||
#: admin/class-qform-admin.php:315
|
||||
msgid "Shortcode deleted successfully"
|
||||
msgstr "Шорткод успешно удален"
|
||||
|
||||
#: admin/class-qform-admin.php:321
|
||||
msgid "Shortcode deletion error"
|
||||
msgstr "Ошибка удаления шорткода"
|
||||
|
||||
#: admin/templates/main-page-template.php:11
|
||||
msgid "CREATING FORMS AND QUIZZES"
|
||||
msgstr "СОЗДАНИЕ ФОРМ И КВИЗОВ"
|
||||
|
||||
#: admin/templates/main-page-template.php:31
|
||||
msgid "Disable token"
|
||||
msgstr "Отключить токен"
|
||||
|
||||
#: admin/templates/main-page-template.php:38
|
||||
#: admin/templates/short-page-template.php:10
|
||||
msgid "To evaluate app capability and activation,"
|
||||
msgstr "Чтобы завершить процедуру настройки и активации плагина,"
|
||||
|
||||
#: admin/templates/main-page-template.php:40
|
||||
#: admin/templates/short-page-template.php:12
|
||||
msgid "discover the token of the site to which it is linked."
|
||||
msgstr "укажите токен сайта, к которому он привязан."
|
||||
|
||||
#: admin/templates/main-page-template.php:42
|
||||
#: admin/templates/short-page-template.php:15
|
||||
#: admin/templates/short-page-template.php:68
|
||||
#: admin/templates/short-page-template.php:69
|
||||
msgid "https://app.qform.io/"
|
||||
msgstr "https://app.qform.io/"
|
||||
|
||||
#: admin/templates/main-page-template.php:43
|
||||
#: admin/templates/short-page-template.php:16
|
||||
msgid "Where to get a token?"
|
||||
msgstr "Где взять токен?"
|
||||
|
||||
#: admin/templates/main-page-template.php:56
|
||||
msgid "Error token"
|
||||
msgstr "Неверный токен"
|
||||
|
||||
#: admin/templates/main-page-template.php:60
|
||||
#: admin/templates/short-page-template.php:21
|
||||
msgid "Connect token"
|
||||
msgstr "Подключить токен"
|
||||
|
||||
#: admin/templates/short-page-template.php:59
|
||||
msgid "Shortcode List Page"
|
||||
msgstr "Страница со списком шорткодов"
|
||||
|
||||
#: admin/templates/short-page-template.php:66
|
||||
msgid "Add a form in your account"
|
||||
msgstr "Добавьте форму в свой аккаунт"
|
||||
|
||||
#: admin/templates/short-page-template.php:112
|
||||
msgid "Create shortcode"
|
||||
msgstr "Создать шорткод"
|
||||
|
||||
#: admin/templates/short-page-template.php:141
|
||||
#: admin/templates/short-page-template.php:167
|
||||
msgid "Actions"
|
||||
msgstr "Действия"
|
||||
|
||||
#: admin/templates/short-page-template.php:160
|
||||
msgid "Show more details"
|
||||
msgstr "Показать"
|
||||
|
||||
#: admin/templates/short-page-template.php:214
|
||||
msgid "No entries found"
|
||||
msgstr "Записи не найдены"
|
||||
|
||||
#: public/class-qform-public.php:28
|
||||
msgid "Shortcode not found!"
|
||||
msgstr "Шорткод не найден!"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<p>To evaluate app capability and activation,<br/> discover the token of "
|
||||
#~ "the site to which it is linked.<a href=\"https://app.qform.io/\"> Where "
|
||||
#~ "to get a token?</a></p>"
|
||||
#~ msgstr ""
|
||||
#~ "<p>Чтобы завершить процедуру настройки и активации плагина,<br/> укажите "
|
||||
#~ "токен сайта, к которому он привязан.<a href=\"https://app.qform.io/\"> "
|
||||
#~ "Где взять токен?</a></p>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<p>Add a form in your account <a href=\"https://app.qform.io/\">https://"
|
||||
#~ "app.qform.io</a></p>"
|
||||
#~ msgstr ""
|
||||
#~ "<p>Добавьте форму в личном кабинете <a href=\"https://app.qform.io/"
|
||||
#~ "\">https://app.qform.io</a></p>"
|
||||
|
||||
#~ msgid "Creating forms and quizzes"
|
||||
#~ msgstr "Создание форм и квизов"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Actions"
|
||||
#~ msgid "Options:"
|
||||
#~ msgstr "Действия"
|
||||
|
||||
#~ msgid "Token"
|
||||
#~ msgstr "Токен"
|
||||
129
spec/fixtures/dynamic_finders/plugin_version/qomon/translation_file/languages/qomon.pot
vendored
Normal file
129
spec/fixtures/dynamic_finders/plugin_version/qomon/translation_file/languages/qomon.pot
vendored
Normal file
@@ -0,0 +1,129 @@
|
||||
# Copyright (C) 2023 Qomon
|
||||
# This file is distributed under the GPL-2.0-or-later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Qomon 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/qomon\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-05-15T12:17:05+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: qomon\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "Qomon"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://qomon.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Easily insert your Qomon form in your site. By adding a shortcode [qomon-form] or even by adding a custom block created by Qomon."
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:47
|
||||
msgid "Welcome to Qomon for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:49
|
||||
#: qomon.php:52
|
||||
msgid "https://www.qomon.com"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:49
|
||||
msgid " is an organization that helps causes, NGOs, campaigns, elected officials, movements & businesses engage more citizens, take concrete action and amplify their impact."
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:50
|
||||
msgid "Qomon allows, among other things, to create forms, customize their colors and fields, to consult the opinion of your contacts or allow new contacts, for example, to subscribe to your newsletter."
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:51
|
||||
msgid "Integrate the form easily into your website with this plugin! "
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:52
|
||||
msgid "If you are not a Qomon customer yet, and would like to use this feature, you can get more information and request a demo"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:52
|
||||
msgid "here"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:54
|
||||
msgid "Using the WordPress plugin"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:55
|
||||
msgid "To add a Qomon form to your page you have 2 options: "
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:57
|
||||
msgid "I. Adding through the Qomon Form Block"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:58
|
||||
msgid "Once activated you will be able to add a form to your page using a Qomon Form Block: "
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:60
|
||||
msgid "The block will appear, allowing you to add the id of your form to it:"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:62
|
||||
#: qomon.php:70
|
||||
msgid "The published or previewed page will display the corresponding form:"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:65
|
||||
msgid "II. Adding through the shortcode [qomon-form]"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:66
|
||||
msgid "In the same way you can add a shortcode block:"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:68
|
||||
msgid "Once this block is on the page it will be necessary to write this code [qomon-form id=my-form-id] in the block, my-form-id will be to replace by the id of your form:"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:73
|
||||
msgid "Your form is now available, your signatories can fill out the form!"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:74
|
||||
msgid "To go further in the customization of this one, or for any help concerning the plugin, you can consult"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:74
|
||||
msgid "https://help.qomon.com/en/articles/7439238-how-can-i-integrate-a-qomon-form-on-my-website"
|
||||
msgstr ""
|
||||
|
||||
#: qomon.php:74
|
||||
msgid "this page"
|
||||
msgstr ""
|
||||
|
||||
#: build/qomon-form-block/index.js:47
|
||||
#: src/qomon-form-block/edit.js:25
|
||||
#: build/qomon-form-block/index.js:25
|
||||
msgid "Qomon form ID"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.json
|
||||
#: src/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Qomon Form"
|
||||
msgstr ""
|
||||
|
||||
#: build/block.json
|
||||
#: src/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Qomon form block scaffolded with Create Block tool."
|
||||
msgstr ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/query-loop-post-selector/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/query-loop-post-selector/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "query-loop-post-selector",
|
||||
"version": "1.0.0",
|
||||
"description": "A native query loop extension that adds a new option in the filter that allows user to specifically pick certain posts to display",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"plugin-zip": "wp-scripts plugin-zip",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/prettier-config": "^2.19.0",
|
||||
"@wordpress/scripts": "^26.6.0"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,8 @@
|
||||
= 1.0.1 =
|
||||
new: Add Direct Checkout Button
|
||||
|
||||
= 1.0.2 =
|
||||
new: Add Quick Purchase button, add to cart setting add, add checkout fields removed settings.
|
||||
|
||||
= 1.0.3 =
|
||||
new: Add new checkout remove setting
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,395 @@
|
||||
# Copyright (C) 2021-2023 Safelayout
|
||||
# This file is distributed under the same license as the Safelayout Elegant Icons plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Safelayout Elegant Icons 1.0.5\n"
|
||||
"POT-Creation-Date: 2023-11-29 19:59+0330\n"
|
||||
"PO-Revision-Date: 2023-11-29 19:59+0330\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en_US\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-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;esc_html__;esc_html_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: safelayout-elegant-icons.php:61
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:159
|
||||
msgid "Quick Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:162
|
||||
msgid "If you have a moment, please share why you are deactivating"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:167
|
||||
msgid "It's a temporary deactivation"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:171
|
||||
msgid "The plugin broke my site"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:172
|
||||
msgid "Please explain the problem."
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:176
|
||||
msgid "I found a better plugin"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:177
|
||||
msgid "What's the plugin name?"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:181
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:182
|
||||
msgid "Please share the reason."
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:185
|
||||
msgid ""
|
||||
"No email address, domain name or IP addresses are transmitted after you "
|
||||
"submit the survey."
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:186
|
||||
msgid "You can see the source code here: "
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:190
|
||||
msgid "Submit & Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:191
|
||||
msgid "Skip & Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:194
|
||||
msgid "Wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:195
|
||||
msgid "Redirecting ..."
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:239 safelayout-elegant-icons.php:253
|
||||
msgid "Safelayout Elegant Icons Options"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:240
|
||||
msgid "Safelayout Icons"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:261
|
||||
msgid "Safelayout Elegant Icons Installed Packs"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:264
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:265
|
||||
msgid "Pack Name"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:266
|
||||
msgid "Pack Status"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:277
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: safelayout-elegant-icons.php:284
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:59
|
||||
msgid "Icon position"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:68
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:72 src/icon/controls.js:525
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:76
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:83 src/icon-box/controls.js:91
|
||||
#: src/icon-box/controls.js:96 src/icon/controls.js:352
|
||||
#: src/icon/controls.js:365
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:90
|
||||
msgid "Add a background color to the icon box."
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:105 src/icon-box/controls.js:111
|
||||
#: src/icon/controls.js:463 src/icon/controls.js:469
|
||||
msgid "Background shadow"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:117 src/icon/controls.js:425
|
||||
#: src/icon/controls.js:476
|
||||
msgid "color"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:124 src/icon/controls.js:432
|
||||
#: src/icon/controls.js:483
|
||||
msgid "blur"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:133 src/icon/controls.js:442
|
||||
#: src/icon/controls.js:493
|
||||
msgid "X offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:142 src/icon/controls.js:451
|
||||
#: src/icon/controls.js:502
|
||||
msgid "Y offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:154 src/icon/controls.js:577
|
||||
msgid "Block spacing"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:159 src/icon/controls.js:582
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:164 src/icon/controls.js:587
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:172 src/icon-box/controls.js:177
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:185
|
||||
msgid "Reset border"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:188
|
||||
msgid "Border radius"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:196
|
||||
msgid "Tooltip and Label"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:201 src/icon/controls.js:601
|
||||
msgid "Tooltip"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:206 src/icon/controls.js:606
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:209 src/icon/controls.js:609
|
||||
msgid "It is for screen readers."
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:215 src/icon/controls.js:641
|
||||
msgid "https://safelayout.com"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:218 src/icon/controls.js:644
|
||||
msgid "Upgrade to pro version and get full features."
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/controls.js:220 src/icon/controls.js:646
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/edit.js:70
|
||||
msgid "Insert heading here..."
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/edit.js:71
|
||||
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/index.js:35
|
||||
msgid "Icon Box (Safelayout)"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/index.js:36
|
||||
msgid "Beautiful SVG icon box."
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/index.js:38 src/icon/controls.js:228 src/icon/index.js:15
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/index.js:39
|
||||
msgid "Icon box"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/index.js:40 src/icon/index.js:16
|
||||
msgid "Icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/index.js:41 src/icon/index.js:17
|
||||
msgid "Safelayout"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon-box/index.js:42 src/icon/index.js:18
|
||||
msgid "Elegant"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/color-picker.js:83
|
||||
msgid "Solid"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/color-picker.js:88
|
||||
msgid "Gradient"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:149
|
||||
msgid "one"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:150
|
||||
msgid "two"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:151
|
||||
msgid "three"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:152
|
||||
msgid "four"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:153
|
||||
msgid "five"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:197
|
||||
msgid "Rotate"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:203
|
||||
msgid "Flip horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:209
|
||||
msgid "Flip vertical"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:217
|
||||
msgid "Rotate background"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:254
|
||||
msgid "Icon effect"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:276 src/icon/controls.js:281
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:286
|
||||
msgid "background padding"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:295
|
||||
msgid "background radius"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:307
|
||||
msgid "Icon color"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:314
|
||||
msgid "Icon Fill Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:332
|
||||
msgid "Icon Stroke Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:359
|
||||
msgid "Add a background shape to the icon."
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:360
|
||||
msgid "Background shape"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:372
|
||||
msgid "Background Stroke Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:381
|
||||
msgid "Stroke width"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:386
|
||||
msgid "Icon Stroke Width"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:401
|
||||
msgid "background stroke width"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:413 src/icon/controls.js:419
|
||||
msgid "Icon shadow"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:514 src/icon/controls.js:520
|
||||
msgid "Base shadow"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:534
|
||||
msgid "width"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:543
|
||||
msgid "height"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:555
|
||||
msgid "Hover animation"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:595
|
||||
msgid "Link and Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:614
|
||||
msgid "Link url"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:633
|
||||
msgid "Link rel"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/controls.js:927
|
||||
msgid "Search icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/index.js:12
|
||||
msgid "Icon (Safelayout)"
|
||||
msgstr ""
|
||||
|
||||
#: src/icon/index.js:13
|
||||
msgid "Beautiful SVG icons."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
*** Sales Report By State , City and Country Change log ***
|
||||
|
||||
|
||||
2023-01-23 - version 1.0.0
|
||||
* Initial release of the plugin.
|
||||
118
spec/fixtures/dynamic_finders/plugin_version/scanfully/translation_file/languages/scanfully.pot
vendored
Normal file
118
spec/fixtures/dynamic_finders/plugin_version/scanfully/translation_file/languages/scanfully.pot
vendored
Normal file
@@ -0,0 +1,118 @@
|
||||
# Copyright (C) 2023 Scanfully
|
||||
# This file is distributed under the GPL v3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Scanfully 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/scanfully\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-08-10T15:41:27+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: scanfully\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
#: src/Options/Page.php:12
|
||||
#: src/Options/Page.php:13
|
||||
msgid "Scanfully"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.scanfully.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Scanfully is your favorite WordPress performance and health monitoring tool."
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Options.php:15
|
||||
msgid "Site ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Options.php:21
|
||||
msgid "Public Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Options.php:27
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Options.php:44
|
||||
msgid "API Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is a link to the dashboard where the API keys can be found
|
||||
#: src/Options/Options.php:48
|
||||
msgid "In order for your website to securely communicate with your Scanfully dashboard, we need your site's API keys. Your site API details can be found in your %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Options.php:50
|
||||
msgid "Scanfully Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:79
|
||||
msgid "Welcome to Scanfully, your dashboard for your WordPress sites’ Performance and Health."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is a link to the plugin website
|
||||
#: src/Options/Page.php:83
|
||||
msgid "Our WordPress plugin acts as the \"glue\" between your WordPress website and your Scanfully dashboard. More information about how our WordPress plugin works can be found %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:85
|
||||
msgid "here"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:94
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:100
|
||||
msgid "Plugin version"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:103
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s is a link to the help center, %2$s is a link to the contact us page
|
||||
#: src/Options/Page.php:106
|
||||
msgid "Check out our %1$s or %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:107
|
||||
msgid "help center"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:109
|
||||
msgid "contact us"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:114
|
||||
msgid "Want to learn more?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:115
|
||||
msgid "Check out our"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:116
|
||||
msgid "blog"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:120
|
||||
msgid "About Scanfully"
|
||||
msgstr ""
|
||||
|
||||
#: src/Options/Page.php:125
|
||||
msgid ""
|
||||
"One dashboard for your WordPress sites’ Performance and Health. Your ScanFully\n"
|
||||
" Dashboard\n"
|
||||
" consolidates all your WordPress sites, sending you timely alerts for required\n"
|
||||
" changes."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,75 @@
|
||||
# Copyright (C) 2023 HandyPlugins
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Security txt Manager 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/security-txt-manager\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-06-15T06:30:24+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: security-txt-manager\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Security txt Manager"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/HandyPlugins/security-txt-manager"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Security.txt Manager for WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "HandyPlugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://handyplugins.co/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:39
|
||||
#: includes/admin.php:40
|
||||
#: includes/admin.php:54
|
||||
#: includes/admin.php:55
|
||||
msgid "Security.txt"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:71
|
||||
msgid "Security.txt Manager"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %1$s Link to securitytxt.org website
|
||||
#: includes/admin.php:83
|
||||
msgid "You can generate security.txt content on %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:86
|
||||
msgid "Security.txt content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:91
|
||||
msgid "Credits"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:95
|
||||
msgid "Enable credits at the bottom of your security.txt file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:102
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:130
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/core.php:58
|
||||
msgid "# Generated by Security.txt Manager: https://wordpress.org/plugins/securitytxt-manager"
|
||||
msgstr ""
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/security-txt/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/security-txt/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "security-txt",
|
||||
"version": "1.0.6",
|
||||
"author": "Tyler Stokes <tyler@tswebservices.com>",
|
||||
"license": "GPLv3 or later",
|
||||
"main": "security-txt.php",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"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"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^25.3.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,675 @@
|
||||
# Copyright (C) 2023 Simple NFT Members
|
||||
# This file is distributed under the same license as the Simple NFT Members package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simple NFT Members 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-nft-"
|
||||
"members\n"
|
||||
"POT-Creation-Date: 2023-04-18 12:08+0900\n"
|
||||
"PO-Revision-Date: 2023-04-18 12:11+0900\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
|
||||
#: includes/admin.php:74 includes/admin.php:75 includes/views.php:86
|
||||
msgid "SNPM general setting"
|
||||
msgstr "SNPM一般設定"
|
||||
|
||||
#: includes/admin.php:83 includes/admin.php:84 includes/defaultValue.php:200
|
||||
#: includes/defaultValue.php:541 includes/views.php:139 includes/views.php:158
|
||||
msgid "Token new issue"
|
||||
msgstr "NFT新規発行"
|
||||
|
||||
#: includes/admin.php:92 includes/admin.php:93 includes/views.php:195
|
||||
msgid "Create token MetaData"
|
||||
msgstr "NFT Metadataの作成"
|
||||
|
||||
#: includes/admin.php:101 includes/admin.php:102 includes/admin.php:438
|
||||
#: includes/defaultValue.php:618
|
||||
msgid "Token list"
|
||||
msgstr "NFT一覧"
|
||||
|
||||
#: includes/admin.php:110 includes/admin.php:111 includes/defaultValue.php:673
|
||||
#: includes/views.php:282
|
||||
msgid "Sales list"
|
||||
msgstr "売上一覧"
|
||||
|
||||
#: includes/admin.php:119 includes/admin.php:120 includes/views.php:247
|
||||
msgid "Change token MetaData"
|
||||
msgstr "NFT Metadata変更"
|
||||
|
||||
#: includes/admin.php:226 includes/admin.php:371
|
||||
msgid "Update completed."
|
||||
msgstr "更新完了しました。"
|
||||
|
||||
#: includes/admin.php:273
|
||||
msgid "issued completed."
|
||||
msgstr "発行が完了しました。"
|
||||
|
||||
#: includes/admin.php:320
|
||||
msgid "Create Metadata completed."
|
||||
msgstr "作成が完了しました。"
|
||||
|
||||
#: includes/admin.php:413 includes/scripts.php:199 includes/views.php:487
|
||||
msgid "Indefinite period"
|
||||
msgstr "無期限"
|
||||
|
||||
#: includes/admin.php:416 includes/scripts.php:201
|
||||
msgid "Expired"
|
||||
msgstr "期限切れ"
|
||||
|
||||
#: includes/admin.php:598
|
||||
msgid "Simple Token Protection"
|
||||
msgstr "Simple NFT プロテクション"
|
||||
|
||||
#: includes/defaultValue.php:23
|
||||
msgid "Polygon Mainnet"
|
||||
msgstr "Polygon メインネット"
|
||||
|
||||
#: includes/defaultValue.php:24
|
||||
msgid "Polygon Testnet(Mumbai)"
|
||||
msgstr "Polygon テストネット(Mumbai)"
|
||||
|
||||
#: includes/defaultValue.php:44
|
||||
msgid "This plugin creates metadata in the \"DIR\""
|
||||
msgstr "このプラグインは、「DIR」にメタデータを作成します"
|
||||
|
||||
#: includes/defaultValue.php:51
|
||||
msgid "SNM general setting"
|
||||
msgstr "SNM一般設定"
|
||||
|
||||
#: includes/defaultValue.php:60
|
||||
msgid "Terms of service"
|
||||
msgstr "利用規約"
|
||||
|
||||
#: includes/defaultValue.php:63
|
||||
msgid ""
|
||||
"I agree to the <a href=\"https://webloco.webolha.com/snpm-terms-of-service-"
|
||||
"en\" target=\"_blank\">terms of use.</a>"
|
||||
msgstr ""
|
||||
"<a href=\"https://webloco.webolha.com/snpm-terms-of-service-ja\" "
|
||||
"target=\"_blank\">利用規約</a>に同意する"
|
||||
|
||||
#: includes/defaultValue.php:76
|
||||
msgid "Block Chain network"
|
||||
msgstr "ブロックチェーンネットワーク"
|
||||
|
||||
#: includes/defaultValue.php:85
|
||||
msgid "The network of the blockchain to connect to."
|
||||
msgstr "接続するブロックチェーンのネットワーク。"
|
||||
|
||||
#: includes/defaultValue.php:93 includes/defaultValue.php:231
|
||||
#: includes/defaultValue.php:699
|
||||
msgid "creator address"
|
||||
msgstr "クリエイターアドレス"
|
||||
|
||||
#: includes/defaultValue.php:101
|
||||
msgid ""
|
||||
"Address to issue Token. And the token creator address displayed on this site."
|
||||
msgstr ""
|
||||
"NFTを発行するアドレス。且つ、このサイトで表示するNFTのクリエイターアドレス。"
|
||||
|
||||
#: includes/defaultValue.php:110
|
||||
msgid "To get your address from MetaMask"
|
||||
msgstr "MetaMaskからアドレスを取得"
|
||||
|
||||
#: includes/defaultValue.php:119
|
||||
msgid "Current base metadata URI"
|
||||
msgstr "現在のメタデータのベースURI"
|
||||
|
||||
#: includes/defaultValue.php:122
|
||||
msgid ""
|
||||
"This is the location where the metadata (the file containing information "
|
||||
"such as NFT image, name, and attributes) is stored.<br>When reflecting "
|
||||
"information such as NFT images and names on marketplaces such as OpenSea, it "
|
||||
"is necessary to register the location where the metadata is stored on the "
|
||||
"blockchain."
|
||||
msgstr ""
|
||||
"メタデータ(NFTの画像や名前、属性などの情報が格納されているファイル)が保管さ"
|
||||
"れている場所です。<br>Open Seaなどのマーケットプレイスに、NFTの画像や名前など"
|
||||
"の情報を反映させた場合、ブロックチェーン上に、メタデータが保管されている場所"
|
||||
"を登録する必要があります。"
|
||||
|
||||
#: includes/defaultValue.php:130
|
||||
msgid "Base URI for the metadata to set"
|
||||
msgstr "設定するメタデータのベース URI"
|
||||
|
||||
#: includes/defaultValue.php:146
|
||||
msgid "Set the base URI"
|
||||
msgstr "ベースURIを設定"
|
||||
|
||||
#: includes/defaultValue.php:148
|
||||
msgid ""
|
||||
"If you want to set the base URI of metadata on the blockchain, please click "
|
||||
"the \"Set URI\" button."
|
||||
msgstr ""
|
||||
"ブロックチェーン上に、メタデータのベースURIを設定する場合、「ベースURIの設"
|
||||
"定」ボタンをクリックしてください。"
|
||||
|
||||
#: includes/defaultValue.php:156
|
||||
msgid "Token sales balance"
|
||||
msgstr "NFT売上残高"
|
||||
|
||||
#: includes/defaultValue.php:157
|
||||
msgid "Update the sales balance of the token."
|
||||
msgstr "NFT売上残高を更新。"
|
||||
|
||||
#: includes/defaultValue.php:168
|
||||
msgid ""
|
||||
"The amount obtained by subtracting a 3% royalty fee from the token sales "
|
||||
"will be added to this balance."
|
||||
msgstr "NFTの売上から3%のロイヤリティを引いた金額が、この残高に加算されます。"
|
||||
|
||||
#: includes/defaultValue.php:219 includes/defaultValue.php:691
|
||||
#: includes/nftListTable.php:97 includes/salesListTable.php:81
|
||||
msgid "Blockchain network"
|
||||
msgstr "ブロックチェーンネットワーク"
|
||||
|
||||
#: includes/defaultValue.php:223
|
||||
msgid "The blockchain network that issued this token."
|
||||
msgstr "このNFTを発行したブロックチェーンネットワーク。"
|
||||
|
||||
#: includes/defaultValue.php:238
|
||||
msgid "The address that issued (did) this token."
|
||||
msgstr "このNFTを発行する(した)アドレス。"
|
||||
|
||||
#: includes/defaultValue.php:246 includes/nftListTable.php:104
|
||||
msgid "Display flg"
|
||||
msgstr "表示フラグ"
|
||||
|
||||
#: includes/defaultValue.php:251
|
||||
msgid "Display"
|
||||
msgstr "表示する"
|
||||
|
||||
#: includes/defaultValue.php:252
|
||||
msgid "Do not display"
|
||||
msgstr "表示しない"
|
||||
|
||||
#: includes/defaultValue.php:259
|
||||
msgid ""
|
||||
"This is the setting to display or not display to the users of this site."
|
||||
msgstr "このサイトのユーザーに表示する、しないの設定です。"
|
||||
|
||||
#: includes/defaultValue.php:263 includes/nftListTable.php:105
|
||||
msgid "Display order"
|
||||
msgstr "表示順"
|
||||
|
||||
#: includes/defaultValue.php:270
|
||||
msgid "The smaller the number, the earlier it will be displayed/shown first."
|
||||
msgstr "数字が小さいほど、最初に表示されます。"
|
||||
|
||||
#: includes/defaultValue.php:278 includes/defaultValue.php:706
|
||||
#: includes/nftListTable.php:98 includes/salesListTable.php:80
|
||||
msgid "Token name"
|
||||
msgstr "NFTの名前"
|
||||
|
||||
#: includes/defaultValue.php:289
|
||||
msgid "description"
|
||||
msgstr "説明"
|
||||
|
||||
#: includes/defaultValue.php:303 includes/nftListTable.php:100
|
||||
#: includes/views.php:475
|
||||
msgid "Selling price"
|
||||
msgstr "販売価格"
|
||||
|
||||
#: includes/defaultValue.php:312
|
||||
msgid "Unit: matic"
|
||||
msgstr "単位:matic"
|
||||
|
||||
#: includes/defaultValue.php:316 includes/nftListTable.php:101
|
||||
#: includes/views.php:473
|
||||
msgid "Issued"
|
||||
msgstr "発行数"
|
||||
|
||||
#: includes/defaultValue.php:325
|
||||
msgid "The total issuance of this token."
|
||||
msgstr "このNFTの総発行数。"
|
||||
|
||||
#: includes/defaultValue.php:329 includes/nftListTable.php:103
|
||||
#: includes/scripts.php:198 includes/views.php:476 includes/views.php:543
|
||||
msgid "Expiration date"
|
||||
msgstr "有効期限"
|
||||
|
||||
#: includes/defaultValue.php:336
|
||||
msgid ""
|
||||
"You can set the expiration date for this token. The unit is \"days.\" If you "
|
||||
"set it to \"0\", it will be valid indefinitely."
|
||||
msgstr ""
|
||||
"このNFTの有効期限を設定できます。単位は「日」です。「0」を設定した場合は、無"
|
||||
"期限となります。"
|
||||
|
||||
#: includes/defaultValue.php:344 includes/nftListTable.php:102
|
||||
#: includes/views.php:474
|
||||
msgid "Number of tokens in stock"
|
||||
msgstr "在庫数"
|
||||
|
||||
#: includes/defaultValue.php:345
|
||||
msgid ""
|
||||
"It is the number of tokens in stock and also the number owned by the creator."
|
||||
msgstr "NFTの在庫数であり、クリエイターが所有している数。"
|
||||
|
||||
#: includes/defaultValue.php:351 includes/defaultValue.php:492
|
||||
msgid "Update stock"
|
||||
msgstr "更新"
|
||||
|
||||
#: includes/defaultValue.php:352
|
||||
msgid ""
|
||||
"If tokens are moved outside of this site, you need to click on \"Update "
|
||||
"inventory count\" to adjust the inventory to the correct number."
|
||||
msgstr ""
|
||||
"このサイト以外で、トークンの移動をした場合、「在庫数を更新」をクリックして、"
|
||||
"正しい在庫数に修正する必要があります。"
|
||||
|
||||
#: includes/defaultValue.php:356
|
||||
msgid "Incinerate token"
|
||||
msgstr "NFTを焼却する"
|
||||
|
||||
#: includes/defaultValue.php:364
|
||||
msgid "Transfer the token"
|
||||
msgstr "このNFTを転送"
|
||||
|
||||
#: includes/defaultValue.php:365
|
||||
msgid ""
|
||||
"A token with an expiration date will be limited to one per address. "
|
||||
"Therefore, even if multiple tokens are transferred to the same address, only "
|
||||
"one will be transferred. Additionally, if the recipient already owns the "
|
||||
"token, the transfer will not be executed. Instead, the expiration date of "
|
||||
"the token will be extended by the number of tokens transferred."
|
||||
msgstr ""
|
||||
"有効期限のあるNFTは、同一アドレスにつき1つとなります。その為、同一アドレスに"
|
||||
"複数個転送した場合でも、1つしか転送されません。また、既に所有している場合は、"
|
||||
"NFTの転送は行われません。その代わり、転送個数分の有効期限がNFTに加算されま"
|
||||
"す。"
|
||||
|
||||
#: includes/defaultValue.php:373 includes/nftListTable.php:95
|
||||
msgid "Token image"
|
||||
msgstr "NFT画像"
|
||||
|
||||
#: includes/defaultValue.php:388
|
||||
msgid "Note"
|
||||
msgstr "備考欄"
|
||||
|
||||
#: includes/defaultValue.php:492
|
||||
msgid "Are you sure you want to update stock?"
|
||||
msgstr "本当に更新しますか?"
|
||||
|
||||
#: includes/defaultValue.php:496 includes/defaultValue.php:500
|
||||
#: includes/defaultValue.php:720 includes/salesListTable.php:84
|
||||
#: includes/scripts.php:210
|
||||
msgid "Quantity"
|
||||
msgstr "数量"
|
||||
|
||||
#: includes/defaultValue.php:497
|
||||
msgid "Are you sure you want to incinerate?"
|
||||
msgstr "本当に焼却しますか?"
|
||||
|
||||
#: includes/defaultValue.php:497
|
||||
msgid "Incinerate"
|
||||
msgstr "焼却する"
|
||||
|
||||
#: includes/defaultValue.php:501
|
||||
msgid "To address"
|
||||
msgstr "転送先アドレス"
|
||||
|
||||
#: includes/defaultValue.php:502
|
||||
msgid "Are you sure you want to transfer?"
|
||||
msgstr "本当に転送しますか?"
|
||||
|
||||
#: includes/defaultValue.php:502
|
||||
msgid "Transfer token"
|
||||
msgstr "NFTを転送する"
|
||||
|
||||
#: includes/defaultValue.php:574
|
||||
msgid "Limited published this content?"
|
||||
msgstr "このコンテンツを限定公開しますか?"
|
||||
|
||||
#: includes/defaultValue.php:578
|
||||
msgid "No, Do not protect this content."
|
||||
msgstr "いいえ。このコンテンツを保護しません。"
|
||||
|
||||
#: includes/defaultValue.php:579
|
||||
msgid "Yes, Protect this content."
|
||||
msgstr "はい。このコンテンツを保護します。"
|
||||
|
||||
#: includes/defaultValue.php:594
|
||||
msgid "Please select an token that can view this content."
|
||||
msgstr "このコンテンツを閲覧出来るNFTを選択してください。"
|
||||
|
||||
#: includes/defaultValue.php:599
|
||||
msgid "Token scope"
|
||||
msgstr "NFTの対象範囲"
|
||||
|
||||
#: includes/defaultValue.php:603
|
||||
msgid "All Token"
|
||||
msgstr "全てのNFT"
|
||||
|
||||
#: includes/defaultValue.php:604
|
||||
msgid "Select Token"
|
||||
msgstr "選択したNFT"
|
||||
|
||||
#: includes/defaultValue.php:713 includes/salesListTable.php:83
|
||||
msgid "Sales"
|
||||
msgstr "売上"
|
||||
|
||||
#: includes/defaultValue.php:727 includes/salesListTable.php:85
|
||||
msgid "Customer address"
|
||||
msgstr "購入者アドレス"
|
||||
|
||||
#: includes/nftListTable.php:32
|
||||
msgid "edit"
|
||||
msgstr "編集"
|
||||
|
||||
#: includes/nftListTable.php:96
|
||||
msgid "Token ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/nftListTable.php:99
|
||||
msgid "Token description"
|
||||
msgstr "NFTの説明"
|
||||
|
||||
#: includes/nftListTable.php:106
|
||||
msgid "date of issue"
|
||||
msgstr "発行日"
|
||||
|
||||
#: includes/salesListTable.php:79
|
||||
msgid "date of sales"
|
||||
msgstr "売上日"
|
||||
|
||||
#: includes/scripts.php:174
|
||||
msgid "Switch blockchain network?"
|
||||
msgstr "ブロックチェーンネットワークを変更しますか?"
|
||||
|
||||
#: includes/scripts.php:175
|
||||
msgid "User denied transaction signature."
|
||||
msgstr "ユーザーがトランザクションのリクエストを拒否しました。"
|
||||
|
||||
#: includes/scripts.php:176
|
||||
msgid ""
|
||||
"Transaction was not mined within 50 blocks, please make sure your "
|
||||
"transaction was properly sent. Be aware that it might still be mined!"
|
||||
msgstr ""
|
||||
"処理が保留中になっています。MetaMaskからガス代を追加してスピードアップする"
|
||||
"か、処理をキャンセルした後、再度(ガス代を積極的にして)購入処理をしてくださ"
|
||||
"い!"
|
||||
|
||||
#: includes/scripts.php:177
|
||||
msgid "The base URI for metadata is not registered on the blockchain."
|
||||
msgstr "ブロックチェーン上に、メタデータのベースURIが登録されていません。"
|
||||
|
||||
#: includes/scripts.php:178
|
||||
msgid ""
|
||||
"This site is currently network enabled for [chainid]. Your MetaMask network "
|
||||
"is not [chainid]. Please switch to [chainid]."
|
||||
msgstr ""
|
||||
"現在、このサイトは、[chainid]のネットワークが有効になっています。あなたの"
|
||||
"MetaMaskのネットワークが[chainid]ではありません。[chainid]に切り替えてくださ"
|
||||
"い。"
|
||||
|
||||
#: includes/scripts.php:179
|
||||
msgid "A token with the specified token ID does not exist on the blockchain."
|
||||
msgstr "指定のトークンIDのトークンがブロックチェーン上に存在しません。"
|
||||
|
||||
#: includes/scripts.php:180
|
||||
msgid "The blockchain network has not been configured/set up."
|
||||
msgstr "ブロックチェーンネットワークが設定されていません。"
|
||||
|
||||
#: includes/scripts.php:181 includes/views.php:544
|
||||
msgid "Number of possessions"
|
||||
msgstr "所持数"
|
||||
|
||||
#: includes/scripts.php:182
|
||||
msgid "Connected to MetaMask"
|
||||
msgstr "MetaMaskに接続中"
|
||||
|
||||
#: includes/scripts.php:183
|
||||
msgid "The registered creator address is different from the connected address."
|
||||
msgstr "登録されているクリエイターアドレスと接続したアドレスが違います。"
|
||||
|
||||
#: includes/scripts.php:184
|
||||
msgid "Please change your MetaMask address."
|
||||
msgstr "MetaMaskのアドレスを変更してください。"
|
||||
|
||||
#: includes/scripts.php:185
|
||||
msgid "Please connect to MetaMask."
|
||||
msgstr "MetaMaskに接続してください。"
|
||||
|
||||
#: includes/scripts.php:186
|
||||
msgid "Could not connect."
|
||||
msgstr "接続できませんでした。"
|
||||
|
||||
#: includes/scripts.php:187
|
||||
msgid ""
|
||||
"MetaMask is not installed. Please install the MetaMask app and open it from "
|
||||
"the browser of that app."
|
||||
msgstr ""
|
||||
"MetaMaskがインストールされていません。MetaMaskのアプリをインストールして、そ"
|
||||
"のアプリのブラウザから開いてください。"
|
||||
|
||||
#: includes/scripts.php:188
|
||||
msgid "MetaMask is not installed."
|
||||
msgstr "MetaMaskがインストールされていません。"
|
||||
|
||||
#: includes/scripts.php:189
|
||||
msgid "Connected address"
|
||||
msgstr "接続アドレス"
|
||||
|
||||
#: includes/scripts.php:190
|
||||
msgid "NFT sales balance"
|
||||
msgstr "NFT売上残高"
|
||||
|
||||
#: includes/scripts.php:191
|
||||
msgid "There is no withdrawable balance."
|
||||
msgstr "引き出せる残高がありません。"
|
||||
|
||||
#: includes/scripts.php:192
|
||||
msgid "The withdrawal has been completed."
|
||||
msgstr "引き出しが完了しました。"
|
||||
|
||||
#: includes/scripts.php:193
|
||||
msgid "The quantity exceeds the owned stock."
|
||||
msgstr "数量が所有数を上回っています。"
|
||||
|
||||
#: includes/scripts.php:194
|
||||
msgid "The quantity has not been entered."
|
||||
msgstr "数量が未入力です。"
|
||||
|
||||
#: includes/scripts.php:195
|
||||
msgid "The quantity is incorrect."
|
||||
msgstr "数量が不正です。"
|
||||
|
||||
#: includes/scripts.php:196
|
||||
msgid "The to address has not been entered."
|
||||
msgstr "宛先アドレスが未入力です。"
|
||||
|
||||
#: includes/scripts.php:197
|
||||
msgid "Inventory update has been completed."
|
||||
msgstr "在庫の更新が完了しました。"
|
||||
|
||||
#: includes/scripts.php:200
|
||||
msgid "Please enter the base URI of the metadata."
|
||||
msgstr "メタデータのベース URI を入力してください。"
|
||||
|
||||
#: includes/scripts.php:202
|
||||
msgid ""
|
||||
"Token with expiration dates cannot be listed or sold on marketplaces such as "
|
||||
"\"Open Sea.\" Additionally, if you already own the same NFT, the quantity "
|
||||
"will not increase, but the expiration date will be extended."
|
||||
msgstr ""
|
||||
"有効期限のあるNFTは、「Open Sea」など、マーケットプレイスで出品、販売は出来ま"
|
||||
"せん。また、既に同じNFTを所持している場合は、個数は増えず、有効期限が加算され"
|
||||
"ます。"
|
||||
|
||||
#: includes/scripts.php:203
|
||||
msgid ""
|
||||
"If you change the blockchain network, please do not forget to also change "
|
||||
"MetaMasks network to the corresponding network."
|
||||
msgstr ""
|
||||
"ブロックチェーンネットワークを変更した場合、MetaMaskのネットワークも忘れず"
|
||||
"に、該当のネットワークに変更してください。"
|
||||
|
||||
#: includes/scripts.php:204
|
||||
msgid ""
|
||||
"The creator address is not registered. Please register the creator address "
|
||||
"on the SNM setting screen."
|
||||
msgstr ""
|
||||
"クリエイターアドレスが登録されていません。SNM設定画面でクリエイターアドレスを"
|
||||
"登録してください。"
|
||||
|
||||
#: includes/scripts.php:205
|
||||
msgid ""
|
||||
"Token issuance process request is in progress! Please wait until it is "
|
||||
"completed."
|
||||
msgstr "トークン発行処理リクエスト中!完了するまでこのままお待ちください。"
|
||||
|
||||
#: includes/scripts.php:206
|
||||
msgid ""
|
||||
"Token issuance process is in progress! Please wait until it is completed."
|
||||
msgstr "トークン発行処理実行中!完了するまでこのままお待ちください。"
|
||||
|
||||
#: includes/scripts.php:207
|
||||
msgid "In process"
|
||||
msgstr "処理中"
|
||||
|
||||
#: includes/scripts.php:208
|
||||
msgid "Purchase successful!"
|
||||
msgstr "購入完了!"
|
||||
|
||||
#: includes/scripts.php:209
|
||||
msgid "Price"
|
||||
msgstr "価格"
|
||||
|
||||
#: includes/shortcode.php:84
|
||||
msgid "There are no tokens to display."
|
||||
msgstr "表示するNFTはありません。"
|
||||
|
||||
#: includes/shortcode.php:87 includes/views.php:470
|
||||
msgid "Purchase this token"
|
||||
msgstr "このトークンを購入"
|
||||
|
||||
#: includes/views.php:46
|
||||
msgid ""
|
||||
"The creator address is not registered. Please register the creator address "
|
||||
"on the SNPM setting screen."
|
||||
msgstr ""
|
||||
"クリエイターアドレスが登録されていません。SNPM一般設定でクリエイターアドレス"
|
||||
"を登録してください。"
|
||||
|
||||
#: includes/views.php:62
|
||||
msgid ""
|
||||
"You are not connected to MetaMask. Please connect with MetaMask on the SNPM "
|
||||
"setting screen."
|
||||
msgstr ""
|
||||
"MetaMaskに接続されていません。SNPM一般設定でMetaMaskと接続してください。"
|
||||
|
||||
#: includes/views.php:94 includes/views.php:450
|
||||
msgid "Connect to MetaMask."
|
||||
msgstr "MetaMaskに接続。"
|
||||
|
||||
#: includes/views.php:105 includes/views.php:261
|
||||
msgid "Do you really want to update?"
|
||||
msgstr "本当に変更しますか?"
|
||||
|
||||
#: includes/views.php:105 includes/views.php:261
|
||||
msgid "Update"
|
||||
msgstr "更新"
|
||||
|
||||
#: includes/views.php:158
|
||||
msgid "Do you really want to issue a new one?"
|
||||
msgstr "本当に発行しますか?"
|
||||
|
||||
#: includes/views.php:214
|
||||
msgid "Do you really want to create a token MetaData?"
|
||||
msgstr "本当にMetadataを作成しますか?"
|
||||
|
||||
#: includes/views.php:214
|
||||
msgid "Create Token MetaData"
|
||||
msgstr "NFT Metadata作成"
|
||||
|
||||
#: includes/views.php:446
|
||||
msgid "This content is protected."
|
||||
msgstr "このコンテンツは保護されています。"
|
||||
|
||||
#: includes/views.php:448
|
||||
msgid ""
|
||||
"If you possess an token with viewing permission, please connect to MetaMask "
|
||||
"from the following button."
|
||||
msgstr ""
|
||||
"閲覧権限のあるNFTを所持している場合は、以下のボタンより「MetaMask」に接続して"
|
||||
"ください。"
|
||||
|
||||
#: includes/views.php:453
|
||||
msgid "List of tokens that can access/view this content"
|
||||
msgstr "このコンテンツを閲覧できるNFT一覧"
|
||||
|
||||
#: includes/views.php:454
|
||||
msgid ""
|
||||
"If you do not possess an token with viewing permission, you can purchase it "
|
||||
"from the following after connecting to MetaMask."
|
||||
msgstr ""
|
||||
"閲覧権限のあるNFTを所持していない場合は、「MetaMask」に接続後、以下よりご購入"
|
||||
"いただけます。"
|
||||
|
||||
#: includes/views.php:489
|
||||
msgid "days"
|
||||
msgstr "日"
|
||||
|
||||
#: includes/views.php:494
|
||||
msgid "Out of stock"
|
||||
msgstr "在庫切れ"
|
||||
|
||||
#: includes/views.php:540
|
||||
msgid "You do not have a token issued by the creator of this site."
|
||||
msgstr "このサイトのクリエイターが発行したトークンを所持していません。"
|
||||
|
||||
#~ msgid "number to incinerate"
|
||||
#~ msgstr "焼却数"
|
||||
|
||||
#~ msgid "Incinerate number"
|
||||
#~ msgstr "焼却数"
|
||||
|
||||
#~ msgid "Token list."
|
||||
#~ msgstr "NFT一覧"
|
||||
|
||||
#~ msgid "Withdraw from token sales balance"
|
||||
#~ msgstr "NFT売上残高から引き出し"
|
||||
|
||||
#~ msgid "Number of tokens in stock."
|
||||
#~ msgstr "NFTの在庫数。"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "NFT image"
|
||||
#~ msgid "token image"
|
||||
#~ msgstr "NFT画像"
|
||||
|
||||
#~ msgid "Owned by creator"
|
||||
#~ msgstr "クリエイターの所有数"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Of the total number of issues, the number owned by the creator. It is "
|
||||
#~ "also the number of NFTs in stock."
|
||||
#~ msgstr "総発行数の内、クリエイターが所有している数。NFTの在庫数でもある。"
|
||||
|
||||
#~ msgid "NFT cost"
|
||||
#~ msgstr "販売価格"
|
||||
|
||||
#~ msgid "NFT issued"
|
||||
#~ msgstr "発行数"
|
||||
|
||||
#~ msgid "To view this content, you must own one of the following NFTs."
|
||||
#~ msgstr ""
|
||||
#~ "このコンテンツを閲覧する場合、以下のいずれかのNFTを所持している必要があり"
|
||||
#~ "ます。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you want to view this content, you need an NFT with viewing permission."
|
||||
#~ msgstr "このコンテンツを閲覧する場合、閲覧権限のあるNFTが必要となります。"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Incinerated number"
|
||||
#~ msgid "Incinerated number?"
|
||||
#~ msgstr "焼却数"
|
||||
18
spec/fixtures/dynamic_finders/plugin_version/site-mode/composer_file/package.json
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/site-mode/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "sass-compile",
|
||||
"version": "1.0.7",
|
||||
"description": "A simple sass compile config.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"wizard": "node-sass admin/assets/scss/wizard.scss admin/assets/css/wizard.css --watch --update --output-style=expanded --indent-type=tab --indent-width=1 --source-map=true --source-map-contents",
|
||||
"admin": "node-sass admin/assets/scss/admin.scss admin/assets/css/site-mode-admin.css --watch --update --output-style=expanded --indent-type=tab --indent-width=1 --source-map=true --source-map-contents",
|
||||
"public": "node-sass public/scss/site-mode-public.scss public/css/site-mode-public.css --watch --update --output-style=expanded --indent-type=tab --indent-width=1 --source-map=true --source-map-contents",
|
||||
"sm-dashboard": "node-sass admin/assets/scss/site-mode-dashboard.scss admin/assets/css/site-mode-dashboard.css --watch --update --output-style=expanded --indent-type=tab --indent-width=1 --source-map=true --source-map-contents"
|
||||
},
|
||||
"author": "Adam",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"node-sass": "^9.0.0"
|
||||
}
|
||||
}
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/sites-monitor/change_log/CHANGELOG.md
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/sites-monitor/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
# CHANGELOG
|
||||
|
||||
## 0.0.5: 2023-06-29
|
||||
|
||||
- Change: the Sites Monitor List block is now a (responsive) table taking up less space
|
||||
- Change: CSS styles are totally independent from the theme
|
||||
- Change: the borders on the detail view were changed to shadows for consistency
|
||||
|
||||
## 0.0.4: 2023-06-26
|
||||
|
||||
- Fix: set interval to empty field by default
|
||||
|
||||
## 0.0.3: 2023-06-25
|
||||
|
||||
- Add: monitor block to site on site creation at the monitor site
|
||||
|
||||
## 0.0.2: 2023-06-25
|
||||
|
||||
- Fix: include JS assets in the plugin
|
||||
|
||||
## 0.0.1: 2023-06-25
|
||||
|
||||
- Init: first release of the plugin
|
||||
39
spec/fixtures/dynamic_finders/plugin_version/sky-login-redirect/composer_file/composer.json
vendored
Normal file
39
spec/fixtures/dynamic_finders/plugin_version/sky-login-redirect/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "skyminds/sky-login-redirect",
|
||||
"type": "wordpress-plugin",
|
||||
"description": "WordPress and Woocommerce Login Redirects made easy",
|
||||
"version": "3.7.4",
|
||||
"license": "SaaS",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Utopique Plugins",
|
||||
"email": "support@utopique.net"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"composer/installers": "^1.0",
|
||||
"skyminds/zen-settings": "dev-master",
|
||||
"freemius/wordpress-sdk": "dev-master",
|
||||
"wp-cli/wp-config-transformer": "^1.3",
|
||||
"collizo4sky/persist-admin-notices-dismissal": "^1.4",
|
||||
"htmlburger/carbon-fields": "^3.1.7"
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "vcs",
|
||||
"url": "https://github.com/skyminds/zen-settings"
|
||||
}
|
||||
],
|
||||
"extra": {
|
||||
"installer-paths": {
|
||||
"vendor/{$name}/": [
|
||||
"type:wordpress-plugin"
|
||||
]
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"composer/installers": true
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
*** WooCommerce Extension Template Changelog ***
|
||||
|
||||
2023-03-05 - version 1.0
|
||||
* Initial release
|
||||
@@ -0,0 +1,155 @@
|
||||
# Copyright (C) 2023 Sajid Javed
|
||||
# This file is distributed under the same license as the SonaWP plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SonaWP 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-payment-"
|
||||
"block\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French (France)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-01-23T14:33:00+00:00\n"
|
||||
"PO-Revision-Date: 2023-01-30 09:37+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/\n"
|
||||
"X-Domain: sonawp\n"
|
||||
"Language: fr_FR\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Loco-Version: 2.6.3; wp-6.1.1"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:383
|
||||
msgid "*Email Required!"
|
||||
msgstr "*Email (requis!"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:355
|
||||
msgid "*Name Required!"
|
||||
msgstr "*Nom (obligatoire!"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:374
|
||||
msgid "*Price must be greater than 0!"
|
||||
msgstr "*Le prix doit être supérieur à 0 !"
|
||||
|
||||
#: includes/block/build/block.json includes/block/src/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Simply pay your product with block."
|
||||
msgstr "Payez simplement votre produit avec block"
|
||||
|
||||
#: includes/block/build/block.json includes/block/src/block.json
|
||||
msgctxt "block title"
|
||||
msgid "SonaWP"
|
||||
msgstr "SonaWP"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:256
|
||||
#: includes/block/src/edit.js:386
|
||||
msgid "Create one on Paypal"
|
||||
msgstr "Créez-en un sur Paypal"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:230
|
||||
#: includes/block/src/edit.js:359
|
||||
msgid "Enter Product Description"
|
||||
msgstr "Entrez la description du produit"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:221
|
||||
#: includes/block/src/edit.js:350
|
||||
msgid "Enter Product Name"
|
||||
msgstr "Entrez le nom du produit"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:255
|
||||
#: includes/block/src/edit.js:385
|
||||
msgid ""
|
||||
"Enter the email address associated with your PayPal account. Don't have an "
|
||||
"account?"
|
||||
msgstr ""
|
||||
"Saisissez l'adresse e-mail associée à votre compte PayPal. Vous n'avez pas "
|
||||
"de compte ?"
|
||||
|
||||
#: includes/classes/class-sonawp.php:102
|
||||
msgid "Error encountered! Try again later!"
|
||||
msgstr "Erreur rencontrée ! Réessayez plus tard!"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:173
|
||||
msgid "Error Message"
|
||||
msgstr "Message d'erreur"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://sajidjaved.me/"
|
||||
msgstr "https://sajidjaved.me/"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/sonawp"
|
||||
msgstr "https://wordpress.org/plugins/sonawp"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:200
|
||||
#: includes/block/src/edit.js:329
|
||||
msgid "Image"
|
||||
msgstr "Image"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:187
|
||||
#: includes/block/src/edit.js:316
|
||||
msgid "Item Image"
|
||||
msgstr "Image de l'article"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:249
|
||||
#: includes/block/src/edit.js:378
|
||||
msgid "PayPal Email"
|
||||
msgstr "PayPal Email"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:239
|
||||
#: includes/block/src/edit.js:368
|
||||
msgid "Price"
|
||||
msgstr "Prix"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:154
|
||||
msgid "Rendered Card Button on FrontEnd!"
|
||||
msgstr "Bouton Rendu Card sur le FrontEnd !"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:147
|
||||
msgid "Rendered PayLater Button on FrontEnd!"
|
||||
msgstr "Rendu du bouton PayLater sur le frontend !"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:140
|
||||
msgid "Rendered Paypal Button on FrontEnd!"
|
||||
msgstr "Bouton Paypal rendu sur FrontEnd !"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:161
|
||||
msgid "Rendered Venmo Button on FrontEnd!"
|
||||
msgstr "Rendu du bouton Venmo sur le frontend !"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:207
|
||||
#: includes/block/src/edit.js:336
|
||||
msgid "Replace Item Image"
|
||||
msgstr "Remplacer l'image de l'article"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Sajid Javed"
|
||||
msgstr "Sajid Javed"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:132
|
||||
msgid "Select Currency:"
|
||||
msgstr "Sélectionnez la devise:"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SonaWP"
|
||||
msgstr "SonaWP"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Simply pay your product with block"
|
||||
msgstr "Payez simplement votre produit avec block"
|
||||
|
||||
#: includes/classes/class-sonawp.php:52
|
||||
msgid "Simply pay your product with block."
|
||||
msgstr "Payez simplement votre produit avec block"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:167
|
||||
msgid "Success Message"
|
||||
msgstr "Message de réussite"
|
||||
|
||||
#: includes/classes/class-sonawp.php:98
|
||||
msgid "Thank you for your payment!"
|
||||
msgstr "Merci pour votre paiement!"
|
||||
|
||||
#: includes/block/build/index.js:1 includes/block/src/edit.js:206
|
||||
#: includes/block/src/edit.js:335
|
||||
msgid "Upload Item Image"
|
||||
msgstr "Télécharger l'image de l'article"
|
||||
File diff suppressed because it is too large
Load Diff
242
spec/fixtures/dynamic_finders/plugin_version/squeeze/translation_file/languages/squeeze.pot
vendored
Normal file
242
spec/fixtures/dynamic_finders/plugin_version/squeeze/translation_file/languages/squeeze.pot
vendored
Normal file
@@ -0,0 +1,242 @@
|
||||
# Copyright (C) 2023 Bogdan Bendziukov
|
||||
# This file is distributed under the GNU GPL v3.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Squeeze 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/squeeze\n"
|
||||
"POT-Creation-Date: 2023-06-13 18:57+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: squeeze\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: src/settings.php:14
|
||||
msgid "Squeeze"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Compress images by squoosh.app"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Bogdan Bendziukov"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://bogdan.kyiv.ua"
|
||||
msgstr ""
|
||||
|
||||
#: src/handlers.php:40
|
||||
msgid "Backup original image failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/handlers.php:48
|
||||
msgid "Upload image failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/handlers.php:65
|
||||
msgid "Compressed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: src/handlers.php:67 src/handlers.php:107
|
||||
msgid "Attachment not updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/handlers.php:90
|
||||
msgid "Restore original image failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/handlers.php:105
|
||||
msgid "Restored successfully"
|
||||
msgstr ""
|
||||
|
||||
#: src/handlers.php:112 src/handlers.php:137
|
||||
msgid "Attachment not found"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:29
|
||||
msgid "Bulk Compress With Squeeze"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:30
|
||||
msgid "Squeeze Bulk"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:80
|
||||
msgid "This page allows you to compress all images in your media library."
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:81
|
||||
msgid "Do not close this page during the compressing process."
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:82
|
||||
msgid "Please note that this process may take a long time depending on the number of images in your library."
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:85
|
||||
msgid "All images in your media library are compressed."
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:87
|
||||
msgid "You have <strong>%s</strong> uncompressed JPG/PNG images from total <strong>%s</strong> JPG/PNG images in your media library."
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:161
|
||||
msgid "Basic Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:163
|
||||
msgid "Auto compress"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:165
|
||||
msgid "Backup original image"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:167
|
||||
msgid "JPEG Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:169
|
||||
msgid "Quality"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:170
|
||||
msgid "Pointless spec compliance"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:171
|
||||
msgid "Arithmetic"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:172
|
||||
msgid "Progressive rendering"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:173
|
||||
msgid "Optimize Huffman table"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:174
|
||||
msgid "Smoothing"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:175
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:176
|
||||
msgid "Quantization"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:187
|
||||
msgid "Trellis multipass"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:188
|
||||
msgid "Optimize zero block runs"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:189
|
||||
msgid "Optimize after trellis quantization"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:190
|
||||
msgid "Trellis quantization passes"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:191
|
||||
msgid "Auto subsample chroma"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:192
|
||||
msgid "Subsample chroma by"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:193
|
||||
msgid "Separate chroma quality"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:194
|
||||
msgid "Chroma quality"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:196
|
||||
msgid "PNG Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:198
|
||||
msgid "Effort"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:199
|
||||
msgid "Interlace"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:230
|
||||
msgid "Settings have been updated."
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:329
|
||||
msgid "Basic options"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:332
|
||||
msgid "Compress settings for JPEG images using MozJPEG encoder"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:335
|
||||
msgid "Compress settings for PNG images using OxiPNG encoder"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:365
|
||||
msgid "Settings have been restored."
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:386
|
||||
msgid "Compressed"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:387
|
||||
msgid "Restore original"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:389
|
||||
msgid "Not compressed"
|
||||
msgstr ""
|
||||
|
||||
#: src/settings.php:390
|
||||
msgid "Compress"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/script.bundle.js:19 assets/js/script.js:159
|
||||
msgid "Compressed successfully, updating..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/script.bundle.js:19 assets/js/script.js:164
|
||||
#: assets/js/script.js:253
|
||||
msgid "An error has occured. Check the console for details."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/script.bundle.js:19 assets/js/script.js:172
|
||||
msgid "Updated successfully"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/script.bundle.js:19 assets/js/script.js:198
|
||||
msgid "All images have been compressed!"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/script.bundle.js:19 assets/js/script.js:249
|
||||
msgid "Restore in process..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/script.bundle.js:19 assets/js/script.js:292
|
||||
msgid "Compressing..."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,39 @@
|
||||
# Copyright (C) 2023 Roy Orbitson
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Stop Logging Me Out 0.1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/stop-logging-me-out\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-06-20T14:46:34+09:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: stop-logging-me-out\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Stop Logging Me Out"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WordPress logs you out again when you revisit a tab/window where a previous session had expired."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Roy Orbitson"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/lev0/"
|
||||
msgstr ""
|
||||
|
||||
#: stop-logging-me-out.php:140
|
||||
msgid "You could not be authenticated in order to return you to the original page. You will need to log in again."
|
||||
msgstr ""
|
||||
|
||||
#: stop-logging-me-out.php:207
|
||||
msgid "You have logged in again since this page automatically logged you out. Would you like to try returning to it?"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,30 @@
|
||||
# Copyright (C) 2022 WordPress Plugin Boilerplate
|
||||
# This file is distributed under the same license as the WordPress Plugin Boilerplate package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WordPress Plugin Boilerplate 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wordpress-plugin-boilerplate\n"
|
||||
"POT-Creation-Date: 2022-05-12 05:16:43+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"
|
||||
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WordPress Plugin Boilerplate"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "This is a short description of what the plugin does. It's displayed in the WordPress admin area."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sourov,Mehedi"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://sourov.im/"
|
||||
msgstr ""
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/stylish-real-estate-leads/change_log/changelog.txt
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/stylish-real-estate-leads/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
= 1.0.3 - 2023-10-12
|
||||
* Fixes: Minor bug fixes
|
||||
|
||||
= 1.0.2 - 2023-10-011
|
||||
* Fixes: Minor bug fixes
|
||||
|
||||
= 1.0.1 - 2023-10-04
|
||||
* Fixes: PHP backward compatibility issues
|
||||
* Fixes: Minor bug fixes
|
||||
|
||||
= 1.0.0 - 2023-10-01
|
||||
* Added: Initialize the plugin
|
||||
File diff suppressed because it is too large
Load Diff
35
spec/fixtures/dynamic_finders/plugin_version/support-svg/translation_file/i18n/support-svg.pot
vendored
Normal file
35
spec/fixtures/dynamic_finders/plugin_version/support-svg/translation_file/i18n/support-svg.pot
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2023 sayedulsayem
|
||||
# This file is distributed under the GPL v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Support SVG 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/support-svg\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-09-20T18:18:48+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.8.1\n"
|
||||
"X-Domain: support-svg\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Support SVG"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/support-svg/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Lightest plugin to upload svg in WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "sayedulsayem"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://sayedulsayem.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"name": "template-share-for-elementor",
|
||||
"version": "1.0.0",
|
||||
"description": "=== Plugin Name === Contributors: (this should be a list of wordpress.org userid's) Donate link: https://codecanyon.net/user/divdojo/portfolio Tags: comments, spam Requires at least: 3.0.1 Tested up to: 3.4 Stable tag: 4.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"browserslist": [
|
||||
"extends @wordpress/browserslist-config"
|
||||
],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.13.1",
|
||||
"@babel/preset-env": "^7.13.5",
|
||||
"@wordpress/browserslist-config": "^3.0.1",
|
||||
"browser-sync": "^2.26.14",
|
||||
"browserslist": "^4.16.3",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-autoprefixer": "^7.0.1",
|
||||
"gulp-babel": "^8.0.0",
|
||||
"gulp-clean-css": "^4.3.0",
|
||||
"gulp-rename": "^2.0.0",
|
||||
"gulp-sass": "^5.0.0",
|
||||
"gulp-terser": "^2.0.1",
|
||||
"gulp-zip": "^5.0.2",
|
||||
"sass": "^1.45.1"
|
||||
}
|
||||
}
|
||||
37
spec/fixtures/dynamic_finders/plugin_version/terminal-africa/composer_file/composer.json
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/terminal-africa/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "terminalafrica/terminal-africa",
|
||||
"description": "Terminal Africa WooCommerce Shipping Plugin",
|
||||
"version": "1.10.11",
|
||||
"type": "wordpress-plugin",
|
||||
"keywords": [
|
||||
"terminal",
|
||||
"woocommerce shipping",
|
||||
"shipping method",
|
||||
"africa shipping",
|
||||
"nigeria shipping",
|
||||
"terminalafrica"
|
||||
],
|
||||
"homepage": "https://wordpress.org/plugins/terminal-africa/",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Terminal",
|
||||
"homepage": "http://www.terminal.africa"
|
||||
},
|
||||
{
|
||||
"name": "Adeleye Ayodeji",
|
||||
"homepage": "http://www.adeleyeayodeji.com"
|
||||
}
|
||||
],
|
||||
"license": "GPL-2.0+",
|
||||
"require": {
|
||||
"php": ">=5.6"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "app/"
|
||||
},
|
||||
"files": [
|
||||
"app/Helpers/helpers.php"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
# Copyright (C) 2023 WordPress Upgrade/Install Team
|
||||
# This file is distributed under the GPL-3.0-or-later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Test Reports 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/test-reports\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-11-01T18:49:19+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.9.0\n"
|
||||
"X-Domain: test-reports\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: src/Test_Reports/Settings.php:133
|
||||
#: src/Test_Reports/Settings.php:156
|
||||
#: src/Test_Reports/Settings.php:180
|
||||
msgid "Test Reports"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/test-reports/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Get templates with useful information to help you submit reports to WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WordPress Upgrade/Install Team"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://make.wordpress.org/core/components/upgrade-install/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Test_Reports/Report_Template.php:77
|
||||
msgid "Search for an existing report"
|
||||
msgstr ""
|
||||
|
||||
#: src/Test_Reports/Report_Template.php:84
|
||||
#: src/Test_Reports/Report_Template.php:92
|
||||
msgid "Submit a new report"
|
||||
msgstr ""
|
||||
|
||||
#: src/Test_Reports/Report_Template.php:99
|
||||
msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: src/Test_Reports/Report_Template.php:101
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Test_Reports/Settings.php:134
|
||||
msgctxt "Menu item"
|
||||
msgid "Test Reports"
|
||||
msgstr ""
|
||||
|
||||
#: src/Test_Reports/Settings.php:161
|
||||
msgid "Get a report template."
|
||||
msgstr ""
|
||||
|
||||
#: src/Test_Reports/Settings.php:172
|
||||
msgid "Get a report template for pasting into Trac, GitHub or HackerOne."
|
||||
msgstr ""
|
||||
|
||||
#: src/Test_Reports/Settings.php:173
|
||||
msgid "After pasting the template, complete each section and submit your report."
|
||||
msgstr ""
|
||||
|
||||
#: src/js/test-reports-clipboard.js:15
|
||||
msgid "Copied to clipboard"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,183 @@
|
||||
# Copyright (C) 2023 PDK Ltd.
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Tiny AI Assistant 1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tiny-ai-assistant\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-11-27T11:26:51+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: tiny-ai-assistant\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Tiny AI Assistant"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://tiny-ai-assistant.aichatbot.hu"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A plugin that integrate AI services into TinyMCE Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "PDK Ltd."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://webdesign-honlapkeszites.hu"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:137
|
||||
msgid "AI Tools"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:137
|
||||
msgid "Available AI tools - you can set these on settings page"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:137
|
||||
msgid "Undo last AI text modification"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:202
|
||||
msgid "Execute custom prompt"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:203
|
||||
msgid "Rephrase content"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:203
|
||||
msgid "Rephrase this text: "
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:204
|
||||
msgid "Make summary"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:204
|
||||
msgid "Make summary: "
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:240
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:298
|
||||
msgid "Click here and choose from options..."
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:298
|
||||
msgid "Click here and choose from options what do you like to remove..."
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:304
|
||||
msgid "Tiny AI Assistant settings page"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:304
|
||||
#: tinyAIEX.php:309
|
||||
msgid "Tiny AI Assistant settings"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:327
|
||||
msgid "Plugin settings"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:335
|
||||
msgid "Active commands"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:336
|
||||
msgid "Add new command"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:337
|
||||
msgid "Remove commands"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:338
|
||||
msgid "OpenAI API key"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:339
|
||||
msgid "Licence key (for premium subscriptions)"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:340
|
||||
msgid "Answer creativity"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:341
|
||||
msgid "Model"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:353
|
||||
msgid "Free"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:355
|
||||
msgid "Premium"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:359
|
||||
msgid "Current subscription"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:361
|
||||
msgid "More information:"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:397
|
||||
msgid "You can configure the Tiny AI Assistant here"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:398
|
||||
msgid "You have to click on 'Save' button on the bottom of this form to save your settings!"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:426
|
||||
msgid "In the free version of this plugin you can only set 3 active commands maximum."
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:431
|
||||
msgid "Command title"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:432
|
||||
msgid "Command"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:433
|
||||
msgid "Command title: Any title, what do you like, Command example: \"Translate this text to hungarian: \""
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:445
|
||||
msgid "Remove selected commands"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:488
|
||||
#: tinyAIEX.php:512
|
||||
msgid "Available only for premium users."
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:570
|
||||
#: tinyAIEX.php:606
|
||||
#: tinyAIEX.php:643
|
||||
msgid "Error happened."
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:601
|
||||
msgid "Command added"
|
||||
msgstr ""
|
||||
|
||||
#: tinyAIEX.php:638
|
||||
msgid "Commands removed"
|
||||
msgstr ""
|
||||
56
spec/fixtures/dynamic_finders/plugin_version/toys-for-playground/change_log/changelog.txt
vendored
Normal file
56
spec/fixtures/dynamic_finders/plugin_version/toys-for-playground/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.1.9 =
|
||||
|
||||
* 2023-10-10
|
||||
* Added Copy button in Sharer toy modal.
|
||||
* Update new Storage params
|
||||
|
||||
= 1.1.8 =
|
||||
|
||||
* 2023-15-09
|
||||
* Added Sharer toy
|
||||
* Added nightly param
|
||||
* Added uninstall.php
|
||||
* Minor corrections
|
||||
|
||||
= 1.1.6 =
|
||||
|
||||
* 2023-08-09
|
||||
* Hidden submenus
|
||||
* Some usability fixes
|
||||
|
||||
= 1.1.5 =
|
||||
|
||||
* 2023-08-09
|
||||
* Fixes persistent storage
|
||||
* Fixes i18n
|
||||
* Separate PHP files for each tool.
|
||||
* Corrected and summarized text.
|
||||
* Added plugin information and images
|
||||
* More visible directory buttons
|
||||
|
||||
= 1.1.1 =
|
||||
|
||||
* 2023-03-09
|
||||
* i18n ready
|
||||
* Added WP 6.3 WP selector in toys
|
||||
* Added Plugin Explorer
|
||||
* Added Theme Explorer
|
||||
* Rewritted the Generator toy
|
||||
|
||||
= 1.0.8 =
|
||||
|
||||
* 2023-02-09
|
||||
* Compatibility: WordPress 5.9 - WordPress 6.3
|
||||
* Compatibility: PHP 5.9 - PHP 8.2
|
||||
* Added Storage option
|
||||
* Added inactive plugins and themes
|
||||
* Added WordPress & PHP version selectors
|
||||
* Added some help texts
|
||||
* Some corrections
|
||||
|
||||
= 1.0 =
|
||||
|
||||
* 2023-16-06
|
||||
* First version.
|
||||
5571
spec/fixtures/dynamic_finders/plugin_version/tripzzy/translation_file/languages/tripzzy.pot
vendored
Normal file
5571
spec/fixtures/dynamic_finders/plugin_version/tripzzy/translation_file/languages/tripzzy.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user