Compare commits
109 Commits
v3.8.20
...
fix/handle
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d2841dbf5a | ||
|
|
c7d49556f1 | ||
|
|
804bdfc146 | ||
|
|
96b6b81d78 | ||
|
|
de4f65e69b | ||
|
|
bce3b48ac7 | ||
|
|
2c1eb27f79 | ||
|
|
a423b15d53 | ||
|
|
162fcf4c2d | ||
|
|
2613fdcc6b | ||
|
|
fbabd509f0 | ||
|
|
a075c93e6f | ||
|
|
d2a8bf92d9 | ||
|
|
39459fb5a1 | ||
|
|
c11f4b9064 | ||
|
|
4fb47e1c3b | ||
|
|
1260a6480f | ||
|
|
598c6ebb69 | ||
|
|
289e2d80c1 | ||
|
|
cb7cd9aac2 | ||
|
|
99fca11958 | ||
|
|
ea020aa8a5 | ||
|
|
4d30fecc36 | ||
|
|
369bbbe084 | ||
|
|
257a4a458b | ||
|
|
0ddc3cc10b | ||
|
|
9c6f1daa83 | ||
|
|
cb9701eaef | ||
|
|
afc2fe2f79 | ||
|
|
0dd00645f8 | ||
|
|
c7919e3c75 | ||
|
|
fb812554f3 | ||
|
|
63094494d3 | ||
|
|
5ff73256e8 | ||
|
|
06d861c16c | ||
|
|
cfe1a40491 | ||
|
|
01fe047f2b | ||
|
|
a4dc0fb0e6 | ||
|
|
0905ad98c1 | ||
|
|
6a309a9624 | ||
|
|
7969e51231 | ||
|
|
933d6c7d0e | ||
|
|
3c879b2523 | ||
|
|
783d016bd1 | ||
|
|
1436122b01 | ||
|
|
922e4f993b | ||
|
|
16d79ec11a | ||
|
|
f08158342a | ||
|
|
be7437d117 | ||
|
|
1a76eb8a83 | ||
|
|
24851106bd | ||
|
|
46e3692a03 | ||
|
|
196fbab5b1 | ||
|
|
f9e6e75c0c | ||
|
|
61363a1985 | ||
|
|
2c639c8f4e | ||
|
|
3cdf77ce54 | ||
|
|
1719e5dd21 | ||
|
|
2436aa527c | ||
|
|
855b2b5c36 | ||
|
|
b78b86cea3 | ||
|
|
047eec686d | ||
|
|
ff28962660 | ||
|
|
6751ebd110 | ||
|
|
03fbe79152 | ||
|
|
9abba8fd01 | ||
|
|
787e4cef0b | ||
|
|
56de3e28f5 | ||
|
|
4c1aeaab3d | ||
|
|
f9366f6da6 | ||
|
|
a9f3624a9b | ||
|
|
3305692808 | ||
|
|
4c50336793 | ||
|
|
ed89ea4a78 | ||
|
|
58bde8c26a | ||
|
|
39d4e94fbb | ||
|
|
a87e394b6d | ||
|
|
b48d11374f | ||
|
|
a8f913c020 | ||
|
|
3f4877a3a0 | ||
|
|
5feb6ffe34 | ||
|
|
a5adcfec97 | ||
|
|
90b61d035e | ||
|
|
05c21fb0a8 | ||
|
|
28cdf8e649 | ||
|
|
d1f2781929 | ||
|
|
6b57da0d8a | ||
|
|
b38f94ef39 | ||
|
|
06e3c76ac6 | ||
|
|
885bf041c4 | ||
|
|
ffe8574c51 | ||
|
|
910d34c721 | ||
|
|
5fec3a97c5 | ||
|
|
37f7dddac7 | ||
|
|
05d912e658 | ||
|
|
4bd87b2953 | ||
|
|
a4c843e51e | ||
|
|
7f9295ad54 | ||
|
|
0ab3d16be9 | ||
|
|
93f2e18811 | ||
|
|
ccd7324590 | ||
|
|
7323e8aa08 | ||
|
|
035830d7bc | ||
|
|
eaaefe2cf5 | ||
|
|
9499caf7b8 | ||
|
|
a677cf87cd | ||
|
|
2fc872ae6f | ||
|
|
27d4d14303 | ||
|
|
434f8819a2 |
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@@ -9,14 +9,14 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.5, 2.6, 2.7, 3.0]
|
||||
ruby: [2.7, '3.0', 3.1, 3.2]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2.4.0
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
|
||||
|
||||
10
.github/workflows/docker.yml
vendored
10
.github/workflows/docker.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: checkout sources
|
||||
uses: actions/checkout@v2.4.0
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set tag to latest
|
||||
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
|
||||
@@ -34,22 +34,22 @@ jobs:
|
||||
exit 1
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
uses: docker/setup-buildx-action@v2
|
||||
id: buildx
|
||||
with:
|
||||
install: true
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v1.10.0
|
||||
uses: docker/login-action@v2.2.0
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
||||
push: true
|
||||
|
||||
6
.github/workflows/gempush.yml
vendored
6
.github/workflows/gempush.yml
vendored
@@ -10,11 +10,11 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2.4.0
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
ruby-version: 2.6
|
||||
|
||||
#- name: Publish to GPR
|
||||
# run: |
|
||||
|
||||
@@ -2,7 +2,7 @@ require: rubocop-performance
|
||||
AllCops:
|
||||
NewCops: enable
|
||||
SuggestExtensions: false
|
||||
TargetRubyVersion: 2.5
|
||||
TargetRubyVersion: 2.7
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
- 'vendor/**/*'
|
||||
|
||||
14
README.md
14
README.md
@@ -25,8 +25,7 @@
|
||||
## Prerequisites
|
||||
|
||||
- (Optional but highly recommended: [RVM](https://rvm.io/rvm/install))
|
||||
- Ruby >= 2.5 - Recommended: latest
|
||||
- Ruby 2.5.0 to 2.5.3 can cause an 'undefined symbol: rmpd_util_str_to_d' error in some systems, see [#1283](https://github.com/wpscanteam/wpscan/issues/1283)
|
||||
- Ruby >= 2.7 - Recommended: latest
|
||||
- Curl >= 7.72 - Recommended: latest
|
||||
- The 7.29 has a segfault
|
||||
- The < 7.72 could result in `Stream error in the HTTP/2 framing layer` in some cases
|
||||
@@ -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
|
||||
|
||||
@@ -90,15 +91,12 @@ The DB is located at ~/.wpscan/db
|
||||
|
||||
The WPScan CLI tool uses the [WordPress Vulnerability Database API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan.com](https://wpscan.com/register).
|
||||
|
||||
Up to 25 API requests per day are given free of charge, that should be suitable to scan most WordPress websites at least once per day. When the daily 25 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPScan.com](https://wpscan.com/).
|
||||
|
||||
#### The Free plan allows 25 API requests per day. View the different [available API plans](https://wpscan.com/api).
|
||||
Up to **25** API requests per day are given free of charge, that should be suitable to scan most WordPress websites at least once per day. When the daily 25 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data.
|
||||
|
||||
### How many API requests do you need?
|
||||
|
||||
- Our WordPress scanner makes one API request for the WordPress version, one request per installed plugin and one request per installed theme.
|
||||
- On average, a WordPress website has 22 installed plugins.
|
||||
- The Free plan should cover around 50% of all WordPress websites.
|
||||
|
||||
## Load CLI options from file/s
|
||||
|
||||
@@ -137,7 +135,7 @@ The feature mentioned above is useful to keep the API Token in a config file and
|
||||
|
||||
```yml
|
||||
cli_options:
|
||||
api_token: YOUR_API_TOKEN
|
||||
api_token: 'YOUR_API_TOKEN'
|
||||
```
|
||||
|
||||
## Load API Token From ENV (since v3.7.10)
|
||||
|
||||
@@ -17,7 +17,8 @@ module WPScan
|
||||
'Maximum number of passwords to send by request with XMLRPC multicall'],
|
||||
default: 500),
|
||||
OptChoice.new(['--password-attack ATTACK',
|
||||
'Force the supplied attack to be used rather than automatically determining one.'],
|
||||
'Force the supplied attack to be used rather than automatically determining one.',
|
||||
'Multicall will only work against WP < 4.4'],
|
||||
choices: %w[wp-login xmlrpc xmlrpc-multicall],
|
||||
normalize: %i[downcase underscore to_sym]),
|
||||
OptString.new(['--login-uri URI', 'The URI of the login page if different from /wp-login.php'])
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -59,7 +59,7 @@ module WPScan
|
||||
#
|
||||
# @return [ String, nil ] The best version number detected from the changelog section
|
||||
def from_changelog_section(body)
|
||||
extracted_versions = body.scan(%r{=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[ \ta-z0-9().\-/]*=+}i)
|
||||
extracted_versions = body.scan(/^=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[^=]*=+$/i)
|
||||
|
||||
return if extracted_versions.nil? || extracted_versions.empty?
|
||||
|
||||
|
||||
@@ -36,6 +36,8 @@ module WPScan
|
||||
|
||||
oembed_data = oembed_data.first if oembed_data.is_a?(Array)
|
||||
|
||||
oembed_data = {} unless oembed_data.is_a?(Hash)
|
||||
|
||||
if oembed_data['author_url'] =~ %r{/author/([^/]+)/?\z}
|
||||
details = [Regexp.last_match[1], 'Author URL', 90]
|
||||
elsif oembed_data['author_name'] && !oembed_data['author_name'].empty?
|
||||
|
||||
@@ -42,12 +42,16 @@ module WPScan
|
||||
def users_from_response(response)
|
||||
found = []
|
||||
|
||||
JSON.parse(response.body)&.each do |user|
|
||||
found << Model::User.new(user['slug'],
|
||||
id: user['id'],
|
||||
found_by: found_by,
|
||||
confidence: 100,
|
||||
interesting_entries: [response.effective_url])
|
||||
json = JSON.parse(response.body)
|
||||
|
||||
if json.is_a?(Enumerable)
|
||||
json.each do |user|
|
||||
found << Model::User.new(user['slug'],
|
||||
id: user['id'],
|
||||
found_by: found_by,
|
||||
confidence: 100,
|
||||
interesting_entries: [response.effective_url])
|
||||
end
|
||||
end
|
||||
|
||||
found
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@ module WPScan
|
||||
# @return [ Hash ] The params for Typhoeus::Request
|
||||
# @note Those params can't be overriden by CLI options
|
||||
def request_params
|
||||
@request_params ||= Browser.instance.default_connect_request_params.merge(
|
||||
@request_params ||= Browser.instance.default_request_params.merge(
|
||||
timeout: 600,
|
||||
connecttimeout: 300,
|
||||
accept_encoding: 'gzip, deflate',
|
||||
@@ -135,7 +135,7 @@ module WPScan
|
||||
res = Typhoeus.get(file_url, request_params)
|
||||
raise Error::Download, res if res.timed_out? || res.code != 200
|
||||
|
||||
File.open(file_path, 'wb') { |f| f.write(res.body) }
|
||||
File.binwrite(file_path, res.body)
|
||||
|
||||
local_file_checksum(filename)
|
||||
end
|
||||
|
||||
@@ -70,7 +70,7 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
# @note Those params can not be overriden by CLI options
|
||||
def self.default_request_params
|
||||
@default_request_params ||= Browser.instance.default_connect_request_params.merge(
|
||||
@default_request_params ||= Browser.instance.default_request_params.merge(
|
||||
headers: {
|
||||
'User-Agent' => Browser.instance.default_user_agent,
|
||||
'Authorization' => "Token token=#{token}"
|
||||
|
||||
@@ -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.20'
|
||||
VERSION = '3.8.25'
|
||||
end
|
||||
|
||||
@@ -108,7 +108,8 @@ describe WPScan::Finders::PluginVersion::Readme do
|
||||
'advanced-most-recent-posts-mod' => '1.6.5.2',
|
||||
'a-lead-capture-contact-form-and-tab-button-by-awebvoicecom' => '3.1',
|
||||
'backup-scheduler' => '1.5.9',
|
||||
'release_date_slash' => '1.0.4'
|
||||
'release_date_slash' => '1.0.4',
|
||||
'cool_tag_cloud' => '2.27'
|
||||
}.each do |file, version_number|
|
||||
context "whith #{file}.txt" do
|
||||
it 'returns the expected version' do
|
||||
|
||||
@@ -13,9 +13,17 @@ describe WPScan::Finders::Users::OembedApi do
|
||||
end
|
||||
|
||||
context 'when not a JSON response' do
|
||||
let(:body) { '' }
|
||||
context 'when empty' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when a string' do
|
||||
let(:body) { '404' }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a JSON response' do
|
||||
|
||||
@@ -20,9 +20,17 @@ describe WPScan::Finders::Users::WpJsonApi do
|
||||
end
|
||||
|
||||
context 'when not a JSON response' do
|
||||
let(:body) { '' }
|
||||
context 'when empty' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when a string' do
|
||||
let(:body) { '404' }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a JSON response' do
|
||||
|
||||
23750
spec/fixtures/db/dynamic_finders.yml
vendored
23750
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
10455
spec/fixtures/dynamic_finders/expected.yml
vendored
10455
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,170 @@
|
||||
# Copyright (C) 2023 Qewebby
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 360 Product Viewer for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp_360view\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-05-11T17:47:24+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: wp360view\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
msgid "360 Product Viewer for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/360-product-viewer-for-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Qewebby"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.qewebby.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:108
|
||||
msgid "360 Product image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:141
|
||||
msgid "Delete image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:141
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add 360 Product images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add to 360 Product gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Delete 360 Product image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add 360 product images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:39
|
||||
msgid "360 View Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:56
|
||||
msgid "Shortcode Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:78
|
||||
msgid "Advance Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:88
|
||||
msgid "Enable Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:90
|
||||
msgid "Enable navigation panel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:91
|
||||
msgid "Enable or disable navigation panel globally OR you can override this settings by <b>\"navigation\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:99
|
||||
#: includes/admin/class-wp360view-settings.php:101
|
||||
msgid "Enable dragging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:102
|
||||
msgid "Enable or disable dragging option globally OR you can override this settings by <b>\"drag\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:106
|
||||
#: includes/admin/class-wp360view-settings.php:110
|
||||
msgid "Play Speed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:111
|
||||
msgid "Add/change play speed of 360 slider globally OR you can override this settings by <b>\"playspeed\"</b> attibute by shortcode. Default value is <b>100</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:115
|
||||
#: includes/admin/class-wp360view-settings.php:119
|
||||
msgid "Frame Rate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:120
|
||||
msgid "Add/change frame rate of 360 slider globally OR you can override this settings by <b>\"framerate\"</b> attibute by shortcode. Default value is <b>10</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:128
|
||||
msgid "Enable Spin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:130
|
||||
msgid "Enable spin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:131
|
||||
msgid "Enable or disable spin settings globally OR you can override this settings by <b>\"enablespin\"</b> attibute by shortcode. Default value is <b>false</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:139
|
||||
#: includes/admin/class-wp360view-settings.php:141
|
||||
msgid "Show Cursor"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:142
|
||||
msgid "Hide or show cursor globally OR you can override this settings by <b>\"showcursor\"</b> attibute by shortcode. Default value is <b>false</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:151
|
||||
msgid "Fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:153
|
||||
msgid "Enable full screen support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:154
|
||||
msgid "Enable or disable full screen support settings globally OR you can override this settings by <b>\"fullscreen\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:162
|
||||
msgid "Zoom In/Out"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:164
|
||||
msgid "Enable Zoom In/Out"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:165
|
||||
msgid "Enable or disable zoom in/out settings globally OR you can override this settings by <b>\"zoominout\"</b> attibute by shortcode. Default value is <b>true</b>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/360-product.php:22
|
||||
#: templates/shortcode-template.php:26
|
||||
msgid "360 Product View"
|
||||
msgstr ""
|
||||
|
||||
#: wp_360view.php:134
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: wp_360view.php:176
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
156
spec/fixtures/dynamic_finders/plugin_version/4partners/translation_file/languages/4partners-ru_RU.po
vendored
Normal file
156
spec/fixtures/dynamic_finders/plugin_version/4partners/translation_file/languages/4partners-ru_RU.po
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
# Copyright (C) 2022 4partners
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 4partners 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/4partners\n"
|
||||
"POT-Creation-Date: 2022-10-13T14:15:50+00:00\n"
|
||||
"PO-Revision-Date: 2022-10-13 17:18+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.0\n"
|
||||
"X-Domain: 4partners\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "4partners"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Description of the plugin
|
||||
msgid "-"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "4partners.io"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Plugin.php:145
|
||||
msgid ""
|
||||
"4partners plugin error: please install and activate WooCommerce wordpress "
|
||||
"plugin"
|
||||
msgstr ""
|
||||
"Ошибка плагина 4partners: пожалуйста, установите и активируйте WooCommerce "
|
||||
"плагин"
|
||||
|
||||
#: classes/Plugin.php:152
|
||||
msgid ""
|
||||
"4partners plugin error: please install and activate Cyr-To-Lat wordpress "
|
||||
"plugin"
|
||||
msgstr ""
|
||||
"Ошибка плагина 4partners: пожалуйста, установите и активируйте Cyr-To-Lat "
|
||||
"wordpress плагин"
|
||||
|
||||
#: classes/Services/CategoryService.php:164
|
||||
msgid "4partners price adjustment"
|
||||
msgstr "4partners увеличение цены"
|
||||
|
||||
#: classes/Services/CategoryService.php:176
|
||||
msgid "No less than"
|
||||
msgstr "Не менее чем"
|
||||
|
||||
#: classes/Services/ProductService.php:52
|
||||
msgid "Fix product field values"
|
||||
msgstr "Фиксировать значение полей товара"
|
||||
|
||||
#: classes/Services/ProductService.php:59
|
||||
msgid "Title"
|
||||
msgstr "Название"
|
||||
|
||||
#: classes/Services/ProductService.php:62
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: classes/Services/ProductService.php:65
|
||||
#: classes/Services/SettingsService.php:298
|
||||
msgid "Category"
|
||||
msgstr "Категория"
|
||||
|
||||
#: classes/Services/SettingsService.php:58
|
||||
#: classes/Services/SettingsService.php:133
|
||||
msgid "Synchronization"
|
||||
msgstr "Синхронизация"
|
||||
|
||||
#: classes/Services/SettingsService.php:59
|
||||
#: classes/Services/SettingsService.php:141
|
||||
#: classes/Services/SettingsService.php:385
|
||||
msgid "Categories"
|
||||
msgstr "Категории"
|
||||
|
||||
#: classes/Services/SettingsService.php:222
|
||||
msgid "Product catalog language"
|
||||
msgstr "Язык каталога товаров"
|
||||
|
||||
#: classes/Services/SettingsService.php:230
|
||||
msgid "Daily"
|
||||
msgstr "Ежедневно"
|
||||
|
||||
#: classes/Services/SettingsService.php:231
|
||||
msgid "Twice daily"
|
||||
msgstr "Дважды в день"
|
||||
|
||||
#: classes/Services/SettingsService.php:232
|
||||
msgid "Weekly"
|
||||
msgstr "Еженедельно"
|
||||
|
||||
#: classes/Services/SettingsService.php:240
|
||||
msgid "How often to sync products?"
|
||||
msgstr "Как часто синхронизировать товары?"
|
||||
|
||||
#: classes/Services/SettingsService.php:288
|
||||
msgid "Please check categories for import from API"
|
||||
msgstr "Пожалуйста, выберите категории для синхронизации с API"
|
||||
|
||||
#: classes/Services/SettingsService.php:295
|
||||
msgid "Check all"
|
||||
msgstr "Выбрать все"
|
||||
|
||||
#: classes/Services/SettingsService.php:299
|
||||
msgid "Amount"
|
||||
msgstr "Кол-во"
|
||||
|
||||
#: classes/Services/SettingsService.php:300
|
||||
msgid "Started at"
|
||||
msgstr "Начало"
|
||||
|
||||
#: classes/Services/SettingsService.php:301
|
||||
msgid "Ended at"
|
||||
msgstr "Окончание"
|
||||
|
||||
#: classes/Services/SettingsService.php:302
|
||||
msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#: classes/Services/SettingsService.php:303
|
||||
msgid "Items loaded"
|
||||
msgstr "Товаров загружено"
|
||||
|
||||
#: classes/Services/SettingsService.php:357
|
||||
msgid "Processing..."
|
||||
msgstr "В процессе..."
|
||||
|
||||
#: classes/Services/SettingsService.php:360
|
||||
msgid "Error"
|
||||
msgstr "Ошибка"
|
||||
|
||||
#: classes/Services/SettingsService.php:362
|
||||
msgid "Completed"
|
||||
msgstr "Завершен"
|
||||
|
||||
#: classes/Services/SettingsService.php:386
|
||||
msgid "Products"
|
||||
msgstr "Товары"
|
||||
|
||||
#: classes/Services/SettingsService.php:388
|
||||
msgid "Progress"
|
||||
msgstr "Прогресс"
|
||||
|
||||
#: classes/Services/SettingsService.php:440
|
||||
msgid "Checked categories"
|
||||
msgstr "Выбранные категории"
|
||||
@@ -0,0 +1,2 @@
|
||||
/**1.0.0 - 2022.04.01**/
|
||||
~ The first released.
|
||||
344
spec/fixtures/dynamic_finders/plugin_version/Ultimate_VC_Addons/change_log/changelog.txt
vendored
Normal file
344
spec/fixtures/dynamic_finders/plugin_version/Ultimate_VC_Addons/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,344 @@
|
||||
3.19.11 - 22 July 2021
|
||||
- Improvement: Compatibility with the WordPress 5.8
|
||||
- Fix: Advanced Carousel element not working properly.
|
||||
- Fix: The Price Box element is not showing horizontally.
|
||||
- Fix: Hotspot module styling options are not applying properly.
|
||||
- Fix: Functional code is showing when the interactive banner is used with the Advanced carousel.
|
||||
|
||||
3.19.10 - 04 June 2021
|
||||
- Improvement: Compatibility with the latest JavaScript and CSS standard rule.
|
||||
- Improvement: Added the prefix to all the PHP function and class name to avoid future conflicts.
|
||||
- Improvement: Added the prefix to the global variable, script and style handlers.
|
||||
- Fix: Fixed the PHP error foreach() argument must be of type array|object.
|
||||
- Fix: Fixed the PHP notice undefined index into the google font manager.
|
||||
|
||||
3.19.9 - 18 Feb 2021
|
||||
- Improvement : Updated the Smooth-scroll library.
|
||||
- Fix : Ultimate Icon conflict issue with Yoast SEO.
|
||||
- Fix : Console error unable to preventDefault inside passive event listener due to the target being treated as passive.
|
||||
- Fix : Console error cannot read property 'msie' of undefined.
|
||||
- Fix : Youtube video background is not working on MacOSX BigSur.
|
||||
- Fix : Console error cannot read property '1' of null.
|
||||
|
||||
3.19.8 - 12 Dec 2020
|
||||
- Improvement: Shortcode compatibility with PHP 8.0 – Deprecated: Function ultimate_wrap_shortcode_in_div().
|
||||
- Fix: Deprecated jquery issue into Interactive Mouse Parallax row background after WordPress - 5.6
|
||||
- Fix: Console warning jQuery.browser is deprecated after WordPress - 5.6
|
||||
- Fix: Console warning indexOf is not a function after WordPress - 5.6
|
||||
- Fix: Console warning jquery-fn-load is deprecated for below elements after WordPress - 5.6
|
||||
- Heading
|
||||
- Countdown
|
||||
- Creative-link
|
||||
- Dual-Button
|
||||
- Filp-Box
|
||||
- iHover
|
||||
- Info-banner
|
||||
- Info-Box
|
||||
- Info-circle
|
||||
- Modal popup
|
||||
- Team Module
|
||||
- Content Box
|
||||
- Image separator
|
||||
- Google Map
|
||||
- Advanced carousel
|
||||
|
||||
- Fix: Console warning pseudo-event is deprecated for below modules after WordPress - 5.6
|
||||
- Advanced Button
|
||||
- Flip-Box
|
||||
- Interactive Banner
|
||||
|
||||
3.19.7 - 09 Nov 2020
|
||||
- Improvement: Updated the jparallax.js library for the parallax effect.
|
||||
- Improvement: Updated the strings into the backend.
|
||||
- Fix - Console warning jquery-fn-load-is-deprecated.
|
||||
- Fix - Interactive Mouse Parallax row background not working.
|
||||
- Fix - Typography is not applied to prefix into the Fancy text element.
|
||||
|
||||
3.19.6 - 12 Aug 2020
|
||||
- Improvement: Compatibility to WordPress 5.5.
|
||||
- Fix: Google Fonts are not loading into the Google Font Manager tab for WordPress 5.5.
|
||||
- Fix: Upload the custom icon support is not working for WordPress 5.5.
|
||||
- Fix: Save button functionality is not working for the elements with the WordPress 5.5.
|
||||
- Fix: Switch buttons of the Element Tab and Debug Tab are not working with the WordPress 5.5.
|
||||
|
||||
3.19.5 - 16 June 2020
|
||||
- New: Users can now share non-personal usage data to help us test and develop better products. ( <a href="https://store.brainstormforce.com/usage-tracking/?utm_source=changelog&utm_medium=changelog&utm_campaign=usage_tracking" target="_blank" rel="noopener">Know More</a> )
|
||||
- Fix: Fixed the flip-box background overlapping issue into firefox.
|
||||
- Fix: Fixed the duplicate ID issue into the Counter element.
|
||||
- Fix: Fixed the PHP notice issue with the PHP 7.4
|
||||
- Fix: Breaking the UI for the video element while using the Vimeo link.
|
||||
- Fix: Fixed the PHP notice trying to access array offset on the value of type bool.
|
||||
|
||||
3.19.4 - 12 March 2020
|
||||
- Improvement: Updated Dual Color Heading element code for WPML compatibility.
|
||||
- Fix: PHP Notice of $icon_img variable is not defined.
|
||||
- Fix: Interactive Banner Captions come over the sticky header while scrolling.
|
||||
- Fix: PHP Notice of $img_width variable is not defined.
|
||||
- Fix: The hover text color of button2 stopped working for Dual button.
|
||||
- Fix: PHP Notice of $icon_size variable is not defined.
|
||||
- Fix: Rendering issue when background is not set for flip-box.
|
||||
- Fix: PHP Notice of $icon_border_radius variable is not defined.
|
||||
- Fix: Update the strings inside the modules.
|
||||
- Fix: PHP Notice of $icon_border_spacing variable is not defined.
|
||||
|
||||
3.19.3 - 20 Feb 2020
|
||||
- Improvement: Compatibility with latest WordPress PHP_CodeSniffer rules.
|
||||
|
||||
3.19.2 - 03 Feb 2020
|
||||
- Improvement: Hardened the security of the plugin.
|
||||
|
||||
3.19.1 - 22 Jan 2020
|
||||
- Security Fix: Cross-site scripting (XSS) vulnerability.
|
||||
|
||||
3.19.0 - 30 July 2019
|
||||
- New: Introducing Dual Color Heading Element.
|
||||
- Improvement: Added the Extra class option for the Hotspot item.
|
||||
- Improvement: Update WPML XML file for Compatibility.
|
||||
- Improvement: Update the string as an Element instead of Modules in backend settings.
|
||||
- Fix: PHP Notice of $ub variable is not initialized.
|
||||
- Fix: Hotspot glow animation color is not working.
|
||||
- Fix: PHP Warning in Team element appearing on the front end.
|
||||
- Removed purchase key License activation method as the API for this is now being deprecated by Envato.
|
||||
|
||||
3.18.0 - 18 Feb 2019
|
||||
- New: Introduce Ribbon element.
|
||||
- Improvement: Added the animation option for a marker in Google Map.
|
||||
- Fix: Advanced Carousel rendering issue when page refresh.
|
||||
- Fix: PHP Notice Undefined license-form-method variable.
|
||||
|
||||
3.17.1 - 6 Dec 2018
|
||||
- Improvement: Added Text transform option for Fancy text.
|
||||
- Improvement: Update WPML xml file for Compatibility.
|
||||
- Improvement: Added license key purchase form button in debug screen.
|
||||
- Fix: Spacing issue in Fancy text.
|
||||
- Fix: Advanced Carousel doesn't slide properly with one at a time option on Tablet and Mobile devices.
|
||||
|
||||
3.17.0 - 29 Oct 2018
|
||||
- New: Introduce Video element.
|
||||
- Improvement: Toolip will display in case of link in Just Icon.
|
||||
- Fix: Fancy Text not consistent in slide up option.
|
||||
- Removed purchase key License activation method as the API for this is now being deprecated by Envato.
|
||||
|
||||
3.16.26 - 27-Sept-2018
|
||||
- Improvement: Added Border radius option for Flip Box.
|
||||
- Fix: Advanced Tab collapsed when the value is not set for the Active tab.
|
||||
- Fix: Control option not working when Load script globally option is enabled in the hosted video.
|
||||
- Fix: Youtube video not working when the Viewport option is enabled.
|
||||
|
||||
3.16.25 - 22-Aug-2018
|
||||
- Improvement: Added Modal on menu option in Debug setting.
|
||||
- Improvement: Added Description color option for Flip Box.
|
||||
- Improvement: Updated YTplayer JS library for YouTube video.
|
||||
- Improvement: Updated fancy text element code for WPML compatibility.
|
||||
- Fix: Content visibility issue on mobile device in Advanced tab on accordion mode.
|
||||
- Fix: CSS duplication issue on resize in dual button element.
|
||||
- Fix: Timeline position issue in RTL condition.
|
||||
- Fix: Advanced carousel show slide issue in tab and mobile.
|
||||
|
||||
3.16.24 - 28-may-2018
|
||||
- Improvement: Updated registration form popup for updater with GDPR Compliance.
|
||||
- Improvement: Changed license to GPL v2.
|
||||
|
||||
3.16.23 - 15-may-2018
|
||||
- Improvement: Added post/page title select option for headings.
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for Timeline.
|
||||
- Improvement: Added custom JS option on click of the advanced button.
|
||||
- Fix: Advanced Tabs accordion issue on default active tab.
|
||||
- Fix: Set false to PauseOnFocus in advance carousel settings.
|
||||
- Fix: Flipbox visibility issue while using custom height option.
|
||||
|
||||
3.16.22 - 11-April-2018
|
||||
- Improvement: Updated page builder name as WPBakery Page Builder instead of visual composer.
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for package title and for subheading in Info table.
|
||||
- Improvement: New registration form popup for updater.
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for list item title in Info list.
|
||||
- Improvement: Added Focus on select option on advanced carousel.
|
||||
- Improvement: Improve UI.
|
||||
- Fix: Rel Attribute option space issue.
|
||||
- Fix: Icon not uploaded due to server issue.
|
||||
- Fix: Advanced tab js causing issue in IE.
|
||||
- Fix: Flipbox module animation issue in firefox browser.
|
||||
- Fix: Info circle item animation issue in different Browsers while initial load.
|
||||
|
||||
3.16.21 - 3-January-2018
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for package title and for subheading in Price Box.
|
||||
- Fix: Conflict with venus theme function name.
|
||||
- Fix: Counter in Module's list have different name on page element list.
|
||||
- Fix: Dual button height issue on First loading with Advanced Tab.
|
||||
- Fix: Advanced Tabs ID does not work in URL.
|
||||
- Fix: HTML validation error in counter element.
|
||||
- Fix: RTL issue in effect 18 of ihover element.
|
||||
- Fix: Rel Attribute option is not working in advance button.
|
||||
- Fix: Space issue in anchor tag attribute.
|
||||
- Fix: Change the labels from optimized to combined in script & style tab and separator instead of seperator in heading element.
|
||||
|
||||
3.16.20 - 21-November-2017
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for title in Info-banner.
|
||||
- Improvement: Update WPML xml file for Compatibility.
|
||||
- Fix: Advanced Tab Active Tab option issue.
|
||||
- Fix: WPBakery Page Builder map element has issue with advanced tabs.
|
||||
- Fix: Fancy text issue with special character(&) in string.
|
||||
- Fix: Info circle connector alignment issue in RTL condition.
|
||||
- Fix: Info circle item animation issue in Safari Browser.
|
||||
- Fix: Modal Box - Close Modal On Overlay Click and ESC not working when selector option is used.
|
||||
- Fix: Info-circle border not applied properly in safari browser.
|
||||
- Fix: Interactive banner2 link redirect issue in touch devices.
|
||||
- Fix: Toggle button issue while using Visual Composer starter theme.
|
||||
|
||||
3.16.19.1 - 13-November-2017
|
||||
- Fix: Row background pattern images are not showing in effect tab.
|
||||
|
||||
3.16.19 - 6-November-2017
|
||||
- Improvement: Added info list border type option.
|
||||
- Improvement: Optimize plugin code and improved performance.
|
||||
- Improvement: Added padding option for info-circle item.
|
||||
- Improvement: Added time delay option for redirecting the links on touch devices in interactive banner2.
|
||||
- Fix: Info circle clipped at bottom / top is not working properly.
|
||||
- Fix: Info circle image alignment issue.
|
||||
- Fix: Advanced Tab content height issue on First loading with animation style.
|
||||
- Fix: Anchor tag link and tooltip issue in Just Icon.
|
||||
- Fix: Anchor tag link issue in Icon.
|
||||
- Fix: Timeline issue without timeline item disappear.
|
||||
- Fix: Js error in row background.
|
||||
- Fix: Smooth Scroll issue in Chrome Browser.
|
||||
- Fix: Dual button getting collapse in Advanced Tabs.
|
||||
|
||||
3.16.18 - 20-September-2017
|
||||
Security Fix: A cross-site scripting (XSS) vulnerability was discovered in html links, WordPress core has patched it's vulnerability in 4.8.2 release and we've also fix it for Ultimate Addons for Visual Composer.
|
||||
|
||||
3.16.17 - 13-September-2017
|
||||
- Improvement: Added modal Close icon design feature.
|
||||
- Improvement: Added modal popup close on ESC key.
|
||||
- Improvement: Added hover color option for button in Modal.
|
||||
- Improvement: Added modal hide feature on page load for mobile/tablet devices.
|
||||
- Improvement: Advance Tab navigation icon for accordion updated.
|
||||
- Fix: Need to change CSS for pan style in Info banner element.
|
||||
- Fix: Info circle responsive issue.
|
||||
|
||||
3.16.16 - 29-August-2017
|
||||
- Improvement: Advanced Tab ID is now editable.
|
||||
- Improvement: Link markup condition for team element need improvement.
|
||||
- Improvement: Added image alignment option for image in image separator.
|
||||
- Fix: Row separator tilt left right issue.
|
||||
- Fix: Info-Circle does not include image in description area.
|
||||
- Fix: Info-Circle animation not working properly.
|
||||
- Fix: Hosted video background height issue.
|
||||
- Fix: Video background placeholder images do not show up after video completes.
|
||||
- Fix: Timeline right side item spacing issue.
|
||||
- Fix: Timeline has html markup issue and point issue.
|
||||
- Fix: Scripts Loading issue in Carousel.
|
||||
- Fix: Scripts Loading issue in Fancy text.
|
||||
|
||||
3.16.15 - 16-August-2017
|
||||
- Improvement: Added tag options for titles in Flipbox.
|
||||
- Improvement: iHover style addition.
|
||||
- Fix: Info List icon position in RTL should not change.
|
||||
- Fix: Fancy text slide up effect is not working in the Advanced tab.
|
||||
- Fix: Advanced carousel dot navigation color option is not working.
|
||||
- Fix: Dual button getting collapse in expandable section.
|
||||
- Fix: Carousel loading issue in tabs.
|
||||
- Fix: Interactive banner-2 title alignment issue.
|
||||
- Fix: iHover style not working in Internet Explorer.
|
||||
|
||||
3.16.14.1 - 11-August-2017
|
||||
- Fix: Element converting into text-blocks.
|
||||
|
||||
3.16.14 - 1-August-2017
|
||||
- Improvement: Added div, paragraph and span tag options with heading tags for title in modules.
|
||||
- Improvement: Interactive banner added Title tags option.
|
||||
- Improvement: iHover - added Title tags option.
|
||||
- Improvement: Compress plugin images.
|
||||
- Fix: Timeline issue with the link.
|
||||
- Fix: Info box alignment issue with icon at right with heading.
|
||||
- Fix: Dual button font size and line height option not working.
|
||||
- Fix: Hotspot RTL Compatibility.
|
||||
- Fix: Just icon tooltip text is not working.
|
||||
- Fix: Fatal error for redeclaration class in modules.
|
||||
- Fix: Advanced tabs scroll issue while click on tab.
|
||||
|
||||
3.16.13 - 18-July-2017
|
||||
- Improvement: Optimize all the plugin code.
|
||||
- Improvement: Provide filters for theme authors to disable enqueing google fonts in front end.
|
||||
- Fix: Flipbox flip not working on some of the websites.
|
||||
|
||||
3.16.12 - 4-May-2017
|
||||
- Fix: PHP Warning in font manager appearing on front end for some users.
|
||||
|
||||
3.16.11 - 29-Apr-2017
|
||||
- Improved overall security of the plugin by added sanitization wherever required, All the Ajax actions are now checked for user capabilities and nounce to harden the security.
|
||||
- Fix: Dual button not working properly for the second style.
|
||||
- Fix: WooCommere compatibility for version v3.0.4.
|
||||
|
||||
3.16.10 - 07-Apr-2017
|
||||
- Fix: Google Fonts Manager loading fonts with http instead of https in the preview.
|
||||
- Fix: Google Fonts URL returning 404 if the generated URL had duplicate '|' character.
|
||||
- Fix: JavaScript error on WooCommerce v3.0 product pages.
|
||||
- Fix: Option disable parallax on mobile not working.
|
||||
- Fix: Info list aligning besides each other instead of one below other.
|
||||
|
||||
3.16.9 - 07-Mar-2017
|
||||
- Fix: Token invalid error appearing for some users when activating the license. We apologize for the inconvenience.
|
||||
- Fix: Dual button icon images not aligned to center.
|
||||
- Fix: Dual button second button linking to the first buttons link.
|
||||
- Fix: Dual button first button background size option not working when "Design your own" option is selected.
|
||||
- Fix: Advanced Tabs causing Javascript errors on pages with anchors with # links.
|
||||
- Fix: Advanced button "rel" option not working.
|
||||
- Fix: Some users having issues with appear animations not triggering correctly when the row/element is in the viewport.
|
||||
|
||||
3.16.8 - 20-Feb-2017
|
||||
- New: Added WPML Compatibility.
|
||||
- New: Option to pause on hover and center mode in Advanced carousel
|
||||
- New: Option to open selected tab by providing tab index number.
|
||||
- New: Option for title alignment in expandable section element.
|
||||
- New: Added margin/padding options for highlight box.
|
||||
- New: Option to select Zoom control position in Google maps element.
|
||||
- New: Added Typography option for Countdown.
|
||||
- New: All new license activation method to activate license key with just one click.
|
||||
- Improvement: Added aria labels for Next/Prev buttons in Advanced Carousel.
|
||||
- Improvement: RTL Support for All the elements.
|
||||
- Improvement: Rel and Title tag for all the links in all elements.
|
||||
- Improvement: Maps - Added option to enable/disable dragging effect on the desktop.
|
||||
- Improvement: Info Box - Added option to select heading tags for the title.
|
||||
- Improvement: Modal Box - Added support for hosted videos in the modal box, Add any video with WordPress media selector and Select "Hosted video" in option What is this video about.
|
||||
- Improvement: Optimized images in the plugins package.
|
||||
- Fixed: Ultimate Addons menu not being registered in some multisite environments.
|
||||
- Fixed: JavaScript files not being loaded on pages even if shortcode was present on a page.
|
||||
- Fixed: Animation effects in advanced carousel not working.
|
||||
- Fixed: Interactive banner 2 - Multiple interactive banners opening links in new tab, each link did not open a new tab, rather loaded the page in the same new tab.
|
||||
- Fixed: Info list - List alignment set to right breaks the content alignment to enter.
|
||||
- Fixed: Disable Parallax on mobile option not working.
|
||||
- Fixed: Insufficient memory error when activating the plugin from WP-CLI.
|
||||
- Fixed: Flipbox center aligned not working on mobile devices.
|
||||
|
||||
3.16.7 - 04-Aug-2016
|
||||
- Fixed: Appear animation conflict causing pages to creash in salient theme.
|
||||
- Fixed: Flip boxes not working when added inside advanced carousel on mobile phones.
|
||||
- Fixed: Info list causing descriptions not aligned in the center of adjacent icons.
|
||||
- Fixed: Appear animation breaking for some users.
|
||||
- Updaed slick js to latest version which fixes compatibility issues in Ultimate Carousel.
|
||||
- Lots of minor bug fixes and browser compatibility fixes.
|
||||
|
||||
3.16.6
|
||||
- Fixed: Font Icons - SSL issue for $_SERVER[HTTPS] failing
|
||||
- Fixed: Icon Manager - Font zip are not showing after being uploaded
|
||||
- Fixed: Icon Manager - Filetype x-zip allowed to upload
|
||||
- Fixed: Advacned Button - Animation issue while background image applied
|
||||
- Fixed: Video backgrounds - Safari browser alignment issue
|
||||
- Improvement: Google Maps - Changed Google Map policy support to new domains with API key required - http://bsf.io/google-map-api-key
|
||||
|
||||
3.16.5
|
||||
- Fixed: PHP 5.2 fatal error for transient fallback
|
||||
|
||||
3.16.4
|
||||
- Fixed: Video Backgrounds - VC stretch row and full height conflict
|
||||
- Fixed: Hosted Video background - JS console error
|
||||
- Fixed: IB 2 - Style 11 iOS issue
|
||||
- Fixed: Image param - content pass as array instead string
|
||||
- Fixed: Hotspot - Misalignment
|
||||
- Fixed: Row Backgrounds - Image separator conflict with full height option
|
||||
- Fixed: Admin - Redux CSS conflicts with UAVC
|
||||
- Fixed: Timeline - Backend structure break due image alignment
|
||||
- Fixed: Multiple video backgrounds - Poster images not showing on mobile devices
|
||||
- Improvement - Advanced Tabs - Responsive accordion scroll to container on open tab option - http://bsf.io/lmde8
|
||||
- Improvement - Advanced Button - Inline alignment option added to display buttons inline - http://bsf.io/bvkn4
|
||||
- BSF Core v1.17 - With fallback to W3 Total Cache's deleting transients on every page reload
|
||||
@@ -0,0 +1,622 @@
|
||||
# Copyright (C) 2022 AcademyLMS
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Academy Starter Templates 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/academy-starter-templates\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-20T16:36:06+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: academy-starter-templates\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Academy Starter Templates"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://demo.academylms.net"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Demo importer plugin for academy lms."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "AcademyLMS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://academylms.net"
|
||||
msgstr ""
|
||||
|
||||
#: includes/hooks.php:183
|
||||
msgid "No relevent plugin for this demo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:38
|
||||
#: includes/library/customizer-importer.php:45
|
||||
msgid "Importing customizer settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:43
|
||||
msgid "Customizer settings import finished!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - file path
|
||||
#: includes/library/customizer-importer.php:73
|
||||
msgid "Error: The customizer import file is missing! File path: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:93
|
||||
msgid "Error: The customizer import file is not in a correct format. Please make sure to use the correct customizer import file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/customizer-importer.php:99
|
||||
msgid "Error: The customizer import file is not suitable for current theme. You can only import customizer settings for the same theme or a child theme."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/downloader.php:59
|
||||
msgid "Missing URL for downloading a file!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s and %3$s - strong HTML tags, %2$s - file URL, %4$s - br HTML tag, %5$s - error code, %6$s - error message.
|
||||
#: includes/library/downloader.php:77
|
||||
msgid "An error occurred while fetching file from: %1$s%2$s%3$s!%4$sReason: %5$s - %6$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - br HTML tag, %2$s - file path
|
||||
#: includes/library/helpers.php:196
|
||||
#: includes/library/helpers.php:239
|
||||
msgid "An error occurred while writing file to your server! Tried to write a file to: %1$s%2$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - br HTML tag, %2$s - file path
|
||||
#: includes/library/helpers.php:273
|
||||
msgid "An error occurred while reading a file from your server! Tried reading file from path: %1$s%2$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s and %2$s - strong HTML tags, %3$s - HTML link to a doc page.
|
||||
#: includes/library/helpers.php:296
|
||||
msgid "This WordPress page does not have %1$sdirect%2$s write file access. This plugin needs it in order to save the demo import xml file to the upload directory of your site. You can change this setting with these instructions: %3$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:313
|
||||
msgid "An error occurred while retrieving reading/writing permissions to your server (could not retrieve WP filesystem credentials)!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:321
|
||||
msgid "Your WordPress login credentials don't allow to use WP_Filesystem!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:361
|
||||
msgid "Academy Starter Templates - "
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - opening div and paragraph HTML tags, %2$s - closing div and paragraph HTML tags.
|
||||
#: includes/library/helpers.php:395
|
||||
msgid "%1$sYour user role isn't high enough. You don't have permission to import demo data.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:428
|
||||
msgid "No file provided."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:456
|
||||
msgid "Content file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:460
|
||||
#: includes/library/helpers.php:476
|
||||
#: includes/library/helpers.php:492
|
||||
#: includes/library/helpers.php:503
|
||||
#: includes/library/helpers.php:522
|
||||
#: includes/library/helpers.php:530
|
||||
msgid "Upload files"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:472
|
||||
msgid "Widget file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:488
|
||||
msgid "Customizer file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:501
|
||||
msgid "Missing Redux option name! Please also enter the Redux option name!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the error message.
|
||||
#: includes/library/helpers.php:518
|
||||
msgid "Redux file was not uploaded. Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:528
|
||||
msgid "The import files were successfully uploaded!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the max execution time.
|
||||
#: includes/library/helpers.php:554
|
||||
msgid "Initial max execution time = %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - new line break, %2$s - the site URL, %3$s - the file path for content import, %4$s - the file path for widgets import, %5$s - the file path for widgets import, %6$s - the file path for redux import.
|
||||
#: includes/library/helpers.php:558
|
||||
msgid "Files info:%1$sSite URL = %2$s%1$sData file = %3$s%1$sWidget file = %4$s%1$sCustomizer file = %5$s%1$sRedux files:%1$s%6$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:561
|
||||
#: includes/library/helpers.php:562
|
||||
#: includes/library/helpers.php:563
|
||||
#: includes/library/helpers.php:564
|
||||
msgid "not defined!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/helpers.php:735
|
||||
#: includes/library/helpers.php:736
|
||||
msgid "Academy Starter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/importer.php:175
|
||||
msgid "New AJAX call!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:215
|
||||
msgid "No preview image defined for this import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:216
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:217
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:218
|
||||
msgid "Yes, import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:219
|
||||
msgid "Selected demo import:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:220
|
||||
msgid "Installing..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:221
|
||||
#: includes/library/wpcli-commands.php:154
|
||||
msgid "Importing..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:222
|
||||
msgid "Successfully Imported!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:223
|
||||
msgid "Install Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:224
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:225
|
||||
msgid "Import Failed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:226
|
||||
msgid "Whoops, there was a problem importing your content."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:227
|
||||
msgid "Looks like some of the plugins failed to install. Please try again. If this issue persists, please manually install the failing plugins and come back to this step to import the theme demo data."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:228
|
||||
msgid "Invalid file type detected! Please select an XML file for the Content Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:229
|
||||
msgid "Invalid file type detected! Please select a JSON or WIE file for the Widgets Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:230
|
||||
msgid "Invalid file type detected! Please select a DAT file for the Customizer Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:231
|
||||
msgid "Invalid file type detected! Please select a JSON file for the Redux Import."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:248
|
||||
msgid "Manual import files are missing! Please select the import files and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:263
|
||||
#: includes/library/one-click-demo-import.php:308
|
||||
msgid "Manually uploaded files"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:320
|
||||
#: includes/library/one-click-demo-import.php:331
|
||||
msgid "Downloaded files"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the name of the selected import.
|
||||
#: includes/library/one-click-demo-import.php:327
|
||||
msgid "The import files for: %s were successfully downloaded!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:335
|
||||
msgid "No import files specified!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:452
|
||||
#: views/import.php:118
|
||||
msgid "Import Complete!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:453
|
||||
#: views/import.php:121
|
||||
msgid "Congrats, your demo was imported successfully. You can now begin editing your site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:454
|
||||
msgid "Successful Import"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/one-click-demo-import.php:457
|
||||
msgid "Your import completed, but some things may not have imported properly."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - link to the log file.
|
||||
#: includes/library/one-click-demo-import.php:461
|
||||
msgid "<p><a href=\"%s\" target=\"_blank\">View error log</a> for more information.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:86
|
||||
msgid "WPForms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:87
|
||||
msgid "Join 4,000,000+ professionals who build smarter forms and surveys with WPForms."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:93
|
||||
msgid "All in One SEO"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:94
|
||||
msgid "Use All in One SEO Pack to optimize your WordPress site for SEO."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:100
|
||||
msgid "MonsterInsights"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:101
|
||||
msgid "The #1 Google Analytics Plugin for WordPress that’s easy and powerful."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:107
|
||||
msgid "Custom Landing Pages by SeedProd"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:108
|
||||
msgid "Work on your site in private while visitors see a \"Coming Soon\" or \"Maintenance Mode\" page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:113
|
||||
msgid "Smash Balloon Social Photo Feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:114
|
||||
msgid "Display beautifully clean, customizable, and responsive Instagram feeds."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:119
|
||||
msgid "WP Mail SMTP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:120
|
||||
msgid "Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, Mailgun, and more."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:225
|
||||
msgid "Could not install the plugin. You don't have permission to install plugins."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:231
|
||||
msgid "Could not install the plugin. Plugin slug is missing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:236
|
||||
msgid "Plugin is already installed and activated!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:244
|
||||
msgid "Plugin was already installed! We activated it for you."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:252
|
||||
msgid "Could not install the plugin. Don't have file permission."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:292
|
||||
msgid "Plugin installed and activated succesfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/plugin-installer.php:299
|
||||
msgid "Could not install the plugin. WP Plugin installer could not retrieve plugin information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/view-helpers.php:20
|
||||
msgid "Academy Starter Templates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/view-helpers.php:22
|
||||
msgid "Questionmark icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/view-helpers.php:53
|
||||
msgid "Theme screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:41
|
||||
#: includes/library/widget-importer.php:52
|
||||
msgid "Importing widgets"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:88
|
||||
msgid "Error: Widget import file could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:118
|
||||
msgid "Error: Widget import data could not be read. Please try a different file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:156
|
||||
msgid "Sidebar does not exist in theme (moving widget to Inactive)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:177
|
||||
msgid "Site does not support widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:210
|
||||
msgid "Widget already exists"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:275
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:278
|
||||
msgid "Imported to Inactive"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:284
|
||||
msgid "No Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/widget-importer.php:331
|
||||
msgid "No results for widget import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:35
|
||||
msgid "There are no predefined demo imports for currently active theme!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:38
|
||||
msgid "Here are the predefined demo imports:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:72
|
||||
msgid "At least one of the possible options should be set! Check them with --help"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:123
|
||||
msgid "The \"predefined\" parameter should be a number (an index of the OCDI predefined demo import)!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:129
|
||||
msgid "The supplied predefined index does not exist! Please take a look at the available predefined demo imports:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:136
|
||||
msgid "Predefined demo import started! All other parameters will be ignored!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the name of the selected demo import.
|
||||
#: includes/library/wpcli-commands.php:141
|
||||
msgid "Selected predefined demo import: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:144
|
||||
msgid "Preparing the demo import files..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:149
|
||||
msgid "Demo import files could not be retrieved!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:152
|
||||
msgid "Demo import files retrieved successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:174
|
||||
msgid "Predefined import finished!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:186
|
||||
msgid "Content import file provided does not exist! Skipping this import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:195
|
||||
msgid "Importing content (this might take a while)..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:197
|
||||
msgid "Importing content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:202
|
||||
msgid "Content import finished!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:204
|
||||
msgid "There were some issues while importing the content!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:223
|
||||
msgid "Widgets import file provided does not exist! Skipping this import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:227
|
||||
msgid "Importing widgets..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:232
|
||||
msgid "Widgets imported successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:234
|
||||
msgid "There were some issues while importing widgets!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:253
|
||||
msgid "Customizer import file provided does not exist! Skipping this import!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:257
|
||||
msgid "Importing customizer settings..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:262
|
||||
msgid "Customizer settings imported successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/library/wpcli-commands.php:264
|
||||
msgid "There were some issues while importing customizer settings!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - the name of the executing action.
|
||||
#: includes/library/wpcli-commands.php:284
|
||||
msgid "Executing action: %s ..."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:28
|
||||
msgid "Before We Import Your Demo"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:30
|
||||
msgid "To ensure the best experience, installing the following plugins is strongly recommended, and in some cases required."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:43
|
||||
msgid "All required/recommended plugins are already installed. You can import your demo content."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:56
|
||||
#: views/import.php:89
|
||||
msgid "Star icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:71
|
||||
#: views/install-plugins.php:49
|
||||
msgid "Checkmark icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:73
|
||||
msgid "Lock icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:75
|
||||
#: views/install-plugins.php:50
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:85
|
||||
msgid "The plugins with %1$s are recommended by Academy Starter Templates plugin to help you grow your website. They are not required for the %2$s theme to work."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:98
|
||||
#: views/install-plugins.php:57
|
||||
msgid "Back icon"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:98
|
||||
#: views/install-plugins.php:57
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:99
|
||||
msgid "Continue & Import"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:108
|
||||
msgid "Importing Content"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:109
|
||||
msgid "Please sit tight while we import your content. Do not refresh the page or hit the back button."
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:112
|
||||
msgid "Importing animation"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:129
|
||||
msgid "Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/import.php:130
|
||||
msgid "Visit Site"
|
||||
msgstr ""
|
||||
|
||||
#: views/install-plugins.php:25
|
||||
msgid "Install Recommended Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: views/install-plugins.php:27
|
||||
msgid "Want to use the best plugins for the job? Here is the list of awesome plugins that will help you achieve your goals."
|
||||
msgstr ""
|
||||
|
||||
#: views/install-plugins.php:58
|
||||
msgid "Install & Activate"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - the opening div and paragraph HTML tags, %2$s and %3$s - strong HTML tags, %4$s - the closing div and paragraph HTML tags.
|
||||
#: views/plugin-page.php:27
|
||||
msgid "%1$sWarning: your server is using %2$sPHP safe mode%3$s. This means that you might experience server timeout errors.%4$s"
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:50
|
||||
msgid "All Demos"
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:63
|
||||
msgid "Search Demos..."
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:86
|
||||
msgid "No preview image."
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:93
|
||||
msgid "Preview Demo"
|
||||
msgstr ""
|
||||
|
||||
#: views/plugin-page.php:95
|
||||
msgid "Import Demo"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,55 @@
|
||||
# Copyright (C) 2022 Accedeme
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Accedeme for WP 0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-accedeme\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-07-03T18:09:27+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: wp-accedeme\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Accedeme for WP"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://accedeme.com/plataforma-framework/wordpress"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Añade a tu sitio WordPress una capa de accesibilidad. Permite que cualquiera pueda acceder a tu página web independientemente de sus capacidades, conocimientos y del dispositivo usado."
|
||||
msgstr "Añade a tu sitio WordPress una capa de accesibilidad. Permite que cualquiera pueda acceder a tu página web independientemente de sus capacidades, conocimientos y del dispositivo usado."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Accedeme"
|
||||
msgstr "Accedeme"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://accedeme.com/"
|
||||
msgstr "https://accedeme.com/"
|
||||
|
||||
#: admin/wp-accedeme-admin.php:27
|
||||
msgid "No tiene suficientes permisos para acceder a esta página."
|
||||
msgstr "No tiene suficientes permisos para acceder a esta página."
|
||||
|
||||
#: admin/wp-accedeme-admin.php:46
|
||||
msgid "WP Accedeme » Settings"
|
||||
msgstr "WP Accedeme » Settings"
|
||||
|
||||
#: admin/wp-accedeme-admin.php:57
|
||||
msgid "Panel de control"
|
||||
msgstr "Panel de control"
|
||||
|
||||
#: admin/wp-accedeme-admin.php:64
|
||||
msgid "Ya sólo queda registrar tu dominio en accedeme.com"
|
||||
msgstr "Ya sólo queda registrar tu dominio en accedeme.com"
|
||||
|
||||
#: admin/wp-accedeme-admin.php:68
|
||||
msgid "Registra tu dominio ahora"
|
||||
msgstr "Registra tu dominio ahora"
|
||||
@@ -0,0 +1,269 @@
|
||||
# Copyright (C) 2022 Codenroll
|
||||
# This file is distributed under the GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AccessibleWP - Skiplinks 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessiblewp-skiplinks\n"
|
||||
"POT-Creation-Date: 2022-09-10 14:07+0300\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.1.1\n"
|
||||
"X-Domain: acwp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "AccessibleWP - Skiplinks"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/accessiblewp-skiplinks/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds an accessible way to skip to page sections, as required by WCAG 2.0 for all levels."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Codenroll"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.codenroll.co.il/"
|
||||
msgstr ""
|
||||
|
||||
#: accessiblewp-skiplinks.php:96 accessiblewp-skiplinks.php:97
|
||||
#: accessiblewp-skiplinks.php:101 accessiblewp-skiplinks.php:104
|
||||
msgid "Navigate to"
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:12
|
||||
msgid "Skiplinks"
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:58
|
||||
msgid "The skiplinks allow the user to skip between page sections. In order to define unique skiplinks to this specific page, you need to set the ID of the section and a label."
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:59
|
||||
msgid "For example:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:61
|
||||
msgid "Under \"Section ID\""
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:62
|
||||
msgid "Under \"Skiplink Label\""
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:62
|
||||
msgid "Meet Our Team"
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:68
|
||||
msgid "Section ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:69
|
||||
msgid "Skiplink Label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:77
|
||||
msgid "Drag this to reorder the skiplinks"
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:82
|
||||
msgid "Drag Icon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:86 inc/meta.php:93 inc/meta.php:99
|
||||
msgid "Remove skiplink"
|
||||
msgstr ""
|
||||
|
||||
#: inc/meta.php:104
|
||||
msgid "Add another skiplink"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:22 inc/panel.php:241
|
||||
msgid "AccessibleWP Skiplinks"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:49
|
||||
msgid "Welcome to <span>AccessibleWP</span> Dashboard!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:50
|
||||
msgid "Accessibility solutions for websites based on the WordPress."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:52
|
||||
msgid "Toolbar Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:55
|
||||
msgid "Who We Are?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:55
|
||||
msgid "About The Author"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:55
|
||||
msgid "W3C Accessibility Standards Overview"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:59
|
||||
msgid "Send Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:72 inc/panel.php:248
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:75
|
||||
msgid "Activate the skiplinks"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:80
|
||||
msgid "Turn sides over"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:84
|
||||
msgid "The default state of the skiplinks is that in LTR mode they appear on the left side and in RTL mode they appear on the right side. If you check this checkbox, the skiplinks will be displayed on opposite sides."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:94
|
||||
msgid "Header link label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:97
|
||||
msgid "Header"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:98
|
||||
msgid "Set the label of your header link."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:103
|
||||
msgid "Header link ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:107
|
||||
msgid "Set the ID of your header HTML tag in a CSS format. For example:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:117
|
||||
msgid "Content link label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:120
|
||||
msgid "Page Content"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:121
|
||||
msgid "Set the label of your content link."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:126
|
||||
msgid "Content ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:130
|
||||
msgid "Set the ID of the HTML tag of your main content area in a CSS format. For example:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:140
|
||||
msgid "Footer link label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:143
|
||||
msgid "Footer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:144
|
||||
msgid "Set the label of your footer link."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:149
|
||||
msgid "Footer ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:153
|
||||
msgid "Set the ID of your footer HTML tag in a CSS format. For example:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:164 inc/panel.php:247
|
||||
msgid "How To Use?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:165
|
||||
msgid "This screen describes what the skiplinks are and how to use them."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:167
|
||||
msgid "What are skiplinks?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:168
|
||||
msgid "Skiplinks allow the user to skip between the page sections using the keyboard (usually using the TAB key). These skiplinks are not visible in the interface but are accessible via the keyboard and appear on the screen only when they are in focus mode."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:169
|
||||
msgid "How to use the skiplinks?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:170
|
||||
msgid "To activate the skiplinks properly there are several steps that need to be done"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:172
|
||||
msgid "First, activate the skiplinks to appear on the front-end by checking the checkbox on the \"Options\" screen next to the label: \"Activate the skiplinks\"."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:173
|
||||
msgid "Now the permanent sections must be defined, those that appear on all your website pages (header, footer and page content). You can set this under the \"Options\" screen. Defining the skiplinks is done by setting the ID of that section and a very short description. For example if the ID of our header is 'header' we will define the ID of the section like this: <b>header</b> (without the # at the beginning), and in the label field we can write \"Header\"."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:174
|
||||
msgid "Once the permanent sections have been defined, it is possible to define more skiplinks for each page to its own unique sections. These skiplinks will only appear on that specific page. You can do this through the meta box found on each page edit in the same way we defined the permanent skiplinks (section ID and label)."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:175
|
||||
msgid "You can check the skiplinks you created by navigating the page using the TAB button on your keyboard."
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:184 inc/panel.php:249
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:188
|
||||
msgid "Disable skiplinks animation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:193
|
||||
msgid "Disable skiplinks shadows"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:198
|
||||
msgid "Custom background color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:205
|
||||
msgid "Custom text color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:219 inc/panel.php:250
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:224
|
||||
msgid "My theme support 'wp_body_open' (recommended)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/panel.php:229
|
||||
msgid "Disable additional skiplinks from page meta"
|
||||
msgstr ""
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/acf-beautiful-flexible/change_log/CHANGELOG.md
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/acf-beautiful-flexible/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
# Changelog ##
|
||||
|
||||
## 1.0.3 - 05 Mai 2022
|
||||
* Publish on WP directory
|
||||
|
||||
## 1.0.1 - 30 Apr 2018
|
||||
* Compatibility with latest versions of ACF and WordPress.
|
||||
* Look for nested fields into repeaters and flexibles.
|
||||
|
||||
## 1.0.0
|
||||
* FIX [#10](https://github.com/BeAPI/acf-beautiful-flexible/issues/10): fix warning
|
||||
* Update readme with new requirements.
|
||||
* FEATURE [#11](https://github.com/BeAPI/acf-beautiful-flexible/issues/11): add more filetype.
|
||||
* FIX [#10](https://github.com/BeAPI/acf-beautiful-flexible/issues/10): fix warning.
|
||||
* FIX [#8](https://github.com/BeAPI/acf-beautiful-flexible/issues/8): breaking changes with ACF 5.7.0 by adding new JS.
|
||||
* Refactor way requirements are loaded by adding dedicated class.
|
||||
* [#6](https://github.com/BeAPI/acf-beautiful-flexible/issues/6): fix title display.
|
||||
* First version of the plugin.
|
||||
* Dynamically get flexible layouts.
|
||||
* Finish readme.
|
||||
* Add screenshot.
|
||||
* Add composer.json.
|
||||
* Init plugin.
|
||||
@@ -0,0 +1,116 @@
|
||||
# Copyright (C) 2022 Bili Plugins
|
||||
# This file is distributed under the same license as the ActiveCampaign Newsletter Subscription package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ActiveCampaign Newsletter Subscription 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/activecampaign-newsletter-subscription\n"
|
||||
"POT-Creation-Date: 2022-04-13 08:38:20+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: activecampaign-newsletter-subscription.php:75
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:42
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:43
|
||||
msgid "Newsletter Subscription"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:59
|
||||
msgid "Activecampaign Newsletter Subscription."
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:68
|
||||
msgid "Enter Your ActiveCampaign API URL"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:72
|
||||
msgid "https://youraccountname.api-us1.com"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:74
|
||||
msgid "Enter ActiveCapmpaign API URL Here. Don't know What's this?"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:75
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:88
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:101
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:114
|
||||
msgid "Click Here"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:81
|
||||
msgid "Enter Your ActiveCampaign API Key"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:87
|
||||
msgid "Enter ActiveCapmpaign API Key Here. Don't know What's this?"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:94
|
||||
msgid "Enter List ID"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:100
|
||||
msgid ""
|
||||
"Enter ActiveCapmpaign List ID Here, By Default Users will be added to "
|
||||
"\"Contacts\". Don't know What's this?"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:107
|
||||
msgid "Enter Custom Text"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:113
|
||||
msgid "Enter Text you Want to display on SignUp Page. Don't know What's this?"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:150
|
||||
msgid "Invalid Submission"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:173
|
||||
msgid "Settings Saved"
|
||||
msgstr ""
|
||||
|
||||
#: app/main/class-activecampaign-newsletter-subscription.php:50
|
||||
msgid "Subscribe For Newsletter"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "ActiveCampaign Newsletter Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://bhargavb.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "This Plugin Used to Add User's Email to ActiveCampaign List."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Bili Plugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://biliplugins.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,930 @@
|
||||
# Copyright (C) 2022 WP White Security
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Activity Log for Memberpress 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-memberpress\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-11-04T10:14:56+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: wsal-memberpress\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Activity Log for Memberpress"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpactivitylog.com/extensions/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A WP Activity Log plugin extension"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP White Security"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.wpwhitesecurity.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:23
|
||||
msgid "Expired"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:40
|
||||
msgid "Memberships in MemberPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:41
|
||||
msgid "Groups in MemberPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:42
|
||||
msgid "Rules in MemberPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:43
|
||||
msgid "Settings in MemberPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:44
|
||||
msgid "Roles in MemberPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:45
|
||||
msgid "Subscriptions in MemberPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:46
|
||||
msgid "Transactions in MemberPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wsal-functions.php:47
|
||||
msgid "Members in MemberPress"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:12
|
||||
msgid "Memberpress"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:13
|
||||
msgid "Memberships"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:17
|
||||
msgid "A membership was created, deleted or restored."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:18
|
||||
msgid "Membership name %name%."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:20
|
||||
#: wp-security-audit-log/custom-alerts.php:34
|
||||
#: wp-security-audit-log/custom-alerts.php:51
|
||||
msgid "Membership ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:23
|
||||
#: wp-security-audit-log/custom-alerts.php:40
|
||||
msgid "View Membership"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:31
|
||||
msgid "A membership was modified."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:32
|
||||
msgid "Membership Option was modified in %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:35
|
||||
#: wp-security-audit-log/custom-alerts.php:78
|
||||
#: wp-security-audit-log/custom-alerts.php:121
|
||||
msgid "Option name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:36
|
||||
#: wp-security-audit-log/custom-alerts.php:79
|
||||
#: wp-security-audit-log/custom-alerts.php:122
|
||||
#: wp-security-audit-log/custom-alerts.php:149
|
||||
#: wp-security-audit-log/custom-alerts.php:249
|
||||
msgid "Previous value"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:37
|
||||
#: wp-security-audit-log/custom-alerts.php:80
|
||||
#: wp-security-audit-log/custom-alerts.php:123
|
||||
#: wp-security-audit-log/custom-alerts.php:150
|
||||
#: wp-security-audit-log/custom-alerts.php:250
|
||||
msgid "New value"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:48
|
||||
msgid "A membership was permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:49
|
||||
msgid "Permanently deleted the Membership %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:60
|
||||
msgid "A group was created, deleted or restored."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:61
|
||||
msgid "Group name %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:63
|
||||
#: wp-security-audit-log/custom-alerts.php:77
|
||||
#: wp-security-audit-log/custom-alerts.php:94
|
||||
msgid "Group ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:66
|
||||
msgid "View Group"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:74
|
||||
msgid "A group option was modified."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:75
|
||||
msgid "Group Option was modified in %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:83
|
||||
msgid "View Group"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:91
|
||||
msgid "A group was permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:92
|
||||
msgid "Permanently deleted the Group %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:103
|
||||
msgid "A rule was created, deleted or restored."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:104
|
||||
msgid "Rule %name% ."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:106
|
||||
#: wp-security-audit-log/custom-alerts.php:120
|
||||
#: wp-security-audit-log/custom-alerts.php:137
|
||||
msgid "Rule ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:109
|
||||
#: wp-security-audit-log/custom-alerts.php:126
|
||||
msgid "View Rule"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:117
|
||||
msgid "A rule option was modified."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:118
|
||||
msgid "Rule Option was modified in %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:134
|
||||
msgid "A rule was permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:135
|
||||
msgid "Permanently deleted the Ruke %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:146
|
||||
msgid "A setting was modified."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:147
|
||||
msgid "Setting %setting_name% was modified."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:160
|
||||
msgid "A role was created, modified or deleted."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:161
|
||||
#: wp-security-audit-log/custom-alerts.php:175
|
||||
msgid "Role name: %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:163
|
||||
#: wp-security-audit-log/custom-alerts.php:177
|
||||
msgid "Role ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:166
|
||||
#: wp-security-audit-log/custom-alerts.php:180
|
||||
msgid "View role"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:174
|
||||
msgid "A role was modified."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:189
|
||||
msgid "A subscription was created, cancelled or deleted."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:190
|
||||
#: wp-security-audit-log/custom-alerts.php:218
|
||||
msgid "Subscription number: %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:192
|
||||
#: wp-security-audit-log/custom-alerts.php:206
|
||||
#: wp-security-audit-log/custom-alerts.php:220
|
||||
msgid "Subscription ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:195
|
||||
#: wp-security-audit-log/custom-alerts.php:209
|
||||
#: wp-security-audit-log/custom-alerts.php:223
|
||||
msgid "View Subscription"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:203
|
||||
msgid "A subscription number was modified."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:204
|
||||
msgid "Made changes to the subscription number %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:217
|
||||
msgid "A subscription was expired."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:231
|
||||
msgid "A transaction was created or deleted."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:232
|
||||
#: wp-security-audit-log/custom-alerts.php:246
|
||||
msgid "Transaction number: %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:234
|
||||
#: wp-security-audit-log/custom-alerts.php:248
|
||||
#: wp-security-audit-log/custom-alerts.php:264
|
||||
msgid "Transaction ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:237
|
||||
#: wp-security-audit-log/custom-alerts.php:253
|
||||
msgid "View Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:245
|
||||
msgid "A transaction was modified."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:261
|
||||
msgid "A member transaction was created or deleted."
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:262
|
||||
msgid "Made changes to the transaction number %name%"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:265
|
||||
msgid "Membership"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-alerts.php:268
|
||||
msgid "View Members profile page"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:436
|
||||
msgid "Membership Terms: Price"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:437
|
||||
msgid "Period"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:438
|
||||
msgid "Membership Terms: Billing interval"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:439
|
||||
msgid "Registration Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:440
|
||||
msgid "Membership Terms: Limit payment cycles"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:441
|
||||
msgid "Membership Terms: Max number of payment Cycle"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:442
|
||||
msgid "Membership Terms: Access After Last Cycle"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:443
|
||||
msgid "Cyles Limit Expires After"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:444
|
||||
msgid "Cyles Limit Expires Denominator"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:445
|
||||
msgid "Membership Terms: Trial"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:446
|
||||
msgid "Membership Terms: Trial length"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:447
|
||||
msgid "Membership Terms: Trial price"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:448
|
||||
msgid "Membership Terms: Allow Only One Trial"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:449
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:450
|
||||
msgid "Group Order"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:451
|
||||
msgid "Is Highlighted"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:452
|
||||
msgid "Pricing Title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:453
|
||||
msgid "Pricing Display"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:454
|
||||
msgid "Custom Price"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:455
|
||||
msgid "Pricing heading text"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:456
|
||||
msgid "Pricing footer text"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:457
|
||||
msgid "Pricing button text"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:458
|
||||
msgid "Pricing button position"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:459
|
||||
msgid "Pricing benefits"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:460
|
||||
msgid "Membership Pricing Terms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:461
|
||||
msgid "Custom Registration Pricing Term"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:462
|
||||
msgid "Enable custom thank you page message"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:463
|
||||
msgid "Thank you page type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:464
|
||||
msgid "Custom Thank you message"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:465
|
||||
msgid "Custom Thank you page ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:466
|
||||
msgid "Custom Login Redirect Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:467
|
||||
msgid "Custom Login Redirect URLs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:468
|
||||
msgid "Custom Login URLs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:469
|
||||
msgid "Membership Terms: Access Type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:470
|
||||
msgid "Expires After"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:471
|
||||
msgid "Expiry Unit"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:472
|
||||
msgid "Exiry Fixes"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:473
|
||||
msgid "This Membership is Tax Exempt"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:474
|
||||
msgid "Tax Class"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:475
|
||||
msgid "Allow Renewals"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:476
|
||||
msgid "Membership Access URL"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:477
|
||||
msgid "Send Membership-Specific Welcome Email to User"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:478
|
||||
msgid "Disable Address Fields"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:479
|
||||
msgid "Allow users to create multiple, active subscriptions to this membership"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:480
|
||||
msgid "Use Custom Template"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:481
|
||||
msgid "Custom Template"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:482
|
||||
msgid "Customize Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:483
|
||||
msgid "Customize User Information Fields"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:484
|
||||
msgid "Cannot Purchase Message"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:485
|
||||
msgid "Plan Code"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:486
|
||||
msgid "Use Roles for this Membership"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:487
|
||||
msgid "Membership Roles"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:488
|
||||
msgid "Who can purchase this Membership"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:489
|
||||
msgid "Custom Profile Fields"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:491
|
||||
msgid "Enable Pricing Page"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:492
|
||||
msgid "Disable Change Plan Pop-Up"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:493
|
||||
msgid "Enable Group is Upgrade Path"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:494
|
||||
msgid "Enable Reset billing period"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:495
|
||||
msgid "Group Theme"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:496
|
||||
msgid "Group Memberships"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:497
|
||||
msgid "Custom Button CSS classe"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:498
|
||||
msgid "Custom Highlighted Button CSS classe"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:499
|
||||
msgid "Custom Disabled Button CSS classe"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:500
|
||||
msgid "Group Page Style Options"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:501
|
||||
msgid "Alernative Group URL"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:502
|
||||
msgid "Enable Use Custom Page Template"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:503
|
||||
msgid "Page Template"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:504
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:525
|
||||
msgid "Unauthorised Access Message Type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:505
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:526
|
||||
msgid "Unauthorised Access Message"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:506
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:527
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:594
|
||||
msgid "Unauthorised Access Show Login"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:507
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:523
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:592
|
||||
msgid "Unauthorised Access Excerpt Type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:508
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:524
|
||||
msgid "Unauthorised Access Excerpt Length"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:510
|
||||
msgid "Rule Type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:511
|
||||
msgid "Rule Content"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:512
|
||||
msgid "Rule Rexexp"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:513
|
||||
msgid "Enable Drip"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:514
|
||||
msgid "Drip Amount"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:515
|
||||
msgid "Drip Unit"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:516
|
||||
msgid "Drip After Fixed Date"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:517
|
||||
msgid "Drip After Type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:518
|
||||
msgid "Enable Expiry"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:519
|
||||
msgid "Rule Expires Amount"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:520
|
||||
msgid "Rule Exires Unit"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:521
|
||||
msgid "Rule Expires After"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:522
|
||||
msgid "Expires After Fixed Date"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:528
|
||||
msgid "Using Autogenerated Title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:540
|
||||
msgid "Legacy integrations"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:541
|
||||
msgid "Account Page"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:542
|
||||
msgid "Login Page"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:543
|
||||
msgid "Thank You Page"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:544
|
||||
msgid "Use MemberPress login page URL"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:545
|
||||
msgid "Login Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:546
|
||||
msgid "Logout Recirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:547
|
||||
msgid "Disable Modrewrite"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:548
|
||||
msgid "Enable Card Testing Protection"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:549
|
||||
msgid "Card Testing Protection Metod"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:550
|
||||
msgid "Blocked IPs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:551
|
||||
msgid "Account CSS width"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:552
|
||||
msgid "Custom Message"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:553
|
||||
msgid "Has setup completed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:554
|
||||
msgid "Activation Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:555
|
||||
msgid "Currency Code"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:556
|
||||
msgid "Currency Symbol"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:557
|
||||
msgid "Show Currency Symbol After"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:558
|
||||
msgid "Language Code"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:559
|
||||
msgid "Integrations/Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:560
|
||||
msgid "Keep members out of the WordPress Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:561
|
||||
msgid "Enforce strong password"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:562
|
||||
msgid "Disable the standard WordPress registration form"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:563
|
||||
msgid "Disable the WordPress admin bar for members"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:564
|
||||
msgid "Pro-rate subscription prices when a member upgrades"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:565
|
||||
msgid "Disable Password Fields on membership registration forms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:566
|
||||
msgid "Enable Single Page Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:567
|
||||
msgid "Enable Single Page Checkout Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:568
|
||||
msgid "Enable Coupon Field on membership registration forms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:569
|
||||
msgid "Require Terms of Service on membership registration forms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:570
|
||||
msgid "Require Privacy Policy acceptance on membership registration forms"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:571
|
||||
msgid "Terms of Service URL"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:572
|
||||
msgid "Terms of Service Title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:573
|
||||
msgid "Privacy Policy Title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:574
|
||||
msgid "Mail Send From Name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:575
|
||||
msgid "Mail Send From Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:576
|
||||
msgid "Members must use their email address for their Username"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:577
|
||||
msgid "Extended User Information Fields: Show Name Fields"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:578
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:580
|
||||
msgid "Extended User Information Fields: Require Name Fields"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:579
|
||||
msgid "Extended User Information Fields: Show Address Fields"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:581
|
||||
msgid "Show fields to logged in users"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:582
|
||||
msgid "Address Fields"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:583
|
||||
msgid "Product Pages Slug"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:584
|
||||
msgid "Group Pages Slug"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:585
|
||||
msgid "Admin Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:586
|
||||
msgid "Unaythorsised Access Message"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:587
|
||||
msgid "Redirect on Unauthorised Access"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:588
|
||||
msgid "Unauthorised Access Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:589
|
||||
msgid "Redirect non-singular views"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:590
|
||||
msgid "Redirect Method"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:591
|
||||
msgid "Unauthorised Access Show Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:593
|
||||
msgid "Unauthorised Access Excerpt Size"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:595
|
||||
msgid "Authorise Search Engines"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:596
|
||||
msgid "Block Search Engines"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:597
|
||||
msgid "Enable Paywal"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:598
|
||||
msgid "Number of free views"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:599
|
||||
msgid "Disable Summary Email"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:600
|
||||
msgid "Disable the 1 day grace period after signup"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:601
|
||||
msgid "Grace Period"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:602
|
||||
msgid "Grace Expiry Days"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:603
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:604
|
||||
msgid "Allow Members to Cancel their own subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:605
|
||||
msgid "Disable Global Autoresponser List"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:606
|
||||
msgid "Opt In checked by default"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:607
|
||||
msgid "Use Global Styles"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:608
|
||||
msgid "Include email privacy link"
|
||||
msgstr ""
|
||||
|
||||
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:609
|
||||
msgid "Emails"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,84 @@
|
||||
# Copyright (C) 2023 AcyMailing integration for Uncanny Automator
|
||||
# This file is distributed under the same license as the AcyMailing integration for Uncanny Automator package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AcyMailing integration for Uncanny Automator 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acymailing-integration-for-uncanny-automator\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-01-11 15:43:51+00:00\n"
|
||||
"X-Domain: acymailing-integration-for-uncanny-automator\n"
|
||||
|
||||
|
||||
#: acymailing/actions/acy-add-tag.php:24
|
||||
msgid "Add a new tag for lists/campaigns {{Tag name:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-add-tag.php:25
|
||||
msgid "Add a new tag for lists/campaigns"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-remove-tag.php:23
|
||||
msgid "Remove a tag for lists/campaigns {{Tag name:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-remove-tag.php:24
|
||||
msgid "Remove a tag for lists/campaigns"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-remove-tag.php:51
|
||||
msgid "Tag name"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-save-user.php:24
|
||||
msgid "Save the AcyMailing subscriber {{Email address:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-save-user.php:25
|
||||
msgid "Save an AcyMailing {{subscriber}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-subscribe-to-list.php:24
|
||||
msgid "Subscribe a user to {{a list:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-subscribe-to-list.php:25
|
||||
msgid "Subscribe a user to {{a list}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-unsubscribe-from-list.php:24
|
||||
msgid "Unsubscribe a user from {{a list:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-unsubscribe-from-list.php:25
|
||||
msgid "Unsubscribe a user from {{a list}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-update-email.php:24
|
||||
msgid "Change the email address for a subscriber {{Email address:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-update-email.php:25
|
||||
msgid "Change the {{email address}} for a subscriber"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/triggers/acy-user-updated.php:24
|
||||
msgid "An AcyMailing subscriber is {{created or modified:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/triggers/acy-user-updated.php:25
|
||||
msgid "An AcyMailing subscriber is {{created or modified}}"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "AcyMailing integration for Uncanny Automator"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Add AcyMailing triggers and actions in Uncanny Automator"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "AcyMailing Newsletter Team"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,213 @@
|
||||
# Copyright (C) 2022 WP connect
|
||||
# This file is distributed under the same license as the Add-on CF7 for Airtable plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Add-on CF7 for Airtable 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/develop\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-04-21T12:44:14+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: wpc-wpcf7-at\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Add-on CF7 for Airtable"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Send the entries of your Contact Form 7 forms to your Airtable databases."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP connect"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpconnect.co/"
|
||||
msgstr ""
|
||||
|
||||
#: add-on-cf7-for-airtable.php:82
|
||||
msgid "The \"Contact Form 7 to Airtable\" plugin is inactive because the minimal requirements are not met."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-api-airtable.php:95
|
||||
#: includes/classes/class-api-airtable.php:106
|
||||
msgid "The Airtable API responded with an error."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:64
|
||||
#: includes/contact-form-properties.php:235
|
||||
#: includes/contact-form-properties.php:408
|
||||
msgid "Airtable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:191
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:243
|
||||
msgid "Invalid key values."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:234
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:242
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:235
|
||||
msgid "You have not been authenticated. Make sure the provided API key is correct."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:250
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: html link
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:264
|
||||
msgid "Store form submissions in Airtable table. For details, see %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:267
|
||||
#: includes/contact-form-properties.php:115
|
||||
msgid "https://wordpress.org/plugins/wpconnect-contactform7-airtable/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:268
|
||||
#: includes/contact-form-properties.php:116
|
||||
msgid "Airtable integration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:276
|
||||
msgid "Airtable is active on this site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:286
|
||||
msgid "Setup integration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:305
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:328
|
||||
msgctxt "API keys"
|
||||
msgid "Remove key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-airtable-service.php:333
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:78
|
||||
msgid "help"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: html link
|
||||
#: includes/contact-form-properties.php:113
|
||||
msgid "You can set up the Airtable integration here. For details, see %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:243
|
||||
msgid "Table lookup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:243
|
||||
msgid "Paste full Airtable table URL, it will populate the App ID and Table id fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:251
|
||||
msgid "App ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:252
|
||||
msgid "Use the Table lookup field above or visit the link below to find your App ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:262
|
||||
msgid "Table id or name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:263
|
||||
msgid "Use the Table lookup field above or visit the link below to find your Table id"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:275
|
||||
msgid "Table fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:277
|
||||
msgid "Enter an Airtable field name for each Contact Form 7 field to map them."
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:278
|
||||
msgid "Be careful, field names should be exactly the same or the form won't be saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:284
|
||||
msgid "Contact Form 7 field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:285
|
||||
msgid "Airtable field name"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: tag name
|
||||
#: includes/contact-form-properties.php:322
|
||||
msgid "%s: mapped"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: tag name
|
||||
#: includes/contact-form-properties.php:327
|
||||
msgid "The column \"%s\" looks like to be an Attachment field, it should be mapped with a Contact Form 7 file field."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: tag name
|
||||
#: includes/contact-form-properties.php:331
|
||||
msgid "The column \"%s\" looks like to be a Multiple Select field, it should be mapped with a Contact Form 7 select, checkbox or radio field."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: tag name
|
||||
#: includes/contact-form-properties.php:335
|
||||
msgid "The column \"%s\" looks like to be a Multiple Select field, the options should match the ones you have on Airtable."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: tag name
|
||||
#: includes/contact-form-properties.php:339
|
||||
msgid "The column \"%s\" looks like to be an URL field, it should be mapped with a Contact Form 7 URL field."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: tag name
|
||||
#: includes/contact-form-properties.php:343
|
||||
msgid "The column \"%s\" looks like to be a date field, it should be mapped with a Contact Form 7 date field."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: tag name
|
||||
#: includes/contact-form-properties.php:347
|
||||
msgid "The column \"%s\" looks like to be a number field, it should be mapped with a Contact Form 7 number or range field."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: tag name
|
||||
#: includes/contact-form-properties.php:351
|
||||
msgid "The column \"%s\" looks like to be an email field, it should be mapped with a Contact Form 7 email field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:394
|
||||
msgid "The Airtable's field name below is not mapped yet:"
|
||||
msgid_plural "The Airtable's fields name below are not mapped yet:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/entry.php:78
|
||||
#: includes/fields.php:254
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/entry.php:98
|
||||
msgid "Sorry, your form data can't be saved, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: consent checkbox text
|
||||
#: includes/entry.php:102
|
||||
msgid "Sorry, your form data can't be saved, please try again later or uncheck \"%s\"."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,185 @@
|
||||
# Copyright (C) 2022 WP connect
|
||||
# This file is distributed under the same license as the Add-on CF7 for Notion plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Add-on CF7 for Notion 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/develop\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-04-06T09:33:44+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: wpc-wpcf7-ntn\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Add-on CF7 for Notion"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Send the entries of your Contact Form 7 forms to your Notion databases."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP connect"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpconnect.co/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-api-notion.php:86
|
||||
msgid "The Notion API responded with an error."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:64
|
||||
#: includes/contact-form-properties.php:191
|
||||
#: includes/contact-form-properties.php:413
|
||||
msgid "Notion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:237
|
||||
#: includes/classes/class-wpcf7-notion-service.php:245
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:238
|
||||
msgid "You have not been authenticated. Make sure the provided API key is correct."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:246
|
||||
msgid "Invalid key values."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:253
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: html link
|
||||
#: includes/classes/class-wpcf7-notion-service.php:267
|
||||
msgid "Store form submissions in Notion database. For details, see %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:270
|
||||
#: includes/contact-form-properties.php:112
|
||||
msgid "https://wordpress.org/plugins/wpconnect-contactform7-notion/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:271
|
||||
#: includes/contact-form-properties.php:113
|
||||
msgid "Notion integration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:279
|
||||
msgid "Notion is active on this site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:289
|
||||
msgid "Setup integration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:308
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:331
|
||||
msgctxt "API keys"
|
||||
msgid "Remove key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/class-wpcf7-notion-service.php:336
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: html link
|
||||
#: includes/contact-form-properties.php:110
|
||||
msgid "You can set up the Notion integration here. For details, see %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:202
|
||||
msgid "Databases"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:211
|
||||
msgid "Databases lists"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:220
|
||||
msgid "Add form submissions to your database"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:237
|
||||
msgid "Select the database to which form submissions are added:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:269
|
||||
msgid "You have no database yet."
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:282
|
||||
msgid "Database fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:284
|
||||
msgid "Select a Notion field name for each Contact Form 7 field to map them."
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:285
|
||||
msgid "You can only select compatible fields (e.g. a Contact Form 7 url field with a Notion url or text field)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:291
|
||||
msgid "Contact Form 7 field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:292
|
||||
msgid "Notion Database column"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: tag name
|
||||
#: includes/contact-form-properties.php:335
|
||||
msgid "%s: mapped"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: tag name
|
||||
#: includes/contact-form-properties.php:341
|
||||
msgid "%s: error"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:344
|
||||
msgid "The mapped column does not exist or its type is not supported"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: WPCF7 tag type
|
||||
#: includes/contact-form-properties.php:347
|
||||
msgid "The column is not supported by the tag type \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:370
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: includes/contact-form-properties.php:399
|
||||
msgid "The Notion's column below is not mapped yet:"
|
||||
msgid_plural "The Notion's columns below are not mapped yet:"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/entry.php:76
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/entry.php:94
|
||||
msgid "Sorry, your form data can't be saved, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: consent checkbox text
|
||||
#: includes/entry.php:98
|
||||
msgid "Sorry, your form data can't be saved, please try again later or uncheck \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: wpconnect-contactform7-notion.php:82
|
||||
msgid "The \"Contact Form 7 to Notion\" plugin is inactive because the minimal requirements are not met."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,915 @@
|
||||
# Copyright (C) 2023 Bytes Technolab
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Add Product Frontend for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bytes-add-product-frontend-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-01-02T01:36:43+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: bytes_product_frontend\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Add Product Frontend for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://plugins.demo1.bytestechnolab.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allow users to add products from a frontend page, edit and delete it.Users can see list of products in my account page.Admin will needs to configure mail by using WP Mail SMTP plugin or any other plugin in order to get notified when user add new product to site."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Bytes Technolab"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.bytestechnolab.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bytes-add-product-frontend-for-woocommerce-admin.php:42
|
||||
#: admin/partials/plugin-bytes-product-list.php:29
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:12
|
||||
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:12
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bytes-add-product-frontend-for-woocommerce-admin.php:136
|
||||
msgid "Product Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:25
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:8
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:25
|
||||
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:8
|
||||
msgid "Add Product Frontend"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:28
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:11
|
||||
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:11
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:30
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:13
|
||||
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:13
|
||||
msgid "Product List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:54
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:101
|
||||
msgid "Sr. No."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:55
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:102
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:56
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:103
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:58
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:20
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:105
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:60
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:107
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:61
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:109
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:79
|
||||
#: admin/partials/plugin-bytes-product-list.php:82
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:132
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:135
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:80
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:133
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:113
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:138
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:121
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:92
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:144
|
||||
msgid "No products found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:26
|
||||
msgid "Using frontend pages insert your product."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:34
|
||||
msgid "All ready to go!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:36
|
||||
msgid "Goto Menus"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:5
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:11
|
||||
msgid "Short Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:17
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:10
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:10
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:23
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-gallery.php:10
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-gallery.php:10
|
||||
msgid "Product gallery"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:29
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:35
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:41
|
||||
msgid "Regular Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:47
|
||||
msgid "Sale Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:53
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:207
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:186
|
||||
msgid "SKU"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:59
|
||||
msgid "Manage stock"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:65
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:262
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:236
|
||||
msgid "Stock status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:71
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:280
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:253
|
||||
msgid "Sold individually"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:77
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:297
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:270
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:83
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:306
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:279
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:89
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:46
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:46
|
||||
msgid "Linked Products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:95
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:51
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:51
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:101
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:411
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:378
|
||||
msgid "Purchase note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:107
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:425
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:392
|
||||
msgid "Menu order"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:113
|
||||
msgid "Enable reviews"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-product-status.php:6
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-product-status.php:7
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:4
|
||||
msgid "Select user role which can create or edit product"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:8
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:14
|
||||
msgid "Editor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:26
|
||||
msgid "Contributor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:32
|
||||
msgid "Subscriber"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:38
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:44
|
||||
msgid "Shop Manager"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:28
|
||||
msgid "Quick Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:29
|
||||
msgid "If you would be kind enough, please tell us why you're deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:30
|
||||
msgid "Please tell us which plugin?"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:31
|
||||
msgid "Please tell us the reason so we can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:32
|
||||
msgid "Do not send my e-mail address with this feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:34
|
||||
msgid "Please give us any feedback that could help us improve"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:36
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:37
|
||||
msgid "Skip & Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:38
|
||||
msgid "Submit & Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:39
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:40
|
||||
msgid "Thank you!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:49
|
||||
msgid "The plugin suddenly stopped working"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:50
|
||||
msgid "The plugin broke my site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:51
|
||||
msgid "I don't need this plugin any more"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:52
|
||||
msgid "I found a better plugin"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:53
|
||||
msgid "It's a temporary deactivation, I'm troubleshooting"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:54
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:53
|
||||
msgctxt "enhanced select"
|
||||
msgid "No matches found"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:54
|
||||
msgctxt "enhanced select"
|
||||
msgid "Loading failed"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:55
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please enter 1 or more characters"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:56
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please enter %qty% or more characters"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:57
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please delete 1 character"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:58
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please delete %qty% characters"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:59
|
||||
msgctxt "enhanced select"
|
||||
msgid "You can only select 1 item"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:60
|
||||
msgctxt "enhanced select"
|
||||
msgid "You can only select %qty% items"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:61
|
||||
msgctxt "enhanced select"
|
||||
msgid "Loading more results…"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:62
|
||||
msgctxt "enhanced select"
|
||||
msgid "Searching…"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:27
|
||||
#: public/inc/bytes-product-attributes.php:171
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:41
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:28
|
||||
#: public/inc/bytes-product-attributes.php:172
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:42
|
||||
msgid "Click to toggle"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:29
|
||||
#: public/inc/bytes-product-attributes.php:173
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:43
|
||||
msgid "Drag and drop to set admin attribute order"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:37
|
||||
#: public/inc/bytes-product-attributes.php:181
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:51
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:95
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:95
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:47
|
||||
#: public/inc/bytes-product-attributes.php:191
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:63
|
||||
msgid "Value(s)"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:56
|
||||
#: public/inc/bytes-product-attributes.php:200
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:72
|
||||
msgid "Select terms"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:72
|
||||
#: public/inc/bytes-product-attributes.php:216
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:88
|
||||
msgid "Select all"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:73
|
||||
#: public/inc/bytes-product-attributes.php:217
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:89
|
||||
msgid "Select none"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:74
|
||||
#: public/inc/bytes-product-attributes.php:218
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:90
|
||||
msgid "Add new"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: APFFW_SIGN
|
||||
#: public/inc/bytes-product-attributes.php:82
|
||||
#: public/inc/bytes-product-attributes.php:226
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:96
|
||||
msgid "Enter some text, or some attributes by \"%s\" separating values."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:90
|
||||
#: public/inc/bytes-product-attributes.php:234
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:104
|
||||
msgid "Visible on the product page"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:96
|
||||
#: public/inc/bytes-product-attributes.php:240
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:110
|
||||
msgid "Used for variations"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:95
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:108
|
||||
msgid "Product Link"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:128
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:107
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:121
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:73
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:124
|
||||
msgid "Your product has been updated correctly!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:126
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:78
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:132
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:84
|
||||
msgid "Error!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:137
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:89
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:124
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:30
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:150
|
||||
msgid "You are not allow to update product!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:159
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:111
|
||||
msgid "You must be logged in to view this content!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:59
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:76
|
||||
msgid "Your product has been added correctly!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:102
|
||||
msgid "You are not allow to add product!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-categories.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-categories.php:7
|
||||
msgid "Product categories"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-excerpt.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-excerpt.php:7
|
||||
msgid "Short product description"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:124
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:30
|
||||
msgid "Expand"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:10
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:10
|
||||
msgid "Custom product attribute"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:24
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-tags.php:21
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:24
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-tags.php:21
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:126
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:32
|
||||
msgid "Save attributes"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-gallery.php:28
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-gallery.php:21
|
||||
msgid "Add product gallery images"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:15
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:15
|
||||
msgid "Click the image to edit or update"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:18
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:18
|
||||
msgid "Set product image"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:19
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:19
|
||||
msgid "Remove product image"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:8
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:8
|
||||
msgid "Product Data"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:11
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:11
|
||||
msgid "Simple product"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:12
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:12
|
||||
msgid "Grouped product"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:13
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:13
|
||||
msgid "External/Affiliate product"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:17
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:17
|
||||
msgid "Virtual products are intangible and are not shipped."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:18
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:18
|
||||
msgid "Virtual"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:22
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:22
|
||||
msgid "Downloadable products give access to a file upon purchase."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:23
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:23
|
||||
msgid "Downloadable"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:34
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:34
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:38
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:38
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:42
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:42
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:56
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:56
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:64
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:64
|
||||
msgid "Product URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:66
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:66
|
||||
msgid "Enter the external URL to the product."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:69
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:69
|
||||
msgid "Button text"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:71
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:71
|
||||
msgid "This text will be shown on the button linking to the external product."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:77
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:77
|
||||
msgid "Regular price"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:83
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:83
|
||||
msgid "Sale price"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:95
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:95
|
||||
msgid "This is the name of the download shown to the customer."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:96
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:96
|
||||
msgid "File URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:96
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:96
|
||||
msgid "This is the URL or absolute path to the file which customers will get access to. URLs entered here should already be encoded."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:108
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:133
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:116
|
||||
msgid "File name"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:111
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:136
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:119
|
||||
msgid "http://"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:112
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:137
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:120
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:112
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:137
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:120
|
||||
msgid "Insert file URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:143
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:125
|
||||
msgid "Add File"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:150
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:132
|
||||
msgid "Download limit"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:152
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:134
|
||||
msgid "Leave blank for unlimited re-downloads."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:156
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:138
|
||||
msgid "Download expiry"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:158
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:140
|
||||
msgid "Enter the number of days before a download link expires, or leave blank."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:165
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:148
|
||||
msgid "Define whether or not the entire product is taxable, or just the cost of shipping it."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:166
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:149
|
||||
msgid "Choose a tax class for this product. Tax classes are used to apply different tax rates specific to certain types of product."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:172
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:152
|
||||
msgid "Tax status"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:174
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:154
|
||||
msgid "Taxable"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:175
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:155
|
||||
msgid "Shipping only"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:176
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:156
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:183
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:163
|
||||
msgid "Tax class"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:203
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:182
|
||||
msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:204
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:183
|
||||
msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:216
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:195
|
||||
msgid "Manage stock?"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:222
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:201
|
||||
msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:223
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:202
|
||||
msgid "If managing stock, this controls whether or not back-orders are allowed. If enabled, stock quantity can go below 0."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:224
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:203
|
||||
msgid "When product stock reaches this amount you will be notified by email."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:227
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:206
|
||||
msgid "Stock quantity"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:239
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:213
|
||||
msgid "Allow back-orders?"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:241
|
||||
msgid "Do not allow"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:242
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:216
|
||||
msgid "Allow, but notify customer"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:243
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:217
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:250
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:224
|
||||
msgid "Low stock threshold"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:282
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:255
|
||||
msgid "Enable this to only allow one of this item to be bought in a single order"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:293
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:266
|
||||
msgid "Weight in decimal form."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:294
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:267
|
||||
msgid "LxWxH in decimal form."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:322
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:295
|
||||
msgid "Shipping classes are used by certain shipping methods to group similar products."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:324
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:297
|
||||
msgid "Product shipping class"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:326
|
||||
msgid "No shipping class"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:345
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:317
|
||||
msgid "This lets you choose which products are part of this group."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:346
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:318
|
||||
msgid "Upsells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:347
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:319
|
||||
msgid "Cross-sells are products which you promote in the cart, based on the current product."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:350
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:322
|
||||
msgid "Grouped products"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:365
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:336
|
||||
msgid "Upsells"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:380
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:350
|
||||
msgid "Cross-sells"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:408
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:375
|
||||
msgid "Enter an optional note to send the customer after purchase."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:422
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:389
|
||||
msgid "Custom ordering position."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:436
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:403
|
||||
msgid "Reviews allowed"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-tags.php:10
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-tags.php:10
|
||||
msgid "Product tags"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-tags.php:22
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-tags.php:22
|
||||
msgid "Separate tags with commas"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-title.php:5
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-title.php:5
|
||||
msgid "Product name"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:215
|
||||
msgid "Do not allowed"
|
||||
msgstr ""
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/additional-block-styles/change_log/changelog.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/additional-block-styles/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Additional Block Styles Changelog
|
||||
|
||||
## 1.0.0, 20220330
|
||||
|
||||
- Initial release.
|
||||
@@ -0,0 +1,220 @@
|
||||
# Copyright (C) 2022 WP connect
|
||||
# This file is distributed under the same license as the Add-on Sendinblue for Gravity Forms Free plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Add-on Sendinblue for Gravity Forms Free 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/develop\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-08-29T06:13:25+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: addon-gravityforms-sendinblue-free\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Add-on Sendinblue for Gravity Forms Free"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpconnect.co"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Create Sendinblue contacts directly from your Gravity Forms forms."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP connect"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpconnect.co/"
|
||||
msgstr ""
|
||||
|
||||
#: addon-gravityforms-sendinblue-free.php:80
|
||||
msgid "The \"Gravity Forms Sendinblue Add-on\" plugin is inactive because the minimal requirements are not met."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/api-sendinblue.php:82
|
||||
msgid "The Sendinblue API returned an error."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:110
|
||||
msgid "Sendinblue Add-On Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:114
|
||||
msgid "License Activation"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: Sendinblue account API URL
|
||||
#: includes/classes/gf-addon.php:120
|
||||
msgid "Visit the <a href=\"%1$s\" target=\"_blank\">\"Settings > SMTP & API\"</a> page in your Sendinblue account to generate an API key."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:121
|
||||
msgid "Sendinblue API Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:143
|
||||
msgid "License Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:209
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:210
|
||||
msgid "List(s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:211
|
||||
msgid "Condition(s)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: Gravity Form Sendinblue settings page URL
|
||||
#: includes/classes/gf-addon.php:247
|
||||
msgid "Please visit the <a href=\"%1$s\">plugin settings page</a> and enter a valid Sendinblue API key."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:254
|
||||
msgid "API key missing or invalid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:285
|
||||
#: includes/classes/gf-addon.php:413
|
||||
msgid "(Pro version)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:299
|
||||
msgid "E-mail address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:307
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:312
|
||||
msgid "Feed name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:316
|
||||
msgid "Enter a feed name to uniquely identify it."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:321
|
||||
msgid "Fields mapping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:322
|
||||
msgid "Add and select the Sendinblue attributes for which to send data, then choose the form fields that match."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:326
|
||||
msgid "Form fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:328
|
||||
msgid "Sendinblue attributes"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s Pro version link
|
||||
#: includes/classes/gf-addon.php:340
|
||||
msgid "Free version only includes E-mail and Consent fields (\"OPT_IN\" boolean in Sendinblue), while the %1$s is unlimited."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:344
|
||||
#: includes/classes/gf-addon.php:396
|
||||
msgid "Pro version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:357
|
||||
msgid "Add to list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:358
|
||||
msgid "All your Sendinblue lists are displayed below. You can choose which one(s) to save each new contact to."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:364
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s Pro version link
|
||||
#: includes/classes/gf-addon.php:392
|
||||
msgid "Free version only allows you to select one list at a time, while the %1$s is unlimited."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:408
|
||||
msgid "Double opt-in (Pro version)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:413
|
||||
msgid "Enable double opt-in"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:417
|
||||
msgid "By enabling this, Sendinblue will send a confirmation email to the user before adding them to your list(s)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:425
|
||||
msgid "Integration with Sendinblue"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:431
|
||||
msgid "Conditional logic"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:438
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:439
|
||||
msgid "Enable conditional processing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/gf-addon.php:440
|
||||
msgid "Create a contact in Sendinblue only if"
|
||||
msgstr ""
|
||||
|
||||
#: includes/hooks.php:86
|
||||
msgid "No e-mail address found in form values."
|
||||
msgstr ""
|
||||
|
||||
#: includes/hooks.php:111
|
||||
msgid "Sendinblue"
|
||||
msgstr ""
|
||||
|
||||
#: includes/hooks.php:134
|
||||
#: includes/hooks.php:182
|
||||
msgid "No data."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$d: Feed id
|
||||
#: includes/hooks.php:143
|
||||
msgid "Feed #%1$d"
|
||||
msgstr ""
|
||||
|
||||
#: includes/hooks.php:151
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$d: Feed entry id
|
||||
#: includes/hooks.php:162
|
||||
msgid "New contact created (ID #%1$d)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/hooks.php:167
|
||||
msgid "New contact created."
|
||||
msgstr ""
|
||||
|
||||
#: includes/hooks.php:176
|
||||
msgid "Existing contact updated."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/admin.js:34
|
||||
msgid "Upgrade to Pro version"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,293 @@
|
||||
# Copyright (C) 2022
|
||||
# This file is distributed under the same license as the Stripe With Contact Form 7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Stripe With Contact Form 7 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/stripe-with-contact-form-7\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-07-07T08:07:03+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: stripe-with-contact-form-7\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Stripe With Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin allows create Addon Paypal With Contact Form 7 plugin."
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:25
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:31
|
||||
msgid "Use Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:34
|
||||
msgid "enabled_use_stripe"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:40
|
||||
msgid "Customer Email"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:43
|
||||
msgid "stripe_customer_email"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:48
|
||||
msgid "Payment Gateway"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:51
|
||||
msgid "- Use this custom tag to add payment method option to your form."
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:56
|
||||
msgid "Item Description"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:59
|
||||
msgid "stripe_item_description"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:64
|
||||
msgid "Item ID / SKU"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:67
|
||||
msgid "stripe_item_id_sku"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:72
|
||||
msgid "Custom Amount"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:82
|
||||
msgid "Custom Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:86
|
||||
msgid "quantity"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:92
|
||||
msgid "Stripe Settings"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:99
|
||||
#: main/backend/cfyspay-cf7-panel.php:102
|
||||
msgid "Use Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:107
|
||||
msgid "Pay with Stripe Label"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:115
|
||||
msgid "Live Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:123
|
||||
msgid "Live Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:131
|
||||
msgid "Test Publishable Key"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:139
|
||||
msgid "Test Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:147
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:153
|
||||
msgid "Australian dollar (AUD)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:156
|
||||
msgid "Brazilian real (BRL)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:159
|
||||
msgid "British pound (GBP)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:162
|
||||
msgid "Canadian dollar (CAD)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:165
|
||||
msgid "Czech koruna (CZK)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:168
|
||||
msgid "Danish krone (DKK)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:171
|
||||
msgid "Euro (EUR)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:174
|
||||
msgid "Hong kong Dollar (HKD)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:177
|
||||
msgid "Hungarian forint (HUF)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:180
|
||||
msgid "Israeli new shekel (ILS)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:183
|
||||
msgid "Japanese yen (JPY)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:186
|
||||
msgid "Malaysian Ringgit (MYR)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:189
|
||||
msgid "Mexican peso (MXN)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:192
|
||||
msgid "New Taiwan dollar (TWD)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:195
|
||||
msgid "New Zealand dollar (NZD)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:198
|
||||
msgid " Norwegian krone (NOK)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:201
|
||||
msgid "Philippine peso (PHP)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:204
|
||||
msgid "Polish złoty (PLN)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:207
|
||||
msgid "Russian ruble (RUB)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:210
|
||||
msgid "Singapore dollar (SGD)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:213
|
||||
msgid "Swedish krona (SEK)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:216
|
||||
msgid "Swiss franc (CHF)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:219
|
||||
msgid "Thai baht (THB)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:222
|
||||
msgid "Turkish Lira (TRY)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:225
|
||||
msgid "U.S dollar (USD)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:232
|
||||
msgid "Success Return URL"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:240
|
||||
msgid "Default Text:"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:246
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:254
|
||||
msgid "Card Code (CSV)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:262
|
||||
msgid "Expiration (MM/YY)"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:270
|
||||
msgid "Billing Zip / Postal Code"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:278
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:286
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:295
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:303
|
||||
msgid "Payment Successful"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:311
|
||||
msgid "Payment Failed"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:319
|
||||
msgid "Processing Payment"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:327
|
||||
msgid "Currency Symbol"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:339
|
||||
#: main/backend/cfyspay-cf7-panel.php:434
|
||||
msgid "Note:"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:339
|
||||
msgid " When using Custom Amount and Custom Quantity dynamic values defined below will be ignored, means either use Custom Amount and Custom Quantity for single static product or use multiple products adding details below."
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:434
|
||||
msgid " If you want to use radio buttons or select dropdown in form, you can use"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:434
|
||||
msgid "[radio price \"item1-$10--10\" \"item2-$20--20\"], in this example item1-$10 will be your label and 10 will be value of radio button elements. simply seperate label and value with"
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:434
|
||||
msgid "\"--\""
|
||||
msgstr ""
|
||||
|
||||
#: main/backend/cfyspay-cf7-panel.php:434
|
||||
msgid " seperator. If Empty custom amount field and custom Quantity field then this multiple field working."
|
||||
msgstr ""
|
||||
|
||||
#: main/resources/cfyspay-installation-require.php:14
|
||||
msgid " Stripe conatct form 7 plugin is deactivated because it require <a href=\"plugin-install.php?tab=search&s=contact+form+7\">Contact Form 7</a> plugin installed and activated."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,59 @@
|
||||
# Copyright (C) 2023 DevPress
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Address Autocomplete Google Places 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/address-autocomplete-google-places\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-03-10T20:47:35+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: address-autocomplete-google-places\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Address Autocomplete Google Places"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/devpress/address-autocomplete-google-places"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Enables address autocomplete with Google Places API for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "DevPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://devpress.com"
|
||||
msgstr ""
|
||||
|
||||
#: address-autocomplete.php:119
|
||||
msgid "Address Autocomplete requires at least WooCommerce v%1$s in order to function."
|
||||
msgstr ""
|
||||
|
||||
#: address-autocomplete.php:133
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-settings.php:14
|
||||
msgid "Address Autocomplete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-settings.php:15
|
||||
msgid "An integration with Google Places API for address autocomplete on checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-settings.php:32
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-settings.php:35
|
||||
msgid "Generate a <a href=\"%s\" target=\"_blank\">Google Places API Key</a>."
|
||||
msgstr ""
|
||||
35
spec/fixtures/dynamic_finders/plugin_version/admin-color-schemes/composer_file/package.json
vendored
Normal file
35
spec/fixtures/dynamic_finders/plugin_version/admin-color-schemes/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Admin-Color-Schemes",
|
||||
"slug": "admin-color-schemes",
|
||||
"description": "WordPress dashboard color schemes",
|
||||
"version": "3.0.0",
|
||||
"devDependencies": {
|
||||
"@wordpress/env": "4.2.0",
|
||||
"@wordpress/stylelint-config": "19.1.0",
|
||||
"gulp": "4.0.2",
|
||||
"gulp-concat": "2.6.1",
|
||||
"gulp-csso": "4.0.1",
|
||||
"gulp-dart-sass": "1.0.2",
|
||||
"gulp-rename": "2.0.0",
|
||||
"gulp-rtlcss": "1.4.2",
|
||||
"stylelint": "13.13.1"
|
||||
},
|
||||
"stylelint": {
|
||||
"extends": [
|
||||
"@wordpress/stylelint-config/scss"
|
||||
],
|
||||
"rules": {
|
||||
"no-descending-specificity": null
|
||||
},
|
||||
"ignoreFiles": [
|
||||
"_*.scss",
|
||||
"editor.css"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"wp-env": "wp-env",
|
||||
"start": "gulp",
|
||||
"build": "gulp build",
|
||||
"lint": "stylelint */*.scss"
|
||||
}
|
||||
}
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/admin-help-docs/change_log/changelog.txt
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/admin-help-docs/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
== changelog.txt ==
|
||||
= 1.0.5 =
|
||||
* Added video to readme
|
||||
* When resetting settings, added a notice instead of attempting to refresh
|
||||
|
||||
= 1.0.4 =
|
||||
* Fixed nested ordered lists on main documentation page to show proper list types
|
||||
* Added settings link, website link, and discord support link to plugins list page
|
||||
* Other minor fixes
|
||||
|
||||
= 1.0.3 =
|
||||
* Minor fixes
|
||||
|
||||
= 1.0.2 =
|
||||
* Added feedback form to About tab
|
||||
|
||||
= 1.0.1 =
|
||||
* Initial release January 23, 2023
|
||||
|
||||
= 1.0.0 =
|
||||
* Created this plugin on November 14, 2022
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2022 CodeRockz
|
||||
# This file is distributed under the same license as the Advance Cash On Delivery For WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advance Cash On Delivery For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/coderockz-wc-advance-cod-free\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-03-25T16:59:24+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: coderockz-wc-advance-cod-free\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Advance Cash On Delivery For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://coderockz.com/downloads/woocommerce-advance-cash-on-delivery/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This is a short description of what the plugin does. It's displayed in the WordPress admin area."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "CodeRockz"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://coderockz.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,84 @@
|
||||
# Copyright (C) 2022 bPlugins LLC
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advance Custom HTML 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/advance-custom-html\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-11-10T04:43:37+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: custom-html\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Advance Custom HTML"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "An advance html code editor which enable you to code professionally. It provides different skins, denting, correction and more."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://bplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:6
|
||||
#: dist/editor.js:29251
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:6
|
||||
#: dist/editor.js:29252
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:6
|
||||
#: dist/editor.js:29408
|
||||
#: dist/editor.js:29409
|
||||
#: dist/editor.js:29411
|
||||
#: dist/editor.js:29414
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:6
|
||||
#: dist/editor.js:29412
|
||||
msgid "HTML"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:6
|
||||
#: dist/editor.js:29415
|
||||
msgid "HTML with Preview"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "Advance Custom HTML"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "Write code like editor."
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "custom html"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "code"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "html"
|
||||
msgstr ""
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/advanced-quiz/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/advanced-quiz/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
= 1.0.0 =
|
||||
* WordPress 5.9 and PHP 8.0 ready
|
||||
|
||||
|
||||
47
spec/fixtures/dynamic_finders/plugin_version/agnoplay/translation_file/languages/nl.po
vendored
Normal file
47
spec/fixtures/dynamic_finders/plugin_version/agnoplay/translation_file/languages/nl.po
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: agnoplay wordpress v1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <info@agnoplay.com>\n"
|
||||
"POT-Creation-Date: 2021-08-04 11:36+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Egeniq <info@agnoplay.com>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: agnoplay-wordpress.php:98 agnoplay-wordpress.php:99
|
||||
#: agnoplay-wordpress.php:167
|
||||
msgid "Agnoplay settings"
|
||||
msgstr "Agnoplay instellingen"
|
||||
|
||||
#: agnoplay-wordpress.php:120
|
||||
msgid "Videoplayer brand ID"
|
||||
msgstr "Videospeler merk ID"
|
||||
|
||||
#: agnoplay-wordpress.php:128
|
||||
msgid "Liveplayer brand ID"
|
||||
msgstr "Livespeler merk ID"
|
||||
|
||||
#: agnoplay-wordpress.php:136
|
||||
msgid "Audioplayer brand ID"
|
||||
msgstr "Audiospeler merk ID"
|
||||
|
||||
#: agnoplay-wordpress.php:160
|
||||
msgid ""
|
||||
"Enter the brand ID of your players, including the equivalent license keys. "
|
||||
"Please contact Agnoplay for the correct values"
|
||||
msgstr ""
|
||||
"Voer het merk ID van uw spelers in, inclusief de bijbehorende "
|
||||
"licentiesleutels. Neem contact op met Agnoplay voor de correcte waarden"
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/ahime-image-printer/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/ahime-image-printer/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 1.0.0 =
|
||||
* 05 February 2023
|
||||
* Initial release version
|
||||
31
spec/fixtures/dynamic_finders/plugin_version/ai-bot/translation_file/languages/ai-bot.pot
vendored
Normal file
31
spec/fixtures/dynamic_finders/plugin_version/ai-bot/translation_file/languages/ai-bot.pot
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
# Copyright (C) 2023 wpaibot.com
|
||||
# This file is distributed under the GPL-2.0+ or Artistic License 2.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AI Bot 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aibot\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-02-27T18:57:26+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: aibot\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "AI Bot"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Create engaging content with our WordPress AI writer. Our AI writer can help you create content for your WordPress site in seconds."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "wpaibot.com"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpaibot.com"
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/ai-co-pilot-for-wp/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/ai-co-pilot-for-wp/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.1 - 29 May 2023 =
|
||||
* Fix: Some minor issues
|
||||
@@ -0,0 +1,257 @@
|
||||
# Copyright (C) 2023 FirstMedia Solutions GmbH
|
||||
# This file is distributed under the same license as the aiflow plugin.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2023-03-07T08:00:38+00:00\n"
|
||||
"Project-Id-Version: aiflow 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/firstmedia-ai-text\n"
|
||||
"X-Domain: firstmedia-ai-text\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: backend/admin-menu.php:8
|
||||
msgid "aiflow"
|
||||
msgstr "aiflow"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.firstmedia.swiss/angebot/webentwicklung-e-commerce-webhosting/"
|
||||
msgstr "https://www.firstmedia.swiss/angebot/webentwicklung-e-commerce-webhosting/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allows you to generate Product Descriptions with AI."
|
||||
msgstr "Le permite generar Descripciones de Productos con IA."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "FirstMedia Solutions GmbH"
|
||||
msgstr "FirstMedia Solutions GmbH"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.firstmedia.swiss"
|
||||
msgstr "https://www.firstmedia.swiss"
|
||||
|
||||
#: backend/admin-menu.php:7
|
||||
#: backend/views/view-options.php:6
|
||||
msgid "aiflow Settings"
|
||||
msgstr "Ajustes aiflow"
|
||||
|
||||
#: backend/admin-menu.php:69
|
||||
msgid "Settings"
|
||||
msgstr "Ajustes"
|
||||
|
||||
#: backend/views/view-options.php:14
|
||||
msgid "An error occured checking your session status. Please connect again."
|
||||
msgstr "Se ha producido un error al comprobar el estado de su sesión. Por favor, conéctese de nuevo."
|
||||
|
||||
#: backend/views/view-options.php:15
|
||||
msgid "You are not signed in."
|
||||
msgstr "No has iniciado sesión."
|
||||
|
||||
#: backend/views/view-options.php:16
|
||||
msgid "To Start using our AI, you have to sign in with your account on our platform."
|
||||
msgstr "Para empezar a utilizar nuestra IA, debe iniciar sesión con su cuenta en nuestra plataforma."
|
||||
|
||||
#: backend/views/view-options.php:17
|
||||
msgid "Click the button below to connect or create an account with us."
|
||||
msgstr "Haga clic en el botón de abajo para conectarse o crear una cuenta con nosotros."
|
||||
|
||||
#: backend/views/view-options.php:19
|
||||
msgid "Connect your account now"
|
||||
msgstr "Conecte su cuenta ahora"
|
||||
|
||||
#: backend/views/view-options.php:27
|
||||
msgid "You are connected."
|
||||
msgstr "Estás conectado."
|
||||
|
||||
#: backend/views/view-options.php:28
|
||||
msgid "Manage account"
|
||||
msgstr "Gestionar cuenta"
|
||||
|
||||
#: backend/views/view-options.php:29
|
||||
msgid "Disconnect"
|
||||
msgstr "Desconecte"
|
||||
|
||||
#: backend/views/view-options.php:32
|
||||
msgid "Checking connection to AI..."
|
||||
msgstr "Comprobando conexión con AI..."
|
||||
|
||||
#: backend/views/view-options.php:37
|
||||
msgid "Your available descriptions"
|
||||
msgstr "Sus descripciones disponibles"
|
||||
|
||||
#: backend/views/view-options.php:41
|
||||
msgid "Free descriptions remaining"
|
||||
msgstr "Descripciones libres restantes"
|
||||
|
||||
#: backend/views/view-options.php:47
|
||||
msgid "Need more descriptions?"
|
||||
msgstr "¿Necesita más descripciones?"
|
||||
|
||||
#: backend/views/view-options.php:49
|
||||
msgid "Subscribe now and get monthly tokens."
|
||||
msgstr "Suscríbete ahora y recibe fichas mensuales."
|
||||
|
||||
#: backend/views/view-options.php:51
|
||||
msgid "Subscribe now"
|
||||
msgstr "Suscríbase ahora"
|
||||
|
||||
#: assets/js/product-edit.js:8
|
||||
msgid "Generate new description"
|
||||
msgstr "Generar nueva descripción"
|
||||
|
||||
#: assets/js/product-edit.js:9
|
||||
#: assets/js/product-edit.js:147
|
||||
msgid "Rewrite current description"
|
||||
msgstr "Reescribir la descripción actual"
|
||||
|
||||
#: assets/js/product-edit.js:10
|
||||
msgid "Optimize description for SEO"
|
||||
msgstr "Optimizar la descripción para SEO"
|
||||
|
||||
#: assets/js/product-edit.js:26
|
||||
msgid "Generate Description with AI"
|
||||
msgstr "Generar descripción con IA"
|
||||
|
||||
#: assets/js/product-edit.js:27
|
||||
#: assets/js/product-edit.js:148
|
||||
#: assets/js/product-edit.js:172
|
||||
msgid "Are you ready to take the leap to AI?"
|
||||
msgstr "¿Está preparado para dar el salto a la IA?"
|
||||
|
||||
#: assets/js/product-edit.js:27
|
||||
#: assets/js/product-edit.js:148
|
||||
#: assets/js/product-edit.js:172
|
||||
msgid "Connect to our AI"
|
||||
msgstr "Conéctese a nuestra IA"
|
||||
|
||||
#: assets/js/product-edit.js:28
|
||||
msgid "Manually enter Description"
|
||||
msgstr "Introducir manualmente Descripción"
|
||||
|
||||
#: assets/js/product-edit.js:74
|
||||
msgid "An error occured when processing your request on the AI"
|
||||
msgstr "Se ha producido un error al procesar su solicitud en la IA"
|
||||
|
||||
#: assets/js/product-edit.js:84
|
||||
msgid "You have no credits remaining. Please purchase description credits first."
|
||||
msgstr "No le quedan créditos. Por favor, compre primero créditos de descripción."
|
||||
|
||||
#: assets/js/product-edit.js:84
|
||||
msgid "Purchase now"
|
||||
msgstr "Comprar ahora"
|
||||
|
||||
#: assets/js/product-edit.js:91
|
||||
msgid "You have only"
|
||||
msgstr "Sólo tiene"
|
||||
|
||||
#: assets/js/product-edit.js:91
|
||||
msgid "tokens remaining. We recommend a higher amount."
|
||||
msgstr "fichas restantes. Recomendamos una cantidad mayor."
|
||||
|
||||
#: assets/js/product-edit.js:91
|
||||
msgid "Purchase more tokens"
|
||||
msgstr "Comprar más fichas"
|
||||
|
||||
#: assets/js/product-edit.js:91
|
||||
msgid "Continue anyway"
|
||||
msgstr "Continuar de todos modos"
|
||||
|
||||
#: assets/js/product-edit.js:97
|
||||
msgid "Your authorization seems to be invalid."
|
||||
msgstr "Parece que su autorización no es válida."
|
||||
|
||||
#: assets/js/product-edit.js:97
|
||||
msgid "Connect to AI again"
|
||||
msgstr "Conéctate de nuevo a la IA"
|
||||
|
||||
#: assets/js/product-edit.js:103
|
||||
msgid "Your subscription does not include this action."
|
||||
msgstr "Su suscripción no incluye esta acción."
|
||||
|
||||
#: assets/js/product-edit.js:103
|
||||
msgid "Upgrade now"
|
||||
msgstr "Actualizar ahora"
|
||||
|
||||
#: assets/js/product-edit.js:104
|
||||
#: assets/js/product-edit.js:149
|
||||
#: assets/js/product-edit.js:173
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#: assets/js/product-edit.js:126
|
||||
msgid "Please enter a title first."
|
||||
msgstr "Por favor, introduzca primero un título."
|
||||
|
||||
#: assets/js/product-edit.js:128
|
||||
msgid "Write a long, unique product description for this product:"
|
||||
msgstr "Escriba una descripción larga y única para este producto:"
|
||||
|
||||
#: assets/js/product-edit.js:138
|
||||
msgid "Choose text tone:"
|
||||
msgstr "Elige el tono del texto:"
|
||||
|
||||
#: assets/js/product-edit.js:139
|
||||
msgid "Does not matter"
|
||||
msgstr "No importa"
|
||||
|
||||
#: assets/js/product-edit.js:140
|
||||
msgid "Warmer"
|
||||
msgstr "Más caliente"
|
||||
|
||||
#: assets/js/product-edit.js:141
|
||||
msgid "Professional"
|
||||
msgstr "Profesional"
|
||||
|
||||
#: assets/js/product-edit.js:142
|
||||
msgid "Formal"
|
||||
msgstr "Formal"
|
||||
|
||||
#: assets/js/product-edit.js:143
|
||||
msgid "Expressive"
|
||||
msgstr "Expresivo"
|
||||
|
||||
#: assets/js/product-edit.js:144
|
||||
msgid "Excited"
|
||||
msgstr "Emocionado"
|
||||
|
||||
#: assets/js/product-edit.js:145
|
||||
msgid "Inspirational"
|
||||
msgstr "Inspiración"
|
||||
|
||||
#: assets/js/product-edit.js:158
|
||||
msgid "Rewrite this description so it is unique:"
|
||||
msgstr "Reescribe esta descripción para que sea única:"
|
||||
|
||||
#: assets/js/product-edit.js:160
|
||||
msgid "Rewrite this unique text in a"
|
||||
msgstr "Vuelva a escribir este texto único en un"
|
||||
|
||||
#: assets/js/product-edit.js:160
|
||||
msgid "tone"
|
||||
msgstr "tono"
|
||||
|
||||
#: assets/js/product-edit.js:170
|
||||
msgid "Optimize with these keyswords in mind:"
|
||||
msgstr "Optimice teniendo en cuenta estas palabras clave:"
|
||||
|
||||
#: assets/js/product-edit.js:170
|
||||
msgid "keyword1, keyword2, keyword3"
|
||||
msgstr "palabra clave1, palabra clave2, palabra clave3"
|
||||
|
||||
#: assets/js/product-edit.js:171
|
||||
msgid "Optimize for SEO"
|
||||
msgstr "Optimizar para SEO"
|
||||
|
||||
#: assets/js/product-edit.js:183
|
||||
msgid "Optimize this product description for seo:"
|
||||
msgstr "Optimizar esta descripción de producto para seo:"
|
||||
|
||||
#: assets/js/product-edit.js:185
|
||||
msgid "Optimize this description for seo and use the keywords"
|
||||
msgstr "Optimizar esta descripción para seo y utilizar las palabras clave"
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/ai-image-generator/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/ai-image-generator/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "ai-for-wordpress-by-upcasted",
|
||||
"version": "1.0.0",
|
||||
"description": "A plugin that uses OpenAI Image Generation API to generate similar images based on an image or a text.",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"lib": "lib"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Upcasted",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"openai": "^3.1.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-easy-crop": "^4.6.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.20.12",
|
||||
"@babel/preset-react": "^7.18.6",
|
||||
"@types/react": "^18.0.27",
|
||||
"babel-loader": "^9.1.2",
|
||||
"webpack": "^5.75.0",
|
||||
"webpack-cli": "^5.0.1"
|
||||
}
|
||||
}
|
||||
1518
spec/fixtures/dynamic_finders/plugin_version/ai-scribe/translation_file/languages/aiscribe.pot
vendored
Normal file
1518
spec/fixtures/dynamic_finders/plugin_version/ai-scribe/translation_file/languages/aiscribe.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,460 @@
|
||||
# Copyright (C) 2022 WP connect
|
||||
# This file is distributed under the same license as the Air WP Sync plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Air WP Sync 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/air-wp-sync\n"
|
||||
"POT-Creation-Date: 2022-07-11T15:34:21+02:00\n"
|
||||
"PO-Revision-Date: 2022-07-11 15:36+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: fr_FR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.1.1\n"
|
||||
"X-Domain: airwpsync\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/class-air-wp-sync-admin-page.php:74
|
||||
#: includes/class-air-wp-sync-admin-page.php:75 views/header.php:13
|
||||
msgid "Air WP Sync"
|
||||
msgstr "Air WP Sync"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpconnect.co/air-wp-sync-plugin/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Swiftly sync Airtable to your WordPress website!"
|
||||
msgstr "Synchronisez facilement Airtable avec votre site WordPress !"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP connect"
|
||||
msgstr "WP connect"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpconnect.co/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:56
|
||||
msgid "Error:"
|
||||
msgstr "Erreur :"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:56
|
||||
msgid "Some required fields are missing."
|
||||
msgstr "Certains champs obligatoires sont manquants."
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:83
|
||||
#: includes/class-air-wp-sync-admin-page.php:84
|
||||
msgid "All Connections"
|
||||
msgstr "Toutes les connexions"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:90
|
||||
#: includes/class-air-wp-sync-admin-page.php:91
|
||||
#: includes/class-air-wp-sync.php:53
|
||||
msgid "Add New"
|
||||
msgstr "Ajouter"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:104
|
||||
msgid "Settings"
|
||||
msgstr "Paramètres"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:116
|
||||
msgid "Last Modified On"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:117
|
||||
#: views/metabox-post-settings.php:12
|
||||
msgid "Post Type"
|
||||
msgstr "Type de publication"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:118
|
||||
msgid "Last Synced On"
|
||||
msgstr "Dernière synchronisation le"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:119 views/metabox-sync.php:27
|
||||
msgid "Trigger"
|
||||
msgstr "Déclencheur"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:147 views/metabox-sync.php:33
|
||||
msgid "Manual only"
|
||||
msgstr "Manuel uniquement"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:150 views/metabox-sync.php:38
|
||||
msgid "Recurring"
|
||||
msgstr "Récurrent"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:179
|
||||
msgid "Airtable Settings"
|
||||
msgstr "Paramètres Airtable"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:188
|
||||
msgid "Import As..."
|
||||
msgstr "Importer en tant que..."
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:195
|
||||
msgid ""
|
||||
"Add all the Airtable fields you want to synchronize and then select the "
|
||||
"corresponding data types where they will be imported into your post. Make "
|
||||
"sure the column names are entered identically into your database"
|
||||
msgstr ""
|
||||
"Ajoutez tous les champs Airtable que vous souhaitez synchroniser, puis "
|
||||
"sélectionnez les types de données correspondants où ils seront importés dans "
|
||||
"votre publication. Assurez-vous que les noms des colonnes sont identiques "
|
||||
"dans Airtable"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:198
|
||||
msgid "Field Mapping"
|
||||
msgstr "Mapping de Champs"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:207
|
||||
msgid "Actions"
|
||||
msgstr "Actions"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:215
|
||||
msgid "Sync Settings"
|
||||
msgstr "Paramètres de synchronisation"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:330
|
||||
msgid ""
|
||||
"Thank you for using the free version of our plugin! To be able to create as "
|
||||
"many connections as you want, <a href=\"https://wpconnect.co/air-wp-sync-"
|
||||
"plugin/#pro-version\" target=\"_blank\">upgrade to Pro version</a>."
|
||||
msgstr ""
|
||||
"Merci d’utiliser la version gratuite de notre plugin ! Pour pouvoir créer "
|
||||
"autant de connexions que vous le souhaitez, <a href=\"https://wpconnect.co/"
|
||||
"air-wp-sync-plugin/#pro-version\" target=\"_blank\">passez à la version Pro</"
|
||||
"a>."
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:349
|
||||
msgid "Back to list"
|
||||
msgstr "Retour à la liste"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:383
|
||||
#: includes/class-air-wp-sync-admin-page.php:423
|
||||
msgid "Finished!"
|
||||
msgstr "Terminé !"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:391
|
||||
msgid "Finished with errors."
|
||||
msgstr "Terminé avec des erreurs."
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:437
|
||||
msgid "Wrong API Key"
|
||||
msgstr "Mauvaise clé API"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:488
|
||||
#: includes/class-air-wp-sync-admin-page.php:518
|
||||
#: includes/class-air-wp-sync-admin-page.php:564
|
||||
#: includes/destinations/class-air-wp-sync-taxonomy-destination.php:44
|
||||
msgid "(Pro version, coming soon)"
|
||||
msgstr "(Version Pro, à venir)"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:496
|
||||
msgid "Custom Post Type (Pro version, coming soon)"
|
||||
msgstr "Type de publication personnalisé (version Pro, à venir)"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:546
|
||||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:547
|
||||
msgid "Add & Update"
|
||||
msgstr "Ajouter et mettre à jour"
|
||||
|
||||
#: includes/class-air-wp-sync-admin-page.php:548
|
||||
msgid "Add, Update & Delete"
|
||||
msgstr "Ajouter, mettre à jour et supprimer"
|
||||
|
||||
#: includes/class-air-wp-sync.php:51
|
||||
msgid "Connections"
|
||||
msgstr "Connexions"
|
||||
|
||||
#: includes/class-air-wp-sync.php:52
|
||||
msgid "Connection"
|
||||
msgstr "Connexion"
|
||||
|
||||
#: includes/class-air-wp-sync.php:54
|
||||
msgid "Add New Connection"
|
||||
msgstr "Ajouter une nouvelle connexion"
|
||||
|
||||
#: includes/class-air-wp-sync.php:55
|
||||
msgid "Edit Connection"
|
||||
msgstr "Modifier la connexion"
|
||||
|
||||
#: includes/class-air-wp-sync.php:56
|
||||
msgid "New Connection"
|
||||
msgstr "Nouvelle connexion"
|
||||
|
||||
#: includes/class-air-wp-sync.php:57
|
||||
msgid "View Connection"
|
||||
msgstr "Afficher la connexion"
|
||||
|
||||
#: includes/class-air-wp-sync.php:58
|
||||
msgid "Search Connections"
|
||||
msgstr "Rechercher des connexions"
|
||||
|
||||
#: includes/class-air-wp-sync.php:59
|
||||
msgid "No Connections found"
|
||||
msgstr "Aucune connexion trouvée"
|
||||
|
||||
#: includes/class-air-wp-sync.php:60
|
||||
msgid "No Connections found in Trash"
|
||||
msgstr "Aucune connexion trouvée dans la corbeille"
|
||||
|
||||
#: includes/class-air-wp-sync.php:80
|
||||
msgid "Every 5 minutes"
|
||||
msgstr "Toutes les 5 minutes"
|
||||
|
||||
#: includes/class-air-wp-sync.php:84
|
||||
msgid "Every 10 minutes"
|
||||
msgstr "Toutes les 10 minutes"
|
||||
|
||||
#: includes/class-air-wp-sync.php:88
|
||||
msgid "Every 30 minutes"
|
||||
msgstr "Toutes les 30 minutes"
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-meta-destination.php:27
|
||||
msgid "Featured Image"
|
||||
msgstr "Image mise en avant"
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-meta-destination.php:32
|
||||
msgid "Custom Field (Pro version, coming soon)"
|
||||
msgstr "Champ personnalisé (version Pro, à venir)"
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-meta-destination.php:47
|
||||
msgid "The Airtable field mapped to the featured image seems invalid."
|
||||
msgstr ""
|
||||
"Le champs Airtable choisi pour l’image mise en avant ne semble pas valide."
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-post-destination.php:19
|
||||
msgid "Post"
|
||||
msgstr "Publication"
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-post-destination.php:28
|
||||
msgid "Title"
|
||||
msgstr "Titre"
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-post-destination.php:33
|
||||
msgid "Content"
|
||||
msgstr "Contenu"
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-post-destination.php:38
|
||||
msgid "Excerpt"
|
||||
msgstr "Extrait"
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-post-destination.php:43
|
||||
msgid "Slug"
|
||||
msgstr "Slug"
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-post-destination.php:48
|
||||
msgid "Publication Date"
|
||||
msgstr "Date de publication"
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-post-destination.php:70
|
||||
msgid "The Airtable field mapped to the publication date seems invalid."
|
||||
msgstr ""
|
||||
"Le champs Airtable choisi pour la date de publication ne semble pas valide."
|
||||
|
||||
#: includes/destinations/class-air-wp-sync-taxonomy-destination.php:22
|
||||
msgid "Taxonomies"
|
||||
msgstr "Taxonomies"
|
||||
|
||||
#: views/header.php:17
|
||||
msgid ""
|
||||
"Want more features? <strong>Pro version</strong> is coming soon... Keep "
|
||||
"informed!"
|
||||
msgstr ""
|
||||
"Vous voulez plus de fonctionnalités? <strong>La version Pro</strong> arrive "
|
||||
"bientôt... Restez au courant!"
|
||||
|
||||
#: views/metabox-airtable-settings.php:14
|
||||
msgid "API Key"
|
||||
msgstr "Clé API"
|
||||
|
||||
#: views/metabox-airtable-settings.php:15
|
||||
msgid ""
|
||||
"Visit your Airtable <a href=\"https://airtable.com/account\" target=\"_blank"
|
||||
"\">account overview page</a> to generate an API key."
|
||||
msgstr ""
|
||||
"Visitez <a href=\"https://airtable.com/account\" target=\"_blank\">la page "
|
||||
"de présentation de votre compte</a> Airtable pour générer une clé API."
|
||||
|
||||
#: views/metabox-airtable-settings.php:27
|
||||
msgid "App ID"
|
||||
msgstr "App ID"
|
||||
|
||||
#: views/metabox-airtable-settings.php:28
|
||||
msgid ""
|
||||
"Open your database on Airtable and look at the URL in your browser bar. The "
|
||||
"app ID is the part starting with ‘app’ and located between two slashes."
|
||||
msgstr ""
|
||||
"Ouvrez votre base de données sur Airtable et regardez l’URL dans la barre de "
|
||||
"votre navigateur. L’App ID est la partie commençant par « app » et située "
|
||||
"entre deux slashs."
|
||||
|
||||
#: views/metabox-airtable-settings.php:40
|
||||
msgid "Table ID"
|
||||
msgstr "Table ID"
|
||||
|
||||
#: views/metabox-airtable-settings.php:41
|
||||
msgid ""
|
||||
"Enter the table name from which you want to synchronize your posts. You can "
|
||||
"also use the part starting with ‘tbl’ located between two slashes in the URL."
|
||||
msgstr ""
|
||||
"Entrez le nom de la table à partir de laquelle vous souhaitez synchroniser "
|
||||
"vos publications. Vous pouvez également utiliser la partie commençant par "
|
||||
"'tbl' située entre deux slashs dans l’URL."
|
||||
|
||||
#: views/metabox-mapping.php:12 views/metabox-mapping.php:29
|
||||
msgid "Airtable Field"
|
||||
msgstr "Champs Airtable"
|
||||
|
||||
#: views/metabox-mapping.php:13 views/metabox-mapping.php:38
|
||||
msgid "Import As"
|
||||
msgstr "Importer en tant que"
|
||||
|
||||
#: views/metabox-mapping.php:21
|
||||
msgid ""
|
||||
"Click the <strong>+ Add Field</strong> button to create your first field."
|
||||
msgstr ""
|
||||
"Cliquez sur le bouton <strong>+ Ajouter un champ</strong> pour créer votre "
|
||||
"premier champ."
|
||||
|
||||
#: views/metabox-mapping.php:33
|
||||
msgid "Convert Airtable rich text formatting"
|
||||
msgstr "Convertir le texte riche de Airtable"
|
||||
|
||||
#: views/metabox-mapping.php:54
|
||||
msgid "Remove"
|
||||
msgstr "Retirer"
|
||||
|
||||
#: views/metabox-mapping.php:67
|
||||
msgid "+ Add Field"
|
||||
msgstr "+ Ajouter un champ"
|
||||
|
||||
#: views/metabox-post-settings.php:24
|
||||
msgid "Post Status"
|
||||
msgstr "Statut de l’article"
|
||||
|
||||
#: views/metabox-post-settings.php:36
|
||||
msgid "Post Author"
|
||||
msgstr "Auteur de l’article"
|
||||
|
||||
#: views/metabox-side.php:13
|
||||
msgid "Sync now"
|
||||
msgstr "Synchroniser"
|
||||
|
||||
#: views/metabox-side.php:18
|
||||
msgid ""
|
||||
"You will be able to sync your Airtable content once you have saved this "
|
||||
"connection."
|
||||
msgstr ""
|
||||
"Vous pourrez synchroniser votre contenu Airtable une fois que vous aurez "
|
||||
"enregistré cette connexion."
|
||||
|
||||
#: views/metabox-side/infos.php:1
|
||||
msgid "Last Sync Status"
|
||||
msgstr "État de la dernière synchronisation"
|
||||
|
||||
#: views/metabox-side/infos.php:5
|
||||
msgid "Successful!"
|
||||
msgstr "Réussi !"
|
||||
|
||||
#: views/metabox-side/infos.php:7
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#: views/metabox-side/infos.php:17
|
||||
msgid "Last Sync"
|
||||
msgstr "Dernière synchronisation"
|
||||
|
||||
#: views/metabox-side/infos.php:27
|
||||
msgid "Scheduled Next Sync"
|
||||
msgstr "Prochaine synchronisation"
|
||||
|
||||
#: views/metabox-sync.php:13
|
||||
msgid "Strategy"
|
||||
msgstr "Stratégie"
|
||||
|
||||
#: views/metabox-sync.php:14
|
||||
msgid ""
|
||||
"Select the method to synchronize your Airtable content with WordPress."
|
||||
"<br><br><strong>Add:</strong> only adds new content.<br><br><strong>Add & "
|
||||
"Update:</strong> same + updates content from modified records."
|
||||
"<br><br><strong>Add, Update & Delete:</strong> same + deletes content that "
|
||||
"is no longer in Airtable."
|
||||
msgstr ""
|
||||
"Sélectionnez la méthode de synchronisation de votre contenu Airtable avec "
|
||||
"WordPress.<br><br><strong>Ajouter :</strong> ajoute uniquement du nouveau "
|
||||
"contenu.<br><br><strong>Ajouter et mettre à jour :</strong> idem + met à "
|
||||
"jour le contenu des enregistrements modifiés.<br><br><strong>Ajouter, mettre "
|
||||
"à jour et supprimer :</strong> idem + supprime le contenu qui n’est plus "
|
||||
"dans Airtable."
|
||||
|
||||
#: views/metabox-sync.php:34
|
||||
msgid ""
|
||||
"Disables automatic synchronization of your Airtable content. You can still "
|
||||
"do it manually by clicking on the 'Sync Now' button in the side panel."
|
||||
msgstr ""
|
||||
"Désactive la synchronisation automatique de votre contenu Airtable. Vous "
|
||||
"pouvez toujours la faire manuellement en cliquant sur le bouton "
|
||||
"« Synchroniser » dans le panneau latéral."
|
||||
|
||||
#: views/metabox-sync.php:39
|
||||
msgid ""
|
||||
"Enables recurring synchronization of your Airtable content. Choose a "
|
||||
"frequency and it will take effect from the date and time the connection is "
|
||||
"updated."
|
||||
msgstr ""
|
||||
"Permet la synchronisation récurrente de votre contenu Airtable. Choisissez "
|
||||
"une fréquence et elle prendra effet à partir de la date et de l’heure de "
|
||||
"mise à jour de la connexion."
|
||||
|
||||
#: views/metabox-sync.php:44
|
||||
msgid "Frequency"
|
||||
msgstr "Fréquence"
|
||||
|
||||
#: views/metabox-sync.php:50
|
||||
msgid ""
|
||||
"We recommend <a href=\"https://developer.wordpress.org/plugins/cron/"
|
||||
"scheduling-wp-cron-events/\" target=\"_blank\">setting up WP-Cron</a> as a "
|
||||
"cron job for better performance."
|
||||
msgstr ""
|
||||
"Nous vous recommandons de <a href=\"https://developer.wordpress.org/plugins/"
|
||||
"cron/scheduling-wp-cron-events/\" target=\"_blank\">configurer WP-Cron</a> "
|
||||
"en tant que tâche cron pour de meilleures performances."
|
||||
|
||||
#: views/metabox-sync.php:55
|
||||
msgid "Instant (Pro version, coming soon)"
|
||||
msgstr "Instantané (version Pro, à venir)"
|
||||
|
||||
#: views/metabox-sync.php:56
|
||||
msgid ""
|
||||
"Enables instant synchronization of your Airtable content. Using Airtable "
|
||||
"webhooks, choose your own trigger and the connection will be updated as soon "
|
||||
"as the chosen event occurs."
|
||||
msgstr ""
|
||||
"Permet la synchronisation instantanée de votre contenu Airtable. À l’aide "
|
||||
"des webhooks Airtable, choisissez votre propre déclencheur et la connexion "
|
||||
"sera mise à jour dès que l’événement choisi se produira."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You are currently using the free version of our plugin.\n"
|
||||
#~ "\t\t\t\t\t\t<br>To be able to activate more than two simultaneous "
|
||||
#~ "connections, you can upgrade to the Pro version (thanks for your "
|
||||
#~ "support!).\n"
|
||||
#~ "\t\t\t\t\t\t<br>Otherwise, you just have to deactivate at least one of "
|
||||
#~ "the two active connections you already have and then try come back to "
|
||||
#~ "activate this one."
|
||||
#~ msgstr ""
|
||||
#~ "Vous utilisez actuellement la version gratuite de notre plugin.<br>Pour "
|
||||
#~ "pouvoir activer plus de deux connexions simultanées, vous pouvez passer à "
|
||||
#~ "la version Pro (merci pour votre soutien !).<br>Sinon, il vous suffit de "
|
||||
#~ "désactiver au moins une des deux connexions actives que vous avez déjà, "
|
||||
#~ "puis de revenir pour activer celle-ci."
|
||||
|
||||
#~ msgid "Recurrence"
|
||||
#~ msgstr "Récurrence"
|
||||
@@ -0,0 +1,400 @@
|
||||
# Copyright (C) 2022 Aircash
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Aircash for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aircash-"
|
||||
"woocommerce\n"
|
||||
"POT-Creation-Date: 2022-05-05T13:03:21+02:00\n"
|
||||
"PO-Revision-Date: 2022-05-06 13:54+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: hr_HR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 3.0.1\n"
|
||||
"X-Domain: aircash\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Aircash for WooCommerce"
|
||||
msgstr "Aircash for WooCommerce"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://aircash.eu/aircash-woocommerce/"
|
||||
msgstr "https://aircash.eu/aircash-woocommerce/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Aircash - for quick and simple payments"
|
||||
msgstr "Aircash - za brza i jednostavna plaćanja"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Aircash"
|
||||
msgstr "Aircash"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://aircash.eu/"
|
||||
msgstr "https://aircash.eu/"
|
||||
|
||||
#: aircash-woocommerce.php:82
|
||||
msgid ""
|
||||
"\"Aircash for WooCommerce\" gateway is disabled because OpenSSL extension is "
|
||||
"not installed."
|
||||
msgstr ""
|
||||
"\"Aircash for WooCommerce\" je onemogućen jer proširenje OpenSSL nije "
|
||||
"instalirano."
|
||||
|
||||
#: aircash-woocommerce.php:83
|
||||
msgid ""
|
||||
"Please <a href=\"https://www.php.net/manual/en/openssl.installation.php\" "
|
||||
"target=\"_blank\">install OpenSSL PHP extension</a> in order to use "
|
||||
"\"Aircash for WooCommerce\"."
|
||||
msgstr ""
|
||||
"Molimo, <a href=\"https://www.php.net/manual/en/openssl.installation.php\" "
|
||||
"target=\"_blank\">instaliraj OpenSSL PHP proširenje</a>"
|
||||
|
||||
#: aircash-woocommerce.php:84
|
||||
msgid ""
|
||||
"Contact your web server administrator or your web hosting provider if not "
|
||||
"sure how to install PHP extensions."
|
||||
msgstr ""
|
||||
"Kontaktirajte administratora web poslužitelja ili davatelju web hostinga ako "
|
||||
"niste sigurni kako instalirati PHP proširenja."
|
||||
|
||||
#: aircash-woocommerce.php:101
|
||||
msgid "\"Aircash for WooCommerce\" is in <b>test mode.</b>"
|
||||
msgstr "\"Aircash for WooCommerce\" je u <b>testnom načinu rada.</b>"
|
||||
|
||||
#: aircash-woocommerce.php:118 aircash-woocommerce.php:133
|
||||
msgid "\"Aircash for WooCommerce\" is almost ready."
|
||||
msgstr "\"Aircash for WooCommerce\" je gotovo spreman."
|
||||
|
||||
#: aircash-woocommerce.php:119
|
||||
msgid ""
|
||||
"<a href=\"%s\" class=\"thickbox open-plugin-details-modal\">Connect with "
|
||||
"Aircash</a> to submit a new account request or configure Aircash settings <a "
|
||||
"href=\"%s\" class=\"thickbox open-plugin-details-modal\">manually</a>."
|
||||
msgstr ""
|
||||
"<a href=\"%s\" class=\"thickbox open-plugin-details-modal\">Poveži se s "
|
||||
"Aircash-om</a> za slanje novog zahtjeva za kreiranje računa ili "
|
||||
"konfiguriranje postavki Aircash-a <a href=\"%s\" class=\"thickbox open-"
|
||||
"plugin-details-modal\">ručno</a>."
|
||||
|
||||
#: aircash-woocommerce.php:123
|
||||
msgid ""
|
||||
"If you want to test \"Aircash for WooCommerce\", enable the "Test "
|
||||
"mode" in the <a href=\"%s\">payment gateway settings</a>."
|
||||
msgstr ""
|
||||
"Ako želite testirati \"Aircash for WooCommerce\", omogućite "Testni "
|
||||
"način rada" u <a href=\"%s\">postavkama plaćanja</a>."
|
||||
|
||||
#: aircash-woocommerce.php:134
|
||||
msgid ""
|
||||
"You have successfully submitted a new account request. Please wait until "
|
||||
"Aircash verifies your account and then update account status request by <a "
|
||||
"class=\"thickbox open-plugin-details-modal\" href=\"%s\">checking the "
|
||||
"configuration</a>."
|
||||
msgstr ""
|
||||
"Zahtjev za novi račun je uspješno poslan. Pričekaj da Aircash potvrdi tvoj "
|
||||
"račun, a zatim ažuriraj zahtjev za status računa <a class=\"thickbox open-"
|
||||
"plugin-details-modal\" href=\"%s\">provjerom konfiguracije</a>."
|
||||
|
||||
#: aircash-woocommerce.php:146
|
||||
msgid ""
|
||||
"There has been an error while sending new account request to Aircash. Please "
|
||||
"check the <a href=\"%s\">log file</a> for details."
|
||||
msgstr ""
|
||||
"Došlo je do pogreške prilikom slanja zahtjeva za kreiranje novog Aircash "
|
||||
"računa. Pojedinosti potraži u <a href=\"%s\">log datoteci</a>."
|
||||
|
||||
#: aircash-woocommerce.php:237
|
||||
msgid "Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:184
|
||||
#: includes/class-aircash-payment-gateway.php:185
|
||||
msgid "Connect with Aircash"
|
||||
msgstr "Poveži se s Aircash-om"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:193
|
||||
#: includes/class-aircash-payment-gateway.php:194
|
||||
msgid "Manual configuration"
|
||||
msgstr "Ručna konfiguracija"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:201
|
||||
msgid "Configuration check"
|
||||
msgstr "Provjera konfiguracije"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:202
|
||||
msgid "Check configuration"
|
||||
msgstr "Provjeri konfiguraciju"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:217
|
||||
msgid "After confirming your order, you will be redirected to pay via Aircash"
|
||||
msgstr "Nakon potvrde narudžbe, nastavi s plaćanjem putem Aircash-a"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:284
|
||||
msgid "Enable \"Aircash for WooCommerce\""
|
||||
msgstr "Omogući \"Aircash for WooCommerce\""
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:289
|
||||
#: includes/class-aircash-payment-gateway.php:1243
|
||||
msgid "Partner ID"
|
||||
msgstr "ID partnera"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:295
|
||||
msgid "Public key"
|
||||
msgstr "Javni ključ"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:300
|
||||
msgid "Private key"
|
||||
msgstr "Privatni ključ"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:305
|
||||
msgid "Passphrase"
|
||||
msgstr "Lozinka"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:310
|
||||
#: includes/class-aircash-payment-gateway.php:351
|
||||
#: includes/class-aircash-payment-gateway.php:1246
|
||||
msgid "Currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:316
|
||||
msgid "Paid order status"
|
||||
msgstr "Status plaćene narudžbe"
|
||||
|
||||
#. translators: %s: Order status
|
||||
#: includes/class-aircash-payment-gateway.php:319
|
||||
msgid "(Default status: \"%s\")."
|
||||
msgstr "(Zadani status: \"%s\")."
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:324
|
||||
msgid "Enable Test mode"
|
||||
msgstr "Omogući probni način rada"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:326
|
||||
msgid "Test mode"
|
||||
msgstr "Testni način rada"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:327
|
||||
msgid "Uses Aircash testing environment"
|
||||
msgstr "Koristi Aircash testni način rada"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:332
|
||||
msgid "Log file"
|
||||
msgstr "Log datoteka"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:338
|
||||
#: includes/class-aircash-payment-gateway.php:1244
|
||||
msgid "Partner name"
|
||||
msgstr "Ime partnera"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:342
|
||||
#: includes/class-aircash-payment-gateway.php:1245
|
||||
msgid "E-mail"
|
||||
msgstr "Email"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:346
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:357
|
||||
msgid "Note"
|
||||
msgstr "Bilješka"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:517
|
||||
msgid "Pay with Aircash"
|
||||
msgstr "Plati Aircash-om"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:527
|
||||
msgid "Open Aircash application"
|
||||
msgstr "Otvori Aircash aplikaciju"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:528
|
||||
msgid "Select \"Scan and Pay\""
|
||||
msgstr "Odaberi \"Skeniraj i plati\""
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:529
|
||||
msgid "Point your camera to QR code"
|
||||
msgstr "Usmjeri kameru prema QR kodu"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:530
|
||||
msgid "Follow instructions in Aircash application"
|
||||
msgstr "Slijedi upute u Aircash aplikaciji"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:535
|
||||
msgid "Payment Successful"
|
||||
msgstr "Plaćanje uspješno"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:545
|
||||
msgid "Download the latest Aircash app:"
|
||||
msgstr "Preuzmi najnoviju verziju Aircash aplikacije:"
|
||||
|
||||
#. translators: %s: Order ID
|
||||
#: includes/class-aircash-payment-gateway.php:599
|
||||
msgid "Order with ID \"%s\" is not found"
|
||||
msgstr "Narudžba s ID-om \"%s\" nije pronađena"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:618
|
||||
msgid "Aircash public certificate file not found or unreadable"
|
||||
msgstr "Datoteka javnog Aircash certifikata nije pronađena ili je nečitljiva"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:626
|
||||
msgid "Unable to verify signature: %s"
|
||||
msgstr "Nije moguće provjeriti potpis: %s"
|
||||
|
||||
#. translators: %s: Currency code
|
||||
#: includes/class-aircash-payment-gateway.php:632
|
||||
msgid "Currency code %s is not supported."
|
||||
msgstr "Kôd valute %s nije podržan."
|
||||
|
||||
#. translators: 1: Order currency ISO, 2: Aircash transaction currency code
|
||||
#: includes/class-aircash-payment-gateway.php:637
|
||||
msgid "Order has different currency (%1$s) from Aircash payment (%2$s)"
|
||||
msgstr "Narudžba ima drukčiju valutu (%1$s) od Aircash plaćanja (%2$s)"
|
||||
|
||||
#. translators: 1: Order amount, 2: Aircash transaction amount
|
||||
#: includes/class-aircash-payment-gateway.php:643
|
||||
msgid "Order has different amount (%1$s) from Aircash payment (%2$s)"
|
||||
msgstr "Narudžba ima drukčiji iznos (%1$s) od Aircash plaćanja (%2$s)"
|
||||
|
||||
#. translators: %s: Order status
|
||||
#: includes/class-aircash-payment-gateway.php:650
|
||||
msgid "Order is already in status \"%s"
|
||||
msgstr "Status narudžbe je već %s"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:800
|
||||
msgid "Aircash does not support partial refunds."
|
||||
msgstr "Aircash ne podržava djelomične povrate novca"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:998
|
||||
msgid "Partner name is required."
|
||||
msgstr "Ime partnera je obavezno"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1001
|
||||
msgid "E-mail address is required."
|
||||
msgstr "Email adresa je obavezna"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1003
|
||||
msgid "E-mail address is invalid."
|
||||
msgstr "Email adresa je neispravna"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1006
|
||||
msgid "Phone number is requred."
|
||||
msgstr "Broj telefona je obavezan"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1114
|
||||
msgid ""
|
||||
"Account request already submitted.<br>Please wait until we process your "
|
||||
"request or contact our support."
|
||||
msgstr ""
|
||||
"Zahtjev za račun je već poslan.<br>Pričekaj dok ne obradimo zahtjev ili "
|
||||
"kontaktirajte našu podršku."
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1122
|
||||
msgid ""
|
||||
"<b>Error</b> - there was an error submitting new account request. Check the "
|
||||
"log file for details."
|
||||
msgstr ""
|
||||
"<b>Pogreška</b> - došlo je do pogreške prilikom slanja zahtjeva za novi "
|
||||
"račun. Provjeri log datoteku za pojedinosti."
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1151
|
||||
msgid "Send new account request"
|
||||
msgstr "Pošalji zahtjev za novi račun"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1177
|
||||
msgid ""
|
||||
"<b>Warning</b> - changing this values may cause Aircash payment to stop "
|
||||
"working properly."
|
||||
msgstr ""
|
||||
"<b>Upozorenje</b> - promjena ovih vrijednosti može uzrokovati da Aircash "
|
||||
"plaćanje prestane ispravno raditi."
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1188
|
||||
msgid "Save configuration"
|
||||
msgstr "Spremi konfiguraciju"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1227
|
||||
#: includes/class-aircash-payment-gateway.php:1229
|
||||
msgid "Account status"
|
||||
msgstr "Status računa"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1236
|
||||
msgid "Remote check"
|
||||
msgstr "Provjera konfiguracije"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1238
|
||||
msgid "Last check"
|
||||
msgstr "Zadnja provjera"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1241
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguracija"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1248
|
||||
msgid "Callback URL"
|
||||
msgstr "Callback URL"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1251
|
||||
msgid "Certificate check"
|
||||
msgstr "Provjera certifikata"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1254
|
||||
#: includes/class-aircash-payment-gateway.php:1298
|
||||
msgid "Private key error"
|
||||
msgstr "Greška privatnog ključa"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1258
|
||||
#: includes/class-aircash-payment-gateway.php:1302
|
||||
msgid "Public certificate not set"
|
||||
msgstr "Certifikat nije postavljen"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1265
|
||||
#: includes/class-aircash-payment-gateway.php:1309
|
||||
msgid "It's all good."
|
||||
msgstr "Sve je u redu"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1268
|
||||
#: includes/class-aircash-payment-gateway.php:1312
|
||||
msgid "Error verfiying - check public certificate/passphrase."
|
||||
msgstr "Pogreška pri provjeravanju - provjerite javni certifikat/lozinku."
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1274
|
||||
msgid "Test mode enabled"
|
||||
msgstr "Uključen testni način rada"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1275
|
||||
msgid "Test mode configuration"
|
||||
msgstr "Konfiguracija testnog načina rada"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1279
|
||||
msgid "Test account status"
|
||||
msgstr "Status"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1286
|
||||
msgid "Test remote account check"
|
||||
msgstr "Provjera računa"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1288
|
||||
msgid "Test configuration"
|
||||
msgstr "Konfiguracija"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1290
|
||||
msgid "Test partner ID"
|
||||
msgstr "ID partnera"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1291
|
||||
msgid "Test currency"
|
||||
msgstr "Valuta"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1292
|
||||
msgid "Test callback URL"
|
||||
msgstr "Callback URL"
|
||||
|
||||
#: includes/class-aircash-payment-gateway.php:1295
|
||||
msgid "Test certificate check"
|
||||
msgstr "Provjera certifikata"
|
||||
18
spec/fixtures/dynamic_finders/plugin_version/ajax-search-bar/composer_file/package.json
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/ajax-search-bar/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "mysearchplugin",
|
||||
"version": "1.0.0",
|
||||
"description": "this is search plugin",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start",
|
||||
"dev": "wp-scripts start",
|
||||
"devFast": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@wordpress/scripts": "*"
|
||||
}
|
||||
}
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/alceris-analytics/change_log/CHANGELOG.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/alceris-analytics/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
Changelog
|
||||
==========
|
||||
|
||||
#### 1.0.0 - July 30, 2022
|
||||
|
||||
Initial plugin release.
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/ali2woo-migration-tool/change_log/changelog.txt
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/ali2woo-migration-tool/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
1.0.0
|
||||
* Initial release
|
||||
|
||||
1.1.0
|
||||
* Added converter for ALD plugin
|
||||
@@ -0,0 +1,7 @@
|
||||
Version 1.1 - February 18, 2022
|
||||
-Change Tutorial link
|
||||
-Fixed Bug related to Team configuration
|
||||
-Change the tested up
|
||||
|
||||
Version 1.0 - December 30, 2021
|
||||
|
||||
@@ -0,0 +1,160 @@
|
||||
# Copyright (C) 2023 Allpay
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Allpay payment gateway 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/allpay-payment-"
|
||||
"gateway.1.0.2\n"
|
||||
"POT-Creation-Date: 2023-07-19T19:35:49+03:00\n"
|
||||
"PO-Revision-Date: 2023-07-19 19:49+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ru_RU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Domain: allpay-payment-gateway\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Allpay payment gateway"
|
||||
msgstr "Платежный шлюз Allpay"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.allpay.co.il/integrations/woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allpay Payment Gateway for WooCommerce."
|
||||
msgstr "Платежный шлюз Allpay для WooCommerce."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Allpay"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://allpay.co.il"
|
||||
msgstr ""
|
||||
|
||||
#: allpay-gateway.php:47
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: allpay.php:12 allpay.php:16
|
||||
msgid "Bank cards payments Allpay"
|
||||
msgstr "Оплата банковскими картами Allpay"
|
||||
|
||||
#: allpay.php:14
|
||||
msgid "Allpay Payment Gateway Plug-in for WooCommerce"
|
||||
msgstr "Плагин платежного шлюза Allpay для WooCommerce"
|
||||
|
||||
#: allpay.php:55
|
||||
msgid "Enable / Disable"
|
||||
msgstr "Включить/ Выключить"
|
||||
|
||||
#: allpay.php:56
|
||||
msgid "Enable this payment gateway"
|
||||
msgstr "Включить этот метод оплаты"
|
||||
|
||||
#: allpay.php:61
|
||||
msgid "Title"
|
||||
msgstr "Заголовок"
|
||||
|
||||
#: allpay.php:63
|
||||
msgid "Payment title the customer will see during the checkout process."
|
||||
msgstr ""
|
||||
"Заголовок платежа, который покупатель увидит в процессе оформления заказа."
|
||||
|
||||
#: allpay.php:64
|
||||
msgid "Credit card"
|
||||
msgstr "Кредитная карта"
|
||||
|
||||
#: allpay.php:67
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: allpay.php:69
|
||||
msgid "Payment description the customer will see during the checkout process."
|
||||
msgstr ""
|
||||
"Описание платежа, которое покупатель увидит в процессе оформления заказа."
|
||||
|
||||
#: allpay.php:70
|
||||
msgid "Pay securely using your credit card."
|
||||
msgstr "Платите безопасно с помощью кредитной карты."
|
||||
|
||||
#: allpay.php:74
|
||||
msgid "API login"
|
||||
msgstr "API логин"
|
||||
|
||||
#: allpay.php:76
|
||||
msgid "Allpay API Login"
|
||||
msgstr "Логин API Allpay"
|
||||
|
||||
#: allpay.php:79
|
||||
msgid "API key"
|
||||
msgstr "API ключ"
|
||||
|
||||
#: allpay.php:81
|
||||
msgid "Allpay API Key"
|
||||
msgstr "Ключ API Allpay"
|
||||
|
||||
#: allpay.php:84
|
||||
msgid "Installment max payments"
|
||||
msgstr "Платежей в рассрочку до"
|
||||
|
||||
#: allpay.php:86
|
||||
msgid "Maximum number of installment payments. Up to 12, zero to disable."
|
||||
msgstr ""
|
||||
"Максимальное количество платежей в рассрочку. Максимум до12-и платежей. 0 "
|
||||
"для отключения."
|
||||
|
||||
#: allpay.php:87
|
||||
msgid ""
|
||||
"Allows client to choose number of payments. Valid for credit cards only (no "
|
||||
"debit cards)"
|
||||
msgstr ""
|
||||
"Позволяет клиенту выбрать количество платежей. Действительно только для "
|
||||
"кредитных карт (без дебетовых карт)"
|
||||
|
||||
#: allpay.php:91
|
||||
msgid "Installment min order amount"
|
||||
msgstr "Минимальная сумма заказа в рассрочку"
|
||||
|
||||
#: allpay.php:93
|
||||
msgid "Minimum order amount for installments. Zero for orders of any amount."
|
||||
msgstr "Минимальная сумма заказа в рассрочку. Ноль для заказов на любую сумму."
|
||||
|
||||
#: allpay.php:94
|
||||
msgid ""
|
||||
"Enables installment option when payment amount equals or above this value"
|
||||
msgstr ""
|
||||
"Включает опцию рассрочки, когда сумма платежа равна или превышает это "
|
||||
"значение"
|
||||
|
||||
#: allpay.php:98
|
||||
msgid "First payment amount"
|
||||
msgstr "Сумма первого платежа"
|
||||
|
||||
#: allpay.php:100
|
||||
msgid "First Installment payment. Zero for auto."
|
||||
msgstr "Оплата первого взноса. Ноль для автоматического расчета."
|
||||
|
||||
#: allpay.php:101
|
||||
msgid ""
|
||||
"Makes first payment amount fixed. If set to 0, the system will calculate the "
|
||||
"first payment"
|
||||
msgstr ""
|
||||
"Фиксирует сумму первого платежа. Если установлено 0, система рассчитает "
|
||||
"первый платеж"
|
||||
|
||||
#: allpay.php:146
|
||||
msgid ""
|
||||
"We are currently experiencing problems trying to connect to this payment "
|
||||
"gateway. Sorry for the inconvenience."
|
||||
msgstr ""
|
||||
"В настоящее время у нас возникают проблемы с подключением к этому платежному "
|
||||
"шлюзу. Приносим извинения за неудобства."
|
||||
|
||||
#: allpay.php:149
|
||||
msgid "Allpay's Response was empty."
|
||||
msgstr "Пустой ответ от платежного шлюза."
|
||||
@@ -0,0 +1,135 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Floating Product Publish Button for WooCommerce 1.1.0\n"
|
||||
"POT-Creation-Date: 2022-11-14 15:51+0100\n"
|
||||
"PO-Revision-Date: 2022-11-14 16:18+0100\n"
|
||||
"Last-Translator: Andrea <andrea.daneluz@aerofeel.com>\n"
|
||||
"Language-Team: andre.dane.dev@gmail.com\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: esc_html__\n"
|
||||
"X-Poedit-SearchPath-0: languages\n"
|
||||
"X-Poedit-SearchPath-1: .\n"
|
||||
|
||||
#: floating-product-publish-button.php:79
|
||||
msgid "Floating Product Publish Button"
|
||||
msgstr ""
|
||||
|
||||
#: floating-product-publish-button.php:82
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is where you can set options concerning the position and style of the "
|
||||
"buttons.%sIn particular, you can insert the colours you prefer with any CSS "
|
||||
"notation: if you are not handy, I recommend searching for \"css colour picker"
|
||||
"\" on your search engine to select the colour that suits you.%sFor custom "
|
||||
"position settings, on the other hand, I recommend searching for \"css units "
|
||||
"for length\" on your search engine to check all units (I recommend "
|
||||
"percentage values)."
|
||||
msgstr ""
|
||||
"Qui si possono impostare le opzioni relative alla posizione e allo stile dei "
|
||||
"pulsanti.%sIn particolare, si possono inserire i colori che preferite con "
|
||||
"qualsiasi notazione CSS: se non si è pratici, consiglio di cercare \"css "
|
||||
"colour picker\" sul vostro motore di ricerca per selezionare il colore che "
|
||||
"fa per voi.%sPer le impostazioni di posizione personalizzate, invece, "
|
||||
"consiglio di cercare \"css units for length\" sul vostro motore di ricerca "
|
||||
"per verificare tutte le unità (consiglio valori in percentuale)."
|
||||
|
||||
#: floating-product-publish-button.php:89
|
||||
msgid "Button text color"
|
||||
msgstr "Colore testo bottone"
|
||||
|
||||
#: floating-product-publish-button.php:91
|
||||
#: floating-product-publish-button.php:99
|
||||
#: floating-product-publish-button.php:107
|
||||
#: floating-product-publish-button.php:115
|
||||
msgid "Enter the color."
|
||||
msgstr "Inserisci il colore."
|
||||
|
||||
#: floating-product-publish-button.php:97
|
||||
msgid "Button background color"
|
||||
msgstr "Colore sfondo bottone"
|
||||
|
||||
#: floating-product-publish-button.php:105
|
||||
msgid "Button border color"
|
||||
msgstr "Colore bordo bottone"
|
||||
|
||||
#: floating-product-publish-button.php:113
|
||||
msgid "Button shadow color"
|
||||
msgstr "Colore ombra bottone"
|
||||
|
||||
#: floating-product-publish-button.php:122
|
||||
msgid "Button default position"
|
||||
msgstr "Posizione predefinita bottone"
|
||||
|
||||
#: floating-product-publish-button.php:124
|
||||
msgid "Top left"
|
||||
msgstr "In alto a sinistra"
|
||||
|
||||
#: floating-product-publish-button.php:125
|
||||
msgid "Top center"
|
||||
msgstr "In alto in mezzo"
|
||||
|
||||
#: floating-product-publish-button.php:126
|
||||
msgid "Top right"
|
||||
msgstr "In alto a destra"
|
||||
|
||||
#: floating-product-publish-button.php:127
|
||||
msgid "Middle left"
|
||||
msgstr "Al centro a sinistra"
|
||||
|
||||
#: floating-product-publish-button.php:128
|
||||
msgid "Middle center"
|
||||
msgstr "Al centro in mezzo"
|
||||
|
||||
#: floating-product-publish-button.php:129
|
||||
msgid "Middle right"
|
||||
msgstr "Al centro a destra"
|
||||
|
||||
#: floating-product-publish-button.php:130
|
||||
msgid "Bottom left"
|
||||
msgstr "In basso a sinistra"
|
||||
|
||||
#: floating-product-publish-button.php:131
|
||||
msgid "Bottom center"
|
||||
msgstr "In basso in mezzo"
|
||||
|
||||
#: floating-product-publish-button.php:132
|
||||
msgid "Bottom right"
|
||||
msgstr "In basso a destra"
|
||||
|
||||
#: floating-product-publish-button.php:133
|
||||
msgid "Custom"
|
||||
msgstr "Personalizzato"
|
||||
|
||||
#: floating-product-publish-button.php:136
|
||||
msgid "Choose the button position."
|
||||
msgstr "Scegli la posizione del bottone."
|
||||
|
||||
#: floating-product-publish-button.php:141
|
||||
msgid "Custom value: Top"
|
||||
msgstr "Valore personalizzato: Top"
|
||||
|
||||
#: floating-product-publish-button.php:143
|
||||
msgid ""
|
||||
"Enter the value of the \"top\" attribute: this controls how far the button "
|
||||
"should be from the top of the screen."
|
||||
msgstr ""
|
||||
"Inserisci il valore dell'attributo \"top\": controlla la distanza del "
|
||||
"pulsante dalla parte superiore dello schermo."
|
||||
|
||||
#: floating-product-publish-button.php:149
|
||||
msgid "Custom value: Left"
|
||||
msgstr "Valore personalizzato: Left"
|
||||
|
||||
#: floating-product-publish-button.php:151
|
||||
msgid ""
|
||||
"Enter the value of the \"left\" attribute: this controls how far the button "
|
||||
"should be from the left side of the screen."
|
||||
msgstr ""
|
||||
"Inserisci il valore dell'attributo \"left\": controlla la distanza del "
|
||||
"pulsante dal lato sinistro dello schermo."
|
||||
64
spec/fixtures/dynamic_finders/plugin_version/am-lottieplayer/composer_file/package.json
vendored
Normal file
64
spec/fixtures/dynamic_finders/plugin_version/am-lottieplayer/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"name": "am-lottieplayer",
|
||||
"version": "1.0.3",
|
||||
"description": "Lightweight, versatile and easy to use! Upload Lottie animations to WordPress and add them in Gutenberg or the Divi Builder.",
|
||||
"author": {
|
||||
"name": "Aarstein Media",
|
||||
"email": "johan@aarstein.media",
|
||||
"url": "https://www.aarstein.media",
|
||||
"organization": "Aarstein Media"
|
||||
},
|
||||
"license": "GPL-2.0-or-later",
|
||||
"keywords": [
|
||||
"animation",
|
||||
"gif",
|
||||
"motion",
|
||||
"motion graphics",
|
||||
"vector",
|
||||
"lottie",
|
||||
"dotlottie",
|
||||
"svg",
|
||||
"canvas"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/johanaarstein/am-lottieplayer"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/johanaarstein/am-lottieplayer/issues",
|
||||
"email": "johan@aarstein.media"
|
||||
},
|
||||
"files": [
|
||||
"build",
|
||||
"includes",
|
||||
"scripts",
|
||||
"styles",
|
||||
"am-lottieplayer.php"
|
||||
],
|
||||
"main": "build/index.js",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^25.0.0",
|
||||
"classnames": "^2.3.2"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "wp-scripts build && npm run svn",
|
||||
"check-engines": "wp-scripts check-engines",
|
||||
"check-licenses": "wp-scripts check-licenses",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"lint:md:docs": "wp-scripts lint-md-docs",
|
||||
"lint:pkg-json": "wp-scripts lint-pkg-json",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"plugin-zip": "wp-scripts plugin-zip",
|
||||
"start": "wp-scripts start",
|
||||
"test:e2e": "wp-scripts test-e2e",
|
||||
"test:unit": "wp-scripts test-unit-js",
|
||||
"stash": "wp-scripts build && wp-scripts plugin-zip",
|
||||
"svn": "cp -R ./build ./includes ./scripts ./styles ./svn/trunk && cp ./am-lottieplayer.php ./LICENSE ./package.json ./readme.txt ./svn/trunk"
|
||||
},
|
||||
"cde": {
|
||||
"gettext": "am-lottieplayer",
|
||||
"prefix": "am"
|
||||
}
|
||||
}
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/amwal-checkout/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/amwal-checkout/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "amwal-checkout-woocommerce",
|
||||
"version": "1.0.15",
|
||||
"description": "Amwal Checkout for WooCommerce",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build assets/src/index.js --output-path=assets/build",
|
||||
"start": "wp-scripts start assets/src/index.js --output-path=assets/build"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/amwal-tech/amwal-woocommerce.git"
|
||||
},
|
||||
"keywords": [
|
||||
"amwal",
|
||||
"checkout",
|
||||
"woocommerce"
|
||||
],
|
||||
"author": "Amwal Tech, Inc.",
|
||||
"license": "GPL-3.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/amwal-tech/amwal-woocommerce/issues"
|
||||
},
|
||||
"homepage": "https://github.com/amwal-tech/amwal-woocommerce#readme",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "24.3.0",
|
||||
"amwal-checkout-button": "0.0.28"
|
||||
}
|
||||
}
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/ananas/change_log/CHANGELOG.md
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/ananas/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) with minor modifications,
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.0] - 8th Dec 2021
|
||||
Initial plugin release.
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "mvam-animiate",
|
||||
"version": "1.0.1",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^19.2.1"
|
||||
}
|
||||
}
|
||||
4380
spec/fixtures/dynamic_finders/plugin_version/anrghg/translation_file/languages/anrghg-en_GB.po
vendored
Normal file
4380
spec/fixtures/dynamic_finders/plugin_version/anrghg/translation_file/languages/anrghg-en_GB.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,4 @@
|
||||
*** Anti DDOS/BOT ReCaptcha Protection ***
|
||||
|
||||
= 1.0.0 - 2023-02-13 =
|
||||
* ANNOUNCE - First release of this plugin.
|
||||
@@ -0,0 +1,283 @@
|
||||
# Copyright (C) 2023 Aplaz S.A. de C.V.
|
||||
# This file is distributed under the MIT.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Aplazo Payment Gateway 1.0.18\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aplazo-payment-"
|
||||
"gateway\n"
|
||||
"POT-Creation-Date: 2023-01-11T16:32:47-06:00\n"
|
||||
"PO-Revision-Date: 2023-01-11 16:44-0600\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: es_MX\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
"X-Domain: aplazo-payment-gateway\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Aplazo Payment Gateway"
|
||||
msgstr "Pasarela de pago Aplazo"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Aplazo BNPL Payment Gateway plugin"
|
||||
msgstr "Plugin de pasarela de pago BNPL de Aplazo"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Aplaz S.A. de C.V."
|
||||
msgstr "Aplaz S.A. de C.V."
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:43
|
||||
msgid "Gateway Payment Aplazo"
|
||||
msgstr "Pasarela de Pago Aplazo"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:98
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Activar/Desactivar"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:100
|
||||
msgid "Enable"
|
||||
msgstr "Activar"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:104
|
||||
msgid "Title of service by site"
|
||||
msgstr "Título del servicio por sitio"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:106
|
||||
msgid ""
|
||||
"Title of service by front-end on site chekout page. Keep empty if want to "
|
||||
"show Aplazo banner"
|
||||
msgstr ""
|
||||
"Título del servicio por front-end en el checkout del sitio. Mantener "
|
||||
"vacío si desea mostrar Aplazo banner"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:111
|
||||
msgid "Description on front page"
|
||||
msgstr "Descripción"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:113
|
||||
msgid "Description on front page when chekout goods"
|
||||
msgstr "Descripción al buscar productos"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:117
|
||||
#: includes/module/class-aplazo-gateway.php:119
|
||||
msgid "Message before pay"
|
||||
msgstr "Mensaje antes de pagar"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:120
|
||||
msgid "Please, complete the order with Aplazo clicking here:"
|
||||
msgstr "Por favor, completa la orden con Aplazo dando clic abajo:"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:124
|
||||
msgid "Merchant ID"
|
||||
msgstr "Merchant ID"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:126
|
||||
msgid "Merchant ID Aplazo. Required parameter"
|
||||
msgstr "Merchant ID Aplazo. Parámetro requerido."
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:130
|
||||
msgid "API Token"
|
||||
msgstr "API Token"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:132
|
||||
msgid "API Token Aplazo. Required parameter"
|
||||
msgstr "API Token Aplazo. Parámetro requerido"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:136
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:140
|
||||
msgid "Language of interface "
|
||||
msgstr "Idioma"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:144
|
||||
msgid "Status of order when get OUTSTANDING state from API"
|
||||
msgstr ""
|
||||
"Estado de la orden cuando se obtiene el estado OUTSTANDING desde el API"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:148
|
||||
msgid "pending"
|
||||
msgstr "Pending"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:149
|
||||
msgid "processing"
|
||||
msgstr "Processing"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:150
|
||||
msgid "on-hold"
|
||||
msgstr "On-hold"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:151
|
||||
msgid "cancelled"
|
||||
msgstr "Cancelled"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:152
|
||||
msgid "completed"
|
||||
msgstr "Completed"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:153
|
||||
msgid "refunded"
|
||||
msgstr "Refunded"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:154
|
||||
msgid "failed"
|
||||
msgstr "Failed"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:156
|
||||
msgid "Status of order after success pay"
|
||||
msgstr "Estado de la orden después de un pago exitoso"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:160
|
||||
msgid "Select the Aplazo environment"
|
||||
msgstr "Selecciona el ambiente de Aplazo"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:164
|
||||
msgid "development"
|
||||
msgstr "Desarrollo"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:165
|
||||
msgid "stage"
|
||||
msgstr "Stage"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:166
|
||||
msgid "production"
|
||||
msgstr "Producción"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:168
|
||||
msgid "Aplazo Environmnet"
|
||||
msgstr "Ambiente Aplazo"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:172
|
||||
#: includes/module/class-aplazo-gateway.php:179
|
||||
msgid "Show widget on Product Detail Page"
|
||||
msgstr "Mostrar el widget en la página de detalle del producto"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:176
|
||||
#: includes/module/class-aplazo-gateway.php:187
|
||||
#: includes/module/class-aplazo-gateway.php:198
|
||||
msgid "yes"
|
||||
msgstr "si"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:177
|
||||
#: includes/module/class-aplazo-gateway.php:188
|
||||
#: includes/module/class-aplazo-gateway.php:199
|
||||
msgid "no"
|
||||
msgstr "no"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:183
|
||||
#: includes/module/class-aplazo-gateway.php:190
|
||||
msgid "Show widget on Shopping Cart Page"
|
||||
msgstr "Mostrar el widget en la página de carrito"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:194
|
||||
#: includes/module/class-aplazo-gateway.php:201
|
||||
msgid "Reserve stock when the order is created"
|
||||
msgstr "Reservar inventario cuando una orden es creada"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:205
|
||||
msgid "Time to cancel orders"
|
||||
msgstr "Tiempo para cancelar órdenes sin pagar"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:209
|
||||
#: includes/module/class-aplazo-gateway.php:210
|
||||
#: includes/module/class-aplazo-gateway.php:211
|
||||
#: includes/module/class-aplazo-gateway.php:212
|
||||
#: includes/module/class-aplazo-gateway.php:213
|
||||
#: includes/module/class-aplazo-gateway.php:214
|
||||
#: includes/module/class-aplazo-gateway.php:215
|
||||
#: includes/module/class-aplazo-gateway.php:216
|
||||
#: includes/module/class-aplazo-gateway.php:217
|
||||
#: includes/module/class-aplazo-gateway.php:218
|
||||
msgid "hours"
|
||||
msgstr "horas"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:219
|
||||
msgid "hour"
|
||||
msgstr "hora"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:220
|
||||
#: includes/module/class-aplazo-gateway.php:221
|
||||
msgid "minutes"
|
||||
msgstr "minutos"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:222
|
||||
msgid "manual"
|
||||
msgstr "manual"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:224
|
||||
msgid "After this time the orders could be cancelled"
|
||||
msgstr "Después de este tiempo las órdenes pueden ser canceladas"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:233
|
||||
msgid "Debug"
|
||||
msgstr "Depurador"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:235
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:265
|
||||
#: includes/module/class-aplazo-module.php:164
|
||||
msgid "Order pending payment via APLAZO"
|
||||
msgstr "Orden con pago pendiente via APLAZO"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:266
|
||||
#: includes/module/class-aplazo-module.php:165
|
||||
msgid "Client has redirected to APLAZO gateway for pay his goods"
|
||||
msgstr ""
|
||||
"Cliente ha sido redirigido a la pasarela de APLAZO para pagar su carrito"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:272
|
||||
#: includes/module/class-aplazo-gateway.php:275
|
||||
msgid "Payment error:"
|
||||
msgstr "Error de pago:"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:272
|
||||
msgid "Communication error"
|
||||
msgstr "Error de comunicación"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:520
|
||||
#: includes/module/class-aplazo-gateway.php:525
|
||||
msgid "Client has not payed for his goods (status changed)"
|
||||
msgstr "Cliente no ha pagado su carrito (cambio de status)"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:521
|
||||
msgid "Order has pending via APLAZO"
|
||||
msgstr "Orden está pendiente vía APLAZO"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:526
|
||||
msgid "Order has cancelled via APLAZO (payment cancelled)"
|
||||
msgstr "Orden ha sido cancelada vía APLAZO (pago cancelado)"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:531
|
||||
msgid "Order in "
|
||||
msgstr "Ordena en"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:554
|
||||
msgid "Refund failed."
|
||||
msgstr "Reembolso fallido."
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:559
|
||||
#: includes/module/class-aplazo-module.php:107
|
||||
msgid "Refund communication failed."
|
||||
msgstr "Comunicación de reembolso fallida."
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:562
|
||||
msgid "Refund in process."
|
||||
msgstr "Reembolso en proceso."
|
||||
|
||||
#: includes/module/class-aplazo-module.php:91
|
||||
msgid "The order was cancelled due to no payment from customer."
|
||||
msgstr "La orden fue cancelada debido a que no hubo pago del cliente."
|
||||
|
||||
#: includes/module/class-aplazo-module.php:189
|
||||
msgid "Configure"
|
||||
msgstr "Configurar"
|
||||
|
||||
#: includes/module/class-aplazo-template-functions.php:21
|
||||
msgid "Place order"
|
||||
msgstr "Terminar orden"
|
||||
File diff suppressed because it is too large
Load Diff
32
spec/fixtures/dynamic_finders/plugin_version/arrayforms/composer_file/package.json
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/arrayforms/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "arrayforms",
|
||||
"version": "1.0.0",
|
||||
"description": "Build Array Forms Embed",
|
||||
"author": "BuildArray.com",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/api-fetch": "^5.1.1",
|
||||
"@wordpress/block-editor": "^6.1.0",
|
||||
"@wordpress/blocks": "^9.1.0",
|
||||
"@wordpress/core-data": "^3.1.7",
|
||||
"@wordpress/i18n": "^4.1.0",
|
||||
"@wordpress/plugins": "^3.1.2",
|
||||
"axios": "^0.21.1",
|
||||
"immer": "^9.0.3",
|
||||
"react-transition-group": "^4.4.2",
|
||||
"styled-components": "^5.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^16.1.0",
|
||||
"dotenv-webpack": "^7.0.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,230 @@
|
||||
# Copyright (C) 2022 Khorshid, ArvanCloud
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ArvanCloud CDN 0.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/temp-git\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-17T17:05:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: arvancloud-cdn\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: wp-arvancloud-cdn.php:29
|
||||
msgid "ArvanCloud CDN"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.arvancloud.com/en/products/cdn"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "ArvanCloud CDN service caches your website content. Using this plugin, you will be able to purge and update the cached version, either manually or automatically, so that your users visit the latest version of your website at any time."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Khorshid, ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:113
|
||||
msgid "Please Wait"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:114
|
||||
msgid "Request sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:115
|
||||
msgid "Updated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:116
|
||||
msgid "Update failed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:142
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:143
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:8
|
||||
msgid "CDN General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:151
|
||||
#: admin/partials/wp-arvancloud-cdn-about-us-display.php:2
|
||||
msgid "About ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:152
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:181
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:184
|
||||
msgid "Clear Cache"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:287
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:290
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:293
|
||||
msgid "Pending DNS changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:296
|
||||
msgid "Pending CDN"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:299
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:318
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:321
|
||||
msgid "Growth"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:324
|
||||
msgid "Professional"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-arvancloud-cdn-admin.php:327
|
||||
msgid "Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:47
|
||||
msgid "There was a problem. please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:73
|
||||
#: admin/inc/class-request-handler.php:162
|
||||
#: admin/inc/class-request-handler.php:268
|
||||
msgid "ArvanCloud is not responding right now. please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:79
|
||||
#: admin/inc/class-request-handler.php:170
|
||||
#: admin/inc/class-request-handler.php:270
|
||||
msgid "ArvanCloud API key is invalid. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:87
|
||||
msgid "Purging CDN cache request sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:195
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:15
|
||||
msgid "-- not shown --"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:198
|
||||
msgid "Enter your API key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:217
|
||||
msgid "settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:237
|
||||
msgid "Invalid security token sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-request-handler.php:245
|
||||
msgid "Invalid item sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-about-us-display.php:6
|
||||
msgid "ArvanCloud, an international cloud services provider in Germany, offers various effective solutions for its customers worldwide. As one of the fastest-growing cloud solutions providers in the market, with an exceptional team, cutting-edge technologies and equipment, ArvancCloud aims to become a leader in the cloud industry. <br /> Equipped with a globally distributed network of more than 40 PoPs, ArvanCloud prides itself on innovative cloud solutions at the best price and highest quality. With ArvanCloud solutions, every customer can enjoy a fast, secure, reliable, and affordable cloud service. <br /> ArvanCloud has always provided the broadest set of services possible, to make a significant difference in the cloud services industry. Currently, its portfolio includes numerous cloud products, such as Cloud CDN, Manage DNS, Cloud Security, Video Streaming, Live Streaming Platform, Cloud Object Storage, and Platform as a service."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-footer.php:5
|
||||
msgid "CDN Plans"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-footer.php:6
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-footer.php:7
|
||||
msgid "Email Us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:6
|
||||
msgid "Status: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:33
|
||||
msgid "Change API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:37
|
||||
msgid "Back to options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-header.php:43
|
||||
msgid "ArvanCloud panel →"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:18
|
||||
msgid "CDN Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:27
|
||||
msgid "Purge Cache"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:28
|
||||
msgid "This will help you to get the full version of the new data from your web server by clearing the cache data from Arvan servers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:37
|
||||
msgid "Always Online"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:38
|
||||
msgid "After activating of this feature, in case of website or webserver time out, the last saved version in arvancloud will be shown to the user. Arvancloud can only show the main page or dynamic pages if it has the permission to cache."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:47
|
||||
msgid "Development Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:48
|
||||
msgid "Activating Development Mode will temporarily stop caching so that developers can work easier. Web optimization will also be disabled."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:57
|
||||
msgid "Automatic cleaning"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-options-display.php:58
|
||||
msgid "Automatically clear cache when a post or page or custom post type is edited or created or deleted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:10
|
||||
msgid "Configure CDN API"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:18
|
||||
msgid "Get API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-arvancloud-cdn-settings-display.php:20
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: wp-arvancloud-cdn.php:30
|
||||
msgid "wp-arvancloud-cdn"
|
||||
msgstr ""
|
||||
11
spec/fixtures/dynamic_finders/plugin_version/arvancloud-vod/composer_file/package.json
vendored
Normal file
11
spec/fixtures/dynamic_finders/plugin_version/arvancloud-vod/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "arvancloud-vod",
|
||||
"version": "0.0.1",
|
||||
"description": "",
|
||||
"author": "Khorshid <info@khorshidlab.com>",
|
||||
"devDependencies": {
|
||||
"grunt": "*",
|
||||
"grunt-contrib-watch": "*",
|
||||
"grunt-contrib-compass": "*"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,271 @@
|
||||
# Copyright (C) 2022 Khorshid, ArvanCloud
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ArvanCloud VOD 0.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/arvancloud-vod-for-wordpress\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-09-14T07:39:30+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: arvancloud-vod\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/VOD/Widgets/Video_Links.php:25
|
||||
#: inc/VOD/Widgets/Video_Links.php:34
|
||||
msgid "ArvanCloud VOD"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.arvancloud.ir/en/products/video-platform"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "ArvanCloud Video Platform allows users to publish, store and convert their video content without worrying about the required infrastructure."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Khorshid, ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: admin/Enqueue.php:110
|
||||
msgid "you are not allowed to upload this file type."
|
||||
msgstr ""
|
||||
|
||||
#: admin/Enqueue.php:111
|
||||
#: inc/VOD/Assets/Media_Action.php:15
|
||||
#: inc/VOD/Assets/Media_Action.php:33
|
||||
#: inc/VOD/Widgets/Video_Links.php:69
|
||||
msgid "Copy to ArvanVOD"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/components/footer.php:4
|
||||
msgid "Arvan Video Panel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/components/footer.php:5
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/components/footer.php:6
|
||||
msgid "Email Us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/about-us.php:2
|
||||
#: inc/Setup.php:228
|
||||
#: inc/Setup.php:256
|
||||
msgid "About ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/about-us.php:8
|
||||
msgid "ArvanCloud, an international cloud services provider in Germany, offers various effective solutions for its customers worldwide. As one of the fastest-growing cloud solutions providers in the market, with an exceptional team, cutting-edge technologies and equipment, ArvancCloud aims to become a leader in the cloud industry. <br /> Equipped with a globally distributed network of more than 40 PoPs, ArvanCloud prides itself on innovative cloud solutions at the best price and highest quality. With ArvanCloud solutions, every customer can enjoy a fast, secure, reliable, and affordable cloud service. <br /> ArvanCloud has always provided the broadest set of services possible, to make a significant difference in the cloud services industry. Currently, its portfolio includes numerous cloud products, such as Cloud CDN, Manage DNS, Cloud Security, Video Streaming, Live Streaming Platform, Cloud Object Storage, and Platform as a service."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/add-video.php:83
|
||||
#: inc/Setup.php:210
|
||||
msgid "Upload New Video"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/add-video.php:131
|
||||
msgid "Accepted file types: %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:8
|
||||
msgid "VOD General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:11
|
||||
msgid "Configure VOD API"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:15
|
||||
#: inc/API/VOD_Key.php:53
|
||||
msgid "-- not shown --"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:18
|
||||
msgid "Get API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:29
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:34
|
||||
#: admin/views/pages/default-channel.php:47
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/default-channel.php:11
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/default-channel.php:15
|
||||
msgid "Select default channel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/default-channel.php:22
|
||||
msgid "Change API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/default-channel.php:29
|
||||
msgid "Select default channel (ArvanCloud Video Channel for Uploading Videos)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/video-library.php:83
|
||||
#: inc/Setup.php:201
|
||||
msgid "Video Library"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/video-library.php:224
|
||||
msgid "Video Library "
|
||||
msgstr ""
|
||||
|
||||
#: arvancloud-vod.php:56
|
||||
msgid "\"ArvanCloud VOD\" requires PHP 5.6 or newer."
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/VOD/Channels.php:38
|
||||
msgid "Please select a channel"
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/VOD/Channels.php:53
|
||||
#: inc/API/VOD_Key.php:74
|
||||
msgid "settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/VOD_Key.php:24
|
||||
msgid "ArvanCloud is not responding right now. please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/VOD_Key.php:30
|
||||
msgid "ArvanCloud API key is invalid. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/VOD_Key.php:57
|
||||
msgid "Enter your API key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:190
|
||||
#: inc/Setup.php:237
|
||||
msgid "ArvanCloud Videos"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:191
|
||||
#: inc/Setup.php:238
|
||||
msgid "Videos"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:202
|
||||
msgid "Library"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:211
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:219
|
||||
#: inc/Setup.php:220
|
||||
#: inc/Setup.php:247
|
||||
#: inc/Setup.php:248
|
||||
msgid "Setting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:229
|
||||
#: inc/Setup.php:257
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Add_Video.php:109
|
||||
msgid "The following videos are being copied and Converted: <br>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:182
|
||||
msgid "Edit attachment"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:252
|
||||
msgid "Media successfully copied to ArvanCloud VoD service."
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:253
|
||||
msgid "Media copied to ArvanCloud VOD with some errors."
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:255
|
||||
msgid "There were errors when copying the media to ArvanCloud VOD."
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:256
|
||||
msgid "The media could not be copied to VOD because it is not a valid video file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:257
|
||||
msgid "The media could not be copied to VOD because of negative arvan wallet. Please charge your wallet then retry."
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Tinymce_plugin.php:35
|
||||
msgid "Embed VOD"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Tinymce_plugin.php:36
|
||||
msgid "Select a video"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Tinymce_plugin.php:37
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Tinymce_plugin.php:38
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Widgets/Video_Links.php:55
|
||||
msgid "The video has already been uploaded to ArvanCloud VOD and is being converted. Once the conversion process is complete, the video links will be displayed here."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:87
|
||||
msgid "Video ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:87
|
||||
msgid "VOD"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:87
|
||||
msgid "video"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:87
|
||||
msgid "arvancloud"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "To edit the Video, you need permission to upload media."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "Video settings"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "Set Video"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "Replace Video"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "Remove Video"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "No Video Selected"
|
||||
msgstr ""
|
||||
249
spec/fixtures/dynamic_finders/plugin_version/ask-faq/translation_file/languages/ask-faq-pro.pot
vendored
Normal file
249
spec/fixtures/dynamic_finders/plugin_version/ask-faq/translation_file/languages/ask-faq-pro.pot
vendored
Normal file
@@ -0,0 +1,249 @@
|
||||
# Copyright (C) 2023 ThemeAtelier
|
||||
# This file is distributed under the same license as the Ask FAQ Pro plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ask FAQ Pro 0.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ask-faq-pro\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-04-19T04:37:38+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: ask-faq-pro\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Ask FAQ Pro"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Best FAQ block including tab and accordion version what provides to use text, audio and video as Write Answer."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ThemeAtelier"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://themeatelier.net/"
|
||||
msgstr ""
|
||||
|
||||
#: ask-faq.php:55
|
||||
msgid "Ask FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:72
|
||||
#: build/tab/index.js:96
|
||||
#: build/accordion-block/index.js:52
|
||||
#: build/tab/index.js:94
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:75
|
||||
#: build/tab/index.js:99
|
||||
#: build/accordion-block/index.js:53
|
||||
#: build/tab/index.js:95
|
||||
msgid "Audio"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:78
|
||||
#: build/tab/index.js:102
|
||||
#: build/accordion-block/index.js:54
|
||||
#: build/tab/index.js:96
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:85
|
||||
#: build/accordion-block/index.js:90
|
||||
#: build/accordion-block/index.js:157
|
||||
#: build/tabs/index.js:3631
|
||||
#: build/tabs/index.js:3632
|
||||
#: build/accordion-block/index.js:68
|
||||
#: build/accordion-block/index.js:73
|
||||
#: build/accordion-block/index.js:171
|
||||
#: build/tabs/index.js:3194
|
||||
#: build/tabs/index.js:3198
|
||||
msgid "Write Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:91
|
||||
#: build/accordion-block/index.js:74
|
||||
msgid "Write your question to show as Write Question."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:93
|
||||
#: build/tab/index.js:105
|
||||
#: build/accordion-block/index.js:80
|
||||
#: build/tab/index.js:104
|
||||
msgid "Type of Write Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:106
|
||||
#: build/tab/index.js:118
|
||||
#: build/accordion-block/index.js:89
|
||||
#: build/tab/index.js:113
|
||||
msgid "Choose the type of answer you wanna show"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:108
|
||||
#: build/accordion-block/index.js:113
|
||||
#: build/accordion-block/index.js:184
|
||||
#: build/tab/index.js:120
|
||||
#: build/tab/index.js:123
|
||||
#: build/accordion-block/index.js:96
|
||||
#: build/accordion-block/index.js:101
|
||||
#: build/accordion-block/index.js:209
|
||||
msgid "Write Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:114
|
||||
#: build/accordion-block/index.js:102
|
||||
msgid "Write your answer to show as Write Answer."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:205
|
||||
#: build/tab/index.js:139
|
||||
#: build/tab/index.js:184
|
||||
#: build/accordion-block/index.js:233
|
||||
#: build/tab/index.js:142
|
||||
#: build/tab/index.js:202
|
||||
msgid "Upload Audio"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:207
|
||||
#: build/tab/index.js:186
|
||||
#: build/accordion-block/index.js:242
|
||||
#: build/tab/index.js:211
|
||||
msgid "No Audio Uploaded Yet"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:228
|
||||
#: build/tab/index.js:155
|
||||
#: build/tab/index.js:207
|
||||
#: build/accordion-block/index.js:271
|
||||
#: build/tab/index.js:162
|
||||
#: build/tab/index.js:238
|
||||
msgid "Upload Video"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:230
|
||||
#: build/tab/index.js:209
|
||||
#: build/accordion-block/index.js:280
|
||||
#: build/tab/index.js:247
|
||||
msgid "No Video Uploaded Yet"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:261
|
||||
#: build/accordion-block/index.js:313
|
||||
msgid "Accordion Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:262
|
||||
#: build/accordion-block/index.js:314
|
||||
msgid "A accordion question item"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:518
|
||||
#: build/tabs/index.js:3692
|
||||
#: build/accordion-block/index.js:561
|
||||
#: build/tabs/index.js:3304
|
||||
msgid "Show Searchbar for filtering questions."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:522
|
||||
#: build/accordion-block/index.js:527
|
||||
#: build/tabs/index.js:3696
|
||||
#: build/tabs/index.js:3701
|
||||
#: build/accordion-block/index.js:570
|
||||
#: build/accordion-block/index.js:575
|
||||
#: build/tabs/index.js:3313
|
||||
#: build/tabs/index.js:3318
|
||||
msgid "Search Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:528
|
||||
#: build/tabs/index.js:3702
|
||||
#: build/accordion-block/index.js:579
|
||||
#: build/tabs/index.js:3322
|
||||
msgid "Change search filed placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:530
|
||||
#: build/tabs/index.js:3704
|
||||
#: build/accordion-block/index.js:586
|
||||
#: build/tabs/index.js:3329
|
||||
msgid "Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/index.js:64
|
||||
#: build/tab/index.js:59
|
||||
msgid "%1$s (%2$d of %3$d)"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/index.js:163
|
||||
#: build/tab/index.js:180
|
||||
msgid "Add Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Ask Accordion"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Accordion for Ask FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "ask"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "faq"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "accordion"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Tab for ask faq"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Ask Tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block style label"
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block style label"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/atom-featured-image/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/atom-featured-image/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
## Changelog ##
|
||||
|
||||
### 1.0 ###
|
||||
* Initial Release
|
||||
|
||||
### 1.0.1 ###
|
||||
* Link to settings page now available in list of installed plugins
|
||||
20
spec/fixtures/dynamic_finders/plugin_version/atr-inline-rtl-ltr/composer_file/package.json
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/atr-inline-rtl-ltr/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "atr-inline-rtl-ltr",
|
||||
"version": "1.0.1",
|
||||
"description": "Wrap words (or sentences) in paragraph block with span element and change their direction from rtl to ltr and vice versa.",
|
||||
"author": "Yehuda Tiram atarimtr.co.il",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts build",
|
||||
"format": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts format",
|
||||
"lint:css": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts lint-style",
|
||||
"lint:js": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts lint-js",
|
||||
"packages-update": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts packages-update",
|
||||
"plugin-zip": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts plugin-zip",
|
||||
"start": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts start"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^22.5.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
# Copyright (C) 2022 Thomas Zwirner
|
||||
# This file is distributed under the GPL-2.0-or-later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Auto Category for Posts 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/auto-category-for-posts\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-09T15:01:42+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: auto-category-for-posts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Auto Category for Posts"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Automatically add a default-category to each new post before it is first saved."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Thomas Zwirner"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.thomaszwirner.de"
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:97
|
||||
#: admin/js.js:24
|
||||
msgid "Set as default"
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:100
|
||||
#: admin/js.js:26
|
||||
msgid "Default category"
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:153
|
||||
msgid "Error on saving new settings for default category."
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:184
|
||||
msgid "Given category does not exists."
|
||||
msgstr ""
|
||||
|
||||
#: auto-category-for-posts.php:188
|
||||
msgid "No new category-id given."
|
||||
msgstr ""
|
||||
52
spec/fixtures/dynamic_finders/plugin_version/auto-date-year-month/change_log/changelog.txt
vendored
Normal file
52
spec/fixtures/dynamic_finders/plugin_version/auto-date-year-month/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
Initial Release: December 21, 2022
|
||||
|
||||
* Initial Release
|
||||
|
||||
= 1.0.1 =
|
||||
Bugs Fixed and Some Other Changings: December 21, 2022
|
||||
|
||||
* Bugs Fixed
|
||||
* Table and Menu Registered
|
||||
|
||||
= 1.0.2 =
|
||||
Bugs Fixed and New shortcodes added: December 22, 2022
|
||||
|
||||
* Bugs Fixed and New shortcodes added
|
||||
* Copy Symbol & Copyrights Text short code added.
|
||||
* Show Last Modified Date using shortcode added
|
||||
|
||||
= 1.0.3 =
|
||||
Bugs Fixed and New Shortcodes Added:December 23, 2022
|
||||
|
||||
* Bugs Fixed
|
||||
* New shortcodes added
|
||||
* Welcome Page Added
|
||||
|
||||
= 1.0.4 =
|
||||
Bugs Fixed and New Shortcodes Added: January 05, 2023
|
||||
|
||||
* Bugs Fixed
|
||||
* New shortcodes added
|
||||
* SEO Plugins Support Added SEOPress/RankMath/YoastSEO
|
||||
|
||||
= 1.0.5 =
|
||||
Bugs Fixed and New Shortcodes Added: January 08, 2023
|
||||
|
||||
* Bugs Fixed
|
||||
* Age Calculator Added use shortcode to calculate The total age
|
||||
* Custom period function added (combined) A duration of years, months, or days can be referred to using this short code.
|
||||
|
||||
= 1.0.6 =
|
||||
Bugs Fixed and Shortcodes Changed: January 27, 2023
|
||||
|
||||
* Bugs Fixed
|
||||
* All Shortcode changed long to short for handle characters issues
|
||||
|
||||
= 1.0.7 =
|
||||
Bugs Fixed and New Shortcodes Added: March 16, 2023
|
||||
|
||||
* Bugs Fixed
|
||||
* New Shortcode for Copy Pasting Added
|
||||
@@ -0,0 +1,6 @@
|
||||
= 1.2.0 =
|
||||
New: support for WooCommerce 8.0.1
|
||||
New: support for WordPress 6.3
|
||||
|
||||
= 1.1.0 =
|
||||
New: support for WooCommerce 7.9
|
||||
@@ -0,0 +1,43 @@
|
||||
# Copyright (c) $(date +'%Y') Automatic Image Uploader.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Automatic Image Uploader 1.2.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/automatic-image-uploader\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-02-21T05:53:35+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: aiu\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Automatic Image Uploader"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.iranimij.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Upload your images automatically."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Iman Heydari"
|
||||
msgstr ""
|
||||
|
||||
#: automatic-image-uploader.php:263
|
||||
msgid "Automatic image uploader"
|
||||
msgstr ""
|
||||
|
||||
#: automatic-image-uploader.php:264
|
||||
msgid "AIU"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.php:101
|
||||
msgid "The data has been saved."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,31 @@
|
||||
# Copyright (C) 2023 GrandPlugins
|
||||
# This file is distributed under the same license as the AVIF Support [GrandPlugins] plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AVIF Support [GrandPlugins] 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gpls-avif-support\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-02-09T14:51:55+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: gpls-avif-support\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "AVIF Support [GrandPlugins]"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "AVIF support plugins aims to support avif images in WordPress by overcome wp issues and limits regarding uploading, displaying and generating avif images."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "GrandPlugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://grandplugins.com"
|
||||
msgstr ""
|
||||
310
spec/fixtures/dynamic_finders/plugin_version/b-slider/translation_file/languages/sliders-en_US.po
vendored
Normal file
310
spec/fixtures/dynamic_finders/plugin_version/b-slider/translation_file/languages/sliders-en_US.po
vendored
Normal file
@@ -0,0 +1,310 @@
|
||||
# Copyright (C) 2022 bPlugins LLC
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: B Slider 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/b-slider\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-10-06T05:42:41+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: slider\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "B Slider"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Simple slider with bootstrap."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://bplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:15
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:20
|
||||
#: dist/editor.js:5941
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:26
|
||||
msgid "red"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:27
|
||||
msgid "white"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:28
|
||||
msgid "blue"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:32
|
||||
msgid "400"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:33
|
||||
msgid "500"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:34
|
||||
msgid "600"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:35
|
||||
msgid "700"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:36
|
||||
msgid "800"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:37
|
||||
msgid "900"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:43
|
||||
msgid "Small"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:48
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:53
|
||||
msgid "Big"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:60
|
||||
#: dist/editor.js:5913
|
||||
#: dist/editor.js:5936
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:61
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:66
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:67
|
||||
msgid "Dot"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5758
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5760
|
||||
msgid "Read Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5765
|
||||
msgid "Would you please rate us?"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5766
|
||||
msgid "We are new and we need your help to grow!🙏"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5770
|
||||
msgid "Slides"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5777
|
||||
msgid "Slide Image:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5778
|
||||
msgid "Enter Image URL"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5781
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5781
|
||||
#: dist/editor.js:5784
|
||||
msgid "top"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5781
|
||||
msgid "Enter Title"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5784
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5784
|
||||
msgid "Enter desc"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5788
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5790
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5798
|
||||
msgid "Add New Slide"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5805
|
||||
msgid "Animation:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5833
|
||||
msgid "Slider Height"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5851
|
||||
msgid "Content Position"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5852
|
||||
msgid "Content Position:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5866
|
||||
msgid "Slider Overly Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5868
|
||||
msgid "Overly Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5876
|
||||
msgid "Title Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5879
|
||||
#: dist/editor.js:5897
|
||||
#: dist/editor.js:5921
|
||||
#: dist/editor.js:5963
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5886
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5890
|
||||
#: dist/editor.js:5903
|
||||
msgid "Typography:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5895
|
||||
msgid "Description Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5906
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5911
|
||||
msgid "Arrow Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5926
|
||||
#: dist/editor.js:5956
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5934
|
||||
msgid "Indicators Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5970
|
||||
msgid "Active Color"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "B Slider"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "Display Amazing Gutenberg Responsive Image And Content Slider"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "slider"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "bootstrap"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "carousel"
|
||||
msgstr ""
|
||||
414
spec/fixtures/dynamic_finders/plugin_version/b-tiktok-feed/translation_file/languages/tiktok.pot
vendored
Normal file
414
spec/fixtures/dynamic_finders/plugin_version/b-tiktok-feed/translation_file/languages/tiktok.pot
vendored
Normal file
@@ -0,0 +1,414 @@
|
||||
# Copyright (C) 2022 bPlugins LLC
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: B Tiktok Feed 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/player-for-tiktok\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-12-20T17:28:05+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: tiktok\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "B Tiktok Feed"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Embed Tiktok feed in your website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://bplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: bblocksdk/components/BControlPro.js:6
|
||||
#: bblocksdk/components/BTypographyPro.js:7
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5932
|
||||
#: dist/editor.js:5954
|
||||
msgid "Pro"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5803
|
||||
msgid "Pro Feature"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5806
|
||||
msgid "Unlock Tiktok Player Feature"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5808
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5896
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5897
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5898
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5902
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5903
|
||||
msgid "Card"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5904
|
||||
msgid "Compact"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5908
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5909
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5913
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:5914
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6059
|
||||
msgid "Remove Authorize"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6060
|
||||
msgid "Clear Cache"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6068
|
||||
msgid "Add TikTok Account"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6073
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6075
|
||||
msgid "Read Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6080
|
||||
msgid "Would you please rate us?"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6081
|
||||
msgid "We are new and we need your help to grow!🙏"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6086
|
||||
#: dist/editor.js:6088
|
||||
#: dist/editor.js:6207
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6092
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6095
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6098
|
||||
msgid "Share button"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/script.js:33
|
||||
#: dist/editor.js:6100
|
||||
#: dist/editor.js:6546
|
||||
#: dist/editor.js:6589
|
||||
#: dist/editor.js:6641
|
||||
#: dist/script.js:922
|
||||
#: dist/script.js:965
|
||||
#: dist/script.js:1017
|
||||
msgid "Following"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/script.js:33
|
||||
#: dist/editor.js:6103
|
||||
#: dist/editor.js:6549
|
||||
#: dist/editor.js:6592
|
||||
#: dist/editor.js:6644
|
||||
#: dist/script.js:925
|
||||
#: dist/script.js:968
|
||||
#: dist/script.js:1020
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6106
|
||||
msgid "Total Like"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6109
|
||||
#: dist/editor.js:6343
|
||||
msgid "Biography"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6114
|
||||
msgid "Content/Videos"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6115
|
||||
msgid "Videos"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6125
|
||||
#: dist/editor.js:6210
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6127
|
||||
msgid "Feed Per Page"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6135
|
||||
msgid "Column Gap:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6138
|
||||
msgid "Row Gap:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6142
|
||||
msgid "Columns:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6148
|
||||
msgid "Video Overly"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6149
|
||||
msgid "Show Like "
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6154
|
||||
msgid "Show Comment "
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6159
|
||||
msgid "Show View "
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6167
|
||||
msgid "Cache Time"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6171
|
||||
msgid "Profile:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6187
|
||||
msgid "Video:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6253
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6275
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6278
|
||||
#: dist/editor.js:6306
|
||||
#: dist/editor.js:6344
|
||||
#: dist/editor.js:6367
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6291
|
||||
#: dist/editor.js:6318
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6294
|
||||
msgid "Compact Profile"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6296
|
||||
msgid "Top Background Color:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6298
|
||||
msgid "Bottom Background Color:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6302
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6311
|
||||
msgid "Share Button"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6313
|
||||
#: dist/editor.js:6357
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6320
|
||||
#: dist/editor.js:6361
|
||||
msgid "Colors"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6322
|
||||
#: dist/editor.js:6363
|
||||
msgid "Hover Colors"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6327
|
||||
msgid "Info Count"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6329
|
||||
msgid "Count Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6331
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6336
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6355
|
||||
msgid "Load More"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/editor.js:6366
|
||||
msgid "Overly Icon Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/script.js:33
|
||||
#: dist/editor.js:6552
|
||||
#: dist/editor.js:6595
|
||||
#: dist/editor.js:6647
|
||||
#: dist/script.js:928
|
||||
#: dist/script.js:971
|
||||
#: dist/script.js:1023
|
||||
msgid "Likes"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/script.js:33
|
||||
#: dist/editor.js:6762
|
||||
#: dist/script.js:1155
|
||||
msgid "Videos Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
#: dist/script.js:33
|
||||
#: dist/editor.js:6747
|
||||
#: dist/script.js:1140
|
||||
msgid "Authorization Required"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "B TikTok Feed"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "Embed Tiktok feed in your website"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "tiktok"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "feed"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "tiktok gallery"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,528 @@
|
||||
# Copyright (C) 2023 Get Innovation Dev.
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Back in stock notifications for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-stock-notify-"
|
||||
"me\n"
|
||||
"POT-Creation-Date: 2023-02-22T06:43:48+00:00\n"
|
||||
"PO-Revision-Date: 2023-02-22 08:57+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.2.2\n"
|
||||
"X-Domain: back-in-stock-notifications-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Back in stock notifications for WooCommerce"
|
||||
msgstr "Back in stock notifications for WooCommerce"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid ""
|
||||
"https://www.getinnovation.dev/wordpres-plugins/woocommerce-stock-notify-me/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Woocommerce subscribe system for out of stock products."
|
||||
msgstr "Woocommerce subscribe system for out of stock products."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Get Innovation Dev."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://getinnovation.dev/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:48
|
||||
msgid "Notify Me - Settings"
|
||||
msgstr "Notify Me - Settings"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:49 admin/class-wsnm-admin.php:453
|
||||
msgid "Settings"
|
||||
msgstr "Settings"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:80
|
||||
msgid "General"
|
||||
msgstr "General"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:85
|
||||
msgid "Subscription Form"
|
||||
msgstr "Subscription Form"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:90
|
||||
msgid "Email Templates"
|
||||
msgstr "Email Templates"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:95
|
||||
msgid "Documentation"
|
||||
msgstr "Documentation"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:252
|
||||
msgid "Settings successfully updated"
|
||||
msgstr "Settings successfully updated"
|
||||
|
||||
#: admin/class-wsnm-admin.php:35
|
||||
msgid "Woo Stock Notify Me requires Woocommerce to be installed."
|
||||
msgstr "Woo Stock Notify Me requires Woocommerce to be installed."
|
||||
|
||||
#: admin/class-wsnm-admin.php:74 admin/class-wsnm-admin.php:75
|
||||
#: admin/class-wsnm-admin.php:85 admin/parts/settings-page-template.php:3
|
||||
msgid "Notify Me"
|
||||
msgstr "Notify Me"
|
||||
|
||||
#: admin/class-wsnm-admin.php:76
|
||||
msgctxt "Notify Me - Plugin"
|
||||
msgid "Add New"
|
||||
msgstr "Add New"
|
||||
|
||||
#: admin/class-wsnm-admin.php:77
|
||||
msgid "Add New Subscription"
|
||||
msgstr "Add New Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:78
|
||||
msgid "Edit Subscription"
|
||||
msgstr "Edit Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:79
|
||||
msgid "New Subscription"
|
||||
msgstr "New Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:80
|
||||
msgid "All Subscription"
|
||||
msgstr "All Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:81
|
||||
msgid "View Subscription"
|
||||
msgstr "View Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:82
|
||||
msgid "Search Subscription"
|
||||
msgstr "Search Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:83
|
||||
msgid "No Subscription found"
|
||||
msgstr "No Subscription found"
|
||||
|
||||
#: admin/class-wsnm-admin.php:84
|
||||
msgid "No Subscription found in the Trash"
|
||||
msgstr "No Subscription found in the Trash"
|
||||
|
||||
#: admin/class-wsnm-admin.php:119
|
||||
msgid "Details"
|
||||
msgstr "Details"
|
||||
|
||||
#: admin/class-wsnm-admin.php:152 admin/class-wsnm-admin.php:308
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: admin/class-wsnm-admin.php:157 admin/class-wsnm-admin.php:311
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: admin/class-wsnm-admin.php:158 admin/class-wsnm-admin.php:310
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#: admin/class-wsnm-admin.php:194 includes/class-wsnm-helper.php:305
|
||||
msgid "Unavailable"
|
||||
msgstr "Unavailable"
|
||||
|
||||
#: admin/class-wsnm-admin.php:213
|
||||
msgid "Select Product"
|
||||
msgstr "Select Product"
|
||||
|
||||
#: admin/class-wsnm-admin.php:289
|
||||
msgid "Download CSV"
|
||||
msgstr "Download CSV"
|
||||
|
||||
#: admin/class-wsnm-admin.php:305
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: admin/class-wsnm-admin.php:330 admin/class-wsnm-admin.php:331
|
||||
msgid "Not Available"
|
||||
msgstr "Not Available"
|
||||
|
||||
#: admin/class-wsnm-admin.php:348
|
||||
msgid "Out of stock - Notifications"
|
||||
msgstr "Out of stock - Notifications"
|
||||
|
||||
#: admin/class-wsnm-admin.php:373
|
||||
msgid "Pause Notifications."
|
||||
msgstr "Pause Notifications."
|
||||
|
||||
#: admin/class-wsnm-admin.php:374
|
||||
msgid ""
|
||||
"By default the notifications are sent for all products, check this to pause "
|
||||
"the notifications for this particular product."
|
||||
msgstr ""
|
||||
"By default the notifications are sent for all products, check this to pause "
|
||||
"the notifications for this particular product."
|
||||
|
||||
#: admin/class-wsnm-admin.php:387
|
||||
msgid "Manually Mode"
|
||||
msgstr "Manually Mode"
|
||||
|
||||
#: admin/class-wsnm-admin.php:388
|
||||
msgid "Check the box and save the product to send notifications."
|
||||
msgstr "Check the box and save the product to send notifications."
|
||||
|
||||
#: admin/class-wsnm-admin.php:453
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Plugin Settings"
|
||||
|
||||
#: admin/parts/emails/default-confirmation-email.php:1
|
||||
#: admin/parts/emails/default-notification-email.php:1
|
||||
msgid "Hello [wsnm-first-name] [wsnm-last-name]"
|
||||
msgstr "Hello [wsnm-first-name] [wsnm-last-name]"
|
||||
|
||||
#: admin/parts/emails/default-confirmation-email.php:1
|
||||
msgid "Thank you for subscribing to <strong>[wsnm-product-title]</strong>"
|
||||
msgstr "Thank you for subscribing to <strong>[wsnm-product-title]</strong>"
|
||||
|
||||
#: admin/parts/emails/default-confirmation-email.php:1
|
||||
msgid ""
|
||||
"You will receive an email notification once the product will be back in stock"
|
||||
msgstr ""
|
||||
"You will receive an email notification once the product will be back in stock"
|
||||
|
||||
#: admin/parts/emails/default-confirmation-email.php:2
|
||||
#: admin/parts/emails/default-notification-email.php:2
|
||||
msgid "Thank you!"
|
||||
msgstr "Thank you!"
|
||||
|
||||
#: admin/parts/emails/default-confirmation-email.php:3
|
||||
#: admin/parts/emails/default-notification-email.php:3
|
||||
msgid "Your friends at"
|
||||
msgstr "Your friends at"
|
||||
|
||||
#: admin/parts/emails/default-notification-email.php:1
|
||||
msgid ""
|
||||
"Your subscribed product <strong>[wsnm-product-title]</strong> is now back in "
|
||||
"stock for [wsnm-product-price]! The stock - [wsnm-product-quantity], and "
|
||||
"this email is not a guarantee you'll get one, so hurry to be one of the "
|
||||
"lucky shoppers who do"
|
||||
msgstr ""
|
||||
"Your subscribed product <strong>[wsnm-product-title]</strong> is now back in "
|
||||
"stock for [wsnm-product-price]! The stock - [wsnm-product-quantity], and "
|
||||
"this email is not a guarantee you'll get one, so hurry to be one of the "
|
||||
"lucky shoppers who do"
|
||||
|
||||
#: admin/parts/emails/default-notification-email.php:1
|
||||
msgid ""
|
||||
"Add the product <strong>[wsnm-product-title]</strong> directly to your cart: "
|
||||
"[wsnm-product-url]"
|
||||
msgstr ""
|
||||
"Add the product <strong>[wsnm-product-title]</strong> directly to your cart: "
|
||||
"[wsnm-product-url]"
|
||||
|
||||
#: admin/parts/page-email-templates.php:4
|
||||
msgid "Confirmation Email"
|
||||
msgstr "Confirmation Email"
|
||||
|
||||
#: admin/parts/page-email-templates.php:7
|
||||
msgid ""
|
||||
"The confirmation email is sent when someone subscribes to get notifications."
|
||||
msgstr ""
|
||||
"The confirmation email is sent when someone subscribes to get notifications."
|
||||
|
||||
#: admin/parts/page-email-templates.php:12
|
||||
msgid "Enable the confirmation email"
|
||||
msgstr "Enable the confirmation email"
|
||||
|
||||
#: admin/parts/page-email-templates.php:15
|
||||
msgid "Uncheck to disable the default confirmation email."
|
||||
msgstr "Uncheck to disable the default confirmation email."
|
||||
|
||||
#: admin/parts/page-email-templates.php:22
|
||||
msgid "Confirmation Email - Subject"
|
||||
msgstr "Confirmation Email - Subject"
|
||||
|
||||
#: admin/parts/page-email-templates.php:28
|
||||
msgid "Confirmation Email - Content"
|
||||
msgstr "Confirmation Email - Content"
|
||||
|
||||
#: admin/parts/page-email-templates.php:57
|
||||
msgid "Back in Stock Notification Email"
|
||||
msgstr "Back in Stock Notification Email"
|
||||
|
||||
#: admin/parts/page-email-templates.php:60
|
||||
msgid ""
|
||||
"The back in stock notification email is sent when the product is back in "
|
||||
"stock again."
|
||||
msgstr ""
|
||||
"The back in stock notification email is sent when the product is back in "
|
||||
"stock again."
|
||||
|
||||
#: admin/parts/page-email-templates.php:67
|
||||
msgid "Back in Stock Notification Email - Subject"
|
||||
msgstr "Back in Stock Notification Email - Subject"
|
||||
|
||||
#: admin/parts/page-email-templates.php:73
|
||||
msgid "Back in Stock Notification Email - Content"
|
||||
msgstr "Back in Stock Notification Email - Content"
|
||||
|
||||
#: admin/parts/page-email-templates.php:101
|
||||
msgid "Reset both emails - The confirmation and Back in stock notification"
|
||||
msgstr "Reset both emails - The confirmation and Back in stock notification"
|
||||
|
||||
#: admin/parts/page-email-templates.php:105
|
||||
#: admin/parts/page-general-settings.php:46
|
||||
#: admin/parts/page-subscription-form.php:99
|
||||
msgid "Save"
|
||||
msgstr "Save"
|
||||
|
||||
#: admin/parts/page-general-settings.php:4
|
||||
msgid "Mode"
|
||||
msgstr "Mode"
|
||||
|
||||
#: admin/parts/page-general-settings.php:8
|
||||
msgid "Manually"
|
||||
msgstr "Manually"
|
||||
|
||||
#: admin/parts/page-general-settings.php:11
|
||||
msgid ""
|
||||
"Is the default mode. The notifications are triggered manually by "
|
||||
"administrator directly from the product page."
|
||||
msgstr ""
|
||||
"Is the default mode. The notifications are triggered manually by "
|
||||
"administrator directly from the product page."
|
||||
|
||||
#: admin/parts/page-general-settings.php:16
|
||||
msgid "Automatically"
|
||||
msgstr "Automatically"
|
||||
|
||||
#: admin/parts/page-general-settings.php:19
|
||||
msgid ""
|
||||
"When this mode is enabled, the notifications are triggered automatically by "
|
||||
"the stock status. The notifications are sent when the product is back in "
|
||||
"stock."
|
||||
msgstr ""
|
||||
"When this mode is enabled, the notifications are triggered automatically by "
|
||||
"the stock status. The notifications are sent when the product is back in "
|
||||
"stock."
|
||||
|
||||
#: admin/parts/page-general-settings.php:27
|
||||
msgid "Button Style"
|
||||
msgstr "Button Style"
|
||||
|
||||
#: admin/parts/page-general-settings.php:30
|
||||
msgid "Change the default button style"
|
||||
msgstr "Change the default button style"
|
||||
|
||||
#: admin/parts/page-general-settings.php:36
|
||||
msgid "Background color"
|
||||
msgstr "Background color"
|
||||
|
||||
#: admin/parts/page-general-settings.php:40
|
||||
msgid "Text color"
|
||||
msgstr "Text color"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:4
|
||||
msgid "Form Settings"
|
||||
msgstr "Form Settings"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:7
|
||||
msgid "Manage the subscription form"
|
||||
msgstr "Manage the subscription form"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:13
|
||||
msgid "Enable First and Last Name"
|
||||
msgstr "Enable First and Last Name"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:16
|
||||
msgid "Enable reCAPTCHA v2"
|
||||
msgstr "Enable reCAPTCHA v2"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:19
|
||||
msgid ""
|
||||
"Avoid any spam by enabling reCAPTCHA v2. Click <a href=\"https://www.google."
|
||||
"com/recaptcha\" target=\"_blank\">here</a> to generate the Site & Secret keys"
|
||||
msgstr ""
|
||||
"Avoid any spam by enabling reCAPTCHA v2. Click <a href=\"https://www.google."
|
||||
"com/recaptcha\" target=\"_blank\">here</a> to generate the Site & Secret keys"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:27
|
||||
msgid "Recaptcha Site KEY"
|
||||
msgstr "Recaptcha Site KEY"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:33
|
||||
msgid "Recaptcha Secret KEY"
|
||||
msgstr "Recaptcha Secret KEY"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:41
|
||||
msgid "Other Settings"
|
||||
msgstr "Other Settings"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:46
|
||||
msgid "Before Form Text"
|
||||
msgstr "Before Form Text"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:75
|
||||
msgid "After Form Text"
|
||||
msgstr "After Form Text"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:26
|
||||
msgid "%s year"
|
||||
msgid_plural "%s years"
|
||||
msgstr[0] "%s year"
|
||||
msgstr[1] "%s years"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:31
|
||||
msgid "%s month"
|
||||
msgid_plural "%s months"
|
||||
msgstr[0] "%s month"
|
||||
msgstr[1] "%s months"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:36
|
||||
msgid "%s week"
|
||||
msgid_plural "%s weeks"
|
||||
msgstr[0] "%s week"
|
||||
msgstr[1] "%s weeks"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:41
|
||||
msgid "%s day"
|
||||
msgid_plural "%s days"
|
||||
msgstr[0] "%s day"
|
||||
msgstr[1] "%s days"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:46
|
||||
msgid "%s hour"
|
||||
msgid_plural "%s hours"
|
||||
msgstr[0] "%s hour"
|
||||
msgstr[1] "%s hours"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:51
|
||||
msgid "%s minute"
|
||||
msgid_plural "%s minutes"
|
||||
msgstr[0] "%s minute"
|
||||
msgstr[1] "%s minutes"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:56
|
||||
msgid "%s second"
|
||||
msgid_plural "%s seconds"
|
||||
msgstr[0] "%s second"
|
||||
msgstr[1] "%s seconds"
|
||||
|
||||
#: includes/class-action-scheduler.php:164
|
||||
msgid " (%s ago)"
|
||||
msgstr " (%s ago)"
|
||||
|
||||
#: includes/class-action-scheduler.php:166
|
||||
msgid " (%s)"
|
||||
msgstr " (%s)"
|
||||
|
||||
#: includes/class-action-scheduler.php:184
|
||||
msgid "Now!"
|
||||
msgstr "Now!"
|
||||
|
||||
#: includes/class-wsnm-helper.php:205
|
||||
msgid "You subscribed to [wsnm-product-title]"
|
||||
msgstr "You subscribed to [wsnm-product-title]"
|
||||
|
||||
#: includes/class-wsnm-helper.php:217
|
||||
msgid "The product [wsnm-product-title] is back in stock"
|
||||
msgstr "The product [wsnm-product-title] is back in stock"
|
||||
|
||||
#: includes/class-wsnm-helper.php:314
|
||||
msgid "Sent"
|
||||
msgstr "Sent"
|
||||
|
||||
#: includes/class-wsnm-helper.php:319 includes/class-wsnm-helper.php:323
|
||||
msgid "Paused"
|
||||
msgstr "Paused"
|
||||
|
||||
#: includes/class-wsnm-helper.php:328
|
||||
msgid "Waiting"
|
||||
msgstr "Waiting"
|
||||
|
||||
#: public/class-wsnm-public.php:75 public/class-wsnm-public.php:77
|
||||
msgid "Something went wrong."
|
||||
msgstr "Something went wrong."
|
||||
|
||||
#: public/class-wsnm-public.php:86
|
||||
msgid "Please specify the first and last name"
|
||||
msgstr "Please specify the first and last name"
|
||||
|
||||
#: public/class-wsnm-public.php:92
|
||||
msgid "Please specify a valid email."
|
||||
msgstr "Please specify a valid email."
|
||||
|
||||
#: public/class-wsnm-public.php:109
|
||||
msgid "Please configure reCaptcha"
|
||||
msgstr "Please configure reCaptcha"
|
||||
|
||||
#: public/class-wsnm-public.php:114
|
||||
msgid "Please select a valid product."
|
||||
msgstr "Please select a valid product."
|
||||
|
||||
#: public/class-wsnm-public.php:116
|
||||
msgid "The product doesn't exist."
|
||||
msgstr "The product doesn't exist."
|
||||
|
||||
#: public/class-wsnm-public.php:118
|
||||
msgid "Only Simple and Variable products"
|
||||
msgstr "Only Simple and Variable products"
|
||||
|
||||
#: public/class-wsnm-public.php:127
|
||||
msgid "Please select a valid variation."
|
||||
msgstr "Please select a valid variation."
|
||||
|
||||
#: public/class-wsnm-public.php:159
|
||||
msgid "Notification set! Thank you!"
|
||||
msgstr "Notification set! Thank you!"
|
||||
|
||||
#: public/class-wsnm-public.php:161
|
||||
msgid "Something went wrong"
|
||||
msgstr "Something went wrong"
|
||||
|
||||
#: public/class-wsnm-public.php:163
|
||||
msgid "You are already subscribed for this product"
|
||||
msgstr "You are already subscribed for this product"
|
||||
|
||||
#: public/class-wsnm-public.php:188 public/parts/form-modal.php:4
|
||||
#: public/parts/form-modal.php:33
|
||||
msgid "Subscribe"
|
||||
msgstr "Subscribe"
|
||||
|
||||
#: public/parts/after-form-content.php:1
|
||||
msgid ""
|
||||
"By entering my details and by clicking the \"Subscribe\" button, I agree "
|
||||
"that my contact details may be used to inform me about the availability of "
|
||||
"my selected or similar products and other occasional marketing materials."
|
||||
msgstr ""
|
||||
"By entering my details and by clicking the \"Subscribe\" button, I agree "
|
||||
"that my contact details may be used to inform me about the availability of "
|
||||
"my selected or similar products and other occasional marketing materials."
|
||||
|
||||
#: public/parts/form-modal.php:16
|
||||
msgid "First Name ..."
|
||||
msgstr "First Name ..."
|
||||
|
||||
#: public/parts/form-modal.php:19
|
||||
msgid "Last Name ..."
|
||||
msgstr "Last Name ..."
|
||||
|
||||
#: public/parts/form-modal.php:24
|
||||
msgid "Enter Your Email ..."
|
||||
msgstr "Enter Your Email ..."
|
||||
|
||||
#: public/parts/pre-form-content.php:1
|
||||
msgid ""
|
||||
"Enter your details and we will let you know as soon as this product will be "
|
||||
"available again"
|
||||
msgstr ""
|
||||
"Enter your details and we will let you know as soon as this product will be "
|
||||
"available again"
|
||||
@@ -0,0 +1,146 @@
|
||||
# Copyright (C) 2021 Valice
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Banner Alerts 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/banner-alerts\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-12-28T21:27:03-07:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: banner-alerts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: src/Admin/AdminPages.php:42
|
||||
msgid "Banner Alerts"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.banneralertsplugin.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Provides an easy interface for creating and displaying alerts or notices as a banner on a website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Valice"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.valice.com/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:55
|
||||
msgid "Display title?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:58
|
||||
#: src/Admin/AdminPages.php:77
|
||||
#: src/Admin/AdminPages.php:92
|
||||
#: src/Admin/AdminPages.php:149
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:62
|
||||
#: src/Admin/AdminPages.php:81
|
||||
#: src/Admin/AdminPages.php:96
|
||||
#: src/Admin/AdminPages.php:153
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:66
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:70
|
||||
msgid "Display the title of alert in the banner alert popup?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:74
|
||||
msgid "Display read more link?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:85
|
||||
msgid "Display read more link in the banner alert popup?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:89
|
||||
msgid "Display dismiss link?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:100
|
||||
msgid "Allow alerts to be dismissed?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:104
|
||||
msgid "Display content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:107
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:111
|
||||
msgid "Full Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:115
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:119
|
||||
msgid "Choose the display setting for the alert message in the banner alert popup"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:123
|
||||
msgid "Open/Close Speed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:126
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:130
|
||||
msgid "Faster"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:134
|
||||
msgid "Slower"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:138
|
||||
msgid "Immediate"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:142
|
||||
msgid "Choose the speed in which the alert is opened and closed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:146
|
||||
msgid "Use Slider"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:157
|
||||
msgid "Display alerts in a slider when multiple alerts are active?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/AdminPages.php:161
|
||||
msgid "Display styles"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:118
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:119
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: src/BannerAlerts.php:131
|
||||
msgid "A valid unix timestamp is required."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,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,138 @@
|
||||
# Copyright (C) 2022 J Hanlon | Waas Hero
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Login Module for Beaver Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/login-module-for-beaver-builder\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-03-17T06:27:47+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: login-module-for-bb\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Login Module for Beaver Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://waashero.com/login-hero-pro-for-beaver-builder/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add an easy to use Beaver Builder Login/Logout button module. Works for single sites and multisite."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "J Hanlon | Waas Hero"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://waashero.com"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:11
|
||||
msgid "Login Modal"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:12
|
||||
msgid "User Login Popup Button."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:13
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:28
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:31
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:37
|
||||
msgid "Log In Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:38
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:52
|
||||
msgid "Log In"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:39
|
||||
msgid "Enter the text for the Log In button."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:44
|
||||
msgid "Log Out Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:45
|
||||
msgid "Log Out"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:46
|
||||
msgid "Enter the text for the Log Out button."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:51
|
||||
msgid "Popup Title"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:53
|
||||
msgid "Enter the text for the header in the Log In popup."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:58
|
||||
msgid "Popup Reset Password Text"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:59
|
||||
msgid "Lost your password? Click here to reset."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:60
|
||||
msgid "Enter the text for the Reset Password link in the Log In popup."
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:69
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:72
|
||||
msgid "Sign In Popup"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:77
|
||||
msgid "Popup Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:89
|
||||
msgid "Popup Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:103
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:108
|
||||
msgid "Log In Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:120
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:144
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:169
|
||||
msgid "Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:132
|
||||
msgid "Log Out Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: modules/login-logout-reset/class-login-logout-module.php:157
|
||||
msgid "Popup Log In Button Color"
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/before-after-image-block/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/before-after-image-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "custom-image-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.1"
|
||||
}
|
||||
}
|
||||
156
spec/fixtures/dynamic_finders/plugin_version/bertha-ai-free/change_log/CHANGELOG.txt
vendored
Normal file
156
spec/fixtures/dynamic_finders/plugin_version/bertha-ai-free/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
Changelog
|
||||
|
||||
V1.8.3
|
||||
- Added Tutorial Videos for All Templates to help you use Bertha so much better. An Inbuilt Academy is now on every template.
|
||||
- Added Avoid Duplication Setting for Ideas. Bertha now learns much quicker as to what you require.
|
||||
- Improved UI - We made Bertha prettier and easier to navigate.
|
||||
- Fixed Empty Ideas. Bertha thinks harder now before producing content.
|
||||
- Fixed Long Form Notice. The notice was appearing out of context.
|
||||
- Fixed Template Redirection Issue. Sometimes a user was running out of words and being sent to the wrong upgrade page. This has now been fixed.
|
||||
|
||||
V1.8.2
|
||||
- Added Lazy Load Effect for History, Favourite and Draft Tabs
|
||||
- Added Redo Button to Long Form Content
|
||||
- Updated Security
|
||||
- Improved UI
|
||||
- Fixed Divi Tinymce Double Icon Issue
|
||||
- Fixed Gutenberg Title Block
|
||||
|
||||
V1.8.1
|
||||
- Fixed Minor Bugs
|
||||
|
||||
V1.8.0
|
||||
- Improved UI
|
||||
- Added Report
|
||||
- Added Word Limit for Specific Site
|
||||
- Fixed Bertha Icon Click Issue
|
||||
- Fixed Search Icon in Long Form
|
||||
- Changed Descriptions for templates and Categories
|
||||
- Added Header to all Bertha Pages
|
||||
- Fixed Category button conflict with Atarim
|
||||
- Fixed Empty Long Form Content
|
||||
- Fixed Minor Bugs
|
||||
|
||||
|
||||
V1.7.1
|
||||
- Improved UI
|
||||
- Fixed Bertha Icons for Elementor and Visual Composer
|
||||
- Fixed Notice if Cursor is not in focus in any input field while clicking Idea for Divi, Elementor and Visual Composer
|
||||
- Fixed Paragrapg Generator Taxonomies and History Filter
|
||||
|
||||
V1.7.0
|
||||
- Added Compatibility with Atarim
|
||||
- Added Frontend Bertha
|
||||
- Updated Icons UI
|
||||
- Fixed Minor Bugs
|
||||
|
||||
V1.6.0
|
||||
- Improved UI
|
||||
- Improved long form content
|
||||
- Fixed Compatibility issue with Divi Latest Version
|
||||
- Fixed Compatibility issue with Yoast SEO
|
||||
- Added Bertha Icons on Every Admin Page
|
||||
- Modified Edit Draft Flow
|
||||
- Added Template Sorting Categories
|
||||
- Changed Blurb Generator Name
|
||||
- Added Trash
|
||||
- Added AIDA Marketing Framework Template
|
||||
- Added SEO City Based Pages Template
|
||||
- Added Business or Product Name Template
|
||||
- Added Before, After and Bridge Template
|
||||
- Added PAS Framework Template
|
||||
- Added FAQs List Template
|
||||
- Added FAQ Answers Template
|
||||
- Added Content Summary Template
|
||||
- Added Contact Form Blurb Template
|
||||
- Added SEO Keyword Suggestions Template
|
||||
- Added Evil Bertha Template
|
||||
|
||||
V1.5.0
|
||||
- Added Bertha Long Form Content
|
||||
- Fixed Launch Bertha Notice Text
|
||||
- Fixed Minor Bugs
|
||||
- Added new Icon styling and Improved UI
|
||||
|
||||
V1.4.0
|
||||
- Added Bertha Everywhere
|
||||
- Added Seo Title Tag Template
|
||||
- Added Seo Description Tag Template
|
||||
- Added Additional Title Type for Section Title Generator Template
|
||||
|
||||
V1.3.0
|
||||
- Added Copy & Favourites
|
||||
- Fixed License Activation Flow
|
||||
- Fixed Idea CPT Visibility from SEO Plugins
|
||||
- Added Notice if Cursor is not in focus in any input field while clicking Idea
|
||||
|
||||
V1.2.0
|
||||
- Updated Full-on About Us Page Template
|
||||
- Added Company Mission & Vision Template
|
||||
|
||||
V1.1.2
|
||||
- Modified compatibility issue with Visual Composer
|
||||
- Fixed structural bugs
|
||||
|
||||
V1.1.1
|
||||
- Fixed Idea CPT Visibility Issue
|
||||
- Fixed License Redirection Modal Issue
|
||||
- Fixed Exclude Idea CPT from Search
|
||||
- Fixed Backslash Issue with Idea Generation
|
||||
- Fixed Divi Compatibility Issue
|
||||
|
||||
V1.1.0
|
||||
- Fixed Empty Idea Generation
|
||||
- Fixed bootstrap compatibility issues
|
||||
|
||||
V1.0.9
|
||||
- Fixed bootstrap compatibility issues
|
||||
|
||||
V1.0.8
|
||||
- Added partial compatibility with Thrive Architect
|
||||
- Added Monthly Reset Token
|
||||
- Fixed Zapier Email event for 95% word Limit
|
||||
- Fixed compatibility with Beaver Builder
|
||||
- Fixed Redirection Flow after License Activation
|
||||
- Minor Bug Fixes
|
||||
|
||||
V1.0.7
|
||||
- Fixed Tooltips
|
||||
- Added partial compatibility with Beaver Builder
|
||||
- Added partial compatibility with Visual Composer
|
||||
- Added partial compatibility with Oxygen Builder
|
||||
- Minor Bug Fixes
|
||||
|
||||
|
||||
V1.0.6
|
||||
- Fixed Premium Tag Flow
|
||||
- Fixed Live Search Filter Flow
|
||||
- Added Placeholder for Live Search Filter
|
||||
- Added Character Limit for All Bertha AI Inputs
|
||||
- Fixed Descriptions hide issue while Back Flow
|
||||
- Modified Redirection Flow After Onboarding Process
|
||||
- Added Zapier Email Event for 1% and 95% Word Limit
|
||||
- Fixed Visibility of Upgrade Now button in General Setting
|
||||
- Changed Join The Facebook Community Button Link
|
||||
- Changed Become Bertha's Partner Button Link
|
||||
- Changed Post a Review Button Link
|
||||
- Added Latest Vesion in License Page
|
||||
- Fixed Bertha AI Menu Blank Redirection
|
||||
- Fixed Word Limit Restriction for templates
|
||||
- Fixed Buy Url for Limit Exceed
|
||||
- Added Redirect Url to Ran Out of Words Page for Limit Exceeded Templates
|
||||
- Added Notification for Empty History Filter Result
|
||||
- Fixed Suggest a Template Hide from Live Search
|
||||
|
||||
|
||||
V1.0.5
|
||||
- Added Template Access for Free & Pro Version Respectively
|
||||
- Added Live Search Filter for template Selection
|
||||
- Fixed Empty Ideas
|
||||
- Fixed Syntax Errors
|
||||
- Added Class to Upgrade Button
|
||||
- Changed Upgrade button Link
|
||||
- Added Notice for Empty History Tab
|
||||
- Added Premium Tag for Premium Templates
|
||||
- Changed Premium Templates Notice for Free Version
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR BeTheme
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BeThemesMe 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-09 11:42+0530\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: includes/elementor-elements/features.php:42
|
||||
#: includes/elementor-elements/features.php:87
|
||||
msgid "Our Process"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:96
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:99
|
||||
msgid "Enter the title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:105
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:108
|
||||
msgid "Enter the description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor-elements/features.php:115
|
||||
msgid "Process Tabs"
|
||||
msgstr ""
|
||||
71
spec/fixtures/dynamic_finders/plugin_version/better-comments/change_log/changelog.txt
vendored
Normal file
71
spec/fixtures/dynamic_finders/plugin_version/better-comments/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
= 1.4.1 (2022-04-21) =
|
||||
* Add - add ALT text to gravatar images to solve SEO issues
|
||||
* Enhancement - better replytocom handling
|
||||
* Enhancement - code refactoring
|
||||
* Enhancement - rename sections for consistency
|
||||
* Fix - ensure $screen is defined when viewing the backend
|
||||
|
||||
= 1.4 (2022-03-03) =
|
||||
* Fix - optimize quicktags placement for Quick Reply on the backend's Comments page
|
||||
* Fix - ensure quicktags bar is displayed inline for all themes
|
||||
* Fix - local avatars now display correctly on the frontend, with a fallback on a custom default avatar, then gravatar as last resort
|
||||
* Fix - local avatars now display correctly in the backend: dashboard, edit comments pages
|
||||
* Fix - local avatars no longer take over other avatars on Settings > Discussion
|
||||
* Fix - local avatars (even on localhost!) now display correctly on Settings > Discussion
|
||||
* Add - add padding setting to reply links
|
||||
* Add - add setting to remove text-decoration from reply links
|
||||
* Enhancement - only apply styles for comment form if comments are enabled and the form shown
|
||||
* Enhancement - clarify the options names for the comment policy option
|
||||
* Enhancement - better custom quicktags scenario
|
||||
* Enhancement - better replytocom handling
|
||||
* Enhancement - better styles handling
|
||||
* Enhancement - better options handling
|
||||
* Update - Freemius SDK
|
||||
* Update - CF SDK
|
||||
|
||||
= 1.3 (2020-12-24) =
|
||||
|
||||
* New - introduce new sliders style
|
||||
* New - add better looking icons to the admin page, with dual colors
|
||||
* New - add new admin menu icon
|
||||
* New - translations and POT file
|
||||
* Enhancement - move menu underneath Comments menu for easy access and consistency
|
||||
* Enhancement - ensure avatar shapes are only applied to the comments avatars
|
||||
* Enhancement - enqueue and tie inline styles to the (child) theme
|
||||
* Enhancement - add further translatable strings
|
||||
* Performance - replace the font file with standalone SVG icons (this shaved 3.7 MB off the plugin)
|
||||
* Fix - display uploaded avatar as default if it is set
|
||||
* Update - CF SDK
|
||||
|
||||
= 1.2 (2020-11-05) =
|
||||
|
||||
* New - add new plugin icon, derived from the banner
|
||||
* New - add new tab colors
|
||||
* Fix - fix backend quicktags display on the comments and dashboard pages
|
||||
* Enhancement - ensure border-radius is not set when an avatar shape is set
|
||||
* Enhancement - only output avatar code if a shape has been set
|
||||
* Enhancement - add missing default colors for quicktags
|
||||
* Enhancement - improve frontend loading times by 40%
|
||||
* Enhancement - rename functions for consistency
|
||||
* Enhancement - refactor CSS
|
||||
* Update - Freemius SDK
|
||||
* Update - CF SDK
|
||||
|
||||
= 1.1 (2020-10-12) =
|
||||
|
||||
* New - add default colors and palettes for color controls
|
||||
* New - set maximum and minimum comment length
|
||||
* New - set reply title
|
||||
* New - set submit button label
|
||||
* New - add brand-new Avatars section
|
||||
* New - add more shapes for avatars
|
||||
* New - upload a sitewide default avatar
|
||||
* Fix - fix static methods for comments oEmbeds
|
||||
* Enhancement - reorganize Comments tab, add a new Avatars section
|
||||
* Enhancement - display our icon in the WP Admin sidebar
|
||||
* Enhancement - adjust readme.txt
|
||||
* Enhancement - ensure emojis are not intercepted by WP emoji functions on our settings page
|
||||
|
||||
= 1.0 (2020-10-08) =
|
||||
|
||||
Initial release.
|
||||
@@ -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,23 @@
|
||||
{
|
||||
"name": "buddypress-birthdays",
|
||||
"version": "1.6.0",
|
||||
"url": "https://github.com/vapvarun/buddypress-birthdays",
|
||||
"license": "GPL-2.0+",
|
||||
"description": "buddypress-birthdays",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-checktextdomain": "^1.0.1",
|
||||
"grunt-wp-i18n": "^1.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/vapvarun/buddypress-birthdays"
|
||||
},
|
||||
"dependencies": {
|
||||
"load-grunt-tasks": "^3.5.2",
|
||||
"npm": "^8.1.4"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
12
spec/fixtures/dynamic_finders/plugin_version/blaze-checkout/composer_file/package.json
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/blaze-checkout/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "blaze-woocommerce-plugin",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"repository": "git@github.com:Bureau-Inc/blaze-woocommerce-plugin",
|
||||
"author": "Blaze <palash@bureau.id>",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@prettier/plugin-php": "^0.17.6",
|
||||
"prettier": "^2.5.1"
|
||||
}
|
||||
}
|
||||
54
spec/fixtures/dynamic_finders/plugin_version/block-catalog/change_log/CHANGELOG.md
vendored
Normal file
54
spec/fixtures/dynamic_finders/plugin_version/block-catalog/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/).
|
||||
|
||||
## [Unreleased] - TBD
|
||||
|
||||
- todo
|
||||
|
||||
## [1.4.0] - 2022-12-03
|
||||
|
||||
- Improves Core Block Display Titles logic
|
||||
- Fixes parent term for blocks registered without namespace
|
||||
- Improve Reusable Block detection
|
||||
- Add hooks to support nested variations
|
||||
- Adds unit tests
|
||||
|
||||
## [1.3.2] - 2022-11-25
|
||||
|
||||
- Updates readme.txt
|
||||
|
||||
## [1.3.1] - 2022-11-25
|
||||
|
||||
- Minor docs updates
|
||||
|
||||
## [1.3.0] - 2022-11-25
|
||||
|
||||
- Adds support for hierarchical classification
|
||||
- Improves WP CLI find command
|
||||
- Adds inline filter hook documentation
|
||||
- Updates screenshots
|
||||
|
||||
## [1.2.2] - 2022-11-25
|
||||
|
||||
- Updates Documentation
|
||||
|
||||
## [1.2.1] - 2022-11-25
|
||||
|
||||
- Improves block title detection when default title is missing.
|
||||
- Initial svn release
|
||||
|
||||
## [1.2.0] - 2022-11-24
|
||||
|
||||
- Improves filter output with wp_kses.
|
||||
|
||||
## [1.1.0] - 2022-11-23
|
||||
|
||||
- Improves batch indexing for larger sites.
|
||||
- Refactor delete index to use batch mode.
|
||||
- Improves error handling during indexing & deleting via WP-Admin.
|
||||
|
||||
## [1.0.1] - 2022-11-21
|
||||
|
||||
- Initial release
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block Editor Gallery Slider 1.0\n"
|
||||
"Report-Msgid-Bugs-To: hello@krasenslavov.com \n"
|
||||
"Last-Translator: Krasen Slavov <hello@krasenslavov.com>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2022-02-14 10:44+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/"
|
||||
@@ -0,0 +1,14 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block Editor Navigator 1.0\n"
|
||||
"Report-Msgid-Bugs-To: hello@krasenslavov.com \n"
|
||||
"Last-Translator: Krasen Slavov <hello@krasenslavov.com>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2022-02-14 10:44+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/"
|
||||
@@ -0,0 +1,14 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block Search and Replace 1.0\n"
|
||||
"Report-Msgid-Bugs-To: hello@krasenslavov.com \n"
|
||||
"Last-Translator: Krasen Slavov <hello@krasenslavov.com>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2022-02-14 10:44+0000\n"
|
||||
"X-Generator: Loco https://localise.biz/"
|
||||
@@ -0,0 +1,31 @@
|
||||
# Copyright (C) 2022 Phi Phan
|
||||
# This file is distributed under the GPL-2.0-or-later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block Enhancements 1.0.6\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/block-enhancements\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2022-04-27T12:57:41+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0\n"
|
||||
"X-Domain: block-enhancements\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Block Enhancements"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Make core blocks more useful."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Phi Phan"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://boldblocks.net"
|
||||
msgstr ""
|
||||
@@ -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 ""
|
||||
16
spec/fixtures/dynamic_finders/plugin_version/block-xray-attributes/composer_file/package.json
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/block-xray-attributes/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "block-xray-attributes",
|
||||
"version": "1.1.1",
|
||||
"description": "Shows the attributes of the current Gutenberg block in the Document sidebar.",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"dev": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Sal Ferrarello",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^20.0.1"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/blockart-blocks/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 02-12-2021 =
|
||||
* Initial release
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user