Compare commits
47 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2b46ecb3c9 | ||
|
|
d0ce7cb5c5 | ||
|
|
fa0d068c30 | ||
|
|
33d5199f51 | ||
|
|
ac14ce71be | ||
|
|
f4bb6e521e | ||
|
|
5f8aa862b4 | ||
|
|
3621f4cc15 | ||
|
|
b6e36b2605 | ||
|
|
7b55570cbb | ||
|
|
308997523c | ||
|
|
90433d77c6 | ||
|
|
c4bc3bf0e7 | ||
|
|
e9638bee06 | ||
|
|
850662902b | ||
|
|
26867873e2 | ||
|
|
7f491c2403 | ||
|
|
776ca22e77 | ||
|
|
dec31b5a1c | ||
|
|
96dbe526cf | ||
|
|
3113e7309e | ||
|
|
1809c6c195 | ||
|
|
adb84ef7da | ||
|
|
824697490f | ||
|
|
62e01cb9d6 | ||
|
|
87c2f82b80 | ||
|
|
f887f8baa4 | ||
|
|
4d00d97be9 | ||
|
|
b0e946ee29 | ||
|
|
1220b9f47b | ||
|
|
12d2d0ffb0 | ||
|
|
4581113741 | ||
|
|
a20c769eae | ||
|
|
3259316cf1 | ||
|
|
9cc06234e4 | ||
|
|
1ee73268d7 | ||
|
|
f477620899 | ||
|
|
8a9dc1ce2c | ||
|
|
b584aa24bd | ||
|
|
8dfe78a210 | ||
|
|
7143cb5def | ||
|
|
e6c49d99b6 | ||
|
|
6e71f9771c | ||
|
|
452126b56a | ||
|
|
28dfd8b3b9 | ||
|
|
d3196bc03f | ||
|
|
0bff3231cd |
17
.github/dependabot.yml
vendored
Normal file
17
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "bundler"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
# Check for updates to GitHub Actions every weekday
|
||||
interval: "daily"
|
||||
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v1
|
||||
uses: actions/checkout@v2.3.4
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: actions/setup-ruby@v1
|
||||
@@ -37,5 +37,6 @@ jobs:
|
||||
|
||||
- name: Coveralls
|
||||
uses: coverallsapp/github-action@master
|
||||
continue-on-error: true
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
2
.github/workflows/gempush.yml
vendored
2
.github/workflows/gempush.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1
|
||||
with:
|
||||
|
||||
@@ -52,7 +52,7 @@ On MacOSX, if a ```Gem::FilePermissionError``` is raised due to the Apple's Syst
|
||||
|
||||
You can update the local database by using ```wpscan --update```
|
||||
|
||||
Updating WPScan itself is either done via ```gem update wpscan``` or the packages manager (this is quite important for distributions such as in Kali Linux: ```apt-get update && apt-get upgrade```) depending how WPScan was (pre)installed
|
||||
Updating WPScan itself is either done via ```gem update wpscan``` or the packages manager (this is quite important for distributions such as in Kali Linux: ```apt-get update && apt-get upgrade```) depending on how WPScan was (pre)installed
|
||||
|
||||
# Docker
|
||||
|
||||
|
||||
@@ -6,8 +6,7 @@ module WPScan
|
||||
class Aliases < CMSScanner::Controller::Base
|
||||
def cli_options
|
||||
[
|
||||
OptAlias.new(['--stealthy'],
|
||||
alias_for: '--random-user-agent --detection-mode passive --plugins-version-detection passive')
|
||||
OptAlias.new(['--stealthy'], alias_for: '--random-user-agent --detection-mode passive')
|
||||
]
|
||||
end
|
||||
end
|
||||
|
||||
@@ -32,8 +32,7 @@ module WPScan
|
||||
value_if_empty: '1-100')
|
||||
},
|
||||
value_if_empty: 'vp,vt,tt,cb,dbe,u,m',
|
||||
incompatible: [%i[vp ap p], %i[vt at t]],
|
||||
default: { all_plugins: true, config_backups: true }
|
||||
incompatible: [%i[vp ap p], %i[vt at t]]
|
||||
),
|
||||
OptRegexp.new(
|
||||
[
|
||||
@@ -52,7 +51,7 @@ module WPScan
|
||||
OptChoice.new(
|
||||
['--plugins-detection MODE',
|
||||
'Use the supplied mode to enumerate Plugins.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, default: :passive
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
),
|
||||
OptBoolean.new(
|
||||
['--plugins-version-all',
|
||||
@@ -63,7 +62,7 @@ module WPScan
|
||||
OptChoice.new(
|
||||
['--plugins-version-detection MODE',
|
||||
'Use the supplied mode to check plugins\' versions.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, default: :mixed
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
),
|
||||
OptInteger.new(
|
||||
['--plugins-threshold THRESHOLD',
|
||||
@@ -170,6 +169,12 @@ module WPScan
|
||||
['--users-detection MODE',
|
||||
'Use the supplied mode to enumerate Users, instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
),
|
||||
OptRegexp.new(
|
||||
[
|
||||
'--exclude-usernames REGEXP_OR_STRING',
|
||||
'Exclude usernames matching the Regexp/string (case insensitive). Regexp delimiters are not required.'
|
||||
], options: Regexp::IGNORECASE
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
@@ -200,7 +200,7 @@ module WPScan
|
||||
# If the --enumerate is used, the default value is handled by the Option
|
||||
# However, when using --passwords alone, the default has to be set by the code below
|
||||
def enum_users_range
|
||||
ParsedCli.enumerate[:users] || cli_enum_choices[0].choices[:u].validate(nil)
|
||||
ParsedCli.enumerate&.dig(:users) || cli_enum_choices[0].choices[:u].validate(nil)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -11,6 +11,16 @@ require_relative 'users/yoast_seo_author_sitemap'
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
# Specific Finders container to filter the usernames found
|
||||
# and remove the ones matching ParsedCli.exclude_username if supplied
|
||||
class UsersFinders < SameTypeFinders
|
||||
def filter_findings
|
||||
findings.delete_if { |user| ParsedCli.exclude_usernames.match?(user.username) } if ParsedCli.exclude_usernames
|
||||
|
||||
findings
|
||||
end
|
||||
end
|
||||
|
||||
module Users
|
||||
# Users Finder
|
||||
class Base
|
||||
@@ -28,6 +38,10 @@ module WPScan
|
||||
Users::AuthorIdBruteForcing.new(target) <<
|
||||
Users::LoginErrorMessages.new(target)
|
||||
end
|
||||
|
||||
def finders
|
||||
@finders ||= Finders::UsersFinders.new
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
module Finders
|
||||
# Specific Finders container to filter the version detected
|
||||
# and remove the one with low confidence to avoid false
|
||||
# positive when there is not enought information to accurately
|
||||
# positive when there is not enough information to accurately
|
||||
# determine it.
|
||||
class WpVersionFinders < UniqueFinders
|
||||
def filter_findings
|
||||
|
||||
@@ -53,7 +53,9 @@ module WPScan
|
||||
#
|
||||
# @return [ Boolean ]
|
||||
def vulnerable_to?(vuln)
|
||||
return true unless version && vuln && vuln.fixed_in && !vuln.fixed_in.empty?
|
||||
return false if version && vuln&.introduced_in && version < vuln.introduced_in
|
||||
|
||||
return true unless version && vuln&.fixed_in && !vuln.fixed_in.empty?
|
||||
|
||||
version < vuln.fixed_in
|
||||
end
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
<%= warning_icon %> No WPScan API Token given, as a result vulnerability data has not been output.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpscan.com/register
|
||||
<%= warning_icon %> You can get a free API token with 25 daily requests by registering at https://wpscan.com/register
|
||||
<% end -%>
|
||||
|
||||
@@ -8,6 +8,6 @@
|
||||
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpscan.com/register"
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 25 daily requests by registering at https://wpscan.com/register"
|
||||
<% end -%>
|
||||
},
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.14'
|
||||
VERSION = '3.9.0-dev'
|
||||
end
|
||||
|
||||
@@ -21,6 +21,7 @@ module WPScan
|
||||
references: references,
|
||||
type: json_data['vuln_type'],
|
||||
fixed_in: json_data['fixed_in'],
|
||||
introduced_in: json_data['introduced_in'],
|
||||
cvss: json_data['cvss']&.symbolize_keys
|
||||
)
|
||||
end
|
||||
|
||||
@@ -21,9 +21,7 @@ describe WPScan::Controller::Aliases do
|
||||
describe 'parsed_options' do
|
||||
context 'when no --stealthy supplied' do
|
||||
it 'contains the correct options' do
|
||||
expect(WPScan::ParsedCli.options).to include(
|
||||
detection_mode: :mixed, plugins_version_detection: :mixed
|
||||
)
|
||||
expect(WPScan::ParsedCli.options).to include(detection_mode: :mixed)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -31,9 +29,7 @@ describe WPScan::Controller::Aliases do
|
||||
let(:cli_args) { "#{super()} --stealthy" }
|
||||
|
||||
it 'contains the correct options' do
|
||||
expect(WPScan::ParsedCli.options).to include(
|
||||
random_user_agent: true, detection_mode: :passive, plugins_version_detection: :passive
|
||||
)
|
||||
expect(WPScan::ParsedCli.options).to include(random_user_agent: true, detection_mode: :passive)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -29,7 +29,7 @@ describe WPScan::Controller::Enumeration do
|
||||
let(:type) { t }
|
||||
let(:detection_mode) { :mixed }
|
||||
|
||||
context 'when vulnerable' do
|
||||
context 'when vulnerable and mixed detection' do
|
||||
let(:cli_args) { "#{super()} -e v#{type[0]}" }
|
||||
|
||||
it 'returns the expected string' do
|
||||
@@ -37,7 +37,7 @@ describe WPScan::Controller::Enumeration do
|
||||
end
|
||||
end
|
||||
|
||||
context 'when all' do
|
||||
context 'when all and passive detection' do
|
||||
let(:cli_args) { "#{super()} -e a#{type[0]}" }
|
||||
let(:detection_mode) { :passive }
|
||||
|
||||
@@ -46,7 +46,7 @@ describe WPScan::Controller::Enumeration do
|
||||
end
|
||||
end
|
||||
|
||||
context 'when most popular' do
|
||||
context 'when most popular and aggressive detection' do
|
||||
let(:cli_args) { "#{super()} -e #{type[0]}" }
|
||||
let(:detection_mode) { :aggressive }
|
||||
|
||||
@@ -58,14 +58,6 @@ describe WPScan::Controller::Enumeration do
|
||||
end
|
||||
end
|
||||
|
||||
describe '#default_opts' do
|
||||
context 'when no --enumerate' do
|
||||
it 'contains the correct version_detection' do
|
||||
expect(controller.default_opts('plugins')[:version_detection]).to include(mode: :mixed)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#cli_options' do
|
||||
it 'contains the correct options' do
|
||||
expect(controller.cli_options.map(&:to_sym)).to eql(
|
||||
@@ -76,7 +68,7 @@ describe WPScan::Controller::Enumeration do
|
||||
config_backups_list config_backups_detection
|
||||
db_exports_list db_exports_detection
|
||||
medias_detection
|
||||
users_list users_detection]
|
||||
users_list users_detection exclude_usernames]
|
||||
)
|
||||
end
|
||||
end
|
||||
@@ -104,17 +96,6 @@ describe WPScan::Controller::Enumeration do
|
||||
|
||||
describe '#run' do
|
||||
context 'when no :enumerate' do
|
||||
before do
|
||||
expect(controller).to receive(:enum_plugins)
|
||||
expect(controller).to receive(:enum_config_backups)
|
||||
|
||||
expect(WPScan::ParsedCli.plugins_detection).to eql :passive
|
||||
end
|
||||
|
||||
it 'calls enum_plugins and enum_config_backups' do
|
||||
controller.run
|
||||
end
|
||||
|
||||
context 'when --passwords supplied but no --username or --usernames' do
|
||||
let(:cli_args) { "#{super()} --passwords some-file.txt" }
|
||||
|
||||
|
||||
@@ -195,50 +195,108 @@ describe WPScan::Model::Plugin do
|
||||
end
|
||||
|
||||
context 'when vulnerabilities' do
|
||||
let(:slug) { 'vulnerable-not-popular' }
|
||||
let(:db_data) { vuln_api_data_for('plugins/vulnerable-not-popular') }
|
||||
context 'when only fixed_in' do
|
||||
let(:slug) { 'vulnerable-not-popular' }
|
||||
let(:db_data) { vuln_api_data_for('plugins/vulnerable-not-popular') }
|
||||
|
||||
let(:all_vulns) do
|
||||
[
|
||||
WPScan::Vulnerability.new(
|
||||
'First Vuln <= 6.3.10 - LFI',
|
||||
references: { wpvulndb: '1' },
|
||||
type: 'LFI',
|
||||
fixed_in: '6.3.10'
|
||||
),
|
||||
WPScan::Vulnerability.new('No Fixed In', references: { wpvulndb: '2' })
|
||||
]
|
||||
end
|
||||
|
||||
context 'when no plugin version' do
|
||||
before { expect(plugin).to receive(:version).at_least(1).and_return(false) }
|
||||
|
||||
it 'returns all the vulnerabilities' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
|
||||
context 'when plugin version' do
|
||||
before do
|
||||
expect(plugin)
|
||||
.to receive(:version)
|
||||
.at_least(1)
|
||||
.and_return(WPScan::Model::Version.new(number))
|
||||
let(:all_vulns) do
|
||||
[
|
||||
WPScan::Vulnerability.new(
|
||||
'First Vuln <= 6.3.10 - LFI',
|
||||
references: { wpvulndb: '1' },
|
||||
type: 'LFI',
|
||||
fixed_in: '6.3.10'
|
||||
),
|
||||
WPScan::Vulnerability.new('No Fixed In', references: { wpvulndb: '2' })
|
||||
]
|
||||
end
|
||||
|
||||
context 'when < to a fixed_in' do
|
||||
let(:number) { '5.0' }
|
||||
context 'when no plugin version' do
|
||||
before { expect(plugin).to receive(:version).at_least(1).and_return(false) }
|
||||
|
||||
it 'returns it' do
|
||||
it 'returns all the vulnerabilities' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to a fixed_in' do
|
||||
let(:number) { '6.3.10' }
|
||||
context 'when plugin version' do
|
||||
before do
|
||||
expect(plugin)
|
||||
.to receive(:version)
|
||||
.at_least(1)
|
||||
.and_return(WPScan::Model::Version.new(number))
|
||||
end
|
||||
|
||||
it 'does not return it ' do
|
||||
@expected = [all_vulns.last]
|
||||
context 'when < to fixed_in' do
|
||||
let(:number) { '5.0' }
|
||||
|
||||
it 'returns it' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to fixed_in' do
|
||||
let(:number) { '6.3.10' }
|
||||
|
||||
it 'does not return it ' do
|
||||
@expected = [all_vulns.last]
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when introduced_in' do
|
||||
let(:db_data) { vuln_api_data_for('plugins/vulnerable-introduced-in') }
|
||||
|
||||
let(:all_vulns) do
|
||||
[
|
||||
WPScan::Vulnerability.new(
|
||||
'Introduced In 6.4',
|
||||
fixed_in: '6.5',
|
||||
introduced_in: '6.4',
|
||||
references: { wpvulndb: '1' }
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
context 'when no plugin version' do
|
||||
before { expect(plugin).to receive(:version).at_least(1).and_return(false) }
|
||||
|
||||
it 'returns all the vulnerabilities' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
|
||||
context 'when plugin version' do
|
||||
before do
|
||||
expect(plugin)
|
||||
.to receive(:version)
|
||||
.at_least(1)
|
||||
.and_return(WPScan::Model::Version.new(number))
|
||||
end
|
||||
|
||||
context 'when < to introduced_in' do
|
||||
let(:number) { '5.0' }
|
||||
|
||||
it 'does not return it' do
|
||||
@expected = []
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to fixed_in' do
|
||||
let(:number) { '6.5' }
|
||||
|
||||
it 'does not return it' do
|
||||
@expected = []
|
||||
end
|
||||
end
|
||||
|
||||
context 'when >= to introduced_in' do
|
||||
let(:number) { '6.4' }
|
||||
|
||||
it 'returns it' do
|
||||
@expected = all_vulns
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
5076
spec/fixtures/db/dynamic_finders.yml
vendored
5076
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
13
spec/fixtures/db/vuln_api/plugins/vulnerable-introduced-in.json
vendored
Normal file
13
spec/fixtures/db/vuln_api/plugins/vulnerable-introduced-in.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"latest_version": null,
|
||||
"last_updated": null,
|
||||
"popular": false,
|
||||
"vulnerabilities" : [
|
||||
{
|
||||
"title": "Introduced In 6.4",
|
||||
"id": 1,
|
||||
"introduced_in": "6.4",
|
||||
"fixed_in": "6.5"
|
||||
}
|
||||
]
|
||||
}
|
||||
2254
spec/fixtures/dynamic_finders/expected.yml
vendored
2254
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,554 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Abandoned Cart for WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-25 19:20+0530\n"
|
||||
"PO-Revision-Date: 2021-03-25 19:20+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: abandoned-cart-for-woocommerce.php:162
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: abandoned-cart-for-woocommerce.php:204
|
||||
msgid ""
|
||||
"Oops! You tried activating the ABANDONED CART FOR WOOCOMMERCE. Please "
|
||||
"activate WooCommerce and then try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:232
|
||||
msgid "Email Work Flow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:236
|
||||
msgid "Abandon Cart Reports "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:240
|
||||
msgid "Abandon Cart Analytics "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:244
|
||||
msgid " Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:264
|
||||
msgid "Enable plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:266
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:271
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:283
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:272
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:284
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:276
|
||||
msgid "Add to Cart Pop-Up"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:278
|
||||
msgid "Enable this to show pop-up at the add to cart time."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:288
|
||||
msgid "Add to Cart Pop-Up Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:290
|
||||
msgid "Enter title here to show on add to cart pop-up."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:294
|
||||
msgid "Add to Cart title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:297
|
||||
msgid "Add to Cart Pop-Up Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:299
|
||||
msgid "Enter text here to show on add to cart pop-up."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:303
|
||||
msgid "Add to Cart text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:306
|
||||
msgid "Cut-off time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:308
|
||||
msgid "Enter time in HOURS after which a cart will be treated as abandoned."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:313
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:323
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:352
|
||||
msgid "Enter Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:316
|
||||
msgid "Delete abandoned cart history"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:318
|
||||
msgid ""
|
||||
"Enter the number of days before which you dont want to keep history of "
|
||||
"abandoned cart. Remain blank to never delete history automatically."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:326
|
||||
msgid "User role for tracking "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:328
|
||||
msgid ""
|
||||
"Select user roles for which you want to track abandoned carts(By default "
|
||||
"only “GUEST USERS” are tracked)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:336
|
||||
msgid "Coupon code prefix"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:338
|
||||
msgid ""
|
||||
"Add a pattern in which you want the coupons to be generated for Cart "
|
||||
"Abandoners. Generated coupon will be prefix_<random_5_digit_alphanumeric>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:342
|
||||
msgid "Enter Coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:345
|
||||
msgid "Coupon expiry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:347
|
||||
msgid ""
|
||||
"Enter the number of hours after which coupon will be expired if not used. "
|
||||
"Time will start at the time of coupon send."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:355
|
||||
msgid "Coupon Discount"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:357
|
||||
msgid ""
|
||||
"Enter the percentage discount (between 1-100) which will apply on abandoned "
|
||||
"cart."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:363
|
||||
msgid "Enter Discount"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:368
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:411
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:414
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:418
|
||||
msgid " Nonce Not Verified "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:485
|
||||
msgid "Nonce not verified"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:508
|
||||
msgid "Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:511
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-product-report.php:71
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:514
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-abandoned-cart-for-woocommerce-admin.php:517
|
||||
msgid "Total "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-admin-dashboard.php:26
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-admin-dashboard.php:28
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:125
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:36
|
||||
msgid "Abandoned Carts this Month"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:49
|
||||
msgid "Abandoned Carts till Now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:64
|
||||
msgid "Recovered Carts this Month"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:80
|
||||
msgid "Recovered Carts till Now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:95
|
||||
msgid "Recovered Money"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:119
|
||||
msgid "Money That Can Be recovered"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-analytics.php:142
|
||||
msgid "Graph of Abandoned Carts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:26
|
||||
msgid "Use Placeholders"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:26
|
||||
msgid "to apply a coupon on the cart"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:26
|
||||
msgid "for displaying the cart in the email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:27
|
||||
msgid " for checkout page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:52
|
||||
msgid "Enable The workflow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:71
|
||||
msgid "Initiate Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:81
|
||||
msgid "Enter time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:84
|
||||
msgid "Enter time In Hours"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:90
|
||||
msgid "Mail Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:100
|
||||
msgid "Enter Mail Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:103
|
||||
msgid "Enter Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:109
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-email-workflow.php:125
|
||||
msgid "Save Workflow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:22
|
||||
msgid "What Is Abandoned Cart For WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:27
|
||||
msgid ""
|
||||
"Abandoned Cart For WooCommerce is an all-in-one solution to beat an online "
|
||||
"seller’s biggest nightmare, i.e, abandoned carts. With the help of this "
|
||||
"plugin, \n"
|
||||
"\t\t\t\t\tyou can very easily and efficiently win back your lost WooCommerce "
|
||||
"customers and skyrocket your conversion rate."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:33
|
||||
msgid "As a store owner, you get to:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:35
|
||||
msgid "Analyze deep insights into your abandoned carts and products."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:36
|
||||
msgid "Capture customer emails on the checkout and cart page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:37
|
||||
msgid "Send automated emails to your lost customers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:38
|
||||
msgid "Win-back even the unregistered customers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:39
|
||||
msgid "See a complete list of abandoned carts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:40
|
||||
msgid "Customizable abandoned cart workflows"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:41
|
||||
msgid "Disable tracking for selected user roles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:42
|
||||
msgid ""
|
||||
"Create an abandoned cart recovery strategy for even the variable products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:45
|
||||
msgid "The Free Plugin Benefits"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:53
|
||||
msgid " Advanced Reports For Abandoned Products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:57
|
||||
msgid ""
|
||||
"The plugin comes with advanced reports for the abandoned carts made in your "
|
||||
"store. Thus, allowing you to \n"
|
||||
"\t\t\t\t\t\t\t\tmake an informed abandoned cart recovery strategy."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:72
|
||||
msgid "Workflow For Abandoned Carts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:73
|
||||
msgid ""
|
||||
"Abandoned Cart For WooCommerce comes with a customizable workflow that lets "
|
||||
"you send emails and win back your lost customers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:83
|
||||
msgid "Support Variable Product"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:88
|
||||
msgid ""
|
||||
"The plugin works very well with and supports variable products on your "
|
||||
"WooCommerce store."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:103
|
||||
msgid "Complete List Of Abandoned Users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:108
|
||||
msgid ""
|
||||
"The plugin gives you a complete list of shoppers that left carts abandoned "
|
||||
"on your WooCommerce store."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-overview.php:129
|
||||
msgid ""
|
||||
"Phone, Email & Skype support. Our Support is ready to assist you regarding "
|
||||
"any query, issue, or feature request and if that doesn't help our Technical "
|
||||
"team will connect with you personally and have your query\n"
|
||||
"\t\t\t\t\t\t\t\tresolved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-product-report.php:49
|
||||
msgid "Reports according products-name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/abandoned-cart-for-woocommerce-product-report.php:74
|
||||
msgid "Abandoned time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:138
|
||||
msgid "Abandoned"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:140
|
||||
msgid "Recovered"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:198
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:360
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:199
|
||||
msgid "Left Page FROM "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:200
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:201
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:321
|
||||
msgid "Nonce Not Verified"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/class-abandoned-cart-for-woocommerce-report.php:368
|
||||
msgid "Full Details Of Cart"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-abandoned-cart-for-woocommerce-common.php:92
|
||||
msgid "Every custom time"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-abandoned-cart-for-woocommerce-common.php:97
|
||||
msgid "Delete custom time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:300
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:319
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:325
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:356
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:368
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:373
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:487
|
||||
msgid ""
|
||||
"Let us know why you are deactivating Abandoned Cart for WooCommerce so we "
|
||||
"can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:491
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce-onboarding-steps.php:729
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce.php:367
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce.php:384
|
||||
msgid "Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce.php:388
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-abandoned-cart-for-woocommerce.php:412
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location %s. Some features may not work properly in "
|
||||
"this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-acwf-gdpr.php:23
|
||||
msgid "Stored Customer Details for Tracking Abandoned cart"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-acwf-gdpr.php:24
|
||||
msgid ""
|
||||
"We store customer's email address, customer's Ip Address so that we can send "
|
||||
"them email reagarding their abandoned cart to cover them"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-acwf-gdpr.php:36
|
||||
msgid "Abandoned Cart For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-acwf-gdpr.php:54 mwb-acwf-gdpr.php:121
|
||||
msgid "Recipient Details"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-acwf-gdpr.php:166
|
||||
msgid "Removed data of \"Abandoned Cart\""
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/abandoned-cart-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/abandoned-cart-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/abandoned-cart-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/abandoned-cart-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/abandoned-cart-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-abandoned-cart-for-woocommerce-public.php:84
|
||||
msgid "Enter Your Email Here"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-abandoned-cart-for-woocommerce-public.php:232
|
||||
msgid "Do You Want to Buy"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,316 @@
|
||||
# Copyright (C) 2021 Web Rockstar
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Admin Notes 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-admin-notes-off\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-26T17:52:32+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha-59d879d\n"
|
||||
"X-Domain: wp-admin-notes\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-wp-admin-notes-admin.php:357
|
||||
msgid "WP Admin Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://webrockstar.net"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Create and manage admin footer text, help tabs, and notices directly from the WordPress admin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Web Rockstar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:3
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:32
|
||||
msgid "Enter your note here."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:34
|
||||
msgid "Make Private"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:35
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:36
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:37
|
||||
msgid "Note is public and visible to all users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-post-view.php:71
|
||||
msgid "There are currently no admin notes."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:198
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:219
|
||||
msgid "Screen ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:238
|
||||
msgctxt "post type general name"
|
||||
msgid "Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:239
|
||||
msgctxt "post type singular name"
|
||||
msgid "Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:240
|
||||
msgctxt "admin menu"
|
||||
msgid "Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:241
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:242
|
||||
msgctxt "wpan_help_tab"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:243
|
||||
msgid "Add New Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:244
|
||||
msgid "New Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:245
|
||||
msgid "Edit Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:246
|
||||
msgid "View Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:247
|
||||
msgid "All Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:248
|
||||
msgid "Search Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:249
|
||||
msgid "Parent Help Tabs:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:250
|
||||
msgid "No Help Tabs found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-help-tab.php:251
|
||||
msgid "No Help Tabs found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:258
|
||||
msgctxt "post type general name"
|
||||
msgid "Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:259
|
||||
msgctxt "post type singular name"
|
||||
msgid "Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:260
|
||||
msgctxt "admin menu"
|
||||
msgid "Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:261
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:262
|
||||
msgctxt "wpan_notice"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:263
|
||||
msgid "Add New Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:264
|
||||
msgid "New Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:265
|
||||
msgid "Edit Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:266
|
||||
msgid "View Admin Notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:267
|
||||
msgid "All Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:268
|
||||
msgid "Search Admin Notices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:269
|
||||
msgid "Parent Admin Notices:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:270
|
||||
msgid "No Admin Notices found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin-notice.php:271
|
||||
msgid "No Admin Notices found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:114
|
||||
#: admin/class-wp-admin-notes-admin.php:183
|
||||
msgid "(click to copy)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:115
|
||||
msgid "(copied!)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:361
|
||||
msgid "Admin Footer Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:362
|
||||
msgid ""
|
||||
"Overrides the default text in the very bottom left corner of every WordPress admin page.\n"
|
||||
"\t\t\t\t\tThis is typically used to highlight the department or company that developed/configured the website."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:364
|
||||
msgid "Enable Admin Footer Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:367
|
||||
msgid "Footer Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:370
|
||||
msgid "Website built and configured by..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:377
|
||||
msgid "Allowed HTML: a, strong, em"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:378
|
||||
msgid "Footer Text Icon Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:379
|
||||
msgid ""
|
||||
"Optional image icon for the admin footer text. Icon is displayed at 24px X 24px and left aligned.\n"
|
||||
"\t\t\t\t Transparent PNG or SVG works best."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:389
|
||||
msgid "Notice Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:391
|
||||
msgid "Disable Notice Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:393
|
||||
msgid "Toggles the display of the Admin Notices post type on the left menu bar."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:395
|
||||
msgid "Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:396
|
||||
msgid "Custom help tabs on WordPress admin pages. Created and managed in the WordPress admin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:397
|
||||
msgid "Disable Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:399
|
||||
msgid "Toggles the display of the Help Tab post type on the left menu bar."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:402
|
||||
msgid "Global Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:403
|
||||
msgid ""
|
||||
"A single global help tab that appears on every WordPress admin page.\n"
|
||||
"\t\t\t\t\t This is typically used to display a message about who to contact regarding technical issues or feature requests."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:405
|
||||
msgid "Enable Global Help Tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:407
|
||||
msgid "Global Help Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:416
|
||||
msgid "Global Help Tab Body"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:425
|
||||
msgid "Allowed HTML includes: a, strong, em, ul, ol, li, h1, h2, h3, h4, h5, h6. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:426
|
||||
msgid "Global Help Tab Logo Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:427
|
||||
msgid ""
|
||||
"Optional logo image to display at the bottom of the global help tab content.\n"
|
||||
"\t\t\t\t\t\t This is typically the logo of the company that configured/developed the website, if applicable.\n"
|
||||
"\t\t\t\t\t\t This image is displayed with a maximum width and height of 200px. Transparent PNG or SVG works best."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:439
|
||||
msgid "Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:441
|
||||
msgid "Hide Default Help Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:445
|
||||
msgid "Animate Help Tab Before First Click"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-admin-notes-admin.php:447
|
||||
msgid ""
|
||||
"To help users discover the help tab, it will bounce and highlight until clicked.\n"
|
||||
"\t\t\t\t\t After it is clicked once it will never animate again for that user."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,167 @@
|
||||
# Copyright (C) 2021 WP Concern
|
||||
# This file is distributed under the GPL3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advanced Google reCAPTCHA 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/advanced-google-recaptcha\n"
|
||||
"POT-Creation-Date: 2021-03-09 07:19:48+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.5\n"
|
||||
|
||||
#: edd_templates/shortcode-login.php:16
|
||||
msgid "Log into Your Account"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:19
|
||||
msgid "Username or Email"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:23
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:30
|
||||
msgid "Remember Me"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:36
|
||||
msgid "Log In"
|
||||
msgstr ""
|
||||
|
||||
#: edd_templates/shortcode-login.php:40
|
||||
msgid "Lost Password?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:26 inc/core.php:227
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:27
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:39
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Advanced Google reCAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:130
|
||||
#. translators: 1: link open, 2: link close
|
||||
msgid ""
|
||||
"Please %1$sregister your domain%2$s first, get required keys from Google "
|
||||
"(reCAPTCHA v2 or reCAPTCHA v3) and save them below."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:139
|
||||
msgid "You can enable/disable reCAPTCHA for different forms separately."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:175
|
||||
msgid ""
|
||||
"Applies for default login, WooCommerce login and Easy Digital Downloads "
|
||||
"login."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:211
|
||||
msgid "Key Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:213
|
||||
msgid "reCAPTCHA Type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:215
|
||||
msgid "Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:216
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:218
|
||||
msgid "Status Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:220
|
||||
msgid "Enable for Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:221
|
||||
msgid "Enable for Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:222
|
||||
msgid "Enable for Lost Password"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:224
|
||||
msgid "Enable for Comment Form"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:225
|
||||
msgid "Enable for WooCommerce Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:226
|
||||
msgid "Enable for Easy Digital Downloads Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:227
|
||||
msgid "Enable for BuddyPress Register"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:272
|
||||
msgid "To implement reCAPTCHA, Key settings should be completed first."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:274
|
||||
msgid "Captcha Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:314
|
||||
msgid "V2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:315
|
||||
msgid "V3"
|
||||
msgstr ""
|
||||
|
||||
#: inc/core.php:150 inc/core.php:153 inc/core.php:170 inc/core.php:173
|
||||
#: inc/core.php:192 inc/core.php:195 inc/core.php:211 inc/core.php:214
|
||||
#: inc/core.php:373 inc/core.php:383 inc/core.php:424 inc/core.php:434
|
||||
#: inc/core.php:452 inc/core.php:455 inc/core.php:471 inc/core.php:474
|
||||
msgid "Google reCAPTCHA verification failed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/core.php:170 inc/core.php:173 inc/core.php:192 inc/core.php:195
|
||||
#: inc/core.php:211 inc/core.php:214 inc/core.php:373 inc/core.php:383
|
||||
#: inc/core.php:424 inc/core.php:434
|
||||
msgid "ERROR:"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.wpconcern.com/advanced-google-recaptcha/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Advanced Google reCAPTCHA will safeguard your WordPress site from spam "
|
||||
"comments and brute force attacks."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WP Concern"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.wpconcern.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "advanced-testimonial-carousel-for-elementor",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"development": "mix",
|
||||
"watch": "mix watch",
|
||||
"watch-poll": "mix watch -- --watch-options-poll=1000",
|
||||
"hot": "mix watch --hot",
|
||||
"production": "mix --production"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"postcss": "^8.2.6",
|
||||
"resolve-url-loader": "^3.1.2",
|
||||
"sass": "^1.32.8",
|
||||
"sass-loader": "^10.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"laravel-mix": "^6.0.13",
|
||||
"node-sass": "^5.0.0"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/af-companion/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/af-companion/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
### 1.0.0 - 16/02/2021
|
||||
|
||||
Changes:
|
||||
*INITIAL RELEASE*
|
||||
@@ -0,0 +1,174 @@
|
||||
# Copyright (C) 2021 David Lidor
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Affiliate Bridge 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/affiliate-bridge\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-03-07T21:35:15+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha\n"
|
||||
"X-Domain: affiliate-bridge\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: affiliate-bridge.php:120
|
||||
#: affiliate-bridge.php:121
|
||||
msgid "Affiliate Bridge"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://affiliate-bridge.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Affiliate Bridge."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "David Lidor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.bicycle-riding.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:13
|
||||
msgid "Affiliate Bridge Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:19
|
||||
msgid "Default Source"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:22
|
||||
msgid "Ebay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:24
|
||||
msgid "More Affiliate program in future plugin revisions..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:28
|
||||
msgid "Ebay App ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:31
|
||||
msgid "Find your eBay App ID "
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:31
|
||||
#: includes/admin/affiliate-bridge-backend.php:60
|
||||
msgid "Here"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:35
|
||||
msgid "Default Keywords"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:37
|
||||
msgid "Add keywords (with spaces and other special characters). See"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:39
|
||||
msgid "eBay Developer Program"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:45
|
||||
msgid "Framed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:48
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:49
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:50
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:52
|
||||
msgid "Image frame options: \"Yes\": Boxed, \"Custom\": Custom frame, \"No\": No frame"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:56
|
||||
msgid "Default Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:59
|
||||
msgid "Add Category IDs, separated by a comma. Download eBay Categories "
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:65
|
||||
msgid "Default Condition"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:68
|
||||
msgid "All (New & Used)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:69
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:70
|
||||
msgid "Used"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:72
|
||||
msgid "Specify Items Condition in search. See"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:74
|
||||
msgid "eBay Item Condition options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:79
|
||||
msgid "Default Image Size"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:82
|
||||
msgid "Small (110px)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:83
|
||||
msgid "Medium (200px)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:84
|
||||
msgid "Large (400px)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:86
|
||||
msgid "Default image size. there are 2 more Shortcode options: size=\"75%\", and size=\"400px\""
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:90
|
||||
msgid "Default Number of Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:92
|
||||
msgid "If items > 1, Multiple Items will be shown in a table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:96
|
||||
msgid "Default Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:104
|
||||
msgid "def"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:105
|
||||
msgid "Default Image (if eBay item does not have an image)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/affiliate-bridge-backend.php:115
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/audius-block/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/audius-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "audius-wp",
|
||||
"version": "1.1.0",
|
||||
"description": "Audius.co Wordpress plugin",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "12.5.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"hashids": "^2.2.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
# Copyright (C) 2021 Kan-Ru Chen
|
||||
# This file is distributed under the same license as the Auto Login with Cloudflare plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Auto Login with Cloudflare 0.9.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/auto-login-with-cloudflare\n"
|
||||
"POT-Creation-Date: 2021-02-02T14:25:58+09:00\n"
|
||||
"PO-Revision-Date: 2021-01-31 00:43+09:00\n"
|
||||
"Last-Translator: Kan-Ru Chen <kanru@kanru.info>\n"
|
||||
"Language-Team: Kan-Ru Chen <kanru@kanru.info>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: auto-login-with-cloudflare\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: settings.php:114 settings.php:115
|
||||
msgid "Auto Login with Cloudflare"
|
||||
msgstr "用 Cloudflare 自動登入"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/kanru/auto-login-with-cloudflare"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allow login to Wordpress when using Cloudflare Access."
|
||||
msgstr "讓 Wordpress 可以用 Cloudflare Access 自動登入。"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Kan-Ru Chen"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/kanru"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:18
|
||||
msgid "Application settings"
|
||||
msgstr "應用程式設定"
|
||||
|
||||
#: settings.php:25
|
||||
msgid "Auth domain"
|
||||
msgstr "認證網域"
|
||||
|
||||
#: settings.php:37
|
||||
msgid "Application audience (AUD) tag"
|
||||
msgstr "應用程式代表碼 (AUD)"
|
||||
|
||||
#: settings.php:49
|
||||
msgid "Redirect login page"
|
||||
msgstr "重新導向登入頁"
|
||||
|
||||
#: settings.php:106
|
||||
msgid "redirect to Cloudflare Access"
|
||||
msgstr "自動重新導向登入頁面到 Cloudflare Access"
|
||||
|
||||
#: settings.php:136
|
||||
msgid "Save Settings"
|
||||
msgstr "儲存設定"
|
||||
|
||||
#: auto-login-with-cloudflare.php:187
|
||||
msgid "Settings"
|
||||
msgstr "設定"
|
||||
|
||||
#: auto-login-with-cloudflare.php:188
|
||||
msgid "Buy me a coffee"
|
||||
msgstr "贊助我一杯咖啡"
|
||||
@@ -0,0 +1,4 @@
|
||||
*** Avalon23 Products Filter Changelog ***
|
||||
|
||||
2020-11-20 - version 1.0.1
|
||||
* Initial release
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/b2b-e-commerce-lite/change_log/changelog.txt
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/b2b-e-commerce-lite/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
*** B2B Ecommerce Lite ***
|
||||
|
||||
2020-03-16 - version 1.0.0.3
|
||||
* Major Code Refactoring
|
||||
|
||||
2020-03-01 - version 1.0.0.2
|
||||
* Fixed remove role issue
|
||||
* Fixed reset email issue
|
||||
|
||||
2020-02-17 - version 1.0.0.1
|
||||
* Improvement on Plugin listing page
|
||||
* Fixed issue on role.
|
||||
* Fixed issue in Signup form.
|
||||
* Fixed issue in Price Visibilty.
|
||||
* Fixed issue in Discount Option.
|
||||
* Fixed issue in Re order.
|
||||
|
||||
2020-02-14 - version 1.0.0.0
|
||||
* Added RFQ Global Settings.
|
||||
* Added Price Visibilty Global Settings.
|
||||
* Added Sign Up Generator Global Settings.
|
||||
* Added Payment Method Global Settings.
|
||||
* Added Reorder Global Settings.
|
||||
17
spec/fixtures/dynamic_finders/plugin_version/boleto-cora/composer_file/package.json
vendored
Normal file
17
spec/fixtures/dynamic_finders/plugin_version/boleto-cora/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "cora-woocommerce",
|
||||
"description": "Powerfully simple financial services",
|
||||
"version": "1.0",
|
||||
"main": "Gruntfile.js",
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.1",
|
||||
"load-grunt-tasks": "0.2.0",
|
||||
"grunt-contrib-imagemin": "~0.4.0",
|
||||
"grunt-rsync": "~0.2.1",
|
||||
"grunt-shell": "~0.6.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.8.0",
|
||||
"npm": ">=1.1.0"
|
||||
}
|
||||
}
|
||||
2361
spec/fixtures/dynamic_finders/plugin_version/booking-x/translation_file/languages/bookingx.pot
vendored
Normal file
2361
spec/fixtures/dynamic_finders/plugin_version/booking-x/translation_file/languages/bookingx.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
25
spec/fixtures/dynamic_finders/plugin_version/bu-learning-blocks/composer_file/package.json
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/bu-learning-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "bu-learning-blocks",
|
||||
"version": "1.1.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "wp-scripts start",
|
||||
"build": "wp-scripts build",
|
||||
"wp-env": "wp-env",
|
||||
"lint:js": "wp-scripts lint-js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@bostonuniversity/react-questions": "0.1.1",
|
||||
"classnames": "^2.2.6",
|
||||
"react-html-parser": "^2.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
||||
"@babel/preset-env": "^7.13.5",
|
||||
"@babel/preset-react": "^7.12.13",
|
||||
"@wordpress/env": "^4.0.0",
|
||||
"@wordpress/eslint-plugin": "^9.0.1",
|
||||
"@wordpress/scripts": "13.0.3",
|
||||
"webpack-cli": "^4.5.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,332 @@
|
||||
# Copyright (C) 2021 Boston University: Web Applications
|
||||
# This file is distributed under the same license as the BU Learning Blocks plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BU Learning Blocks v1.1.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bu-learning-blocks\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-03-09T22:14:20+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: bu-learning-blocks\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BU Learning Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/bu-ist/bu-learning-blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "BU Learning Blocks — is a collection of tools to enable the easy creation of academic lessons with embedded self-assessment questions."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Boston University: Web Applications"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.bu.edu/"
|
||||
msgstr ""
|
||||
|
||||
#: bu-learning-blocks.php:39
|
||||
msgid "BULB Error: BU Learning Blocks requires either WordPress 5.0.0, or the Gutenberg plugin to be installed and activated on any version previous to 5.0.0."
|
||||
msgstr ""
|
||||
|
||||
#: bu-learning-blocks.php:42
|
||||
msgid "Please install and activate the Gutenberg plugin to use BU Learning Blocks."
|
||||
msgstr ""
|
||||
|
||||
#: src/init.php:38
|
||||
#: src/blocks/bulb-cn/index.js:22
|
||||
#: src/blocks/bulb-fitb/index.js:22
|
||||
#: src/blocks/bulb-ma/index.js:20
|
||||
#: src/blocks/bulb-mat/index.js:20
|
||||
#: src/blocks/bulb-mc/index.js:20
|
||||
#: src/blocks/bulb-tf/index.js:20
|
||||
msgid "BULB"
|
||||
msgstr ""
|
||||
|
||||
#: src/init.php:101
|
||||
msgid "<strong>Welcome to BU Learning Blocks</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: src/init.php:109
|
||||
msgid "Install Blocks and Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/init.php:115
|
||||
msgid "Install Blocks Only"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:17
|
||||
msgctxt "Taxonomy General Name"
|
||||
msgid "Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:18
|
||||
msgctxt "Taxonomy Singular Name"
|
||||
msgid "Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:19
|
||||
msgid "Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:20
|
||||
msgid "All Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:21
|
||||
msgid "View Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:22
|
||||
msgid "Parent Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:23
|
||||
msgid "Parent Lesson:"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:24
|
||||
msgid "New Lesson Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:25
|
||||
msgid "Create Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:26
|
||||
msgid "Edit Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:27
|
||||
msgid "Update Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:28
|
||||
msgid "Separate lessons with commas"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:29
|
||||
msgid "Search Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:30
|
||||
msgid "Add or remove lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:31
|
||||
msgid "Choose from the most used lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:32
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:62
|
||||
msgid "Lesson Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:63
|
||||
msgid "Lesson Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:64
|
||||
msgid "BULB Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:65
|
||||
#: src/learning-module-cpt.php:66
|
||||
#: src/learning-module-cpt.php:69
|
||||
msgid "New Lesson Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:67
|
||||
msgid "Edit Lesson Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:68
|
||||
msgid "Update Lesson Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:70
|
||||
msgid "All Lesson Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:71
|
||||
msgid "View Lesson Page"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:72
|
||||
msgid "View Lesson Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:73
|
||||
msgid "Lesson Page Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:74
|
||||
msgid "Search Lesson Pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:75
|
||||
msgid "No Lesson Pages found"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:76
|
||||
msgid "No Lessons Pages found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:77
|
||||
msgid "Lesson Page Archives"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:78
|
||||
msgid "Parent Lesson Page:"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:87
|
||||
msgid "lesson"
|
||||
msgstr ""
|
||||
|
||||
#: src/learning-module-cpt.php:89
|
||||
msgid "Holds our Lessons"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/blocks.build.js:1
|
||||
#: src/components/QuestionHeader.js:7
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/blocks.build.js:1
|
||||
#: src/components/QuestionHeader.js:8
|
||||
msgid "Question Header"
|
||||
msgstr ""
|
||||
|
||||
#: build/blocks/blocks.build.js:1
|
||||
#: src/components/QuestionHeader.js:11
|
||||
msgid "Enter Question Header"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-cn/index.js:16
|
||||
msgid "BULB - Calculated Numeric"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-cn/index.js:21
|
||||
#: src/blocks/bulb-fitb/index.js:21
|
||||
#: src/blocks/bulb-ma/index.js:19
|
||||
#: src/blocks/bulb-mat/index.js:19
|
||||
#: src/blocks/bulb-mc/index.js:19
|
||||
#: src/blocks/bulb-tf/index.js:19
|
||||
msgid "bu-learning-block"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-cn/index.js:23
|
||||
msgid "Calculated Numeric Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-fitb/index.js:16
|
||||
msgid "BULB - Fill in the Blank"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-fitb/index.js:23
|
||||
msgid "Fill in the Blank Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-fitb/index.js:67
|
||||
#: src/blocks/bulb-fitb/index.js:71
|
||||
msgid "Case sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-ma/index.js:14
|
||||
msgid "BULB - Multiple Answer"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-ma/index.js:21
|
||||
msgid "Multiple Answer Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mat/index.js:14
|
||||
msgid "BULB - Matching"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mat/index.js:21
|
||||
msgid "Matching Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mat/MatchingAnswer.js:21
|
||||
#: src/blocks/bulb-mat/MatchingAnswer.js:25
|
||||
msgid "Prompt"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mat/MatchingAnswer.js:36
|
||||
#: src/blocks/bulb-mat/MatchingAnswer.js:40
|
||||
#: src/components/Answer.js:23
|
||||
#: src/components/Answer.js:27
|
||||
msgid "Answer"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mc/index.js:14
|
||||
msgid "BULB - Multiple Choice"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-mc/index.js:21
|
||||
msgid "Multiple Choice Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-tf/index.js:14
|
||||
msgid "BULB - True/False"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/bulb-tf/index.js:21
|
||||
msgid "True False Question"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Answer.js:38
|
||||
#: src/components/Answer.js:42
|
||||
#: src/components/QuestionFeedback.js:32
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Answer.js:61
|
||||
msgid "Correct Answer"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionBody.js:7
|
||||
msgid "Question Body"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionBody.js:10
|
||||
msgid "Enter Question Body"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:14
|
||||
msgid "Feedback:"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:17
|
||||
msgid "Enter Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:33
|
||||
msgid "Correct Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:36
|
||||
msgid "Enter Correct Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:41
|
||||
msgid "Incorrect Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuestionFeedback.js:44
|
||||
msgid "Enter Incorrect Feedback"
|
||||
msgstr ""
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/carousel-glider-js/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/carousel-glider-js/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "static",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "gulpfile.js",
|
||||
"dependencies": {
|
||||
"bulma": "^0.8.0",
|
||||
"bulma-extensions": "^6.2.7",
|
||||
"chart.js": "^2.9.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"browser-sync": "^2.26.7",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-autoprefixer": "^7.0.1",
|
||||
"gulp-clean-css": "^4.3.0",
|
||||
"gulp-group-css-media-queries": "^1.2.2",
|
||||
"gulp-plumber": "^1.2.1",
|
||||
"gulp-rename": "^2.0.0",
|
||||
"gulp-sass": "^4.1.0",
|
||||
"gulp-sass-glob": "^1.1.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"gulp-uglify-es": "^2.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/category-archives-block/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/category-archives-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "category-archives-block",
|
||||
"version": "0.1.0",
|
||||
"description": "Displays a monthly or yearly archive of posts for one ore more specific categories.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^5.2.2",
|
||||
"@wordpress/blocks": "^6.25.2",
|
||||
"@wordpress/i18n": "^3.17.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^13.0.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
# Copyright (C) 2021 Chatra
|
||||
# This file is distributed under the same license as the Chatra Live Chat + ChatBot + Cart Saver plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Chatra Live Chat + ChatBot + Cart Saver 1.0.9\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\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-03-27T08:50:45+00:00\n"
|
||||
"PO-Revision-Date: 2021-03-27 17:31+0700\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Domain: chatra-live-chat\n"
|
||||
"Last-Translator: \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"
|
||||
"Language: ru\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Chatra Live Chat + ChatBot + Cart Saver"
|
||||
msgstr "Chatra Live Chat + ChatBot + Cart Saver"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://chatra.com/help/cms/wordpress/"
|
||||
msgstr "https://chatra.com/help/cms/wordpress/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Chatra allows you to chat with your visitors, view the list of visitors who are currently online on your website and start a conversation manually or via configurable automatic targeted messages."
|
||||
msgstr "Чатра позволяет вам общаться с посетителями вашего сайта в чате, следить за перемещением посетителей по сайту в реальном времени, начинать диалог самому или с помощью автоматических настраиваемых сообщений."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Chatra"
|
||||
msgstr "Chatra"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://chatra.com"
|
||||
msgstr "https://chatra.com"
|
||||
|
||||
#: chatra.php:26
|
||||
msgid "Chatra widget"
|
||||
msgstr "Виджет Чатры"
|
||||
|
||||
#: chatra.php:33
|
||||
msgid "Chat widget setup"
|
||||
msgstr "Настройка виджета Чатры"
|
||||
|
||||
#: chatra.php:36
|
||||
msgid "Seems like everything is OK! <br>Check your <a href=\"%s\" target=\"_blank\">website</a> to see if the live chat widget is present.<br>Log in to your <a href=\"%s\" target=\"_blank\">Chatra dashboard</a> to chat with your website visitors and manage preferences."
|
||||
msgstr "Кажется, всё готово!<br>Проверьте, появился ли чат на страницах вашего <a href=\"%s\" target=\"_blank\">сайта</a>.<br>Войдите в <a href=\"%s\" target=\"_blank\">панель оператора</a>, чтобы общаться с посетителями и менять настройки чата."
|
||||
|
||||
#: chatra.php:40
|
||||
msgid "Signup for a free Chatra account at <a href=\"%s\" target=\"_blank\">app.chatra.io</a>,<br> then copy and paste <a href=\"%s\" target=\"_blank\">Widget code</a> from Chatra dashboard settings into the form below:"
|
||||
msgstr "<a href=\"%s\" target=\"_blank\">Зарегистрируйте</a> бесплатный аккаунт Чатры,<br>скопируйте <a href=\"%s\" target=\"_blank\">код виджета</a> из настроек и вставьте его в форму ниже:"
|
||||
97
spec/fixtures/dynamic_finders/plugin_version/chillpay-payment-gateway/change_log/CHANGELOG.md
vendored
Normal file
97
spec/fixtures/dynamic_finders/plugin_version/chillpay-payment-gateway/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
# CHANGELOG
|
||||
|
||||
### 'v2.0.0 (Nov 2, 2020)'
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Support Installment Payment (KBANK).
|
||||
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Using CURL Instead of HTTP API.
|
||||
- Code Refactoring, simplifying Callback and Result function.
|
||||
- Code Refactoring, simplifying ChillPay setting process.
|
||||
- ChillPay Setting Page, sanitizing input fields before save.
|
||||
- Added label to show mode on setting page.
|
||||
|
||||
---
|
||||
|
||||
### 'v1.8.0 (Aug 14, 2020)'
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Add an enabled button to create new order in case of failed status.
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Adjust Updating Process for Order Status.
|
||||
|
||||
---
|
||||
|
||||
### 'v1.7.1 (May 7, 2020)'
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Auto check when there is one channel.
|
||||
- Support custom incrementing order numbers for WooCommerce orders.
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Adjust Updating Process for Order Status.
|
||||
|
||||
---
|
||||
|
||||
### 'v1.7.0 (, 2020)'
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Support Alipay Payment.
|
||||
- Support WeChat Pay Payment.
|
||||
- Split Input Text on SandBox/PROD Mode
|
||||
|
||||
---
|
||||
|
||||
### 'v1.6.0 (Jan 7, 2020)'
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Add menu ChillPay : Manual sync payment status
|
||||
- Add process auto sync payment status
|
||||
|
||||
---
|
||||
|
||||
### `v1.5.9 (Dec 26, 2019)`
|
||||
|
||||
#### 🌟 Highlights
|
||||
|
||||
- Support multi currency.
|
||||
- Support Bill Payment.
|
||||
- Show payment methods as informed to ChillPay.
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Separate Mobile Banking from the Internet Banking.
|
||||
- Add URL Background (callback function) to use for sending payment results to the system.
|
||||
- Improve the UI of the payment methods.
|
||||
- Use Mode selection instead of copying the api url.
|
||||
|
||||
---
|
||||
|
||||
### `v1.5.8 (Aug 20, 2019)`
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Error when user enter the mobile number that is not connected to the K PLUS.
|
||||
|
||||
---
|
||||
|
||||
### `v1.5.7 (May 28, 2019)`
|
||||
|
||||
#### 🐞 Bug Fixes
|
||||
|
||||
- Fix customer information retrieval.
|
||||
|
||||
#### 🛠️ Enhancements
|
||||
|
||||
- Add input text api url.
|
||||
46
spec/fixtures/dynamic_finders/plugin_version/cision-modules/composer_file/composer.json
vendored
Normal file
46
spec/fixtures/dynamic_finders/plugin_version/cision-modules/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"name": "cyclonecode/cision-modules",
|
||||
"type": "wordpress-plugin",
|
||||
"version": "1.0.0",
|
||||
"keywords": [
|
||||
"cision",
|
||||
"modules",
|
||||
"ticker"
|
||||
],
|
||||
"description": "Cision client modules.",
|
||||
"require": {
|
||||
"composer/installers": "^1.6",
|
||||
"php": ">=5.4",
|
||||
"cyclonecode/plugin": "^1.0.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"squizlabs/php_codesniffer": "^3.5.8"
|
||||
},
|
||||
"time": "2021-01-28",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"readme": "readme.txt",
|
||||
"homepage": "https://wordpress.org/plugins/cision-modules",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Cyclonecode",
|
||||
"email": "cyclonecode@gmail.com",
|
||||
"role": "Maintainer"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"email": "cyclonecode.help@gmail.com",
|
||||
"issues": "https://wordpress.org/support/plugin/cision-modules/",
|
||||
"source": "https://plugins.trac.wordpress.org/browser/cision-modules/",
|
||||
"docs": "https://wordpress.org/plugins/cision-modules/#description",
|
||||
"rss": "https://plugins.trac.wordpress.org/log/cision-modules/?limit=100&mode=stop_on_copy&format=rss",
|
||||
"chat": "https://join.slack.com/t/cyclonecode/shared_invite/zt-6bdtbdab-n9QaMLM~exHP19zFDPN~AQ"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"CisionModules\\": [
|
||||
"src/"
|
||||
]
|
||||
}
|
||||
},
|
||||
"minimum-stability": "stable"
|
||||
}
|
||||
@@ -0,0 +1,390 @@
|
||||
# Copyright (C) 2021 AitThemes
|
||||
# This file is distributed under the same license as the Citadela Directory Plugin Lite plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Citadela Directory Plugin Lite 1.0.6\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/citadela-directory-lite\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-05T10:09:17+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: citadela-directory-lite\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Citadela Directory Plugin Lite"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.citadelawp.com/wordpress-plugins/free-directory-plugin/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Create directory listing website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "AitThemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.citadelawp.com/"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:71
|
||||
msgid "Full Version"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:141
|
||||
msgid "Posted on"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:182
|
||||
msgid "by"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post title
|
||||
#: plugin/CitadelaDirectory.php:200
|
||||
msgid "Comments<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post title
|
||||
#: plugin/CitadelaDirectory.php:214
|
||||
msgid "Comment<span class=\"screen-reader-text\"> on %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post title
|
||||
#: plugin/CitadelaDirectory.php:219
|
||||
msgid "Comments<span class=\"screen-reader-text\"> on %s"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/CitadelaDirectory.php:399
|
||||
msgid "Citadela Directory Lite Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:22
|
||||
msgid "%s plugin and PHP incompatiblity"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:22
|
||||
#: plugin/compatibility.php:27
|
||||
#: plugin/compatibility.php:56
|
||||
#: plugin/compatibility.php:61
|
||||
#: plugin/compatibility.php:77
|
||||
#: plugin/compatibility.php:79
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:17
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:27
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:45
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:47
|
||||
#: plugin/settings/CitadelaDirectorySettings.php:25
|
||||
#: plugin/settings/CitadelaDirectorySettings.php:26
|
||||
msgid "Citadela Directory Lite"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. url to upgrading guide, 2. plugin's name
|
||||
#: plugin/compatibility.php:25
|
||||
msgid "We've noticed that you're running an outdated version of PHP which is no longer supported, therefore <em>the plugin was deactivated</em>. Make sure your site is fast and secure, by <a href='%1$s'>upgrading PHP to the latest version</a>. Minimal requirement for %2$s is <strong>PHP 5.6.20</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:56
|
||||
msgid "%s plugin and WordPress incompatiblity"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. url to WordPress Update page, 2. plugin's name
|
||||
#: plugin/compatibility.php:59
|
||||
msgid "We've noticed that you're running an outdated version of WordPress, therefore <em>the plugin was deactivated</em>. Make sure your site is secure and up to date, by <a href='%1$s'>updating WordPress to the latest version</a>. Minimal requirement for %2$s is <strong>WordPress 5.2</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:77
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:17
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:27
|
||||
msgid "%s plugin could not be activated"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/compatibility.php:79
|
||||
msgid "You have already active Citadela Directory plugin, therefore the plugin was deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/CitadelaButterbeanMap.php:22
|
||||
#: plugin/cpt/item/templates/parts/item-container.php:70
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:14
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/CitadelaButterbeanMap.php:28
|
||||
msgid "Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/CitadelaButterbeanMap.php:35
|
||||
msgid "Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/templates/control-citadela_map.php:31
|
||||
msgid "Find address"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/controls/butterbean/templates/control-citadela_map.php:69
|
||||
msgid "Couldn't find location, try different address."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:26
|
||||
msgctxt "post type general name"
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:27
|
||||
msgctxt "post type singular name"
|
||||
msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:28
|
||||
msgctxt "post type menu name"
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:29
|
||||
msgctxt "Item"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:30
|
||||
msgid "Add New Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:31
|
||||
msgid "Edit Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:32
|
||||
msgid "New Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:33
|
||||
msgid "View Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:34
|
||||
msgid "Search Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:35
|
||||
msgid "No Items found"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:36
|
||||
msgid "No Items found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:37
|
||||
msgid "All Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:86
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:94
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:98
|
||||
msgid "Opening Hours"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:112
|
||||
msgid "Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:134
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:35
|
||||
msgid "Telephone"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:141
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:45
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:148
|
||||
msgid "Show Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:149
|
||||
msgid "Decide if email address is visible for visitors"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:155
|
||||
msgid "Website Link"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:156
|
||||
msgid "Use correct full website url"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:163
|
||||
msgid "Website Link Label"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemConfig.php:164
|
||||
msgid "Text displayed instead of full website url"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/CitadelaItemMetabox.php:66
|
||||
msgid "Item Options"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/archive-item-page-title.php:8
|
||||
msgid "Archives: "
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/archive-item-page-title.php:9
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/content-none.php:12
|
||||
msgid "It seems we can’t find what you’re looking for."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/item-container.php:62
|
||||
msgid "View more"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/item-container.php:77
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:55
|
||||
msgid "Web"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/cpt/item/templates/parts/single-item-contact-details.php:25
|
||||
msgid "GPS"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:18
|
||||
msgid "You have already active Citadela Directory plugin, therefore the free version of plugin was deactivated."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:28
|
||||
msgid "Plugin is not compatible with the current active theme."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:45
|
||||
msgid "%s plugin incompatibility"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s plugin's name
|
||||
#: plugin/includes/CitadelaDirectoryCompatibility.php:47
|
||||
msgid "Recently activated theme is not compatible with %s plugin, therefore the plugin was deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:7
|
||||
msgid "Created by AitThemes"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:8
|
||||
msgid "Thank you for installing Citadela Directory Lite by AitThemes"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:9
|
||||
msgid "Citadela Directory Lite plugin allows you to add map with listing items to your WordPress website. Lite plugin is fully functional but only includes basic functionality. We also have a full version of Citadela Directory plugin that will allow you to do way more. Please see below for quick comparison."
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:172
|
||||
msgid "Directory Item"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:196
|
||||
msgid "Directory Archive Pages"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:221
|
||||
msgid "Directory Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: plugin/settings/template/citadela-directory-lite-screen.php:250
|
||||
msgid "Directory Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:164
|
||||
#: blocks/directory-items-list/src/edit.js:29
|
||||
msgid "Items List Options"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:167
|
||||
#: blocks/directory-items-list/src/edit.js:33
|
||||
msgid "Number of items"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:177
|
||||
#: blocks/directory-items-list/src/edit.js:45
|
||||
msgid "Order by"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:180
|
||||
#: blocks/directory-items-list/src/edit.js:48
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:183
|
||||
#: blocks/directory-items-list/src/edit.js:49
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:186
|
||||
#: blocks/directory-items-list/src/edit.js:50
|
||||
msgid "Order number"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:189
|
||||
#: blocks/directory-items-list/src/edit.js:51
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:200
|
||||
#: blocks/directory-items-list/src/edit.js:63
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:203
|
||||
#: blocks/directory-items-list/src/edit.js:64
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:212
|
||||
#: blocks/directory-items-list/src/edit.js:74
|
||||
msgid "Show featured image"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:320
|
||||
#: blocks/directory-items-list/src/index.js:7
|
||||
msgid "Directory Items List"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:321
|
||||
#: blocks/directory-items-list/src/index.js:8
|
||||
msgid "Displays directory items in grid layout."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:431
|
||||
#: blocks/directory-map/src/index.js:7
|
||||
msgid "Directory Map"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/build/index.js:432
|
||||
#: blocks/directory-map/src/index.js:8
|
||||
msgid "Displays directory items on map."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/common-scripts/leaflet-maps-initializer.js:459
|
||||
#: blocks/components/leaflet-popup.js:34
|
||||
msgid "Show more"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1227,4 +1227,9 @@ LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program &ld
|
||||
-->
|
||||
|
||||
|
||||
<!-- hyperise-opengraph-tags -->
|
||||
<!-- HR-2.6: -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "complianz-terms-conditions",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/i18n": "^3.9.0",
|
||||
"axios": "^0.21.1",
|
||||
"cgb-scripts": "^1.23.0",
|
||||
"composer": "^4.1.0",
|
||||
"mpdf": "^1.0.0",
|
||||
"po2json": "^1.0.0-beta-2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
***CHANGELOG***
|
||||
|
||||
|
||||
Version 1.0.0 - 09 March 2021
|
||||
|
||||
|
||||
* Initial release
|
||||
|
||||
@@ -0,0 +1,422 @@
|
||||
# Copyright (C) 2021 Daily Maxim 365
|
||||
# This file is distributed under the same license as the Daily Maxim 365 package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Daily Maxim 365 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/daily-maxim-365\n"
|
||||
"POT-Creation-Date: 2021-03-18 01:56:29+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:90
|
||||
#: app/controllers/admin/class-admin-settings.php:115
|
||||
#: app/controllers/admin/class-admin-sources.php:89
|
||||
#: app/controllers/admin/class-phrases-list.php:144
|
||||
#: app/controllers/admin/class-sources-list.php:124
|
||||
msgid "Do you really want to delete the selected data?"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:91
|
||||
#: app/controllers/admin/class-admin-settings.php:116
|
||||
#: app/controllers/admin/class-admin-sources.php:90
|
||||
#: app/controllers/admin/class-phrases-list.php:145
|
||||
#: app/controllers/admin/class-sources-list.php:125
|
||||
msgid "Please select the data to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:92
|
||||
#: app/controllers/admin/class-admin-settings.php:117
|
||||
#: app/controllers/admin/class-admin-sources.php:91
|
||||
#: app/controllers/admin/class-phrases-list.php:146
|
||||
#: app/controllers/admin/class-sources-list.php:126
|
||||
msgid "Do you really want to delete this data?"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:127
|
||||
#: app/controllers/admin/class-admin-phrases.php:128
|
||||
#: app/controllers/admin/class-admin-phrases.php:394
|
||||
msgid "Add Phrase"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:177
|
||||
msgid "* Please enter the phrase."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:186
|
||||
msgid "* This phrase has already been registered."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:194
|
||||
msgid "* Please select the source/author name."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:202
|
||||
msgid "* Please select the target of display."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:215
|
||||
msgid "* Please select the scheduled display date (Month)."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:218
|
||||
msgid "* Please select the scheduled display date (Day)."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:246
|
||||
#: app/controllers/admin/class-admin-sources.php:208
|
||||
msgid "The record has been updated."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:253
|
||||
#: app/controllers/admin/class-admin-sources.php:215
|
||||
#: app/controllers/admin/class-admin-sources.php:269
|
||||
msgid "There are invalid inputs."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:287
|
||||
#: app/controllers/admin/class-admin-sources.php:262
|
||||
msgid "The record has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-phrases.php:405
|
||||
#: app/controllers/admin/class-admin-settings.php:198
|
||||
#: app/controllers/admin/class-admin-sources.php:354
|
||||
#: app/controllers/admin/class-phrases-list.php:243
|
||||
#: app/controllers/admin/class-sources-list.php:235
|
||||
msgid "Access denied."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:153
|
||||
#: app/controllers/admin/class-admin-settings.php:154
|
||||
#: app/controllers/admin/class-admin-settings.php:212
|
||||
#: app/controllers/admin/class-admin-settings.php:446
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:220
|
||||
msgid "Timing to Change Phrase"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:227
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:228
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:229
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:235
|
||||
#: app/controllers/admin/class-admin-settings.php:241
|
||||
msgid "Phrase of Fixed"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:246
|
||||
msgid "Appearance"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:253
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:254
|
||||
msgid "Makimono"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:255
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-settings.php:262
|
||||
msgid "URL for search engine"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-sources.php:127
|
||||
#: app/controllers/admin/class-admin-sources.php:128
|
||||
#: app/controllers/admin/class-admin-sources.php:347
|
||||
msgid "Add Source"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-sources.php:177
|
||||
msgid "* Please enter the source/author name."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-sources.php:186
|
||||
msgid "* This source/author name has already been registered."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-sources.php:239
|
||||
msgid ""
|
||||
"* This source/author name is reserved by this plugin and could not be "
|
||||
"deleted."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-admin-sources.php:241
|
||||
msgid ""
|
||||
"* This source/author name is associated with the phrase and could not be "
|
||||
"deleted."
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# daily-maxim-365.pot (Daily Maxim 365 1.0.0) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: app/controllers/admin/class-phrases-list.php:97
|
||||
#: app/controllers/admin/class-phrases-list.php:98
|
||||
msgid "Daily Maxim 365"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-phrases-list.php:224
|
||||
#: app/controllers/admin/class-sources-list.php:216
|
||||
msgid "These records has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-phrases-list.php:367
|
||||
msgid "List Phrases"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-sources-list.php:93
|
||||
#: app/controllers/admin/class-sources-list.php:94
|
||||
#: app/controllers/admin/class-sources-list.php:344
|
||||
msgid "List Sources"
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/admin/class-sources-list.php:207
|
||||
msgid ""
|
||||
"* Some source/author names could not be deleted because they are associated "
|
||||
"with phrases."
|
||||
msgstr ""
|
||||
|
||||
#: app/controllers/frontend/class-frontend-phrases.php:137
|
||||
#: app/controllers/frontend/class-frontend-phrases.php:183
|
||||
#: app/controllers/frontend/class-frontend-phrases.php:218
|
||||
#: app/controllers/frontend/class-frontend-phrases.php:270
|
||||
msgid "Silence is golden"
|
||||
msgstr ""
|
||||
|
||||
#: app/models/admin/class-admin-settings.php:82
|
||||
msgid "If you choosed fixed, please choose a phrase."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-custom.php:37
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:170
|
||||
msgid "Target"
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-custom.php:38
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:170
|
||||
msgid "Not Target"
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-custom.php:58
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:44
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:62
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:98
|
||||
msgid "An error occurred while counting the number of phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:191
|
||||
msgid "An error occurred while searching the phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:263
|
||||
msgid "An error occurred while reading the phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:392
|
||||
msgid "An error occurred while writing the phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:459
|
||||
msgid "An error occurred while updating the phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:509
|
||||
msgid "An error occurred while deleting the phrase data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:603
|
||||
msgid ""
|
||||
"An error occurred while reading the phrase data for creating the select box."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-phrases.php:683
|
||||
msgid "An error occurred while searching for the phrase data to be displayed."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:84
|
||||
msgid ""
|
||||
"An error occurred while reading the source/author data for creating a select "
|
||||
"box."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:156
|
||||
msgid "An error occurred while counting the number of source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:227
|
||||
msgid "An error occurred while searching the source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:281
|
||||
msgid "An error occurred while reading the source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:396
|
||||
msgid "An error occurred while writing the source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:454
|
||||
msgid "An error occurred while updating the source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/models/class-sources.php:504
|
||||
msgid "An error occurred while deleting the source/author data."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:41
|
||||
msgid "select source/author name"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:53
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:71
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:59
|
||||
msgid "Select target of display"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:114
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:219
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:78
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:125
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:119
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:224
|
||||
#: app/templates/admin/page-settings/page-phrases.php:46
|
||||
msgid "Phrase"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:121
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:226
|
||||
#: app/templates/admin/page-settings/page-phrases.php:53
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:83
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:130
|
||||
#: app/templates/admin/page-settings/page-sources.php:43
|
||||
msgid "Source/Author Name"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:122
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:227
|
||||
#: app/templates/admin/page-settings/page-phrases.php:87
|
||||
msgid "Scheduled Display Date"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:123
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:228
|
||||
#: app/templates/admin/page-settings/page-phrases.php:69
|
||||
msgid "Target of Display"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:135
|
||||
msgid "There are no data exist for selected criteria."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases-list.php:269
|
||||
msgid "Delete Selected Phrases"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:71
|
||||
msgid ""
|
||||
"Specifies whether to target when displaying randomly on a daily or monthly "
|
||||
"basis."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:89
|
||||
msgid "If there is a date you want to display, Please select them."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:98
|
||||
msgid " Month "
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:105
|
||||
msgid " Day "
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:120
|
||||
#: app/templates/admin/page-settings/page-sources.php:59
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-phrases.php:122
|
||||
#: app/templates/admin/page-settings/page-sources.php:61
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:96
|
||||
msgid "There are no data."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-sources-list.php:172
|
||||
msgid "Delete Selected Sources"
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/admin/page-settings/page-sources.php:47
|
||||
msgid ""
|
||||
"This data is used for \"source unknown / author unknown\" in this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: app/templates/frontend/page-frontend-phrases.php:5
|
||||
msgid "Internet Search For"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-router.php:155
|
||||
msgid ""
|
||||
"Late Routes can not be registered after `wp` hook is triggered. Register "
|
||||
"your route before `wp` hook is triggered."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-router.php:159
|
||||
msgid ""
|
||||
"Non-Late Routes can not be registered after `init` hook is triggered. "
|
||||
"Register your route before `init` hook is triggered."
|
||||
msgstr ""
|
||||
|
||||
#: core/registry/trait-base-registry.php:39
|
||||
msgid "Key passed to `set` method must be key"
|
||||
msgstr ""
|
||||
|
||||
#: core/registry/trait-base-registry.php:53
|
||||
msgid "Key passed to `get` method must be key"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.minescope.com/category/blog/wordpress-plugin/daily-maxim-365/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A plugin that displays phrases that change daily. These phrases may "
|
||||
"sometimes cheer up or encourage someone."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Mineaki Masuko, minescope&Co."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.minescope.com/"
|
||||
msgstr ""
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/description-list-block/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/description-list-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "description-list-block",
|
||||
"version": "0.1.0",
|
||||
"description": "Example block written with ESNext standard and JSX support – build step required.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^5.3.0",
|
||||
"@wordpress/blocks": "^8.0.0",
|
||||
"@wordpress/i18n": "^3.19.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^14.0.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,299 @@
|
||||
# Copyright (C) 2021 dozentlms.com
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Dozent LMS Certificate 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-20 19:02:08+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: DozentLMS Certificate\n"
|
||||
"Language-Team: DozentLMS Certificate\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"
|
||||
|
||||
#: core/classes/Certificate_Download.php:46
|
||||
msgid "Download Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Download.php:128
|
||||
msgid "Course Not found"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Metabox.php:27
|
||||
msgid "Certificate Builder"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Metabox.php:111
|
||||
msgid "Perfect certificate image size : w-%s, h-%s"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:27
|
||||
msgid "Add New Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:28
|
||||
msgid "New Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:29
|
||||
msgid "Edit Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:30
|
||||
msgid "View Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:31 core/classes/WPDashboard.php:22
|
||||
#: core/views/certificates-list.php:13
|
||||
msgid "Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:32
|
||||
msgid "Search Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:33
|
||||
msgid "Parent Certificates:"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:34
|
||||
msgid "No lectures found."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:35
|
||||
msgid "No lectures found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:40
|
||||
msgid "Description."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Template.php:66
|
||||
msgid "Certificate Template"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Template.php:67
|
||||
msgid "Choose a certificate template to personalize your course certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:36
|
||||
msgid ""
|
||||
"%s PHP Version Upgrade Notice: %s In order to use %s, your server PHP "
|
||||
"version requires at least %s or greater"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:38
|
||||
msgid ""
|
||||
"Currently your server running PHP version %s which out of date, upgrade "
|
||||
"your PHP version"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:49
|
||||
msgid "In order to use %s Plugin, your server must have installed GD extension"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:93
|
||||
msgid ""
|
||||
"in order to work %s properly, you must need to activate the Dozent LMS Core "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:94
|
||||
msgid "Activate Dozent LMS Now"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:103
|
||||
msgid ""
|
||||
"in order to work %s properly, you must need to install the Dozent LMS Core "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:104
|
||||
msgid "Install Dozent LMS Now"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:134
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:138
|
||||
msgid "Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:139
|
||||
msgid "Set up certificate settings to control the Dozent LMS certificate plugin"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:143
|
||||
msgid "Course Specific Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:144
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Dozent_LMS_Certificate_Base.php:145
|
||||
msgid ""
|
||||
"Course-specific certificates allow instructors to choose certificate "
|
||||
"templates for each course."
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate.php:153
|
||||
msgid "Course Title"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:43
|
||||
msgid "Example Template"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:53
|
||||
msgid "Certificate Content"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:64
|
||||
msgid "Content Wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:69
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:75
|
||||
msgid ""
|
||||
"Set total width of certificate content as per your certificate design, "
|
||||
"preferable width is 520"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:83 core/views/certificate_builder.php:174
|
||||
msgid "Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:97 core/views/certificate_builder.php:188
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:103
|
||||
#: core/views/certificate_builder.php:194
|
||||
msgid "Set font size, preferable 18"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:111
|
||||
msgid "Font Color"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:118
|
||||
msgid "Set color of the text"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:126
|
||||
msgid "Text Align"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:132
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:137
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:142
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:151
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:162
|
||||
msgid ""
|
||||
"Adjust top margin as per your designs requirement. To make center content, "
|
||||
"set left - auto, right - auto"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:169
|
||||
msgid "Student Name"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificate_builder.php:206
|
||||
msgid "Test Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:15
|
||||
msgid "Add Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:44
|
||||
msgid "Set as Default"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:58 core/views/certificates-list.php:62
|
||||
msgid "Import Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/views/certificates-list.php:59
|
||||
msgid ""
|
||||
"Import pre-designed certificate to use those instants, you can always add "
|
||||
"your custom-designed certificate"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Dozent LMS Certificate"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.dozentlms.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&"
|
||||
"utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Dozent LMS Certificate allows students to receive a certificate when they "
|
||||
"completed any course."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "dozentlms.com"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.dozentlms.com/dozent-lms-certificate/?utm_source=wp-plugins&utm_"
|
||||
"campaign=plugin-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:22
|
||||
msgctxt "post type general name"
|
||||
msgid "Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:23
|
||||
msgctxt "post type singular name"
|
||||
msgid "Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:24
|
||||
msgctxt "admin menu"
|
||||
msgid "Certificates"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:25
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Certificate"
|
||||
msgstr ""
|
||||
|
||||
#: core/classes/Certificate_Post_Type.php:26
|
||||
msgctxt "certificate"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
3042
spec/fixtures/dynamic_finders/plugin_version/dozent/translation_file/languages/dozent.pot
vendored
Normal file
3042
spec/fixtures/dynamic_finders/plugin_version/dozent/translation_file/languages/dozent.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,67 @@
|
||||
# Copyright (C) 2021 Erika Gili
|
||||
# This file is distributed under the same license as the Email Fields for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Email Fields for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-fields-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: 2021-02-16T10:40:14+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: email-fields-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Email Fields for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.penguinet.it/progetti/email-fields-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Manage Reply To and BCC of the WooCommerce emails"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Erika Gili"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.penguinet.it"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:38
|
||||
msgid "Email Reply-To options"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:44
|
||||
msgid "\"Reply-To\" name"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:45
|
||||
msgid "How the Reply-To name appears in outgoing WooCommerce emails."
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:57
|
||||
msgid "\"Reply-To\" address"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:58
|
||||
msgid "The Reply-To email address in outgoing WooCommerce emails. Add only one."
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:85
|
||||
msgid "Email Bcc options"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:91
|
||||
msgid "\"Bcc\" address"
|
||||
msgstr ""
|
||||
|
||||
#: src/GeneralFields.php:92
|
||||
msgid "Add one blind carbon copy address in outgoing WooCommerce emails."
|
||||
msgstr ""
|
||||
46
spec/fixtures/dynamic_finders/plugin_version/emissary-for-woocommerce/change_log/changelog.txt
vendored
Normal file
46
spec/fixtures/dynamic_finders/plugin_version/emissary-for-woocommerce/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
=== Emissary for Woocommerce ===
|
||||
Contributors: jsaldanav
|
||||
Tags: comments, spam, antispam, anti-spam, contact form, anti spam, comment moderation, comment spam, contact form spam, spam comments
|
||||
Requires at least: 4.6
|
||||
Donate link: https://emissary.mx/
|
||||
Requires PHP: 5.2.17
|
||||
Tested up to: 5.6
|
||||
Stable tag: 1.0
|
||||
License: GPLv2 or later
|
||||
|
||||
The essential logistics software for your business. Show shipping costs based on purchase weight and zip codes.
|
||||
|
||||
== Description ==
|
||||
|
||||
Emissary for Woocommerce displays various shipping options based on weight, zip codes, and carrier coverage.
|
||||
|
||||
Major features in Emissary for Woocommerce include:
|
||||
|
||||
* Dynamic shipping costs.
|
||||
* includes extended zones.
|
||||
|
||||
== Installation ==
|
||||
|
||||
Upload the Emissary for woocommerce plugin to your blog, activate it, and then enter your Emissary.mx API key.
|
||||
|
||||
1, 2, 3: You're done!
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0 =
|
||||
*Release Date - 05 February 2021
|
||||
|
||||
* Release initial
|
||||
|
||||
== Frequently Asked Questions ==
|
||||
|
||||
Any questions or problems please report it to the emissary.mx chat
|
||||
|
||||
== Upgrade Notice ==
|
||||
|
||||
= 1.0 =
|
||||
Release initial
|
||||
|
||||
== Screenshots ==
|
||||
1. Emissary for Woocommerce configuration
|
||||
2. Emissary for woocommerce in the checkout
|
||||
@@ -0,0 +1,3 @@
|
||||
= 0.0.1 =
|
||||
* March, 9, 2021
|
||||
* Initial release.
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/exs-gdpr/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/exs-gdpr/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 0.0.1 =
|
||||
* March, 9, 2021
|
||||
* Initial release.
|
||||
229
spec/fixtures/dynamic_finders/plugin_version/fail2wp/translation_file/languages/fail2wp.pot
vendored
Normal file
229
spec/fixtures/dynamic_finders/plugin_version/fail2wp/translation_file/languages/fail2wp.pot
vendored
Normal file
@@ -0,0 +1,229 @@
|
||||
# Fail2WP WordPress plugin <LANGUAGE> translation
|
||||
# Copyright (C) 2021 Joaquim Homrighausen
|
||||
# This file is distributed under the same license as the Fail2WP package.
|
||||
# Joaquim Homrighausen <joho@webbplatsen.se>, 2021.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: fail2wp 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-03 10:24+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Joaquim Homrighausen <joho@webbplatsen.se>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: fail2wp.php:184
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:240 fail2wp.php:245
|
||||
msgid "Unknown role"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:286
|
||||
msgid ""
|
||||
"Provides authentication related logging and security functions for "
|
||||
"WordPress, suitable for use with Fail2ban"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:289
|
||||
msgid "Basic configuration"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:292
|
||||
msgid "Logging"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:295
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:298
|
||||
msgid "Cloudflare"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:301
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:307
|
||||
msgid ""
|
||||
"One or more of openlog(), closelog(), and/or syslog() seem to be missing on "
|
||||
"this system"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:355
|
||||
msgid "Thank you for installing"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:356
|
||||
msgid ""
|
||||
"This plugin provides security functions and integration between "
|
||||
"WordPress and"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:360
|
||||
msgid "Commercial support and customizations for this plugin is available from"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:362
|
||||
msgid "in Stockholm, Sweden. We speak Swedish and English"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:364
|
||||
msgid ""
|
||||
"The plugin is written by Joaquim Homrighausen and sponsored by WebbPlatsen i "
|
||||
"Sverige AB."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:365
|
||||
msgid ""
|
||||
"If you find this plugin useful, the author is happy to receive a donation, "
|
||||
"good review, or just a kind word."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:366
|
||||
msgid ""
|
||||
"If there is something you feel to be missing from this plugin, or if you "
|
||||
"have found a problem with the code or a feature, please do not hesitate to "
|
||||
"reach out to"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:381
|
||||
msgid "Site label"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:382
|
||||
msgid "Block user enum"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:383
|
||||
msgid "Block username login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:384
|
||||
msgid "Secure login messages"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:385
|
||||
msgid "Other settings"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:386
|
||||
msgid "Remove settings"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:389
|
||||
msgid "Successful login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:390
|
||||
msgid "Unsuccessful login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:395
|
||||
msgid "Logging prefix"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:396
|
||||
msgid "Also log to PHP log"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:399
|
||||
msgid "Check for Cloudflare IP"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:400
|
||||
msgid "Cloudflare IPv4"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:401
|
||||
msgid "Cloudflare IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:484
|
||||
msgid ""
|
||||
"The site name to use for logging, defaults to your site name if left empty"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:529
|
||||
msgid "Unknown users"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:537
|
||||
msgid "User enumeration attempts (i.e. your.site/...?author=nnn)"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:545
|
||||
msgid "Remove all plugin settings and data when plugin is uninstalled"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:553
|
||||
msgid "Block user enumeration attempts (i.e. your.site/...?author=nnn)"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:561
|
||||
msgid "Require users to login with their e-mail address"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:569
|
||||
msgid "Change login failure messages to contain less detail"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:577
|
||||
msgid ""
|
||||
"Please make sure you understand how these settings can impact the operation "
|
||||
"of the plugin before making changes to them."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:585
|
||||
msgid "These settings allows the plugin to better interact with Cloudflare."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:587
|
||||
msgid ""
|
||||
"If your site is not published via Cloudflare, you can safely ignore these "
|
||||
"settings."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:589
|
||||
msgid "For an updated list of Cloudflare IPs, please use this link"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:599
|
||||
msgid "The logging prefix, this should normally be left empty"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:606
|
||||
msgid "Log the same information to PHP log using error_log()"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:614
|
||||
msgid "Attempt to unmask real IP when Cloudflare IP is detected"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:626 fail2wp.php:637
|
||||
msgid ""
|
||||
"IPs matching these addresses will be considerd to be coming from Cloudflare"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:962 fail2wp.php:966
|
||||
msgid "Please specify your e-mail address to login"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:989
|
||||
msgid "E-mail address"
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:1094 fail2wp.php:1122
|
||||
msgid "Invalid login credentials, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: fail2wp.php:1126
|
||||
msgid "Lost password"
|
||||
msgstr ""
|
||||
39
spec/fixtures/dynamic_finders/plugin_version/fast-fancy-filter-3f/composer_file/package.json
vendored
Normal file
39
spec/fixtures/dynamic_finders/plugin_version/fast-fancy-filter-3f/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "FastFancyFilter",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
"main": "assets/app/index.js",
|
||||
"scripts": {
|
||||
"dev": "cross-env BABEL_ENV=default webpack --watch",
|
||||
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack -p"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
||||
"@wordpress/babel-preset-default": "^1.2.0",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-eslint": "^8.2.3",
|
||||
"babel-loader": "^7.1.4",
|
||||
"classnames": "^2.2.5",
|
||||
"cross-env": "^5.1.5",
|
||||
"css-loader": "^0.28.11",
|
||||
"eslint": "^4.19.1",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"postcss-loader": "^2.1.5",
|
||||
"raw-loader": "^0.5.1",
|
||||
"sass-loader": "^6.0.7",
|
||||
"style-loader": "^0.19.1",
|
||||
"webpack": "^3.11.0",
|
||||
"wp-pot": "^1.9.8"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.21.0",
|
||||
"babel-preset-stage-1": "^6.24.1",
|
||||
"prop-types": "^15.7.2",
|
||||
"query-string": "^4.3.4",
|
||||
"react-masonry-css": "^1.0.14",
|
||||
"react-parallax": "^3.2.1",
|
||||
"react-router": "^5.2.0",
|
||||
"react-router-dom": "^5.2.0",
|
||||
"react-sticky-box": "^0.9.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
# Copyright (C) 2021 Lucia Dossin
|
||||
# This file is distributed under the same license as the FBC Latest Backup for UpdraftPlus plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FBC Latest Backup for UpdraftPlus 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fbc-latest-backup\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-03-12T14:02:27+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: fbc-latest-backup\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "FBC Latest Backup for UpdraftPlus"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds a widget to the dashboard, letting you know the date and time of latest backup and how many edits were made since then, if any"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Lucia Dossin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:20
|
||||
msgid "No information available. Please make sure that UpdraftPlus Backup plugin is installed and activated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:57
|
||||
msgid "Edits since last backup"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:59
|
||||
msgid "Edit since last backup"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:67
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:70
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:73
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:80
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:91
|
||||
msgid "No information available. Please check if at least one backup has been made."
|
||||
msgstr ""
|
||||
|
||||
#: admin/widget.php:98
|
||||
#: admin/widget.php:106
|
||||
msgid "Latest Backup"
|
||||
msgstr ""
|
||||
1315
spec/fixtures/dynamic_finders/plugin_version/firebox/translation_file/languages/firebox.pot
vendored
Normal file
1315
spec/fixtures/dynamic_finders/plugin_version/firebox/translation_file/languages/firebox.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
23
spec/fixtures/dynamic_finders/plugin_version/firepro/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/firepro/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "firepro",
|
||||
"version": "0.1.0",
|
||||
"description": "Example block written with ESNext standard and JSX support – build step required.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "node compile/compile.js && wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1",
|
||||
"raw-loader": "^4.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/media-utils": "^1.18.0"
|
||||
}
|
||||
}
|
||||
1880
spec/fixtures/dynamic_finders/plugin_version/forumwp/translation_file/languages/forumwp-en_US.po
vendored
Normal file
1880
spec/fixtures/dynamic_finders/plugin_version/forumwp/translation_file/languages/forumwp-en_US.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "FourthEstate1/newswire-publsher-wordpress-plugin",
|
||||
"description": "A base WordPress plugin library.",
|
||||
"license": "MIT",
|
||||
"version": "1.0",
|
||||
"minimum-stability": "dev",
|
||||
"type": "wordpress-plugin",
|
||||
"homepage": "https://github.com/FourthEstate1/newswire-publsher-wordpress-plugin",
|
||||
"authors": [
|
||||
{
|
||||
"name": "example",
|
||||
"email": "example@example.com",
|
||||
"homepage": "https://www.example.com/"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://example.com/issues",
|
||||
"source": "https://github.com/FourthEstate1/newswire-publsher-wordpress-plugin"
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.4.0",
|
||||
"psr/container": "^1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "*@stable"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"FourthEstate1\\newswire\\publsher\\wordpress\\plugin\\": "/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"FourthEstate1\\newswire\\publsher\\wordpress\\plugin\\": "/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"test": "./vendor/bin/phpunit --coverage-html coverage"
|
||||
}
|
||||
}
|
||||
25
spec/fixtures/dynamic_finders/plugin_version/friends/composer_file/package.json
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/friends/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "Friends",
|
||||
"version": "1.5.4",
|
||||
"private": true,
|
||||
"description": "Blocks of the Friends Plugin for WordPress",
|
||||
"homepage": "https://wpfriends.at/",
|
||||
"repository": "git+https://github.com/akirk/friends.git",
|
||||
"author": "Alex Kirk",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"keywords": [],
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^14.0.0",
|
||||
"lerna": "^3.20.2",
|
||||
"spectre.css": "^0.5.9"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "lerna run build",
|
||||
"lint:js": "lerna run lint:js",
|
||||
"lint:pkg-json": "wp-scripts lint-pkg-json ./package.json ./blocks/*/package.json",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:js:fix": "npm run lint:js -- --fix",
|
||||
"test": "wp-scripts test-unit-js",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,996 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Get-A-Quote 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-13 12:35+0530\n"
|
||||
"PO-Revision-Date: 2021-03-13 12:35+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: esc_html_e;__;_e;esc_html__;esc_attr_e;esc_url_raw;"
|
||||
"esc_url;esc_attr;esc_html;esc_attr__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:189
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:45
|
||||
msgid "Get A Quote"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:196
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:251
|
||||
msgid "Enable Quote Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:253
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:264 admin/class-get-a-quote-admin.php:435
|
||||
#: admin/class-get-a-quote-admin.php:455
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:282
|
||||
msgid "User Guide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:283
|
||||
msgid "View the detailed guides and documentation to set up your plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:284
|
||||
msgid "VIEW"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:288
|
||||
msgid "Free Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:289
|
||||
msgid "Please submit a ticket , our team will respond within 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:290
|
||||
msgid "SUBMIT"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:335
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:338
|
||||
msgid "Settings saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:355
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:32
|
||||
msgid "Form Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:360
|
||||
msgid "Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:364
|
||||
msgid "Email Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:390
|
||||
msgid "Activate Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:400
|
||||
msgid "Get reply on email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:407
|
||||
msgid "Enter reply back email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:410
|
||||
msgid "Email Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:417
|
||||
msgid "Subject Here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:420
|
||||
msgid "Email Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:429
|
||||
msgid "Message Here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:484
|
||||
msgid "Enable Quote Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:492 admin/class-get-a-quote-admin.php:505
|
||||
#: includes/class-get-a-quote.php:461 includes/class-get-a-quote.php:464
|
||||
#: includes/class-get-a-quote.php:467
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:493 admin/class-get-a-quote-admin.php:506
|
||||
#: includes/class-get-a-quote.php:461 includes/class-get-a-quote.php:464
|
||||
#: includes/class-get-a-quote.php:467
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:497
|
||||
msgid "Enable Service Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:519
|
||||
msgid "Quote Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:543
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:57
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:552
|
||||
msgid "Quote Service"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:555
|
||||
#: common/class-get-a-quote-common.php:152
|
||||
msgid "Quote Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:557
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:69
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:87
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:558
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:89
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:116
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-get-a-quote-admin.php:559
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:32
|
||||
msgid "get-a-quote-support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:32
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:51
|
||||
msgid "&gaq_tab="
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-dashboard.php:32
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:18
|
||||
msgid "admin/src/images/overview-banner.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:22
|
||||
msgid "What is Get A Quote for WordPress?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:26
|
||||
msgid ""
|
||||
"Get A Quote for WordPress plugin helps you create & add a quotation form on "
|
||||
"your WordPress website. Users can fill this form to submit a request for a "
|
||||
"quotation of the required services. With this plugin, you can add multiple "
|
||||
"statuses for\n"
|
||||
"\t\t\t\tyour quotations, multiple services in the form, & acknowledge users "
|
||||
"through an email for the successful submission of their quote request."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:32
|
||||
msgid "With our Get A Quote for WordPress plugin you can:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:34
|
||||
msgid "Add a quote form on your website"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:35
|
||||
msgid "Notify customers for their quote submission through emails"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:36
|
||||
msgid "Enable/Disable your quotation form fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:37
|
||||
msgid "Enable/Disable service and quote status taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:38
|
||||
msgid "Add different statuses for your quotation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:45
|
||||
msgid "admin/src/images/Quotation-Form.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:48
|
||||
msgid "Quotation Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:52
|
||||
msgid ""
|
||||
"The plugin provides a quotation form you can add on your website. Customers "
|
||||
"will fill this form to submit a quotation request on your website. As soon "
|
||||
"as you install and activate our Get A Quote plugin, this form will "
|
||||
"automatically\n"
|
||||
"\t\t\t\t\t\t\tbe created."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:64
|
||||
msgid "admin/src/images/taxonomy.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:67
|
||||
msgid "Service and quote status taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:68
|
||||
msgid ""
|
||||
"The plugin provides you two different types of taxonomies. <b>1) Quote "
|
||||
"Service Taxonomy</b>, <b>2) Quote Status Taxonomy</b>. Merchants can enable/"
|
||||
"disable these taxonomies as per their requirements."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:75
|
||||
msgid "admin/src/images/Multiple-Quotation-Status.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:78
|
||||
msgid "Multiple quotation statuses"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:79
|
||||
msgid ""
|
||||
"Our Get A Quote plugin helps merchants to create multiple statuses for "
|
||||
"quotations. Admin can check and change the status for a particular quote."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:86
|
||||
msgid "admin/src/images/services.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:89
|
||||
msgid "Multiple services"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:93
|
||||
msgid ""
|
||||
"With this plugin, merchants can create multiple services to offer. Customers "
|
||||
"will be able to select these services through the quotation form you added "
|
||||
"to your website. These services will be displayed in the Services field of\n"
|
||||
"\t\t\t\t\t\t\tyour quotation form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:105
|
||||
msgid "admin/src/images/acknowledgement.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:108
|
||||
msgid "Submission Acknowledgement through email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:112
|
||||
msgid ""
|
||||
"Our Get A Quote plugin also lets you send an acknowledgment email to the "
|
||||
"user whenever s/he submits the quote requests. You can create and save your "
|
||||
"email subject and message which will be sent to the user to notify them "
|
||||
"about\n"
|
||||
"\t\t\t\t\t\t\ttheir successful submission of their quote request."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:124
|
||||
msgid "Exclusive Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:125
|
||||
msgid "Receive dedicated "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:125
|
||||
msgid "24x7 "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:128
|
||||
msgid ""
|
||||
"Phone, Email & Skype support. Our Support is ready to assist you regarding "
|
||||
"any query, issue, or feature request and if that doesn't help our Technical "
|
||||
"team will connect with you personally and have your query\n"
|
||||
"\t\t\t\t\tresolved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:145
|
||||
msgid "Connect with us in one click"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-admin-overview.php:146
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-email-setting.php:38
|
||||
#: admin/partials/get-a-quote-taxonomies.php:44
|
||||
msgid "Settings saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:20
|
||||
#: admin/partials/get-a-quote-form-fields-preview.php:18
|
||||
msgid "admin/src/images/mwb-logo1.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:32
|
||||
msgid "(current)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:35
|
||||
#: admin/partials/get-a-quote-form-fields-preview.php:30
|
||||
msgid "Preview Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:41
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:52
|
||||
msgid "Save Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:57
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:105
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:61
|
||||
msgid "First name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:65
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:67
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:73
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:77
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:96
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:81
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:77
|
||||
msgid "Zipcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:85
|
||||
msgid "Budget"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:93
|
||||
msgid "Additional"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:101
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-edit.php:103
|
||||
msgid "Placeholder-Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields-preview.php:36
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:18
|
||||
msgid "Form Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:19
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:20
|
||||
msgid "Operation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:23
|
||||
msgid "Contact Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-form-fields.php:25
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:64
|
||||
#: common/class-get-a-quote-common.php:153
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:65
|
||||
msgid "Add Status Terms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:66
|
||||
#: admin/partials/get-a-quote-taxonomies.php:82
|
||||
msgid "Active Terms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:70
|
||||
#: admin/partials/get-a-quote-taxonomies.php:86
|
||||
msgid "Term Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:80
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:46
|
||||
#: common/class-get-a-quote-common.php:114
|
||||
msgid "Service"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/get-a-quote-taxonomies.php:81
|
||||
msgid "Add Service Terms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:38
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:106
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:125
|
||||
msgid "Additional Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:136
|
||||
msgid "Attached File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:150
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-box/get-a-quote-custom-meta-box.php:152
|
||||
msgid "No File Selected"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:72
|
||||
#: common/class-get-a-quote-common.php:83
|
||||
msgid "Quotes"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:73
|
||||
#: common/class-get-a-quote-common.php:140
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:74
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:75
|
||||
msgid "Add New Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:76
|
||||
msgid "Edit Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:77
|
||||
msgid "New Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:78
|
||||
msgid "All Quotes"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:79
|
||||
msgid "View Quote"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:80
|
||||
msgid "Search Quotes"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:81
|
||||
msgid "No Quotes Found"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:82
|
||||
msgid "No Quotes Found In Trash"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:113
|
||||
#: common/class-get-a-quote-common.php:123
|
||||
msgid "Services"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:115
|
||||
msgid "Search Services"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:116
|
||||
msgid "All Services"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:117
|
||||
msgid "Parent Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:118
|
||||
msgid "Parent Service:"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:119
|
||||
msgid "Edit Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:120
|
||||
msgid "Update Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:121
|
||||
msgid "Add New Service"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:122
|
||||
msgid "New Service Name"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:139
|
||||
msgid "Quotation"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:154
|
||||
msgid "Search Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:155
|
||||
msgid "All Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:156
|
||||
msgid "Parent Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:157
|
||||
msgid "Parent Status:"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:158
|
||||
msgid "Edit Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:159
|
||||
msgid "Update Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:160
|
||||
msgid "Add New Status"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:161
|
||||
msgid "New Status Name"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:162
|
||||
msgid "Quote Statuses"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:178
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: common/class-get-a-quote-common.php:179
|
||||
msgid "Pending For Review"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:28
|
||||
msgid "x"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:32
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:42
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:34
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:35
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:45
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: get-a-quote.php:76 get-a-quote.php:82
|
||||
msgid "get-a-quote"
|
||||
msgstr ""
|
||||
|
||||
#: get-a-quote.php:149
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1834
|
||||
msgid "A Coruña"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1835
|
||||
msgid "Araba"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1836
|
||||
msgid "Albacete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1837
|
||||
msgid "Alicante"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1838
|
||||
msgid "Almería"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1839
|
||||
msgid "Asturias"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1840
|
||||
msgid "Ávila"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1841
|
||||
msgid "Badajoz"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1842
|
||||
msgid "Baleares"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1843
|
||||
msgid "Barcelona"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1844
|
||||
msgid "Burgos"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1845
|
||||
msgid "Cáceres"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1846
|
||||
msgid "Cádiz"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1847
|
||||
msgid "Cantabria"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1848
|
||||
msgid "Castellón"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1849
|
||||
msgid "Ceuta"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1850
|
||||
msgid "Ciudad Real"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1851
|
||||
msgid "Córdoba"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1852
|
||||
msgid "Cuenca"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1853
|
||||
msgid "Girona"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1854
|
||||
msgid "Granada"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1855
|
||||
msgid "Guadalajara"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1856
|
||||
msgid "Gipuzkoa"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1857
|
||||
msgid "Huelva"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1858
|
||||
msgid "Huesca"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1859
|
||||
msgid "Jaén"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1860
|
||||
msgid "La Rioja"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1861
|
||||
msgid "Las Palmas"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1862
|
||||
msgid "León"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1863
|
||||
msgid "Lleida"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1864
|
||||
msgid "Lugo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1865
|
||||
msgid "Madrid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1866
|
||||
msgid "Málaga"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1867
|
||||
msgid "Melilla"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1868
|
||||
msgid "Murcia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1869
|
||||
msgid "Navarra"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1870
|
||||
msgid "Ourense"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1871
|
||||
msgid "Palencia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1872
|
||||
msgid "Pontevedra"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1873
|
||||
msgid "Salamanca"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1874
|
||||
msgid "Santa Cruz de Tenerife"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1875
|
||||
msgid "Segovia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1876
|
||||
msgid "Sevilla"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1877
|
||||
msgid "Soria"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1878
|
||||
msgid "Tarragona"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1879
|
||||
msgid "Teruel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1880
|
||||
msgid "Toledo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1881
|
||||
msgid "Valencia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1882
|
||||
msgid "Valladolid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1883
|
||||
msgid "Bizkaia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1884
|
||||
msgid "Zamora"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gaq-country-manager.php:1885
|
||||
msgid "Zaragoza"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-activator.php:60
|
||||
msgid "Quote Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-activator.php:62
|
||||
msgid "[gaq_form_fields]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:183
|
||||
msgid "Name field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:186
|
||||
msgid "Name is to be character or alphanumeric."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:199
|
||||
msgid "Email field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:203
|
||||
msgid "Invalid email format."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:212
|
||||
msgid "Phone field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:219
|
||||
msgid "Enter numbers only in Phone field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:224
|
||||
msgid "Enter only number in Phone field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:234
|
||||
msgid "Only characters are allowed in City field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:245
|
||||
msgid "Invalid Zipcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:254
|
||||
msgid "Only numbers are not allowed in State."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote-helper.php:264
|
||||
msgid "Only numbers are not allowed in Country."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:355
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:379
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:437
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:446
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:449
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:452
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:455
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:458
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:470
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:473
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:476 includes/class-get-a-quote.php:482
|
||||
#: includes/class-get-a-quote.php:485 includes/class-get-a-quote.php:513
|
||||
#: includes/class-get-a-quote.php:516
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:479
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:497
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:500 includes/class-get-a-quote.php:509
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-get-a-quote.php:519
|
||||
msgid "N/A (file_get_contents function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:330
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:347
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:382
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:392
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:635
|
||||
msgid "Select Any One Option..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:893
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/get-a-quote-public-display.php:43
|
||||
msgid "Type Of Service"
|
||||
msgstr ""
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/gev-email-validator/change_log/CHANGELOG.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/gev-email-validator/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 2021-02-09
|
||||
@@ -0,0 +1,163 @@
|
||||
# Copyright (C) 2021 maranqz
|
||||
# This file is distributed under the same license as the GEV Email Validator plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GEV Email Validator 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gev-email-validator\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-09T16:11:16+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "GEV Email Validator"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The Cheapest advanced Email Address Validation to forms. Prevents typos in email address field and eliminates spam submissions with fake email addresses. The solution is based on <a href=\"https://rapidapi.com/maranqz/api/email-validator15\" target=\"_blank\">Email Validator</a> service."
|
||||
msgstr "Самая дешевая настраиваемая проверка адреса электронной почты (email) для форм. Предотвращает опечатки в поле адреса электронной почты и устраняет спам с поддельных адресов. Решение основано на сервисе <a href=\"https://rapidapi.com/maranqz/api/email-validator15\" target=\"_blank\">Email Validator</a>."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "maranqz"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-email-validator-admin.php:167
|
||||
msgid "Email Validator Settings"
|
||||
msgstr "Email Validator Настройки"
|
||||
|
||||
#: admin/class-email-validator-admin.php:173
|
||||
msgid "API Key"
|
||||
msgstr "API ключ"
|
||||
|
||||
#: admin/class-email-validator-admin.php:183
|
||||
msgid "Verify API Key"
|
||||
msgstr "Проверить API ключ"
|
||||
|
||||
#: admin/class-email-validator-admin.php:184
|
||||
#: admin/partials/email-validator-admin-display.php:27
|
||||
msgid "Checking..."
|
||||
msgstr "Проверка..."
|
||||
|
||||
#: admin/class-email-validator-admin.php:188
|
||||
msgid "You can find the key in <a href=\"https://rapidapi.com/developer/security/\" target=\"_blank\">Rapid Api</a>, <a href=\"https://docs.rapidapi.com/docs/keys\" target=\"_blank\">Documentation</a>."
|
||||
msgstr "Вы можете найти ключ на <a href=\"https://rapidapi.com/developer/security/\" target=\"_blank\">Rapid Api</a>, <a href=\"https://docs.rapidapi.com/docs/keys\" target=\"_blank\">Документация</a>."
|
||||
|
||||
#: admin/class-email-validator-admin.php:195
|
||||
msgid "Block Invalid Email"
|
||||
msgstr "Блокировать невальдный email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:201
|
||||
msgid "Block Role-Based Email"
|
||||
msgstr "Блокировать ролевой email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:207
|
||||
msgid "Block Free Email"
|
||||
msgstr "Блокировать бесплатный email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:213
|
||||
msgid "Block Disposable Email"
|
||||
msgstr "Блокировать одноразовый email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:219
|
||||
msgid "Block UnDeliverable Email"
|
||||
msgstr "Блокировать недоставляемый email"
|
||||
|
||||
#: admin/class-email-validator-admin.php:225
|
||||
msgid "Use in WP-Admin"
|
||||
msgstr "Использовать в WP-Admin"
|
||||
|
||||
#: admin/class-email-validator-admin.php:231
|
||||
msgid "Pages to Skip"
|
||||
msgstr "Страницы для пропуска"
|
||||
|
||||
#: admin/class-email-validator-admin.php:235
|
||||
msgid "One line one page as regular expression"
|
||||
msgstr "Одна линия, одна страница в виде регулярного выражения"
|
||||
|
||||
#: admin/class-email-validator-admin.php:243
|
||||
msgid "Emails to Skip"
|
||||
msgstr "Emailы для пропуска"
|
||||
|
||||
#: admin/class-email-validator-admin.php:247
|
||||
msgid "One line one email as regular expression"
|
||||
msgstr "Одна линия, один email в виде регулярного выражения"
|
||||
|
||||
#: admin/class-email-validator-admin.php:254
|
||||
msgid "Integration with"
|
||||
msgstr "Интеграция с"
|
||||
|
||||
#: admin/class-email-validator-admin.php:271
|
||||
msgid "Please enter a API Key and click \"Save\"."
|
||||
msgstr "Пожалуйста введите API ключ и нажмите «Сохранить»."
|
||||
|
||||
#: admin/class-email-validator-admin.php:294
|
||||
msgid "API Key is valid. Click \"Save\" button below."
|
||||
msgstr "API ключ достоверный. Нажмите кнопку «Сохранить» ниже."
|
||||
|
||||
#: admin/class-email-validator-admin.php:329
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: admin/class-email-validator-admin.php:343
|
||||
msgid "On"
|
||||
msgstr "Вкл."
|
||||
|
||||
#: admin/class-email-validator-admin.php:347
|
||||
msgid "Off"
|
||||
msgstr "Выкл."
|
||||
|
||||
#: admin/class-email-validator-admin.php:379
|
||||
msgid "Reset default value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:15
|
||||
msgid "Save"
|
||||
msgstr "Сохранить"
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:19
|
||||
msgid "Email Validation Demo"
|
||||
msgstr "Email Validation Демонстрация"
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:20
|
||||
msgid "You can use this form to see how Email Validator validates email addresses."
|
||||
msgstr "Вы можете использовать эту форму, чтобы увидеть, как Email Validator проверяет адреса электронной почты."
|
||||
|
||||
#: admin/partials/email-validator-admin-display.php:26
|
||||
msgid "Validate Email"
|
||||
msgstr "Проверить Email"
|
||||
|
||||
#: includes/class-email-validator-validator.php:26
|
||||
msgid "Please enter a "
|
||||
msgstr "Пожалуйста введите "
|
||||
|
||||
#: includes/class-email-validator-validator.php:27
|
||||
msgid " email address."
|
||||
msgstr " email."
|
||||
|
||||
#: includes/class-email-validator-validator.php:30
|
||||
msgid "valid"
|
||||
msgstr "валидный"
|
||||
|
||||
#: includes/class-email-validator-validator.php:31
|
||||
msgid "non-free"
|
||||
msgstr "небесплатный"
|
||||
|
||||
#: includes/class-email-validator-validator.php:32
|
||||
msgid "non-disposable"
|
||||
msgstr "неодноразовый"
|
||||
|
||||
#: includes/class-email-validator-validator.php:33
|
||||
msgid "non-role"
|
||||
msgstr "неролевой"
|
||||
|
||||
#: includes/class-email-validator-validator.php:34
|
||||
msgid "existing"
|
||||
msgstr "существующий"
|
||||
|
||||
#: includes/class-email-validator-validator.php:92
|
||||
msgid "Address is valid."
|
||||
msgstr "Адрес действителен."
|
||||
@@ -0,0 +1,143 @@
|
||||
# Copyright (C) 2021 GoDaddy
|
||||
# This file is distributed under the GPL-2.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Poynt — a GoDaddy Brand for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://woocommerce.com/my-account/marketplace-ticket-form/\n"
|
||||
"POT-Creation-Date: 2021-04-01 21:16:08+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:81 src/Lifecycle.php:104
|
||||
msgid "Credit Card"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:82
|
||||
msgid ""
|
||||
"Securely accept credit card payments on your checkout page with Poynt "
|
||||
"— a GoDaddy brand."
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:359
|
||||
msgid "Connection settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:362
|
||||
msgid ""
|
||||
"To connect to Poynt, please copy your Application ID and Private Key and "
|
||||
"paste these values in the fields below. %1$sClick here%2$s to access these "
|
||||
"credentials."
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:367
|
||||
msgid "Application ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:369
|
||||
msgid "Enter your Application ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:373
|
||||
msgid "Private Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:375
|
||||
msgid "Enter your Private Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:379
|
||||
msgid "Staging Application ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:381
|
||||
msgid "Enter your staging Application ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:385
|
||||
msgid "Staging Private Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:387
|
||||
msgid "Enter your staging Private Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:616
|
||||
msgid "An error occurred, please try again or try an alternate form of payment."
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:620
|
||||
msgid "Missing card details."
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:624
|
||||
msgid "Missing billing details."
|
||||
msgstr ""
|
||||
|
||||
#: src/Lifecycle.php:105
|
||||
msgid "Allow customers to securely pay using their credit cards with Poynt."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:98
|
||||
msgid "Poynt — a GoDaddy Brand for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:206
|
||||
#. translators: Placeholders: %1$s - opening <a> HTML link tag, %2$s - closing
|
||||
#. </a> HTML link tag
|
||||
msgid ""
|
||||
"Migration successful! WooCommerce Poynt Collect Payment Gateway was "
|
||||
"deactivated, and Poynt — a GoDaddy Brand for WooCommerce has been "
|
||||
"%1$sconfigured with your previous settings%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:253
|
||||
msgid ""
|
||||
"Poynt — a GoDaddy Brand for WooCommerce is available for United "
|
||||
"States-based businesses. Please %1$supdate your Store Address%2$s if you "
|
||||
"are located in the U.S."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:270
|
||||
msgid ""
|
||||
"Start taking secure payments in minutes and get paid faster with Poynt "
|
||||
"— a GoDaddy Brand for WooCommerce, a payment gateway plugin that "
|
||||
"enables your US based business to accept any major credit or debit card "
|
||||
"directly on your WooCommerce site. %1$sSignup Now%2$s"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Poynt — a GoDaddy Brand for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.poynt.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A payment gateway plugin that enables your US based business to accept "
|
||||
"credit card payments directly on your WooCommerce site."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "GoDaddy"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.godaddy.com/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:86
|
||||
msgctxt "Gateway environment"
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#: src/Gateways/CreditCardGateway.php:87
|
||||
msgctxt "Gateway environment"
|
||||
msgid "Staging"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "color-section-cgb-guten-block",
|
||||
"version": "2.7.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/components": "^9.2.3",
|
||||
"cgb-scripts": "^1.23.0",
|
||||
"classnames": "^2.2.6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "gosign-text-with-image-block-gosign-guten-block",
|
||||
"version": "2.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.11.1",
|
||||
"classnames": "^2.2.6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: woocommerce-my-demo1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-04 15:54+0800\n"
|
||||
"PO-Revision-Date: 2021-03-04 15:54+0800\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Alex Mo\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: woocommerce-my-demo.php:108
|
||||
msgid "deployment instructions"
|
||||
msgstr "部署说明"
|
||||
|
||||
#: woocommerce-my-demo.php:159 woocommerce-my-demo.php:168
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Hello"
|
||||
#~ msgstr "您好"
|
||||
@@ -0,0 +1,5 @@
|
||||
# Improving Search Form Accessibility Changelog
|
||||
|
||||
## 1.0.0, 20210313
|
||||
|
||||
- Initial release.
|
||||
@@ -0,0 +1,5 @@
|
||||
# Integration for Beaver Themer Changelog
|
||||
|
||||
## 1.0.0, 20210322
|
||||
|
||||
- Initial release.
|
||||
@@ -0,0 +1,5 @@
|
||||
# Integration for Elementor Theme Builder Changelog
|
||||
|
||||
## 1.0.0, 20210320
|
||||
|
||||
- Initial release.
|
||||
@@ -0,0 +1,90 @@
|
||||
# Copyright (C) 2020 Integration of Insightly with caldera forms
|
||||
# This file is distributed under the same license as the Integration of Insightly with caldera forms package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Integration of Insightly with caldera forms 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/zetamatic-integration-insightly-caldera-forms\n"
|
||||
"POT-Creation-Date: 2020-10-28 04:58:17+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: inc/class-integration-insightly-calderaforms.php:96
|
||||
msgid "Insightly Integration"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-integration-insightly-calderaforms.php:97
|
||||
msgid "Send Caldera Forms submission data to Insightly using Insightly REST API."
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:3
|
||||
msgid "Your API Key and API URL can be determined by accessing User Settings. To know more click "
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:3
|
||||
msgid "here"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:7
|
||||
msgid "Please provide Base64 encoded Insightly API key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:10
|
||||
msgid "Insightly API key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:18
|
||||
msgid "Insightly API URL"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:26
|
||||
msgid "Insightly Object"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:29
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:35
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:42
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/config.php:49
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-activation-error.php:19
|
||||
msgid "You must Deactivate the <strong>Integration of Insightly and Caldera Forms Pro</strong> plugin before activating <strong>Integration of Insightly and Caldera Forms</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: PHP version
|
||||
|
||||
#: integration-insightly-calderaforms.php:54
|
||||
msgid "Integration of Insightly and Caldera Forms requires PHP version %s+, plugin is currently NOT RUNNING."
|
||||
msgstr ""
|
||||
|
||||
#: integration-insightly-calderaforms.php:78
|
||||
msgid "Don't show this message again!"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Integration of Insightly with caldera forms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://zetamatic.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "The Insightly and Caldera Forms Integration plugin lets you add a new Insightly Processor to Caldera form. It automatically syncs data from your Caldera form to your Insightly CRM when the form is submitted."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "ZetaMatic"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,350 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Integration with Mautic for WP 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-19 14:44+0530\n"
|
||||
"PO-Revision-Date: 2021-03-19 14:44+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_attr_e;esc_html_e;esc_url_raw;"
|
||||
"esc_url;esc_attr;esc_html;esc_attr__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-wp-mautic-integration-admin.php:136
|
||||
#: admin/class-wp-mautic-integration-admin.php:137
|
||||
msgid "Mautic Integration"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-mautic-integration-admin.php:164
|
||||
#: includes/class-mwb-wpm-settings-helper.php:238
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wp-mautic-integration-admin.php:215
|
||||
msgid "Settings Saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:22
|
||||
#: admin/partials/connection-setup.php:55
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:22
|
||||
#: admin/partials/connection-setup.php:58
|
||||
msgid "OAuth2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:30
|
||||
#: admin/partials/connection-setup.php:37 admin/partials/forms.php:30
|
||||
#: admin/partials/integration-list.php:23
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:36
|
||||
msgid "Authentication Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:40
|
||||
msgid "Admin Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:49
|
||||
msgid "Reset Connection"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-details.php:52
|
||||
msgid "Test Connection"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:51
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:64 admin/partials/settings.php:36
|
||||
msgid "Mautic Url"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:70
|
||||
msgid "Client id"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:79
|
||||
msgid "Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:89
|
||||
msgid "Api redirect url"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:96
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:102
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:118
|
||||
#: admin/partials/integration-settings.php:111 admin/partials/settings.php:55
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/connection-setup.php:122
|
||||
msgid "Authorize App"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:38
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:42
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:46
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:62
|
||||
msgid "Created Leads In Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:70 admin/partials/dashboard.php:90
|
||||
#: admin/partials/dashboard.php:112 admin/partials/dashboard.php:144
|
||||
#: admin/partials/dashboard.php:180
|
||||
msgid "No data available"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:82
|
||||
msgid "Page Hits In Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:104
|
||||
msgid "Form Submissions In Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:125
|
||||
msgid "Top Segments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:131
|
||||
msgid "Segments"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:132 admin/partials/dashboard.php:167
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:159
|
||||
msgid "Top Creators"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/dashboard.php:166
|
||||
msgid "Creator"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:23
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:28
|
||||
msgid "Form id"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:29
|
||||
msgid "Form Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:31
|
||||
msgid "ShortCode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:32 admin/partials/forms.php:55
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:48
|
||||
msgid "[mwb_m4wp_form id="
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/forms.php:58
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-list.php:21
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-list.php:22
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-list.php:24
|
||||
#: includes/class-mwb-wpm-settings-helper.php:182 wp-mautic-integration.php:79
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:36
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:39
|
||||
#: admin/partials/integration-settings.php:51
|
||||
#: admin/partials/integration-settings.php:72
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:41
|
||||
#: admin/partials/integration-settings.php:53
|
||||
#: admin/partials/integration-settings.php:74
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:43
|
||||
msgid "Select \"yes\" to enable the integration. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:48
|
||||
msgid "Implicit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:55
|
||||
msgid ""
|
||||
"Select \"yes\" if you want to subscribe people without asking them "
|
||||
"explicitly."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:60
|
||||
msgid "Checkbox Label Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:64
|
||||
msgid "Checkbox label to be shown next to checkbox."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:69
|
||||
msgid "Pre Check Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:76
|
||||
msgid "Select \"yes\" if you want to check the checkbox by default."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:81
|
||||
msgid "Segment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:94
|
||||
msgid "Select segment in which the contact should be added."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:99
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/integration-settings.php:103
|
||||
msgid "Enter tags separated by commas to assign to contact."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-wpm-admin-display.php:27
|
||||
msgid "Mautic WordPress Integration"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-wpm-admin-display.php:30
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:27
|
||||
msgid "Enable Mautic Tracking"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:42
|
||||
msgid "Script Location"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:45
|
||||
msgid "Head"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:47
|
||||
msgid "Footer"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:32
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-deactivation-template-display.php:42
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:34
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:37
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: extra-templates/makewebbetter-onboarding-template-display.php:48
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class-mwb-wpm-api-base.php:47
|
||||
#: includes/api/class-mwb-wpm-api-base.php:67
|
||||
msgid "Something went wrong, Please check your credentials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:332
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:367
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:377
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-makewebbetter-onboarding-helper.php:619
|
||||
msgid "Select Any One Option..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:103
|
||||
msgid "--Select--"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:162
|
||||
msgid "Connection"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:167
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:172
|
||||
msgid "Mautic Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:177
|
||||
msgid "Integrations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-wpm-settings-helper.php:252
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-mwb-wpm-integration-base.php:140
|
||||
msgid "Sign me up for the newsletter"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,936 @@
|
||||
# Copyright (C) 2021 3D FlipBook
|
||||
# This file is distributed under the same license as the 3D FlipBook package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3D FlipBook 1.10.18\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/3d-flip-book\n"
|
||||
"POT-Creation-Date: 2021-03-20 05:25:30+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: inc/dictionary.php:26
|
||||
msgid "auto"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:27
|
||||
msgid "Sorry something went wrong with the server please try again"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:28
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:29
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:30
|
||||
msgid "Book properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:31
|
||||
msgid "Sheet properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:32
|
||||
msgid "Cover properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:33
|
||||
msgid "Page properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:34
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:35
|
||||
msgid "PDF file"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:36
|
||||
msgid "Images, HTMLs files"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:37
|
||||
msgid "interactive"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:38
|
||||
msgid "Page number"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:39
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:40
|
||||
msgid "CSS Layer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:41
|
||||
msgid "CSS"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:42
|
||||
msgid "HTML"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:43
|
||||
msgid "Java Script"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:44
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:45
|
||||
msgid "Select files"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:46
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:47
|
||||
msgid "Add image pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:48
|
||||
msgid "Add HTML pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:49
|
||||
msgid "Add PDF page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:50
|
||||
msgid "Remove all pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:51
|
||||
msgid "items per page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:52
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:53
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:54
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:55
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:56
|
||||
msgid "PDF page number"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:57
|
||||
msgid "Select image"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:58
|
||||
msgid "Change image"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:59
|
||||
msgid "Auto thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:60
|
||||
msgid "book height"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:61
|
||||
msgid "book width"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:62
|
||||
msgid "gravity constant"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:63
|
||||
msgid "amount of rendered cached pages"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:64
|
||||
msgid "render loaded hidden pages in the background"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:65
|
||||
msgid "render pages while they are flipping, it can slow down animation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:66
|
||||
msgid "amount of loaded by user pages that are used for predicting user behaviour"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:67
|
||||
msgid "quantity of predicted pages for automatic loading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:68
|
||||
msgid "initial flipping velocity, it should be enough to overcome the gravity"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:69
|
||||
msgid "max corner (flexible part of the sheet) deviation from the whole sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:70
|
||||
msgid "sheet flexibility"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:71
|
||||
msgid "part of the sheet that can be flexed, should be in range (0, 1)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:72
|
||||
msgid "speed of changing bending angle of the flexible corner"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:73
|
||||
msgid "curvature of open sheet, 0 is for flat sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:74
|
||||
msgid "width texture resolution"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:75
|
||||
msgid "height texture resolution"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:76
|
||||
msgid "sheet color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:77
|
||||
msgid "sheet thickness"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:78
|
||||
msgid "sheet weight"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:79
|
||||
msgid "cover height is more on 2*padding and cover width more on 1*padding than page ones, so you can set different sizes for typical pages and cover like for real book"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:80
|
||||
msgid "binder texture"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:81
|
||||
msgid "Deep linking URL parameter name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:82
|
||||
msgid "items pre page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:83
|
||||
msgid "3D Flip Book"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:84
|
||||
msgid "View mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:85
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:86
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:87
|
||||
msgid "Thumbnail and Lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:88
|
||||
msgid "Lightbox activation link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:89
|
||||
msgid "Fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:90
|
||||
msgid "Select skin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:91
|
||||
msgid "3D FlipBook container CSS classes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:92
|
||||
msgid "Lightbox theme"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:93
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:94
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:95
|
||||
msgid "default value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:96
|
||||
msgid "Default value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:97
|
||||
msgid "minimum value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:98
|
||||
msgid "maximum value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:99
|
||||
msgid "amount of zoom levels"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:100
|
||||
msgid "amount of lighting levels"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:101
|
||||
msgid "pan step for comands cmdPanLeft, cmdPanRight, cmdPanUp, cmdPanDown"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:102
|
||||
msgid "zoom in"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:103
|
||||
msgid "zoom out"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:104
|
||||
msgid "set default zoom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:105
|
||||
msgid "show bookmarks"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:106
|
||||
msgid "turn 10 pages backward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:107
|
||||
msgid "turn a page backward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:108
|
||||
msgid "turn a page forward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:109
|
||||
msgid "turn 10 pages forward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:110
|
||||
msgid "download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:111
|
||||
msgid "print"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:112
|
||||
msgid "toggle fulscreen mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:113
|
||||
msgid "show/hide the settings toolbar button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:114
|
||||
msgid "toggle the smart pan mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:115
|
||||
msgid "toggle single page mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:116
|
||||
msgid "toggle sound effects"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:117
|
||||
msgid "toggle statistics monitor"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:118
|
||||
msgid "increase lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:119
|
||||
msgid "reduce lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:120
|
||||
msgid "move pan to the left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:121
|
||||
msgid "move pan to the right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:122
|
||||
msgid "move pan to the up"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:123
|
||||
msgid "move pan to the down"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:124
|
||||
msgid "rotate the book by means mouse drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:125
|
||||
msgid "zoom by means mouse drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:126
|
||||
msgid "pan by means mouse drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:127
|
||||
msgid "zoom by means mouse wheel operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:128
|
||||
msgid "rotate the book by means touch drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:129
|
||||
msgid "zoom by means touch drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:130
|
||||
msgid "pan by means touch drag operation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:131
|
||||
msgid "Ctrl, Shift, Alt, or their combination like Ctrl+Shift"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:132
|
||||
msgid "modificator"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:133
|
||||
msgid "keyboard key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:134
|
||||
msgid "key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:135
|
||||
msgid "mouse button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:136
|
||||
msgid "button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:137
|
||||
msgid "amount of touches"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:138
|
||||
msgid "touches"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:139
|
||||
msgid "event that activates the action"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:140
|
||||
msgid "event"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:141
|
||||
msgid "is action enabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:142
|
||||
msgid "is action enabled in narrow view"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:143
|
||||
msgid "enabled"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:144
|
||||
msgid "enabledInNarrow"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:145
|
||||
msgid "is active by default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:146
|
||||
msgid "active"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:147
|
||||
msgid "is active for mobile devices by default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:148
|
||||
msgid "activeForMobile"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:149
|
||||
msgid "Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:150
|
||||
msgid "Lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:151
|
||||
msgid "Pan"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:152 inc/settings.php:7
|
||||
msgid "3D FlipBook - Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:153
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:154
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:155
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:156
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:157
|
||||
msgid "One"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:158
|
||||
msgid "Two"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:159
|
||||
msgid "Three"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:160
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:161
|
||||
msgid "Middle"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:162
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:163
|
||||
msgid "Mouse button down"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:164
|
||||
msgid "Mouse move"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:165
|
||||
msgid "Mouse button up"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:166
|
||||
msgid "Click"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:167
|
||||
msgid "Double click"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:168
|
||||
msgid "Touch start"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:169
|
||||
msgid "Touch move"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:170
|
||||
msgid "Touch end"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:171
|
||||
msgid "Key down"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:172
|
||||
msgid "Key press"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:173
|
||||
msgid "Key up"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:174
|
||||
msgid "rtl is a right-to-left, top-to-bottom script, writing starts from the right of the page and continues to the left"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:175
|
||||
msgid "Please wait... the Application is Loading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:176
|
||||
msgid "PDF is Loading:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:177
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:178
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:179
|
||||
msgid "Table of contents"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:180
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:181
|
||||
msgid "Bookmarks"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:182
|
||||
msgid "Thumbnails"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:183
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:184
|
||||
msgid "Zoom in"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:185
|
||||
msgid "Zoom out"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:186
|
||||
msgid "Fit view"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:187
|
||||
msgid "10 pages backward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:188
|
||||
msgid "10 pages forward"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:189
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:190
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:191
|
||||
msgid "Full screen"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:192 inc/settings.php:8
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:193
|
||||
msgid "Smart pan"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:194
|
||||
msgid "Single page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:195
|
||||
msgid "Sounds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:196
|
||||
msgid "Stats"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:197
|
||||
msgid "Increase lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:198
|
||||
msgid "Reduce lighting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:199
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:200
|
||||
msgid "See the debugging console for details (Ctrl+Shift+I in Chrome)."
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:201
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:202
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:203
|
||||
msgid "Skin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:204
|
||||
msgid "default control skin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:205
|
||||
msgid "CSS text for skin customization"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:206
|
||||
msgid "Lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:207
|
||||
msgid "default lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:208
|
||||
msgid "Loading Animation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:209
|
||||
msgid "show the skin loading animation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:210
|
||||
msgid "show the book loading animation"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:211
|
||||
msgid "Auto Resolution"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:212
|
||||
msgid "the page texture resolution will be computed automatically"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:213
|
||||
msgid "the computed automatically resolution is multiplied by the coefficient"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:214
|
||||
msgid "Narrow View"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:215
|
||||
msgid "width in pixels when the view switches into the narrow mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:216
|
||||
msgid "Ready Function"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:217
|
||||
msgid "function ready(scene) {/* code */} ready"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:218
|
||||
msgid "global book ready function: function ready(scene) {/* code */} ready"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:219
|
||||
msgid "Control properties"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:220
|
||||
msgid "Book style"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:221
|
||||
msgid "Pages customization"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:222
|
||||
msgid "show advanced options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:223
|
||||
msgid "render loaded hidden pages in the background on mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:224
|
||||
msgid "curvature of open sheet, 0.05 is for flat sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:225
|
||||
msgid "side texture"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:226
|
||||
msgid "3D FlipBook source"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:227
|
||||
msgid "Prebuilt"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:228
|
||||
msgid "PDF URL"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:229 inc/taxonomy.php:7
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:230
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:231
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:232
|
||||
msgid "500px, 50% - % of parent container height, empty - auto"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:233
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:234
|
||||
msgid "color: #333"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:235
|
||||
msgid "image: http://example.com/image.jpg"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:236
|
||||
msgid "http://example.com?fb3d-page=1"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:237
|
||||
msgid "Thumbnail URL"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:238
|
||||
msgid "Volumetric"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:239
|
||||
msgid "Volumetric with paddings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/dictionary.php:240
|
||||
msgid "Flat"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:12
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:25
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:40
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:81
|
||||
msgid "User Manual"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:84
|
||||
msgid "Video Examples"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:87
|
||||
msgid "Support Forum"
|
||||
msgstr ""
|
||||
|
||||
#: inc/edit.php:100
|
||||
msgid "More options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post.php:7
|
||||
msgid "3D FlipBook"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post.php:9
|
||||
msgid "All Books"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode-generator.php:7 inc/shortcode-generator.php:24
|
||||
msgid "3D FlipBook - Shortcode Generator"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode-generator.php:8
|
||||
msgid "Shortcode Generator"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "3D FlipBook"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://3dflipbook.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Interactive 3D FlipBook Powered Physics Engine WordPress Plugin"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "iberezansky"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://3dflipbook.net/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "internet-connection-status",
|
||||
"title": "Internet Connection Status",
|
||||
"version": "1.4.3",
|
||||
"homepage": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sanzeeb3/internet-connection-status.git"
|
||||
},
|
||||
"license": "GPL-3.0+",
|
||||
"main": "Gruntfile.js",
|
||||
"devDependencies": {
|
||||
"autoprefixer": "~9.1.5",
|
||||
"grunt": "~1.0.3",
|
||||
"grunt-checktextdomain": "~1.0.1",
|
||||
"grunt-contrib-compress": "^1.5.0",
|
||||
"grunt-wp-i18n": "^1.0.3",
|
||||
"node-sass": "^4.13.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8.9.3",
|
||||
"npm": ">=5.5.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"save": "^2.3.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "invoice-system-for-woocommerce",
|
||||
"version": "1.0.0",
|
||||
"description": "=== invoice-system-for-woocommerce ===\r Contributors: makewebbetter\r Tags: comments, spam\r Requires at least: 4.6\r Tested up to: 4.9.5\r Stable tag: 1.0.0\r License: GNU General Public License v3.0\r License URI: http://www.gnu.org/licenses/gpl-3.0.html",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.2.4",
|
||||
"browser-sync": "^2.26.14",
|
||||
"css-mqpacker": "^7.0.0",
|
||||
"cssnano": "^4.1.10",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-deporder": "^1.2.0",
|
||||
"gulp-imagemin": "^7.1.0",
|
||||
"gulp-newer": "^1.4.0",
|
||||
"gulp-postcss": "^9.0.0",
|
||||
"gulp-sass": "^4.1.0",
|
||||
"gulp-strip-debug": "^3.0.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"gulp-util": "^3.0.8",
|
||||
"postcss-assets": "^5.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"gulp-wp-pot": "^2.5.0",
|
||||
"postcss": "^8.2.6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,649 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Invoice System for WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-03-25 11:58+0530\n"
|
||||
"PO-Revision-Date: 2021-03-22 16:17+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html;esc_html_e;esc_attr;esc_attr_e;esc_url;"
|
||||
"esc_url_raw\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:125
|
||||
msgid "Choose Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:126
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:128
|
||||
msgid "Please choose digits greater then 0 and less then 10"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:131
|
||||
msgid "Please Enter Characters, Numbers and - only, in prefix and suffix field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:134
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:135
|
||||
msgid "Resubmit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:137
|
||||
msgid "Error,Please reload the page and try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:140
|
||||
msgid "Date can be either current year or next year. Please choose again!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:269
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:276
|
||||
msgid "Enable plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:278
|
||||
msgid "Enable this to start the functionality for users."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:284
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:285
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:289
|
||||
msgid "Company Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:294
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:260
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:300
|
||||
msgid "name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:303
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:309
|
||||
msgid "address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:312
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:318
|
||||
msgid "city"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:327
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:333
|
||||
msgid "state"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:336
|
||||
msgid "Pin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:342
|
||||
msgid "pin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:345
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:351
|
||||
msgid "phone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:358
|
||||
msgid "These Details will be shown on invoice or packing slip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:361
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:367
|
||||
msgid "email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:372
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:159
|
||||
msgid "Invoice Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:375
|
||||
msgid "This combination will be used as the invoice number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:378
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:384
|
||||
msgid "Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:387
|
||||
msgid "Digit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:393
|
||||
msgid "digit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:396
|
||||
msgid "Suffix"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:402
|
||||
msgid "suffix"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:407
|
||||
msgid "Invoice Number Renew date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:409
|
||||
msgid "Please choose the invoice number renew date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:417
|
||||
msgid "Disclaimer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:419
|
||||
msgid "Please enter desclaimer of you choice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:423
|
||||
msgid "disclaimer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:427
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:431
|
||||
msgid "Choose color of your choice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:436
|
||||
msgid "Choose logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:438
|
||||
msgid "Upload Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:450
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:451
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:464
|
||||
msgid "Add logo on invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:466
|
||||
msgid ""
|
||||
"Please select if you want the above selected image to be used on invoice."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:473
|
||||
msgid "Choose Template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:476
|
||||
msgid "This template will be used as the invoice and packing slip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:479
|
||||
msgid "Template1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:490
|
||||
msgid "Template2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:503
|
||||
msgid "Send invoice for"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:505
|
||||
msgid ""
|
||||
"Please choose the status of orders to send invoice for. If you do not want "
|
||||
"to send invoice please choose never."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:515
|
||||
msgid "Save settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:534
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:550
|
||||
msgid "Generate invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:550
|
||||
msgid "Generate packing slip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:623
|
||||
#: public/class-invoice-system-for-woocommerce-public.php:107
|
||||
#: public/class-invoice-system-for-woocommerce-public.php:153
|
||||
#: public/class-invoice-system-for-woocommerce-public.php:175
|
||||
msgid "Download Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:624
|
||||
msgid "Download Packing Slip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-invoice-system-for-woocommerce-admin.php:703
|
||||
msgid "Download zip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/index.php:8 public/index.php:8
|
||||
msgid "oops looks like you missed it"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-admin-dashboard.php:26
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-admin-dashboard.php:28
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-admin-dashboard.php:47
|
||||
msgid "&isfw_tab="
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:17
|
||||
msgid "admin/src/images/isfw-banner.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:21
|
||||
msgid "What Is Invoice System For WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:25
|
||||
msgid ""
|
||||
"Invoice System for WooCommerce plugin automatically generates WooCommerce "
|
||||
"PDF invoices and attaches them to the relative WooCommerce emails. This "
|
||||
"plugin is the most-apt solution to eliminate the extra effort put in "
|
||||
"manually generating the invoices. This plugin extends your store’s "
|
||||
"functionalities by enabling you to generate bulk invoices with 2 pre-built "
|
||||
"customizable invoice templates. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:29
|
||||
msgid "As a store owner, you get to:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:32
|
||||
msgid "Saves time and labor cost involved in manual invoice curation."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:33
|
||||
msgid ""
|
||||
"Easy and paper-less sharing of invoices via WooCommerce emails as PDF "
|
||||
"attachments."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:34
|
||||
msgid ""
|
||||
"Convenient options for both merchants and customers to download invoices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:35
|
||||
msgid ""
|
||||
"Prefix/suffix feature for creating customized invoice numbers increase brand "
|
||||
"value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:36
|
||||
msgid ""
|
||||
"Improves brand image and awareness among your customers with customizable "
|
||||
"invoice templates."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:44
|
||||
msgid "The Free Plugin Benefits"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:49
|
||||
msgid "admin/src/images/invoice_prebuilt_template_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:52
|
||||
msgid "Pre-built Invoice Templates"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:56
|
||||
msgid ""
|
||||
"The Invoice System for WooCommerce plugin provides 2 fully customizable "
|
||||
"invoice templates to enhance brand value for the products."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:67
|
||||
msgid "admin/src/images/invoice_share_via_email_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:70
|
||||
msgid "Share Invoices via Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:71
|
||||
msgid ""
|
||||
"This invoice plugin allows you to share individual or bulk invoices and "
|
||||
"packing slips with the concerned customers via WooCommerce email."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:78
|
||||
msgid "admin/src/images/invoice_customizable_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:81
|
||||
msgid "Customizable Invoice Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:85
|
||||
msgid ""
|
||||
"Admin can add/remove prefix and suffix to the invoice number to provide more "
|
||||
"personalized perception to customers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:96
|
||||
msgid "admin/src/images/invoice_easy_downloading_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:99
|
||||
msgid "Easy Downloading of PDF Invoices"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:103
|
||||
msgid ""
|
||||
"This Invoice System for WooCommerce plugin gives admin and customers an "
|
||||
"equal right to download the invoices in PDF format from the Order Admin page "
|
||||
"and My Account page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:115
|
||||
msgid "admin/src/images/invoice_renew_number_sequence_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:118
|
||||
msgid "Renew Invoice Number Sequence"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:122
|
||||
msgid ""
|
||||
"Invoice System for WooCommerce plugin also allows the admin to renew the "
|
||||
"invoice number sequence with every new financial year."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:135
|
||||
msgid "admin/src/images/invoice_bulk_icon.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:138
|
||||
msgid "Bulk Invoices & Packaging Slips"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-overview.php:142
|
||||
msgid ""
|
||||
"Invoice System for WooCommerce plugin allows the admin to generate PDF "
|
||||
"invoices and packaging slips in bulk."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-system-status.php:30
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-system-status.php:31
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-system-status.php:56
|
||||
msgid "System Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/invoice-system-for-woocommerce-system-status.php:57
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:144
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:150
|
||||
#: public/class-invoice-system-for-woocommerce-public.php:88
|
||||
msgid "Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:153
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:163
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:168
|
||||
msgid "Customer ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:171
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:195
|
||||
msgid "BILL TO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:228
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:195
|
||||
msgid "SHIP TO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:263
|
||||
msgid "Qty"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:266
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:269
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:215
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:272
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:323
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:244
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:291
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:235
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:301
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:238
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:312
|
||||
msgid "Total Tax"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout1.php:341
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:258
|
||||
msgid "Looks like order is not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:154
|
||||
msgid "INVOICE"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:182
|
||||
msgid "Invoice to"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:212
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:213
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:214
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:216
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/invoice-system-for-woocommerce-pdflayout2.php:241
|
||||
msgid "Total tax"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce-activator.php:42
|
||||
msgid "Thank you for shopping with us."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:421
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:430
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:433
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:436
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:439
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:442
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:445
|
||||
#: includes/class-invoice-system-for-woocommerce.php:448
|
||||
#: includes/class-invoice-system-for-woocommerce.php:451
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:445
|
||||
#: includes/class-invoice-system-for-woocommerce.php:448
|
||||
#: includes/class-invoice-system-for-woocommerce.php:451
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:455
|
||||
#: includes/class-invoice-system-for-woocommerce.php:461
|
||||
#: includes/class-invoice-system-for-woocommerce.php:464
|
||||
#: includes/class-invoice-system-for-woocommerce.php:486
|
||||
#: includes/class-invoice-system-for-woocommerce.php:489
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:458
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:476
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:482
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:784
|
||||
msgid "max=10 min=0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-invoice-system-for-woocommerce.php:814
|
||||
msgid "max="
|
||||
msgstr ""
|
||||
|
||||
#: index.php:14
|
||||
msgid "oops looks like nothing is here"
|
||||
msgstr ""
|
||||
|
||||
#: invoice-system-for-woocommerce.php:70
|
||||
msgid "Invoice system for woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: invoice-system-for-woocommerce.php:71
|
||||
msgid "Woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: invoice-system-for-woocommerce.php:131
|
||||
#: invoice-system-for-woocommerce.php:137
|
||||
msgid "invoice-system-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#: invoice-system-for-woocommerce.php:193
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/invoice-system-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/invoice-system-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/invoice-system-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/invoice-system-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/invoice-system-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
2045
spec/fixtures/dynamic_finders/plugin_version/just-tables/translation_file/languages/just-tables.pot
vendored
Normal file
2045
spec/fixtures/dynamic_finders/plugin_version/just-tables/translation_file/languages/just-tables.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,131 @@
|
||||
# Copyright (C) 2021 Steffen Haak <info@klubraum.com>
|
||||
# This file is distributed under the same license as the Klubraum Membership Request plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Klubraum Membership Request 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/klubraum_membership_request_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: 2021-04-07T06:39:02+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: klubraum-membership-request-widget\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:18
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:19
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:42
|
||||
msgid "Klubraum Membership Request"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://klubraum.com/wp-membership-request/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugins allows your web site visitors to request a membership for your Klubraum service."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Steffen Haak <info@klubraum.com>"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://klubraum.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-klubraum-membership-request-widget-admin.php:102
|
||||
msgid "API token is missing!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-klubraum-membership-request-widget-admin.php:140
|
||||
msgid "Settings successfully updated!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-klubraum-membership-request-widget-admin.php:166
|
||||
msgid "Failed to store settings!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:34
|
||||
msgid "Expires at"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:34
|
||||
msgid "last request"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:37
|
||||
msgid "No expiry information as no membership request has been made yet."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:46
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:75
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:76
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:93
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:49
|
||||
msgid "Please provide the API token which you can find in the app under: Settings - Klubraum - API Token. Only available for Klubraum admins."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:50
|
||||
msgid "Optionally you can customize the text which is shown in addition to the form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:54
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:57
|
||||
msgid "To integrate the membership request form, use the shortcode:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:61
|
||||
msgid "Expiry Date API token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:100
|
||||
msgid "API token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:106
|
||||
msgid "Introduction text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:107
|
||||
msgid "Some explaining words about the Klubraum widget"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/klubraum-membership-request-widget-admin-display.php:112
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-klubraum-membership-request-widget-activator.php:33
|
||||
msgid "We are using Klubraum for organizing our community. Do you wanna join?"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-klubraum-membership-request-widget-public.php:119
|
||||
#: public/class-klubraum-membership-request-widget-public.php:161
|
||||
#: public/class-klubraum-membership-request-widget-public.php:224
|
||||
msgid "Failed to request membership!"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-klubraum-membership-request-widget-public.php:154
|
||||
msgid "Membership requested successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-klubraum-membership-request-widget-public.php:199
|
||||
msgid "E-Mail"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-klubraum-membership-request-widget-public.php:206
|
||||
msgid "Request Membership"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-klubraum-membership-request-widget-public.php:235
|
||||
msgid "Please enter a valid email."
|
||||
msgstr ""
|
||||
35015
spec/fixtures/dynamic_finders/plugin_version/lightning-paywall/composer_file/package-lock.json
generated
vendored
Normal file
35015
spec/fixtures/dynamic_finders/plugin_version/lightning-paywall/composer_file/package-lock.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,201 @@
|
||||
# Copyright (C) 2016 WooCommerce Linet Integration
|
||||
# This file is distributed under the same license as the WooCommerce Linet Integration package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce Linet Integration 1.6.7\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/adam2314/woocommerce-linet/issues\n"
|
||||
"POT-Creation-Date: 2015-08-07 14:00:13+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:50
|
||||
msgid ""
|
||||
"LINET: Didn't create invoice because total is 0 and send order with zero "
|
||||
"total is set to off."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:80
|
||||
msgid "Linet Invoice created. "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:88
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:91
|
||||
msgid "ERROR creating Linet invoice: "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:92
|
||||
msgid " ErrorNumber: "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:93
|
||||
msgid " ErrorType: "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:94
|
||||
msgid " Message: "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-invoice-manager.php:95
|
||||
msgid " Detail: "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-order-actions.php:36
|
||||
msgid "Send Invoice to Linet"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-order-actions.php:37
|
||||
msgid "Send Payment to Linet"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-payment-manager.php:60
|
||||
msgid "Linet Payment created. "
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:21
|
||||
msgid "Consumer Key"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:27
|
||||
msgid "Consumer Secret"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:34
|
||||
msgid "Private Key"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:40
|
||||
msgid "Public Key"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:47
|
||||
msgid "Invoice Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:54
|
||||
msgid "Sales Account"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:60
|
||||
msgid "Discount Account"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:66
|
||||
msgid "Shipping Account"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:72
|
||||
msgid "Payment Account"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:78
|
||||
msgid "Rounding Account"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:85
|
||||
msgid "Orders with zero total"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:91
|
||||
msgid "Auto Send Invoices"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:97
|
||||
msgid "Auto Send Payments"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:103
|
||||
msgid "Send Inventory Items"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:109
|
||||
msgid "Debug"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:145
|
||||
msgid "Linet Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:172
|
||||
msgid "Linet"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:193
|
||||
msgid "Linet for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:197
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:200
|
||||
msgid "There was an error saving your settings."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:216
|
||||
msgid ""
|
||||
"Settings for your Linet account including security keys and default account "
|
||||
"numbers.<br/> <strong>All</strong> text fields are required for the "
|
||||
"integration to work properly."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:230
|
||||
msgid "Key file found."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:232
|
||||
msgid "Key file not found."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-li-settings.php:234
|
||||
msgid ""
|
||||
" This setting should include the absolute path to the file which might "
|
||||
"include working directory: "
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-linet.php:129
|
||||
msgid ""
|
||||
"WooCommerce Linet Integration requires WooCommerce 2.2.1 or higher to be "
|
||||
"installed and activated!"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-linet.php:144
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-linet.php:145
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-linet.php:146
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WooCommerce Linet Integration"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://woothemes.com/woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Integrates <a href=\"http://www.woothemes.com/woocommerce\" target=\"_blank"
|
||||
"\" >WooCommerce</a> with the <a href=\"http://www.linet.org.il\" target=\"_blank"
|
||||
"\">Linet</a> accounting software."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SpeedComp"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.speedcomp.co.il"
|
||||
msgstr ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/mapifylite/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/mapifylite/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "MapifyLite",
|
||||
"version": "4.0.0",
|
||||
"description": "",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.24.1",
|
||||
"babel-loader": "^7.0.0",
|
||||
"babel-preset-env": "^1.4.0",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"bluebird": "^3.5.0",
|
||||
"es6-promise": "^4.1.0",
|
||||
"isomorphic-fetch": "^2.2.1",
|
||||
"leaflet-geosearch": "^2.2.0",
|
||||
"webpack": "^2.4.1"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "webpack -w",
|
||||
"build": "webpack"
|
||||
}
|
||||
}
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/max-access/change_log/CHANGELOG.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/max-access/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [ 1.0.0 ] - 00/00/0000
|
||||
|
||||
* Initial plugin release
|
||||
@@ -0,0 +1,540 @@
|
||||
# Copyright (C) 2021 Media Player Addons for elementor
|
||||
# This file is distributed under the same license as the Media Player Addons for elementor package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Media Player Addons for elementor 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/media-player-addons\n"
|
||||
"POT-Creation-Date: 2021-03-28 14:33:37+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor
|
||||
|
||||
#: media-player-addons.php:129
|
||||
msgid "\"%1$s\" requires \"%2$s\" to be installed and activated."
|
||||
msgstr ""
|
||||
|
||||
#: media-player-addons.php:130
|
||||
msgid "Media Player Addon"
|
||||
msgstr ""
|
||||
|
||||
#: media-player-addons.php:131 media-player-addons.php:154
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
|
||||
#. translators: 1: Plugin name 2: PHP 3: Required PHP version
|
||||
|
||||
#: media-player-addons.php:152 media-player-addons.php:176
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: media-player-addons.php:153
|
||||
msgid "unlimited addon"
|
||||
msgstr ""
|
||||
|
||||
#: media-player-addons.php:177
|
||||
msgid "venus wp"
|
||||
msgstr ""
|
||||
|
||||
#: media-player-addons.php:178
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: plugin.php:149
|
||||
msgid "Media Player For Elementor"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:43
|
||||
msgid "Art Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:89
|
||||
msgid "Art Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:97 widgets/b_html5_addon.php:110
|
||||
msgid "Multiple Quality"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:99 widgets/b_html5_addon.php:112
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:100 widgets/b_html5_addon.php:113
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:109 widgets/b_html5_addon.php:122
|
||||
msgid "Source From"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:113 widgets/b_html5_addon.php:126
|
||||
msgid "Media Library"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:114 widgets/b_html5_addon.php:127
|
||||
msgid "Video File Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:126 widgets/b-artplayer.php:170
|
||||
#: widgets/b-artplayer.php:178 widgets/b_html5_addon.php:138
|
||||
#: widgets/b_html5_addon.php:208 widgets/b_html5_addon.php:216
|
||||
msgid "Upload Video"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:145 widgets/b-artplayer.php:196
|
||||
#: widgets/b_html5_addon.php:156 widgets/b_html5_addon.php:233
|
||||
msgid "Video Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:148 widgets/b-artplayer.php:199
|
||||
#: widgets/b-artplayer.php:328 widgets/b_html5_addon.php:159
|
||||
#: widgets/b_html5_addon.php:236 widgets/b_html5_addon.php:326
|
||||
msgid "https://your-link.com"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:166 widgets/b_html5_addon.php:204
|
||||
#: widgets/bplayer-widget-playlist-video.php:132
|
||||
#: widgets/bplayer-widget-video.php:119
|
||||
msgid "Video Source"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:171 widgets/b_html5_addon.php:209
|
||||
msgid "Put Video Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:210 widgets/b_html5_addon.php:246
|
||||
msgid "Video Size"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:219 widgets/b_html5_addon.php:267
|
||||
msgid "Video List"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:231
|
||||
msgid "Add Video Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:233 widgets/b-artplayer.php:259
|
||||
#: widgets/b_html5_addon.php:173
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:234 widgets/b-artplayer.php:260
|
||||
#: widgets/b_html5_addon.php:174
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:244
|
||||
msgid "Video Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:257
|
||||
msgid "Add Album Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:270
|
||||
msgid "Album Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:287
|
||||
msgid "Art Player Subtitle Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:295 widgets/b_html5_addon.php:293
|
||||
msgid "Subtitle Source"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:299 widgets/b-artplayer.php:307
|
||||
#: widgets/b_html5_addon.php:297 widgets/b_html5_addon.php:305
|
||||
msgid "Upload Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:300 widgets/b_html5_addon.php:298
|
||||
msgid "Put Subtitle Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:325 widgets/b_html5_addon.php:323
|
||||
msgid "Subtitle Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:340
|
||||
msgid "Player Subtitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:351
|
||||
msgid "Art Player Color Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:359
|
||||
msgid "Player Color"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:371
|
||||
msgid "Art Player Button Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-artplayer.php:378 widgets/b-html5-audio.php:175
|
||||
#: widgets/b-vemio-vedio-player.php:132 widgets/b-vemio-vedio-player.php:156
|
||||
#: widgets/b-vemio-vedio-player.php:179 widgets/b-youtube-vedio-player.php:132
|
||||
#: widgets/b-youtube-vedio-player.php:155
|
||||
#: widgets/b-youtube-vedio-player.php:178 widgets/b_html5_addon.php:385
|
||||
#: widgets/b_html5_addon.php:410
|
||||
msgid "This Option Only For Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:41
|
||||
msgid "Html5 Audio Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:96
|
||||
msgid "Audio Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:103
|
||||
msgid "Audio Source"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:107 widgets/b-html5-audio.php:116
|
||||
msgid "Upload Audio"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:108 widgets/b-html5-audio.php:128
|
||||
msgid "Audio Link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:131
|
||||
msgid "https://example.com/music-name.mp3"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:145
|
||||
msgid "Audio Player Color Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:153 widgets/b_html5_addon.php:363
|
||||
msgid "This Section Only For Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-html5-audio.php:168
|
||||
msgid "Audio Player Control Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:41
|
||||
msgid "Vemio Video Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:92 widgets/b-youtube-vedio-player.php:96
|
||||
#: widgets/b_html5_addon.php:99
|
||||
msgid "Vedio Player Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:100 widgets/b-youtube-vedio-player.php:103
|
||||
msgid "Vedio Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:111 widgets/b-youtube-vedio-player.php:112
|
||||
msgid "Vedio link"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:114
|
||||
msgid "https://Vimeo Link.com"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:124 widgets/b_html5_addon.php:355
|
||||
msgid "Vedio Player Color Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:148 widgets/b-youtube-vedio-player.php:148
|
||||
#: widgets/b_html5_addon.php:378
|
||||
msgid "Vedio Player Control Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-vemio-vedio-player.php:172 widgets/b_html5_addon.php:402
|
||||
msgid "Vedio Player Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-youtube-vedio-player.php:41
|
||||
msgid "Youtube Video Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-youtube-vedio-player.php:115
|
||||
msgid "https://youtubelink.com"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-youtube-vedio-player.php:125
|
||||
msgid "Vedio player Color Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b-youtube-vedio-player.php:171
|
||||
msgid "Vedio player Other Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:42
|
||||
msgid "Html5 Video Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:171
|
||||
msgid "Add Custom Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:184
|
||||
msgid "Custom Poster For Video"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:249
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:250
|
||||
msgid "240"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:251
|
||||
msgid "360"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:252
|
||||
msgid "480"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:253
|
||||
msgid "576"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:254
|
||||
msgid "720"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:255
|
||||
msgid "1080"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:256
|
||||
msgid "1440"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:257
|
||||
msgid "2160"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:258
|
||||
msgid "2880"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:259
|
||||
msgid "4320"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:285
|
||||
msgid "Vedio Player Subtitle Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:335
|
||||
msgid "Subtitle language"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:337
|
||||
msgid "Eg: English, For english subtitle write English"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/b_html5_addon.php:344
|
||||
msgid "Subtitle List"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:41
|
||||
msgid "Advanced Audio Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:103
|
||||
msgid "Advanced Audio Player Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:112
|
||||
#: widgets/bplayer-widget-playlist-audio.php:111
|
||||
msgid "Track Options"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:121
|
||||
#: widgets/bplayer-widget-playlist-audio.php:129
|
||||
msgid "Track Source"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:124
|
||||
#: widgets/bplayer-widget-playlist-audio.php:132
|
||||
msgid "Upload or Paste Your MP3 Music here"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:131
|
||||
#: widgets/bplayer-widget-playlist-audio.php:120
|
||||
msgid "Track Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:133
|
||||
#: widgets/bplayer-widget-playlist-audio.php:122
|
||||
#: widgets/bplayer-widget-playlist-video.php:125
|
||||
#: widgets/bplayer-widget-video.php:131
|
||||
msgid "Input Song Title here"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:141
|
||||
#: widgets/bplayer-widget-playlist-audio.php:139
|
||||
msgid "Track Poster"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:152
|
||||
#: widgets/bplayer-widget-playlist-audio.php:150
|
||||
#: widgets/bplayer-widget-playlist-video.php:153
|
||||
#: widgets/bplayer-widget-video.php:150
|
||||
msgid "Singer Name"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:154
|
||||
#: widgets/bplayer-widget-playlist-audio.php:152
|
||||
#: widgets/bplayer-widget-playlist-video.php:155
|
||||
#: widgets/bplayer-widget-video.php:152
|
||||
msgid "Input singer name her"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:161
|
||||
#: widgets/bplayer-widget-playlist-audio.php:159
|
||||
msgid "Track Album"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:163
|
||||
#: widgets/bplayer-widget-playlist-audio.php:161
|
||||
#: widgets/bplayer-widget-playlist-video.php:164
|
||||
#: widgets/bplayer-widget-video.php:161
|
||||
msgid "Input Song's Album here"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:172
|
||||
#: widgets/bplayer-widget-playlist-audio.php:180
|
||||
#: widgets/bplayer-widget-playlist-video.php:183
|
||||
#: widgets/bplayer-widget-video.php:171
|
||||
msgid "Player Options"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:181
|
||||
#: widgets/bplayer-widget-playlist-audio.php:189
|
||||
msgid "Player Size"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:183
|
||||
#: widgets/bplayer-widget-playlist-audio.php:191
|
||||
msgid "Wide"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:184
|
||||
#: widgets/bplayer-widget-playlist-audio.php:192
|
||||
msgid "Narrow"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:191
|
||||
#: widgets/bplayer-widget-playlist-audio.php:199
|
||||
msgid "Choose Player Size"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:198
|
||||
#: widgets/bplayer-widget-playlist-audio.php:206
|
||||
#: widgets/bplayer-widget-playlist-video.php:192
|
||||
#: widgets/bplayer-widget-video.php:181
|
||||
msgid "Mode"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:200
|
||||
#: widgets/bplayer-widget-playlist-audio.php:208
|
||||
#: widgets/bplayer-widget-playlist-video.php:194
|
||||
#: widgets/bplayer-widget-video.php:183
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:201
|
||||
#: widgets/bplayer-widget-playlist-audio.php:209
|
||||
#: widgets/bplayer-widget-playlist-video.php:195
|
||||
#: widgets/bplayer-widget-video.php:184
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-audio.php:208
|
||||
#: widgets/bplayer-widget-playlist-audio.php:216
|
||||
#: widgets/bplayer-widget-playlist-video.php:202
|
||||
#: widgets/bplayer-widget-video.php:191
|
||||
msgid "Choose Player Mode"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-audio.php:41
|
||||
msgid "Advanced Audio Playlist Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-audio.php:103
|
||||
msgid "Advanced Audio Playlist Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-audio.php:168
|
||||
msgid "Playlist"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:41
|
||||
msgid "Advanced Video Playlist Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:103
|
||||
msgid "Advanced Video Playlist Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:114
|
||||
#: widgets/bplayer-widget-video.php:111
|
||||
msgid "Video Options"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:123
|
||||
#: widgets/bplayer-widget-video.php:129
|
||||
msgid "Video Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:135
|
||||
#: widgets/bplayer-widget-video.php:122
|
||||
msgid "Upload Your Video here"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:142
|
||||
#: widgets/bplayer-widget-video.php:139
|
||||
msgid "Video Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:162
|
||||
#: widgets/bplayer-widget-video.php:159
|
||||
msgid "Album Name"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-playlist-video.php:171
|
||||
msgid "Video Playlist"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-video.php:41
|
||||
msgid "Advanced Video Player"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/bplayer-widget-video.php:103
|
||||
msgid "Advanced Video Player Settings"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Media Player Addons for elementor"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Collection of media players to plaback of various media files such as .mp3, .mp4, .flv, .m3u8, .ogg, YouTube, Vimeo and moe...."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://bPlugins.com"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,53 @@
|
||||
# Copyright (C) 2021 Roy Orbison
|
||||
# This file is distributed under the same license as the More Mails for Contact Form 7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: More Mails for Contact Form 7 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/more-mails-for-cf7\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-12T11:54:57+10:00\n"
|
||||
"PO-Revision-Date: 2021-04-12T11:54:57+10:00\n"
|
||||
"X-Generator: WP-CLI 2.0.1\n"
|
||||
"X-Domain: more-mails-for-contact-form-7\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "More Mails for Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add a third, fourth, etc. mail message to any CF7 form."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Roy Orbison"
|
||||
msgstr ""
|
||||
|
||||
#: more-mails-for-cf7.php:20
|
||||
msgid "Contact Form 7 More Mails"
|
||||
msgstr ""
|
||||
|
||||
#: more-mails-for-cf7.php:38
|
||||
msgid "More mails"
|
||||
msgstr ""
|
||||
|
||||
#: more-mails-for-cf7.php:84
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: more-mails-for-cf7.php:91
|
||||
msgid "Mail sections per form"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d: nth mail section
|
||||
#: more-mails-for-cf7.php:127
|
||||
msgid "Mail (%d)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d: nth mail section
|
||||
#: more-mails-for-cf7.php:129
|
||||
msgid "Use Mail (%d)"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,883 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Quickboard\n"
|
||||
"POT-Creation-Date: 2021-02-09 11:44+0100\n"
|
||||
"PO-Revision-Date: 2021-02-09 11:44+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: UKischkel\n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/help.php:2
|
||||
msgid "Movable Mobile Menu Help"
|
||||
msgstr "Movable Mobile Menü Hilfe"
|
||||
|
||||
#: admin/help.php:3
|
||||
msgid "Creating a menu"
|
||||
msgstr "Erstellen eines Menüs"
|
||||
|
||||
#: admin/help.php:4
|
||||
msgid ""
|
||||
"Go to Appearance -> Menus and create a new menu. Connect this menu to the "
|
||||
"display location named\" Movable Mobile Menu\"."
|
||||
msgstr ""
|
||||
"Wechseln Sie zu \"Design > Menüs, und erstellen Sie ein neues Menü. "
|
||||
"Verbinden Sie dieses Menü mit dem Anzeigeort mit dem Namen \"Movable Mobile "
|
||||
"Menu\"."
|
||||
|
||||
#: admin/help.php:6
|
||||
msgid "For menu items with a sub-menu use custom links with URL \"#\"."
|
||||
msgstr ""
|
||||
"Verwenden Sie für Menüelemente mit einem Untermenü benutzerdefinierte Links "
|
||||
"mit der URL \"#\"."
|
||||
|
||||
#: admin/help.php:13
|
||||
msgid "View on mobile device"
|
||||
msgstr "Ansicht auf mobilem Gerät"
|
||||
|
||||
#: admin/help.php:18
|
||||
msgid ""
|
||||
"The area with the <span class='dashicons dashicons-move' ></span> is to grab "
|
||||
"the navigation drawer and drag it to a comfortable position."
|
||||
msgstr ""
|
||||
"Der Bereich mit dem <span class='dashicons dashicons-move' ></span> ist, um "
|
||||
"die Navigation zu ziehen Sie es in einer bequemen Position abzulegen."
|
||||
|
||||
#: admin/help.php:20
|
||||
msgid ""
|
||||
"The area with the <span class='dashicons dashicons-menu' ></span> is to open "
|
||||
"a modal containing the menu."
|
||||
msgstr ""
|
||||
"Der Bereich mit dem <span class='dashicons dashicons-menu' ></span> ist, um "
|
||||
"ein Modal zu öffnen, dass das Menü enthält."
|
||||
|
||||
#: admin/help.php:23
|
||||
msgid ""
|
||||
"This is how the menu will look.<br>The appearance depends on your theme."
|
||||
msgstr "So sieht das Menü aus.<br>Das Aussehen hängt von Ihrem Theme ab."
|
||||
|
||||
#: admin/pro.php:2 movablemobilemenu.php:272
|
||||
msgid "Movable Mobile Menu"
|
||||
msgstr "Movable Mobile Menü"
|
||||
|
||||
#: admin/pro.php:3
|
||||
msgid "Advantage of Pro version"
|
||||
msgstr "Vorteil der Pro-Version"
|
||||
|
||||
#: admin/pro.php:8
|
||||
msgid ""
|
||||
"Style the Movable Mobile Menu and add up to 2 extra buttons with custom "
|
||||
"links."
|
||||
msgstr ""
|
||||
"Stylen Sie das mobile Menü und fügen Sie bis zu 2 zusätzliche Schaltflächen "
|
||||
"mit benutzerdefinierten Links hinzu."
|
||||
|
||||
#: admin/pro.php:11
|
||||
msgid ""
|
||||
"This is how the menu will look.<br>The icons <span class='dashicons "
|
||||
"dashicons-insert' ></span> and <span class='dashicons dashicons-remove' ></"
|
||||
"span> are to toggle the view of a submenu."
|
||||
msgstr ""
|
||||
"So sieht das Menü aus.<br>Die Symbole <span class='dashicons dashicons-"
|
||||
"insert' ></span> und sollen die Ansicht eines <span class='dashicons "
|
||||
"dashicons-remove' ></span> Untermenüs umschalten."
|
||||
|
||||
#: admin/pro.php:13
|
||||
msgid ""
|
||||
"This menu also can be styled to your needs. Set background, link-color, sub-"
|
||||
"menu background and color of the toggle button."
|
||||
msgstr ""
|
||||
"Dieses Menü kann auch nach Ihren Bedürfnissen formatiert werden. Legen Sie "
|
||||
"Hintergrund, Link-Farbe, Untermenü-Hintergrund und Farbe der Umschaltfläche "
|
||||
"fest."
|
||||
|
||||
#: admin/pro.php:27
|
||||
msgid "Get the Movable Mobile Menu Pro version now."
|
||||
msgstr "Holen Sie sich jetzt die Movable Mobile Menu Pro Version."
|
||||
|
||||
#: movablemobilemenu.php:23
|
||||
msgid ""
|
||||
"Movable Mobile Menu is a menu which appeares on mobile devices for improved "
|
||||
"navigation."
|
||||
msgstr ""
|
||||
"Movable Float Menu ist ein Menü, das auf mobilen Geräten für eine "
|
||||
"verbesserte Navigation angezeigt wird."
|
||||
|
||||
#: movablemobilemenu.php:29
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: movablemobilemenu.php:32
|
||||
msgid "Go Pro"
|
||||
msgstr "Pro Version holen"
|
||||
|
||||
#: movablemobilemenu.php:125
|
||||
msgid "Mobile Menu has not been set"
|
||||
msgstr "Mobiles Menü wurde nicht festgelegt"
|
||||
|
||||
#: movablemobilemenu.php:271
|
||||
#, php-format
|
||||
msgid "\"%1$s\" requires %2$s version %3$s or greater."
|
||||
msgstr "\"%1$s\" benötigt %2$s Version %3$s oder neuer."
|
||||
|
||||
#: movablemobilemenu.php:273
|
||||
msgid "PHP"
|
||||
msgstr "PHP"
|
||||
|
||||
#~ msgid "Settings"
|
||||
#~ msgstr "Einstellungen"
|
||||
|
||||
#~ msgid "Mobile Float Menu"
|
||||
#~ msgstr "Mobiles Schwebe Menü"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Mobile Float Menu"
|
||||
#~ msgid "Mobile Float menu"
|
||||
#~ msgstr "Mobiles Schwebe Menü"
|
||||
|
||||
#~ msgid "Flowmenu"
|
||||
#~ msgstr "Flowmenü"
|
||||
|
||||
#~ msgid "please select"
|
||||
#~ msgstr "bitte auswählen"
|
||||
|
||||
#~ msgid "Select to set or edit"
|
||||
#~ msgstr "Wählen zum speichern oder editieren"
|
||||
|
||||
#~ msgid "Modules"
|
||||
#~ msgstr "Module"
|
||||
|
||||
#~ msgid "Design module buttons"
|
||||
#~ msgstr "Designen der Modulschaltflächen"
|
||||
|
||||
#~ msgid "Design"
|
||||
#~ msgstr "Design"
|
||||
|
||||
#~ msgid "Close and save"
|
||||
#~ msgstr "Schliessen und speichern"
|
||||
|
||||
#~ msgid "Rename and close."
|
||||
#~ msgstr "Umbenennen und schliessen."
|
||||
|
||||
#~ msgid "BACKGROUND"
|
||||
#~ msgstr "HINTERGRUND"
|
||||
|
||||
#~ msgid "LOGO"
|
||||
#~ msgstr "LOGO"
|
||||
|
||||
#~ msgid "BUTTON"
|
||||
#~ msgstr "Button"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Choose a background-image or background-color for the Quickdashboard."
|
||||
#~ msgstr ""
|
||||
#~ "Wählen Sie ein Hintergrundbild oder eine Hintergrundfarbe für das "
|
||||
#~ "Quickdashboard aus."
|
||||
|
||||
#~ msgid "Do you need help with this"
|
||||
#~ msgstr "Benötigen Sie Hilfe dabei?"
|
||||
|
||||
#~ msgid "Quickdashboard background color"
|
||||
#~ msgstr "Quickdashboard Hintergrund"
|
||||
|
||||
#~ msgid "Quickdashboard background-image"
|
||||
#~ msgstr "Quickdashboard Hintergrundbild"
|
||||
|
||||
#~ msgid "Click to choose image"
|
||||
#~ msgstr "Zur Bildauswahl klicken"
|
||||
|
||||
#~ msgid "Remove image"
|
||||
#~ msgstr "Bild entfernen"
|
||||
|
||||
#~ msgid "Choose a logo-image for the Quickdashboard."
|
||||
#~ msgstr "Zur Bildauswahl klicken"
|
||||
|
||||
#~ msgid "Image"
|
||||
#~ msgstr "Bild"
|
||||
|
||||
#~ msgid "max. 350px width"
|
||||
#~ msgstr "max. 350px breit"
|
||||
|
||||
#~ msgid "Remove logo"
|
||||
#~ msgstr "Logo entfernen"
|
||||
|
||||
#~ msgid "Max. width"
|
||||
#~ msgstr "Max. Breite"
|
||||
|
||||
#~ msgid "in px"
|
||||
#~ msgstr "in px"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Position"
|
||||
|
||||
#~ msgid "left"
|
||||
#~ msgstr "links"
|
||||
|
||||
#~ msgid "middle"
|
||||
#~ msgstr "mitte"
|
||||
|
||||
#~ msgid "right"
|
||||
#~ msgstr "rechts"
|
||||
|
||||
#~ msgid "Style the buttons for the Quickdashboard."
|
||||
#~ msgstr "Designen der Modulschaltflächen"
|
||||
|
||||
#~ msgid "Width"
|
||||
#~ msgstr "Breite"
|
||||
|
||||
#~ msgid "Hight"
|
||||
#~ msgstr "Höhe"
|
||||
|
||||
#~ msgid "Gap"
|
||||
#~ msgstr "Abstand"
|
||||
|
||||
#~ msgid "Shadow"
|
||||
#~ msgstr "Schatten"
|
||||
|
||||
#~ msgid "no comma"
|
||||
#~ msgstr "kein Komma"
|
||||
|
||||
#~ msgid "Border-radius"
|
||||
#~ msgstr "Rahmen-Radius"
|
||||
|
||||
#~ msgid "Lock/ unlock"
|
||||
#~ msgstr "alle/einzeln"
|
||||
|
||||
#~ msgid "Border"
|
||||
#~ msgstr "Rahmen"
|
||||
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Hintergrundfarbe"
|
||||
|
||||
#~ msgid "Font-size"
|
||||
#~ msgstr "Textgröße"
|
||||
|
||||
#~ msgid "Font-color"
|
||||
#~ msgstr "Textfarbe"
|
||||
|
||||
#~ msgid "Font-style"
|
||||
#~ msgstr "Textstil"
|
||||
|
||||
#~ msgid "Save Design"
|
||||
#~ msgstr "Änderungen speichern"
|
||||
|
||||
#~ msgid "Reset Design"
|
||||
#~ msgstr "Reset Design"
|
||||
|
||||
#~ msgid "Attention"
|
||||
#~ msgstr "Achtung"
|
||||
|
||||
#~ msgid "Are you sure to delete the design settings?"
|
||||
#~ msgstr "Sind Sie sicher, dass Sie die Design-Einstellungen löschen möchten?"
|
||||
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Abbrechen"
|
||||
|
||||
#~ msgid "example"
|
||||
#~ msgstr "Beispiel"
|
||||
|
||||
#~ msgid "example "
|
||||
#~ msgstr "Beispiel "
|
||||
|
||||
#~ msgid "second row"
|
||||
#~ msgstr "ZWEITE REIHE"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Choose a new WordPress user for whom you want to provide the "
|
||||
#~ "Quickdashboard."
|
||||
#~ msgstr ""
|
||||
#~ "Wählen Sie einen WordPress-Benutzer aus, für den die Einstellungen gelten "
|
||||
#~ "sollen."
|
||||
|
||||
#~ msgid "New"
|
||||
#~ msgstr "Neu"
|
||||
|
||||
#~ msgid "Duplicate a configuration from one configured user to another."
|
||||
#~ msgstr ""
|
||||
#~ "Duplizieren Sie eine Konfiguration auf einen anderen WordPress Nutzer."
|
||||
|
||||
#~ msgid "Duplicate"
|
||||
#~ msgstr "Duplizieren"
|
||||
|
||||
#~ msgid "Remove, modify or delete assigned WordPress modules for a user."
|
||||
#~ msgstr "Entfernen, ändern oder löschen von Einstellungen für einen Nutzer."
|
||||
|
||||
#~ msgid "Edit"
|
||||
#~ msgstr "Bearbeiten"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Choose a WordPress user for whom you want to provide the Quickdashboard."
|
||||
#~ msgstr ""
|
||||
#~ "Wählen Sie einen WordPress-Benutzer aus, für den die Einstellungen gelten "
|
||||
#~ "sollen."
|
||||
|
||||
#~ msgid "Please choose a user..."
|
||||
#~ msgstr "Bitte einen Nutzer auswählen..."
|
||||
|
||||
#~ msgid "Save"
|
||||
#~ msgstr "Speichern"
|
||||
|
||||
#~ msgid "Abort"
|
||||
#~ msgstr "Abbrechen"
|
||||
|
||||
#~ msgid "select from user"
|
||||
#~ msgstr "wähle von Nutzer"
|
||||
|
||||
#~ msgid "select to new user"
|
||||
#~ msgstr "wähle nach Nutzer"
|
||||
|
||||
#~ msgid "Copy & Save"
|
||||
#~ msgstr "Kopieren und speichern"
|
||||
|
||||
#~ msgid "Remove usersettings"
|
||||
#~ msgstr "Einstellungen entfernen"
|
||||
|
||||
#~ msgid "Save changes"
|
||||
#~ msgstr "Änderungen speichern"
|
||||
|
||||
#~ msgid "New comments"
|
||||
#~ msgstr "Kommentare"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Quickdashboard Pro enables a custom wp-admin dashboard for certain users."
|
||||
#~ msgstr ""
|
||||
#~ "Quickdashboard Pro ermöglicht ein benutzerdefiniertes wp-admin-Dashboard "
|
||||
#~ "für bestimmte Benutzer."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Quickdashboard enables a custom dashboard. User will get a special "
|
||||
#~ "dashboard when accessing the wp-admin area. From there they only can "
|
||||
#~ "access the setting pages which are allowed. These rules are configured by "
|
||||
#~ "an admin."
|
||||
#~ msgstr ""
|
||||
#~ "Quickdashboard ermöglicht ein benutzerdefiniertes Dashboard. Der Benutzer "
|
||||
#~ "erhält ein spezielles Dashboard, wenn er auf den wp-admin-Bereich "
|
||||
#~ "zugreift. Von dort aus können sie nur auf die erlaubten Einstellseiten "
|
||||
#~ "zugreifen. Diese Regeln werden von einem Administrator konfiguriert."
|
||||
|
||||
#~ msgid "Quickdashboard Pro"
|
||||
#~ msgstr "Quickdashboard Pro"
|
||||
|
||||
#~ msgid "Your Quickdashboard Pro license may be deactivated or expired!"
|
||||
#~ msgstr ""
|
||||
#~ "Ihre Quickdashboard Pro Lizenz wurde entweder deaktiviert oder ist "
|
||||
#~ "abgelaufen!"
|
||||
|
||||
#~ msgid "You are not allowed to visit this page!"
|
||||
#~ msgstr "Sie dürfen diese Seite nicht aufrufen!"
|
||||
|
||||
#~ msgid "Copy"
|
||||
#~ msgstr "Kopiere"
|
||||
|
||||
#~ msgid "to"
|
||||
#~ msgstr "nach"
|
||||
|
||||
#~ msgid "Please select a user first!"
|
||||
#~ msgstr "Bitte erst einen Nutzer auswählen!"
|
||||
|
||||
#~ msgid "Drag and drop to sort"
|
||||
#~ msgstr "Ziehen zum sortieren"
|
||||
|
||||
#~ msgid "Clear"
|
||||
#~ msgstr "Löschen"
|
||||
|
||||
#~ msgid "Clear color"
|
||||
#~ msgstr "Farbe löschen"
|
||||
|
||||
#~ msgid "Default"
|
||||
#~ msgstr "Standard"
|
||||
|
||||
#~ msgid "Select default color"
|
||||
#~ msgstr "Standard-Farbe wählen"
|
||||
|
||||
#~ msgid "Select Color"
|
||||
#~ msgstr "Farbe wählen"
|
||||
|
||||
#~ msgid "Color value"
|
||||
#~ msgstr "Farbwert"
|
||||
|
||||
#~ msgid "Activate license"
|
||||
#~ msgstr "Lizenz aktivieren"
|
||||
|
||||
#~ msgid "Deactivate license"
|
||||
#~ msgstr "Lizenz deaktivieren"
|
||||
|
||||
#~ msgid "License Management"
|
||||
#~ msgstr "Lizenz Management"
|
||||
|
||||
#~ msgid "The following message came from the server"
|
||||
#~ msgstr "Die folgende Meldung kam vom Server"
|
||||
|
||||
#~ msgid "Activation successful!"
|
||||
#~ msgstr "Aktivierung erfolgreich!"
|
||||
|
||||
#~ msgid "Deactivation successful!"
|
||||
#~ msgstr "Deaktivierung erfolgreich!"
|
||||
|
||||
#~ msgid "Please enter a license key."
|
||||
#~ msgstr "Bitte geben Sie einen Lizenzschlüssel ein."
|
||||
|
||||
#~ msgid "License key"
|
||||
#~ msgstr "Lizenzschlüssel"
|
||||
|
||||
#~ msgid "Activate"
|
||||
#~ msgstr "Aktivieren"
|
||||
|
||||
#~ msgid "Deactivate"
|
||||
#~ msgstr "Deaktivieren"
|
||||
|
||||
#~ msgid "Your license expires on "
|
||||
#~ msgstr "Ihre Lizenz endet am "
|
||||
|
||||
#~ msgid "Your license expired on "
|
||||
#~ msgstr "Ihr Lizenzschlüssel ist abgelaufen seit "
|
||||
|
||||
#~ msgid "select"
|
||||
#~ msgstr "wählen"
|
||||
|
||||
#~ msgid "Quickdashboard Pro allows you to create a custom dashboard for user."
|
||||
#~ msgstr ""
|
||||
#~ "Quickdashboard Pro ermöglicht ein spezielles Dashboard für einzelne "
|
||||
#~ "Nutzer zu erstellen."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Before working with Quickdashboard Pro you need to have at leased one "
|
||||
#~ "additional user."
|
||||
#~ msgstr ""
|
||||
#~ "Bevor Sie mit Quickdashboard Pro arbeiten, müssen Sie einen zusätzlichen "
|
||||
#~ "Benutzer angelegt haben."
|
||||
|
||||
#~ msgid "Notice:"
|
||||
#~ msgstr "Hinweis:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Be aware: you can link a user to any module, but if the neccessary rights "
|
||||
#~ "are missing, the user can't access this module. So give this user the "
|
||||
#~ "appropriate role."
|
||||
#~ msgstr ""
|
||||
#~ "Beachten Sie: Sie können einen Benutzer mit einem beliebigen Modul "
|
||||
#~ "verknüpfen. Wenn jedoch die erforderlichen Rechte fehlen, kann der "
|
||||
#~ "Benutzer nicht auf dieses Modul zugreifen. Geben Sie diesem Benutzer die "
|
||||
#~ "entsprechende Rolle."
|
||||
|
||||
#~ msgid "Here you choose the user to which your settings will apply."
|
||||
#~ msgstr ""
|
||||
#~ "Hier wählen Sie den Benutzer aus, auf den Ihre Einstellungen angewendet "
|
||||
#~ "werden sollen."
|
||||
|
||||
#~ msgid "This will load the Quickdashboard Pro Menu into the WP-Menu."
|
||||
#~ msgstr "Dies lädt das Quickdashboard Pro Menü in das WP-Menü."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "There you can select the modules which will be addressed to the user you "
|
||||
#~ "have choosen."
|
||||
#~ msgstr ""
|
||||
#~ "Dort können Sie die Module auswählen, die dem von Ihnen ausgewählten "
|
||||
#~ "Benutzer zugeordnet werden."
|
||||
|
||||
#~ msgid "The modules will be shown as buttons."
|
||||
#~ msgstr "Die Module werden als Schaltflächen angezeigt."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "After saving, you can repeat this for another user wih different settings."
|
||||
#~ msgstr ""
|
||||
#~ "Nach dem Speichern können Sie dies für einen anderen Benutzer mit anderen "
|
||||
#~ "Einstellungen wiederholen."
|
||||
|
||||
#~ msgid "Or you can copy settings from one to another user."
|
||||
#~ msgstr ""
|
||||
#~ "Oder Sie können Einstellungen von einem auf einen anderen Benutzer "
|
||||
#~ "kopieren."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You also can choose an saved user to edit or delete completly from "
|
||||
#~ "Quickdashboard Pro settings."
|
||||
#~ msgstr ""
|
||||
#~ "Sie können auch einen gespeicherten Benutzer auswählen, der bearbeitet "
|
||||
#~ "oder vollständig aus den Quickdashboard Pro-Einstellungen gelöscht werden "
|
||||
#~ "soll."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "After selecting an user to edit, saved modules will be shown as buttons."
|
||||
#~ msgstr ""
|
||||
#~ "Nachdem Sie einen zu bearbeitenden Benutzer ausgewählt haben, werden "
|
||||
#~ "gespeicherte Module als Schaltflächen angezeigt."
|
||||
|
||||
#~ msgid "By drag and drop you are able to rearrange the buttons."
|
||||
#~ msgstr ""
|
||||
#~ "Mittels Drag & Drop können Sie die Reihenfolge der Schaltflächen ändern."
|
||||
|
||||
#~ msgid "You may click onto the button text to edit it."
|
||||
#~ msgstr ""
|
||||
#~ "Sie können auf den Schaltflächen Text klicken um diese zu bearbeiten."
|
||||
|
||||
#~ msgid "This ist our button designer."
|
||||
#~ msgstr "Dies ist unser Schaltflächen Designer."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It allows you to change the appearance of the module-buttons, change the "
|
||||
#~ "page background, add a logo image which will be appear above the module "
|
||||
#~ "buttons or even add a background image. Also custom fonts for the buttons "
|
||||
#~ "are possible."
|
||||
#~ msgstr ""
|
||||
#~ "Sie können das Erscheinungsbild der Modulschaltflächen ändern, den "
|
||||
#~ "Seitenhintergrund ändern, ein Logo hinzufügen, das über den "
|
||||
#~ "Modulschaltflächen angezeigt wird, oder sogar ein Hintergrundbild "
|
||||
#~ "hinzufügen. Auch benutzerdefinierte Schriftarten für die Schaltflächen "
|
||||
#~ "sind möglich."
|
||||
|
||||
#~ msgid "You can add a custom font by linking to an extern hoster."
|
||||
#~ msgstr ""
|
||||
#~ "Sie können eine benutzerdefinierte Schriftart hinzufügen, indem Sie eine "
|
||||
#~ "Verknüpfung zu einem externen Hoster herstellen."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Example: choose your font from Google Fonts, then choose \"embed\", then "
|
||||
#~ "\"@import\"."
|
||||
#~ msgstr ""
|
||||
#~ "Beispiel: Wählen Sie Ihre Schriftart aus Google Fonts aus, wählen Sie "
|
||||
#~ "\"embed\" und dann \"@import\"."
|
||||
|
||||
#~ msgid "You get this code snippet"
|
||||
#~ msgstr "Sie erhalten dieses Code-Snipsel"
|
||||
|
||||
#~ msgid "You only need the part with the yellow background! No quotes!"
|
||||
#~ msgstr ""
|
||||
#~ "Sie brauchen nur den Teil mit dem gelben Hintergrund! Keine "
|
||||
#~ "Anführungszeichen!"
|
||||
|
||||
#~ msgid "Copy and past it into the text field \"Font link\"."
|
||||
#~ msgstr "Kopieren Sie es und fügen Sie es in das Textfeld \"Font Link\" ein."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The text field named \"Font name\" is just to save a name to it as "
|
||||
#~ "reminder when editing."
|
||||
#~ msgstr ""
|
||||
#~ "Das Textfeld mit dem Namen \"Font Name\" dient lediglich dazu, einen "
|
||||
#~ "Namen als Erinnerung beim Bearbeiten zu speichern."
|
||||
|
||||
#~ msgid "Only one kind of style can be saved. It applys to all user."
|
||||
#~ msgstr ""
|
||||
#~ "Es kann nur eine Art von Style gespeichert werden. Es gilt für alle "
|
||||
#~ "Benutzer."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Quickdashboard Pro has a function to stop calling not assigned modules by "
|
||||
#~ "manupulating the URL."
|
||||
#~ msgstr ""
|
||||
#~ "Quickdashboard Pro verhindert, Module, die nicht zugeordnet sind, durch "
|
||||
#~ "URL Manipulation aufzurufen."
|
||||
|
||||
#~ msgid "Known issues"
|
||||
#~ msgstr "Bekannte Probleme"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Some Plugins have own rights. Quickdashboard Pro still will create a link "
|
||||
#~ "in the custom Dashboard, but it might happen that the linked page will "
|
||||
#~ "not be loaded and an error will occur. Best practise is to check the "
|
||||
#~ "Quickdashboard with the user to whom the settings apply logged in."
|
||||
#~ msgstr ""
|
||||
#~ "Einige Plugins haben eigene Rechte. Quickdashboard Pro erstellt weiterhin "
|
||||
#~ "einen Link im benutzerdefinierten Dashboard. Es kann jedoch vorkommen, "
|
||||
#~ "dass die verknüpfte Seite nicht geladen wird und ein Fehler auftritt. Am "
|
||||
#~ "besten überprüfen Sie das Quickboard mit dem Benutzer, für den die "
|
||||
#~ "Einstellungen gelten."
|
||||
|
||||
#~ msgid "This applys often to SEO plugins!"
|
||||
#~ msgstr "Meist tritt dies bei SEO Plugins auf!"
|
||||
|
||||
#~ msgid "Contact:"
|
||||
#~ msgstr "Kontakt:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you need further help or have any other reason to contact us, we are "
|
||||
#~ "looking forward to hear from you."
|
||||
#~ msgstr ""
|
||||
#~ "Wenn Sie weitere Hilfe benötigen oder einen anderen Grund haben, uns zu "
|
||||
#~ "kontaktieren, freuen wir uns, von Ihnen zu hören."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "In case of trouble, please give us as many details as possible, maybe add "
|
||||
#~ "a screenshot for reference."
|
||||
#~ msgstr ""
|
||||
#~ "Im Falle von Problemen geben Sie uns bitte so viele Details wie möglich "
|
||||
#~ "und fügen Sie möglicherweise einen Screenshot als Referenz hinzu."
|
||||
|
||||
#~ msgid "Contact to Quickdashboard Pro"
|
||||
#~ msgstr "Kontakt zu Quickdashboard Pro"
|
||||
|
||||
#~ msgid "1.0.0 - Stable release version"
|
||||
#~ msgstr "1.0.0 - Stabile Release-Version"
|
||||
|
||||
#~ msgid "Remove settings for this user or save changes."
|
||||
#~ msgstr ""
|
||||
#~ "Entfernen Sie die Einstellungen für diesen Benutzer oder speichern Sie "
|
||||
#~ "die Änderungen."
|
||||
|
||||
#~ msgid "Copy settings."
|
||||
#~ msgstr "Kopieren der Einstellungen."
|
||||
|
||||
#~ msgid "Logo image"
|
||||
#~ msgstr "Logo Bild"
|
||||
|
||||
#~ msgid "Button width"
|
||||
#~ msgstr "Button Breite"
|
||||
|
||||
#~ msgid "Button hight"
|
||||
#~ msgstr "Button Höhe"
|
||||
|
||||
#~ msgid "Font"
|
||||
#~ msgstr "Schriftart"
|
||||
|
||||
#~ msgid "Link to extern hosted font, like Google-Fonts"
|
||||
#~ msgstr "Link zu externem Hoster, wie z.B. Google-Fonts"
|
||||
|
||||
#~ msgid "For more info look in our help section"
|
||||
#~ msgstr "Mehr Info finden Sie in der Hilfe"
|
||||
|
||||
#~ msgid "Font link URL"
|
||||
#~ msgstr "Font Link URL"
|
||||
|
||||
#~ msgid "Font name"
|
||||
#~ msgstr "Font Name"
|
||||
|
||||
#~ msgid "in px, em, pt..."
|
||||
#~ msgstr "in px, em, pt..."
|
||||
|
||||
#~ msgid "Button gap"
|
||||
#~ msgstr "Button Abstand"
|
||||
|
||||
#~ msgid "Button shadow"
|
||||
#~ msgstr "Button Schatten"
|
||||
|
||||
#~ msgid "Reset"
|
||||
#~ msgstr "Reset"
|
||||
|
||||
#~ msgid "Quickdashboardpro"
|
||||
#~ msgstr "Quickdashboard Pro"
|
||||
|
||||
#~ msgid "Upload of files not allowed!"
|
||||
#~ msgstr "Hochladen von Dateien nicht erlaubt!"
|
||||
|
||||
#~ msgid "Unexpected error."
|
||||
#~ msgstr "Unerwarteter Fehler."
|
||||
|
||||
#~ msgid "The license key on this domain is already inactive"
|
||||
#~ msgstr "Der Lizenzschlüssel für diese Domain ist bereits inaktiv"
|
||||
|
||||
#~ msgid "success"
|
||||
#~ msgstr "Erfolgreich"
|
||||
|
||||
#~ msgid "requires to be registered. Please enter your key"
|
||||
#~ msgstr "muss registriert werden. Bitte geben Sie Ihren Key"
|
||||
|
||||
#~ msgid "HERE"
|
||||
#~ msgstr "HIER ein"
|
||||
|
||||
#~ msgid "Your License has expired. Please add a new key"
|
||||
#~ msgstr ""
|
||||
#~ "Ihre Lizenz ist abgelaufen. Bitte geben Sie einen neuen Lizenzschlüssel"
|
||||
|
||||
#~ msgid "License key activated"
|
||||
#~ msgstr "Lizenzschlüssel aktiviert"
|
||||
|
||||
#~ msgid "Your License key is blocked"
|
||||
#~ msgstr "Lizenzschlüssel blockiert"
|
||||
|
||||
#~ msgid "Your License key has expired"
|
||||
#~ msgstr "Ihr Lizenzschlüssel ist abgelaufen"
|
||||
|
||||
#~ msgid "License key already in use on"
|
||||
#~ msgstr "Lizenzschlüssel wird bereits genutzt"
|
||||
|
||||
#~ msgid "Reached maximum activation. License key already in use on"
|
||||
#~ msgstr ""
|
||||
#~ "Maximale Aktivierung erreicht. Der Lizenzschlüssel wird bereits genutzt"
|
||||
|
||||
#~ msgid "Reached maximum allowable domains"
|
||||
#~ msgstr "Maximale erlaubte Domains erreicht"
|
||||
|
||||
#~ msgid "Invalid license key"
|
||||
#~ msgstr "Ungültiger Lizenzschlüssel"
|
||||
|
||||
#~ msgid "New user"
|
||||
#~ msgstr "Neuer Benutzer"
|
||||
|
||||
#~ msgid "Copy usersettings"
|
||||
#~ msgstr "Kopieren von Benutzereinstellungen"
|
||||
|
||||
#~ msgid "Choose user to copy settings:"
|
||||
#~ msgstr "Wählen Sie einen Benutzer aus, um die Einstellungen zu kopieren:"
|
||||
|
||||
#~ msgid "Choose user to edit settings:"
|
||||
#~ msgstr "Wählen Sie einen Benutzer aus, um die Einstellungen zu bearbeiten:"
|
||||
|
||||
#~ msgid "We reccommend to delete saved options first before saving new ones."
|
||||
#~ msgstr ""
|
||||
#~ "Wir empfehlen, gespeicherte Optionen zuerst zu löschen, bevor neue "
|
||||
#~ "gespeichert werden."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Here you can add a logo image which will be appear above the module "
|
||||
#~ "buttons."
|
||||
#~ msgstr ""
|
||||
#~ "Hier können Sie ein Logo-Bild hinzufügen, das über den Modulschaltflächen "
|
||||
#~ "angezeigt wird."
|
||||
|
||||
#~ msgid "Plugins"
|
||||
#~ msgstr "Plugins"
|
||||
|
||||
#~ msgid "Updates"
|
||||
#~ msgstr "Updates"
|
||||
|
||||
#~ msgid "Welcome"
|
||||
#~ msgstr "Willkommen"
|
||||
|
||||
#~ msgid "Choose modules"
|
||||
#~ msgstr "Module wählen"
|
||||
|
||||
#~ msgid "Welcome to Quickboard Pro"
|
||||
#~ msgstr "Willkommen zu Quickboard Pro"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We tried to make your work experience with our tool as easy as possible."
|
||||
#~ msgstr ""
|
||||
#~ "Wir haben versucht, Ihre Arbeitserfahrung mit unserem Tool so einfach wie "
|
||||
#~ "möglich zu gestalten."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Just follow the options in order, but best read our workflow and help "
|
||||
#~ "which you will find at this menu point"
|
||||
#~ msgstr ""
|
||||
#~ "Befolgen Sie einfach die Optionen in der angegebenen Reihenfolge, aber "
|
||||
#~ "lesen Sie am besten unseren Workflow und die Hilfe, die Sie unter diesem "
|
||||
#~ "Menüpunkt finden"
|
||||
|
||||
#~ msgid "Choose modules from our menu, rename, rearrange and save."
|
||||
#~ msgstr "Module auswählen, umbenennen, sortieren und abspeichern."
|
||||
|
||||
#~ msgid " - File editing not available!"
|
||||
#~ msgstr " - Dateibearbeitung nicht verfügbar!"
|
||||
|
||||
#~ msgid "Dashboard to Quickboard"
|
||||
#~ msgstr "Dashboard to Quickboard"
|
||||
|
||||
#~ msgid "Add a logo"
|
||||
#~ msgstr "Logo hinzufügen"
|
||||
|
||||
#~ msgid "Button text converting:"
|
||||
#~ msgstr "Button Text formatieren:"
|
||||
|
||||
#~ msgid "none"
|
||||
#~ msgstr "nichts gewählt"
|
||||
|
||||
#~ msgid "First letter uppercase"
|
||||
#~ msgstr "Erster Buchstabe Groß"
|
||||
|
||||
#~ msgid "All letters uppercase"
|
||||
#~ msgstr "Alle Buchstaben GROSS"
|
||||
|
||||
#~ msgid "All letters lowercase"
|
||||
#~ msgstr "Alle Buchstaben klein"
|
||||
|
||||
#~ msgid "max. Buttons in row"
|
||||
#~ msgstr "Max. Schaltflächen in Reihe"
|
||||
|
||||
#~ msgid "Standard auto-fit"
|
||||
#~ msgstr "Standard-Auto-Fit"
|
||||
|
||||
#~ msgid "Delete"
|
||||
#~ msgstr "Löschen"
|
||||
|
||||
#~ msgid "Dashboard to Quickboard adds a new role named \"Quickbord\"."
|
||||
#~ msgstr ""
|
||||
#~ "Dashboard to Quickboard legt eine neue Benutzerrolle \"Quickboard\" an."
|
||||
|
||||
#~ msgid "The following rules are directed to the role \"Quickbord\":"
|
||||
#~ msgstr ""
|
||||
#~ "Folgende Befugnisse nach Wordpress werden der Rolle \"Quickbord\" "
|
||||
#~ "zugeordnet:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Under the tab \"Choose from menu\" you choose from the main navigation "
|
||||
#~ "and, if applies, from the subnavigation which options should be "
|
||||
#~ "accessible for the role \"Quickbord\"."
|
||||
#~ msgstr ""
|
||||
#~ "Unter der Registerkarte \"Menü wählen\" wählen Sie aus der "
|
||||
#~ "Hauptnavigation und, falls zutreffend, aus der Unternavigation, die "
|
||||
#~ "Optionen aus, die für die Rolle \"Quickbord\" zugänglich sein soll."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "In the submenu navigation you can set your own names for the buttons on "
|
||||
#~ "the Quickboard."
|
||||
#~ msgstr ""
|
||||
#~ "In der Untermenünavigation können Sie eigene Namen für die Schaltflächen "
|
||||
#~ "auf dem Quickboard festlegen."
|
||||
|
||||
#~ msgid "Notice: "
|
||||
#~ msgstr "Hinweis:"
|
||||
|
||||
#~ msgid "Not all options under the main navigation have a submenu!"
|
||||
#~ msgstr "Nicht alle Optionen unter der Hauptnavigation haben ein Untermenü!"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you, after saving, want to add more buttons, click twice slowly on the "
|
||||
#~ "main navigation option. This reloads all navigation points in the "
|
||||
#~ "subnavigation and can then be activated."
|
||||
#~ msgstr ""
|
||||
#~ "Wenn Sie nach dem Speichern weitere Schaltflächen hinzufügen möchten, "
|
||||
#~ "klicken Sie zweimal langsam auf die Hauptnavigationsoption. Dadurch "
|
||||
#~ "werden alle Navigationspunkte in der Unternavigation neu geladen und "
|
||||
#~ "können dann aktiviert werden."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Under the tab \"Button Design\" you can set how the Buttons should look."
|
||||
#~ msgstr ""
|
||||
#~ "Unter \"Button Design\" stellen Sie ein, wie die Schaltflächen aussehen "
|
||||
#~ "sollen."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Under the tab \"Logo\" you can upload a logo. Max. width: 250px, max. "
|
||||
#~ "height: 100px."
|
||||
#~ msgstr ""
|
||||
#~ "Unter \"Logo\" können Sie ein Logo hochladen. Maximale Breite: 250px, "
|
||||
#~ "max. Höhe: 100px."
|
||||
|
||||
#~ msgid "Quickboard"
|
||||
#~ msgstr "Quickboard"
|
||||
|
||||
#~ msgid "MOVE ME"
|
||||
#~ msgstr "Zieh mich"
|
||||
|
||||
#~ msgid "Logo"
|
||||
#~ msgstr "Logo"
|
||||
|
||||
#~ msgid "Help/ Workflow"
|
||||
#~ msgstr "Hilfe / Workflow"
|
||||
|
||||
#~ msgid "Main navigation"
|
||||
#~ msgstr "Hauptnavigation"
|
||||
|
||||
#~ msgid "Sub navigation and renaming"
|
||||
#~ msgstr "Subnavigation und eigener Name"
|
||||
|
||||
#~ msgid "Personal"
|
||||
#~ msgstr "Personal"
|
||||
|
||||
#~ msgid "EXAMPLE"
|
||||
#~ msgstr "Beispiel"
|
||||
|
||||
#~ msgid "SECOND ROW"
|
||||
#~ msgstr "ZWEITE REIHE"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "The license key on this domain is already inactive"
|
||||
#~ msgid "The license key on this domain is already inactived"
|
||||
#~ msgstr "Der Lizenzschlüssel für diese Domain ist bereits inaktiv"
|
||||
@@ -0,0 +1,592 @@
|
||||
# Copyright (C) 2021 MotoPress
|
||||
# This file is distributed under the same license as the Hotel Booking & Elementor Integration plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hotel Booking & Elementor Integration 1.1.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mphb-elementor\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-23T14:03:09+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: mphb-elementor\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Hotel Booking & Elementor Integration"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://motopress.com/products/hotel-booking-elementor-integration/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Manage hotel booking shortcodes in Elementor builder."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MotoPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://motopress.com/"
|
||||
msgstr ""
|
||||
|
||||
#: plugin.php:67
|
||||
msgid "MotoPress Hotel Booking"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:16
|
||||
msgid "Availability Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:33
|
||||
#: widgets/availability-widget.php:33
|
||||
#: widgets/booking-confirmation-widget.php:33
|
||||
#: widgets/checkout-widget.php:33
|
||||
#: widgets/rates-widget.php:33
|
||||
#: widgets/room-widget.php:33
|
||||
#: widgets/rooms-widget.php:33
|
||||
#: widgets/search-form-widget.php:39
|
||||
#: widgets/search-results-widget.php:33
|
||||
#: widgets/services-widget.php:33
|
||||
msgid "Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:39
|
||||
#: widgets/availability-widget.php:39
|
||||
#: widgets/rates-widget.php:39
|
||||
#: widgets/room-widget.php:39
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:40
|
||||
#: widgets/rates-widget.php:40
|
||||
msgid "ID of accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:46
|
||||
msgid "How many months to show"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:47
|
||||
msgid "Set the number of columns or the number of rows and columns separated by comma. Example: \"3\" or \"2,3\""
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:53
|
||||
#: widgets/availability-widget.php:46
|
||||
#: widgets/booking-confirmation-widget.php:38
|
||||
#: widgets/checkout-widget.php:38
|
||||
#: widgets/rates-widget.php:46
|
||||
#: widgets/room-widget.php:134
|
||||
#: widgets/rooms-widget.php:134
|
||||
#: widgets/search-form-widget.php:86
|
||||
#: widgets/search-results-widget.php:115
|
||||
#: widgets/services-widget.php:53
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-calendar-widget.php:54
|
||||
#: widgets/availability-widget.php:47
|
||||
#: widgets/booking-confirmation-widget.php:39
|
||||
#: widgets/checkout-widget.php:39
|
||||
#: widgets/rates-widget.php:47
|
||||
#: widgets/room-widget.php:135
|
||||
#: widgets/rooms-widget.php:135
|
||||
#: widgets/search-form-widget.php:87
|
||||
#: widgets/search-results-widget.php:116
|
||||
#: widgets/services-widget.php:54
|
||||
msgid "Custom CSS class for shortcode wrapper."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-widget.php:16
|
||||
msgid "Booking Form"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/availability-widget.php:40
|
||||
msgid "ID of Accommodation Type to check availability."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/booking-confirmation-widget.php:16
|
||||
msgid "Booking Confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/checkout-widget.php:16
|
||||
msgid "Checkout Form"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rates-widget.php:16
|
||||
msgid "Accommodation Rates"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:16
|
||||
msgid "Single Accommodation"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:40
|
||||
msgid "ID of accommodation type to display."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:46
|
||||
#: widgets/rooms-widget.php:38
|
||||
#: widgets/search-results-widget.php:38
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:47
|
||||
#: widgets/rooms-widget.php:39
|
||||
#: widgets/search-results-widget.php:39
|
||||
msgid "Whether to display title of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:50
|
||||
#: widgets/room-widget.php:61
|
||||
#: widgets/room-widget.php:72
|
||||
#: widgets/room-widget.php:83
|
||||
#: widgets/room-widget.php:94
|
||||
#: widgets/room-widget.php:105
|
||||
#: widgets/room-widget.php:116
|
||||
#: widgets/room-widget.php:127
|
||||
#: widgets/rooms-widget.php:42
|
||||
#: widgets/rooms-widget.php:53
|
||||
#: widgets/rooms-widget.php:64
|
||||
#: widgets/rooms-widget.php:75
|
||||
#: widgets/rooms-widget.php:86
|
||||
#: widgets/rooms-widget.php:97
|
||||
#: widgets/rooms-widget.php:108
|
||||
#: widgets/rooms-widget.php:119
|
||||
#: widgets/search-results-widget.php:42
|
||||
#: widgets/search-results-widget.php:53
|
||||
#: widgets/search-results-widget.php:64
|
||||
#: widgets/search-results-widget.php:75
|
||||
#: widgets/search-results-widget.php:86
|
||||
#: widgets/search-results-widget.php:97
|
||||
#: widgets/search-results-widget.php:108
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:51
|
||||
#: widgets/room-widget.php:62
|
||||
#: widgets/room-widget.php:73
|
||||
#: widgets/room-widget.php:84
|
||||
#: widgets/room-widget.php:95
|
||||
#: widgets/room-widget.php:106
|
||||
#: widgets/room-widget.php:117
|
||||
#: widgets/room-widget.php:128
|
||||
#: widgets/rooms-widget.php:43
|
||||
#: widgets/rooms-widget.php:54
|
||||
#: widgets/rooms-widget.php:65
|
||||
#: widgets/rooms-widget.php:76
|
||||
#: widgets/rooms-widget.php:87
|
||||
#: widgets/rooms-widget.php:98
|
||||
#: widgets/rooms-widget.php:109
|
||||
#: widgets/rooms-widget.php:120
|
||||
#: widgets/search-results-widget.php:43
|
||||
#: widgets/search-results-widget.php:54
|
||||
#: widgets/search-results-widget.php:65
|
||||
#: widgets/search-results-widget.php:76
|
||||
#: widgets/search-results-widget.php:87
|
||||
#: widgets/search-results-widget.php:98
|
||||
#: widgets/search-results-widget.php:109
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:57
|
||||
#: widgets/rooms-widget.php:49
|
||||
#: widgets/search-results-widget.php:49
|
||||
msgid "Featured image"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:58
|
||||
#: widgets/rooms-widget.php:50
|
||||
#: widgets/search-results-widget.php:50
|
||||
msgid "Whether to display featured image of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:68
|
||||
#: widgets/rooms-widget.php:60
|
||||
#: widgets/search-results-widget.php:60
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:69
|
||||
#: widgets/rooms-widget.php:61
|
||||
#: widgets/search-results-widget.php:61
|
||||
msgid "Whether to display gallery of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:79
|
||||
#: widgets/rooms-widget.php:71
|
||||
#: widgets/search-results-widget.php:71
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:80
|
||||
#: widgets/rooms-widget.php:72
|
||||
#: widgets/search-results-widget.php:72
|
||||
msgid "Whether to display excerpt (short description) of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:90
|
||||
#: widgets/rooms-widget.php:82
|
||||
#: widgets/search-results-widget.php:82
|
||||
msgid "Details"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:91
|
||||
#: widgets/rooms-widget.php:83
|
||||
#: widgets/search-results-widget.php:83
|
||||
msgid "Whether to display details of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:101
|
||||
#: widgets/rooms-widget.php:93
|
||||
#: widgets/rooms-widget.php:196
|
||||
#: widgets/search-results-widget.php:93
|
||||
#: widgets/search-results-widget.php:145
|
||||
#: widgets/services-widget.php:83
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:102
|
||||
#: widgets/rooms-widget.php:94
|
||||
#: widgets/search-results-widget.php:94
|
||||
msgid "Whether to display price of the accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:112
|
||||
#: widgets/search-results-widget.php:104
|
||||
msgid "View button"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:113
|
||||
#: widgets/rooms-widget.php:105
|
||||
#: widgets/search-results-widget.php:105
|
||||
msgid "Whether to display \"View Details\" button with the link to accommodation type."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:123
|
||||
#: widgets/rooms-widget.php:115
|
||||
msgid "Book Button"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/room-widget.php:124
|
||||
#: widgets/rooms-widget.php:116
|
||||
msgid "Whether to display \"Book\" button."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:16
|
||||
msgid "Accommodation Types"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:104
|
||||
msgid "View Button"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:126
|
||||
#: widgets/services-widget.php:45
|
||||
msgid "Count per page"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:127
|
||||
#: widgets/services-widget.php:46
|
||||
msgid "-1 to display all."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:141
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:142
|
||||
msgid "Comma-separated IDs of categories that will be shown."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:148
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:149
|
||||
msgid "Comma-separated IDs of tags that will be shown."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:155
|
||||
#: widgets/services-widget.php:38
|
||||
msgid "IDs"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:156
|
||||
msgid "Comma-separated IDs of accommodations that will be shown."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:162
|
||||
msgid "Relation"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:163
|
||||
msgid "Logical relationship between each taxonomy when there is more than one."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:166
|
||||
msgid "AND"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:167
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:174
|
||||
#: widgets/rooms-widget.php:202
|
||||
#: widgets/search-results-widget.php:123
|
||||
#: widgets/search-results-widget.php:151
|
||||
#: widgets/services-widget.php:61
|
||||
#: widgets/services-widget.php:89
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:179
|
||||
#: widgets/search-results-widget.php:128
|
||||
#: widgets/services-widget.php:66
|
||||
msgid "Order By"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:182
|
||||
#: widgets/search-results-widget.php:131
|
||||
#: widgets/services-widget.php:69
|
||||
msgid "No order"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:183
|
||||
#: widgets/search-results-widget.php:132
|
||||
#: widgets/services-widget.php:70
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:184
|
||||
#: widgets/search-results-widget.php:133
|
||||
#: widgets/services-widget.php:71
|
||||
msgid "Post author"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:185
|
||||
#: widgets/search-results-widget.php:134
|
||||
#: widgets/services-widget.php:72
|
||||
msgid "Post title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:186
|
||||
#: widgets/search-results-widget.php:135
|
||||
#: widgets/services-widget.php:73
|
||||
msgid "Post name (post slug)"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:187
|
||||
#: widgets/search-results-widget.php:136
|
||||
#: widgets/services-widget.php:74
|
||||
msgid "Post date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:188
|
||||
#: widgets/search-results-widget.php:137
|
||||
#: widgets/services-widget.php:75
|
||||
msgid "Last modified date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:189
|
||||
#: widgets/search-results-widget.php:138
|
||||
#: widgets/services-widget.php:76
|
||||
msgid "Parent ID"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:190
|
||||
#: widgets/search-results-widget.php:139
|
||||
#: widgets/services-widget.php:77
|
||||
msgid "Random order"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:191
|
||||
#: widgets/search-results-widget.php:140
|
||||
#: widgets/services-widget.php:78
|
||||
msgid "Number of comments"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:192
|
||||
#: widgets/search-results-widget.php:141
|
||||
#: widgets/services-widget.php:79
|
||||
msgid "Relevance"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:193
|
||||
#: widgets/search-results-widget.php:142
|
||||
#: widgets/services-widget.php:80
|
||||
msgid "Page order"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:194
|
||||
#: widgets/search-results-widget.php:143
|
||||
#: widgets/services-widget.php:81
|
||||
msgid "Meta value"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:195
|
||||
#: widgets/search-results-widget.php:144
|
||||
#: widgets/services-widget.php:82
|
||||
msgid "Numeric meta value"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:205
|
||||
#: widgets/search-results-widget.php:154
|
||||
#: widgets/services-widget.php:92
|
||||
msgid "Ascending (1, 2, 3)"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:206
|
||||
#: widgets/search-results-widget.php:155
|
||||
#: widgets/services-widget.php:93
|
||||
msgid "Descending (3, 2, 1)"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:212
|
||||
#: widgets/search-results-widget.php:161
|
||||
#: widgets/services-widget.php:99
|
||||
msgid "Meta Name"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:213
|
||||
#: widgets/search-results-widget.php:162
|
||||
#: widgets/services-widget.php:100
|
||||
msgid "Custom field name. Required if \"orderby\" is one of the \"meta_value\", \"meta_value_num\" or \"meta_value_*\"."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:219
|
||||
#: widgets/search-results-widget.php:168
|
||||
#: widgets/services-widget.php:106
|
||||
msgid "Meta Type"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:220
|
||||
#: widgets/search-results-widget.php:169
|
||||
#: widgets/services-widget.php:107
|
||||
msgid "Specified type of the custom field. Can be used in conjunction with \"orderby\" = \"meta_value\"."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:223
|
||||
#: widgets/search-results-widget.php:172
|
||||
#: widgets/services-widget.php:110
|
||||
msgid "Any"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:224
|
||||
#: widgets/search-results-widget.php:173
|
||||
#: widgets/services-widget.php:111
|
||||
msgid "Numeric"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:225
|
||||
#: widgets/search-results-widget.php:174
|
||||
#: widgets/services-widget.php:112
|
||||
msgid "Binary"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:226
|
||||
#: widgets/search-results-widget.php:175
|
||||
#: widgets/services-widget.php:113
|
||||
msgid "String"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:227
|
||||
#: widgets/search-results-widget.php:176
|
||||
#: widgets/services-widget.php:114
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:228
|
||||
#: widgets/search-results-widget.php:177
|
||||
#: widgets/services-widget.php:115
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:229
|
||||
#: widgets/search-results-widget.php:178
|
||||
#: widgets/services-widget.php:116
|
||||
msgid "Date and time"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:230
|
||||
#: widgets/search-results-widget.php:179
|
||||
#: widgets/services-widget.php:117
|
||||
msgid "Decimal number"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:231
|
||||
#: widgets/search-results-widget.php:180
|
||||
#: widgets/services-widget.php:118
|
||||
msgid "Signed number"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/rooms-widget.php:232
|
||||
#: widgets/search-results-widget.php:181
|
||||
#: widgets/services-widget.php:119
|
||||
msgid "Unsigned number"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:16
|
||||
msgid "Search Availability Form"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:44
|
||||
msgid "Adults"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:45
|
||||
msgid "The number of adults presetted in the search form."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:53
|
||||
msgid "Children"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:54
|
||||
msgid "The number of children presetted in the search form."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:62
|
||||
msgid "Check-in date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:63
|
||||
msgid "Check-in date presetted in the search form."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:70
|
||||
msgid "Check-out date"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:71
|
||||
msgid "Check-out date presetted in the search form."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:78
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:79
|
||||
msgid "Custom attributes for advanced search."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-form-widget.php:80
|
||||
msgid "Slugs of attributes"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/search-results-widget.php:16
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/services-widget.php:16
|
||||
msgid "Services"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/services-widget.php:39
|
||||
msgid "Comma-separated IDs of services that will be shown. All services by default."
|
||||
msgstr ""
|
||||
177
spec/fixtures/dynamic_finders/plugin_version/mphb-styles/translation_file/languages/mphb-styles.pot
vendored
Normal file
177
spec/fixtures/dynamic_finders/plugin_version/mphb-styles/translation_file/languages/mphb-styles.pot
vendored
Normal file
@@ -0,0 +1,177 @@
|
||||
# Copyright (C) 2021 MotoPress
|
||||
# This file is distributed under the same license as the Hotel Booking Styles plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hotel Booking Styles 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mphb-styles\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-02-23T14:21:25+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: mphb-styles\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Hotel Booking Styles"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Extra CSS styles to customize the MotoPress Hotel Booking plugin forms and widgets."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MotoPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://motopress.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:48
|
||||
#: includes/settings-tab.php:21
|
||||
msgid "Styles"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:52
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:53
|
||||
#: includes/filters.php:274
|
||||
#: assets/js/extend-block-styles.js:6
|
||||
#: assets/js/extend-block-styles.js:11
|
||||
#: assets/js/extend-blocks.js:17
|
||||
#: assets/js/extend-blocks.js:22
|
||||
msgid "Horizontal Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:68
|
||||
msgid "Customization"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:75
|
||||
#: assets/js/extend-blocks.js:109
|
||||
msgid "Hide Labels"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:77
|
||||
#: includes/settings-tab.php:44
|
||||
#: assets/js/extend-blocks.js:110
|
||||
msgid "Remove all labels from the form fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:86
|
||||
#: assets/js/extend-blocks.js:121
|
||||
msgid "No Paddings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:88
|
||||
#: includes/settings-tab.php:50
|
||||
#: assets/js/extend-blocks.js:122
|
||||
msgid "Remove paddings between the form fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:97
|
||||
#: assets/js/extend-blocks.js:133
|
||||
msgid "Hide Tips"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:99
|
||||
#: includes/settings-tab.php:56
|
||||
#: assets/js/extend-blocks.js:134
|
||||
msgid "Hide message about required fields. Applied automatically on the horizontal form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:109
|
||||
#: includes/filters.php:280
|
||||
#: assets/js/extend-blocks.js:145
|
||||
msgid "Multiple Lines"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:111
|
||||
#: includes/filters.php:282
|
||||
#: includes/settings-tab.php:62
|
||||
#: assets/js/extend-blocks.js:146
|
||||
msgid "Wrap form fields onto multiple lines."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:121
|
||||
#: includes/filters.php:286
|
||||
#: assets/js/extend-blocks.js:157
|
||||
msgid "Stretch Button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:123
|
||||
#: includes/filters.php:288
|
||||
#: includes/settings-tab.php:68
|
||||
#: assets/js/extend-blocks.js:158
|
||||
msgid "Stretch the button to the maximum available width."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:132
|
||||
#: includes/filters.php:291
|
||||
#: assets/js/extend-blocks.js:169
|
||||
msgid "Fields Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:134
|
||||
#: includes/filters.php:298
|
||||
#: includes/settings-tab.php:75
|
||||
#: assets/js/extend-blocks.js:170
|
||||
msgid "Limit the maximum width of the form fields."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:137
|
||||
#: includes/filters.php:263
|
||||
#: assets/js/extend-blocks.js:173
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:138
|
||||
msgid "20%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:139
|
||||
msgid "25%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:140
|
||||
msgid "33%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:141
|
||||
msgid "50%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:142
|
||||
msgid "100%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:276
|
||||
#: includes/settings-tab.php:38
|
||||
msgid "Make the form horizontal."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is an example of code
|
||||
#: includes/settings-tab.php:29
|
||||
msgid "Use spaces to add several classes. Example of using styles with shortcodes: %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-tab.php:39
|
||||
msgid "Available for Availability Search Form, Booking Form and Search Availability Widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-tab.php:45
|
||||
#: includes/settings-tab.php:51
|
||||
#: includes/settings-tab.php:57
|
||||
msgid "Available for Availability Search Form and Booking Form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings-tab.php:63
|
||||
#: includes/settings-tab.php:69
|
||||
#: includes/settings-tab.php:76
|
||||
msgid "Available for Availability Search Form and Search Availability Widget."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,541 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mwb-product-filter-for-woocommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-04-10 11:37+0530\n"
|
||||
"PO-Revision-Date: 2021-04-10 11:37+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ../mwb-product-filter-for-woocommerce\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:182
|
||||
#: mwb-product-filter-for-woocommerce.php:96
|
||||
#: mwb-product-filter-for-woocommerce.php:102
|
||||
#: mwb-product-filter-for-woocommerce.php:228
|
||||
msgid "MWB Product Filter for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:224
|
||||
msgid "Enable Product Filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:226
|
||||
msgid "Enable plugin to start the functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:231
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:232
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:236
|
||||
#: admin/partials/mwb-pffw-overview.php:106
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:238
|
||||
msgid "Click to copy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:243
|
||||
msgid "Shortcode for Filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:248
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:358
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:265
|
||||
msgid "User Guide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:266
|
||||
msgid "View the detailed guides and documentation to set up your plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:267
|
||||
msgid "VIEW"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:271
|
||||
msgid "Free Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:272
|
||||
msgid "Please submit a ticket , our team will respond within 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:273
|
||||
msgid "SUBMIT"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:314
|
||||
msgid "Id of some field is missing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:332
|
||||
msgid "Filter Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:337
|
||||
msgid "Filter Classes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:342
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:364
|
||||
msgid "Default Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:387
|
||||
msgid "Product Container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:389
|
||||
msgid ""
|
||||
"Enter here the CSS class or id for the product container (Default: .products)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:393
|
||||
msgid "Product Container Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:396
|
||||
msgid "Shop Pagination Container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:398
|
||||
msgid ""
|
||||
"Enter here the CSS class or id for the shop pagination container (Default: "
|
||||
"nav.woocommerce-pagination)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:402
|
||||
msgid "Pagination Container Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:405
|
||||
msgid "Result Count Container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:407
|
||||
msgid ""
|
||||
"Enter here the CSS class or id for the results count container (Default: ."
|
||||
"woocommerce-result-count)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:411
|
||||
msgid "Result Count Container Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:414
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:420
|
||||
msgid "Scroll up to top anchor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:416
|
||||
msgid ""
|
||||
"Enter here the HTML tag for the scroll up to to top feature (Default: .yit-"
|
||||
"wcan-container)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:448
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:455
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:450
|
||||
msgid "Title for the filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:458
|
||||
#: admin/partials/filter-setting.php:24
|
||||
msgid "Attribute"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:460
|
||||
msgid "Existing Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:465
|
||||
msgid "No Attribute Found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:468
|
||||
msgid "Type of filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:470
|
||||
msgid "Use this for filter type."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:475
|
||||
msgid "Select Demo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:477
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:478
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:479
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:480
|
||||
msgid "Dropdown"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:481
|
||||
msgid "Color (In Circle Shape)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:482
|
||||
msgid "Color (In Rectangle Shape)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:486
|
||||
msgid "Query type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:488
|
||||
msgid "Use this for query type."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:494
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:495
|
||||
msgid "AND"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-mwb-product-filter-for-woocommerce-admin.php:501
|
||||
msgid "Save Filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-classes.php:17
|
||||
msgid "Settings Saved !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-setting.php:21
|
||||
msgid "Filter Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-setting.php:22
|
||||
msgid "Filter Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-setting.php:23
|
||||
msgid "Query Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-setting.php:25
|
||||
msgid "Operation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/filter-setting.php:69
|
||||
msgid "Add Filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:24
|
||||
msgid "What is MWB Product Filter for WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:28
|
||||
msgid ""
|
||||
"MWB Product Filter for WooCommerce is a custom filter plugin that allows you "
|
||||
"to enable filters in your WooCommerce store. Your store visitor can easily "
|
||||
"find the product they need using these filters. You can also place these "
|
||||
"product filters as convenient using the provided shortcodes. The benefit you "
|
||||
"will get along with this plugin includes letting you choose the design and "
|
||||
"layout of the filter for your frontend. The free product filter plugin uses "
|
||||
"your product (or service) attributes to let you apply the filters."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:33
|
||||
msgid "With our MWB Product Filter for WooCommerce plugin you can:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:35
|
||||
msgid "Add custom filters using product attributes."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:36
|
||||
msgid "Add a custom loading icon."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:37
|
||||
msgid "Add shortcodes for placement of filters."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:38
|
||||
msgid "Add appealing filter representations such as lists, checkbox, etc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:48
|
||||
msgid "Filter Widget for 5 Layouts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:52
|
||||
msgid ""
|
||||
"The MWB Product Filter for WooCommerce lets you add filters in the form of "
|
||||
"Lists, Labels, Colors (in square shape), dropdown, checkbox/ image. "
|
||||
"Therefore, you can add easy-to-use filters for your customers in the most "
|
||||
"appealing formats."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:66
|
||||
msgid "Reset Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:67
|
||||
msgid ""
|
||||
"The reset button lets your customer uncheck all the selected filters with "
|
||||
"just one click. Thus, this button increases the utility of your WooCommerce "
|
||||
"filters."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:77
|
||||
msgid "Toggle Option"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:78
|
||||
msgid ""
|
||||
"We provide toggle functionality to switch on the filters. This will improve "
|
||||
"the look and feel of your WooCommerce store besides making browsing easier."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:88
|
||||
msgid "Custom Loader"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:92
|
||||
msgid ""
|
||||
"The plugin lets you use the icon of your choice on the loading screen. This "
|
||||
"becomes significant when you have a lot of products in your store and the "
|
||||
"waiting time is relatively more."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-pffw-overview.php:110
|
||||
msgid ""
|
||||
"Using the shortcodes that we provide in the plugin, you can ensure the "
|
||||
"placement of the product filters and the reset button as per your "
|
||||
"convenience."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-product-filter-for-woocommerce-admin-dashboard.php:27
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mwb-product-filter-for-woocommerce-admin-dashboard.php:28
|
||||
#: admin/partials/product-filter-for-woocommerce-system-status.php:26
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/product-filter-for-woocommerce-general.php:17
|
||||
msgid "Shortcode Copied !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/product-filter-for-woocommerce-system-status.php:36
|
||||
msgid "WP Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/product-filter-for-woocommerce-system-status.php:37
|
||||
msgid "WP Values"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/product-filter-for-woocommerce-system-status.php:62
|
||||
msgid "Sysytem Variables"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/product-filter-for-woocommerce-system-status.php:63
|
||||
msgid "System Values"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:299
|
||||
msgid "What is your monthly revenue?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:318
|
||||
msgid "What industry defines your business?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:324
|
||||
msgid "Industry Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:355
|
||||
msgid "What is the best email address to contact you?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:359
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:367
|
||||
msgid "What is your contact number?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:372
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:486
|
||||
msgid ""
|
||||
"Let us know why you are deactivating MWB Product Filter for WooCommerce so "
|
||||
"we can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:490
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce-onboarding-steps.php:766
|
||||
msgid "Unexpected Error Occured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:301
|
||||
msgid "General Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:326
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unable to locate file at location \"%s\". Some features may not work "
|
||||
"properly in this plugin. Please contact us!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:384
|
||||
msgid "N/A (phpversion function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:393
|
||||
msgid "N/A (make sure exec function is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:396
|
||||
msgid "N/A (ABSPATH constant not defined)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:399
|
||||
msgid "N/A (php_uname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:402
|
||||
msgid "N/A (get_bloginfo function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:405
|
||||
msgid "N/A (get_option function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:408
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:411
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:414
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:408
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:411
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:414
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:417
|
||||
msgid "N/A (count_users function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:420
|
||||
msgid "0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:423
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:429
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:432
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:460
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:463
|
||||
msgid "N/A (ini_get function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:426
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:444
|
||||
msgid "N/A (gethostname function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:447
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:456
|
||||
msgid "N/A (make sure exec is enabled)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-product-filter-for-woocommerce.php:466
|
||||
msgid "N/A (file_get_contents function does not exist)"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-product-filter-for-woocommerce.php:192
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-product-filter-for-woocommerce.php:228
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: mwb-product-filter-for-woocommerce.php:228
|
||||
msgid " is not activated, Please activate WooCommerce first to activate "
|
||||
msgstr ""
|
||||
|
||||
#: mwb-product-filter-for-woocommerce.php:228
|
||||
msgid "."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-product-filter-for-woocommerce-deactivation-template.php:33
|
||||
msgid "May we have a little info about why you are deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-product-filter-for-woocommerce-deactivation-template.php:44
|
||||
msgid "Skip and Deactivate Now"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-product-filter-for-woocommerce-onboarding-template.php:27
|
||||
msgid "Welcome to MakeWebBetter"
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-product-filter-for-woocommerce-onboarding-template.php:28
|
||||
msgid ""
|
||||
"We love making new friends! Subscribe below and we promise to keep you up-to-"
|
||||
"date with our latest new plugins, updates, awesome deals and a few special "
|
||||
"offers."
|
||||
msgstr ""
|
||||
|
||||
#: onboarding/templates/mwb-product-filter-for-woocommerce-onboarding-template.php:40
|
||||
msgid "Skip For Now"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/mwb-product-filter-for-woocommerce-public-display.php:18
|
||||
msgid "Product Filter"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/mwb-product-filter-for-woocommerce-public-display.php:29
|
||||
msgid "Reset Filters"
|
||||
msgstr ""
|
||||
109
spec/fixtures/dynamic_finders/plugin_version/my-github/translation_file/languages/my-github.pot
vendored
Normal file
109
spec/fixtures/dynamic_finders/plugin_version/my-github/translation_file/languages/my-github.pot
vendored
Normal file
@@ -0,0 +1,109 @@
|
||||
# Copyright (C) 2021 Ratul Hasan
|
||||
# This file is distributed under the same license as the My Github plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: My Github 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/my-github\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-21T22:55:05+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: my-github\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/templates/my_github_settings.php:14
|
||||
msgid "My Github"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/RatulHasan/my-github"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A simple and nice WordPress plugin that can track your github's profile."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ratul Hasan"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ratuljh.wordpress.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Menu.php:37
|
||||
#: includes/Admin/Menu.php:38
|
||||
msgid "My GitHub"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:60
|
||||
msgid "GitHub Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:66
|
||||
msgid "View Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:85
|
||||
msgid "GitHub Username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:98
|
||||
msgid "Personal Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:111
|
||||
msgid "Show Followers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:125
|
||||
msgid "Show Following"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:139
|
||||
msgid "Show Company"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:153
|
||||
msgid "Show Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:167
|
||||
msgid "Show Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:181
|
||||
msgid "Show Blog"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:195
|
||||
msgid "Show Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:209
|
||||
msgid "Show Public Repos"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:223
|
||||
msgid "Show Repos Language"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:246
|
||||
msgid "Don't have any Personal Access Token?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Settings.php:246
|
||||
msgid "Create one?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Frontend/Shortcode.php:51
|
||||
msgid "GitHub Profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/templates/my_github_profile.php:114
|
||||
msgid "Security check failed!"
|
||||
msgstr ""
|
||||
189
spec/fixtures/dynamic_finders/plugin_version/newspack-newsletters/change_log/CHANGELOG.md
vendored
Normal file
189
spec/fixtures/dynamic_finders/plugin_version/newspack-newsletters/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,189 @@
|
||||
# 1.0.0 (2020-05-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add alpha to branches ([d3549f5](https://github.com/Automattic/newspack-newsletters/commit/d3549f5ea3984cd9b9344e8917f4e7406f81e859))
|
||||
* better docblock description ([f0e592b](https://github.com/Automattic/newspack-newsletters/commit/f0e592b84d3189351e952600ac581c3f69a675cf))
|
||||
* bring back groups ui ([df2da81](https://github.com/Automattic/newspack-newsletters/commit/df2da8186370ade3c849b181c92e0b97d810b6de))
|
||||
* condition ([4083d80](https://github.com/Automattic/newspack-newsletters/commit/4083d80fa3cb3a1b5d62d7ce4309fee2b78cedd9))
|
||||
* crash when editing 'from' fields ([934772a](https://github.com/Automattic/newspack-newsletters/commit/934772a7b10fc181402e416507e9390da2eded13))
|
||||
* custom colors ([125f18c](https://github.com/Automattic/newspack-newsletters/commit/125f18ccf00904d7cf84f5068270a1100201ca73)), closes [#93](https://github.com/Automattic/newspack-newsletters/issues/93)
|
||||
* default values for keys ([a5164dc](https://github.com/Automattic/newspack-newsletters/commit/a5164dc0c21e9c030fe95b7204347135893831ff)), closes [#97](https://github.com/Automattic/newspack-newsletters/issues/97)
|
||||
* error on data retrieval if no mailchimp campaign is set ([203d64b](https://github.com/Automattic/newspack-newsletters/commit/203d64bcbbba81020df3c23a513e2bace1f8295b))
|
||||
* layout preview viewport width ([#84](https://github.com/Automattic/newspack-newsletters/issues/84)) ([779b7cf](https://github.com/Automattic/newspack-newsletters/commit/779b7cf33634e6cb1ebda21f2b837822c31b183a))
|
||||
* link colour and text-decoration ([#125](https://github.com/Automattic/newspack-newsletters/issues/125)) ([29be13d](https://github.com/Automattic/newspack-newsletters/commit/29be13d081667c16c0e2ae66b1b45513ef045885))
|
||||
* missing externallink import, lost in rebase ([e289195](https://github.com/Automattic/newspack-newsletters/commit/e289195fde7ed7eba725d289eb2195d12e78ff53))
|
||||
* missing import; formatting ([1bf80d4](https://github.com/Automattic/newspack-newsletters/commit/1bf80d4c25395198efdab965aaafb68ce50535b7))
|
||||
* missing notice after campaign has been sent ([42a0889](https://github.com/Automattic/newspack-newsletters/commit/42a08891132fcc0bc820ac043102638487961070))
|
||||
* newsletter layouts preview thumbnails ([#175](https://github.com/Automattic/newspack-newsletters/issues/175)) ([7280483](https://github.com/Automattic/newspack-newsletters/commit/7280483e792b2ec5502ec8a538a262616b2aa144))
|
||||
* posts inserter infinite loop ([42508b0](https://github.com/Automattic/newspack-newsletters/commit/42508b06d5f88749e2361342da1bbcdde5c6b57f)), closes [#146](https://github.com/Automattic/newspack-newsletters/issues/146)
|
||||
* posts inserter no-insertion workflow ([#174](https://github.com/Automattic/newspack-newsletters/issues/174)) ([53d8b7c](https://github.com/Automattic/newspack-newsletters/commit/53d8b7cbc93e6939191fb02d79684471f7323502))
|
||||
* prevent duplication after insertion in Posts Inserted block ([#191](https://github.com/Automattic/newspack-newsletters/issues/191)) ([d4ac6d8](https://github.com/Automattic/newspack-newsletters/commit/d4ac6d80dfcde7a6568f8773e2c8747fc77751e6)), closes [#185](https://github.com/Automattic/newspack-newsletters/issues/185)
|
||||
* prevent fetching data if post is not saved yet ([458c8a1](https://github.com/Automattic/newspack-newsletters/commit/458c8a11be477c729ba21507590658c7a411e6d1))
|
||||
* publish button text to send|sending|sent ([6fcbefe](https://github.com/Automattic/newspack-newsletters/commit/6fcbefe3418eb3aaea6a1b1913042e0d6d0cbab8))
|
||||
* sticky text controls ([81e85a7](https://github.com/Automattic/newspack-newsletters/commit/81e85a77d3bfaa0dfc7419fbb40ceaca105ce00c))
|
||||
* **email:** fix custom column width issue ([#168](https://github.com/Automattic/newspack-newsletters/issues/168)) ([2624c48](https://github.com/Automattic/newspack-newsletters/commit/2624c48cc9dc41c38f9e3ed7e9edf4f570980820)), closes [#162](https://github.com/Automattic/newspack-newsletters/issues/162)
|
||||
* prevent updating content of a sent campaign ([cce029e](https://github.com/Automattic/newspack-newsletters/commit/cce029eb5b64e16faed42fcf5ab297588f57a9cd))
|
||||
* regression of test email error/success notifications ([55c12fe](https://github.com/Automattic/newspack-newsletters/commit/55c12fe6c52ae003aac37a835de1934b989f203f))
|
||||
* remove data center prefix from mailchimp url ([c7f741c](https://github.com/Automattic/newspack-newsletters/commit/c7f741c925c6a72376d43db43d296b9e2f412d69))
|
||||
* remove support for background gradients ([#152](https://github.com/Automattic/newspack-newsletters/issues/152)) ([f4b1120](https://github.com/Automattic/newspack-newsletters/commit/f4b112030cacb1b8666d170432d8adc96c7b6ea8))
|
||||
* remove unneeded hr and wrap externallink in a paragraph ([fa9fd68](https://github.com/Automattic/newspack-newsletters/commit/fa9fd68604453ff9ab08877ca84d666205c97a2b))
|
||||
* rename list->audience to reflect mailchimp ([7de6266](https://github.com/Automattic/newspack-newsletters/commit/7de6266883b7b61e17c1b9217e70a6b679f736da))
|
||||
* **blocks:** remove wide alignment for group block ([216aa9f](https://github.com/Automattic/newspack-newsletters/commit/216aa9f7af886791f8eb83ed5a01c02ad1fee69c)), closes [#153](https://github.com/Automattic/newspack-newsletters/issues/153)
|
||||
* remove unnecessary check ([ce6d767](https://github.com/Automattic/newspack-newsletters/commit/ce6d7676b4408dce9c376dc21ff61a3da2c5b5d9))
|
||||
* remove unneeded logic ([57c8ec0](https://github.com/Automattic/newspack-newsletters/commit/57c8ec06d7e3faf8a123160a928eef2adc9554ae))
|
||||
* **sidebar:** store sender data in post meta ([#110](https://github.com/Automattic/newspack-newsletters/issues/110)) ([9dcb9fa](https://github.com/Automattic/newspack-newsletters/commit/9dcb9fab2d9f03a2049157faca4ef739817471b6))
|
||||
* simplify title of newsletter settings panel ([#95](https://github.com/Automattic/newspack-newsletters/issues/95)) ([2897b58](https://github.com/Automattic/newspack-newsletters/commit/2897b58baf294b1ba1429241e99f5c556822a7ae))
|
||||
* support for reusable blocks in newsletters ([fdd72ae](https://github.com/Automattic/newspack-newsletters/commit/fdd72ae60551712cf8d9564bce60da454ae01395))
|
||||
* **editor:** button block alignment ([0486aef](https://github.com/Automattic/newspack-newsletters/commit/0486aef66dc2ac21329840957f734f2b1adab573)), closes [#55](https://github.com/Automattic/newspack-newsletters/issues/55)
|
||||
* add useEffect hook dependencies ([aee78b9](https://github.com/Automattic/newspack-newsletters/commit/aee78b94e577472d5293d294dc1349a26f7d387b))
|
||||
* campaign updating logic; save after template insertion ([7ae882a](https://github.com/Automattic/newspack-newsletters/commit/7ae882a824ceda33a231f29d0c8a48040fa86407))
|
||||
* change logo size to medium ([#50](https://github.com/Automattic/newspack-newsletters/issues/50)) ([db27e64](https://github.com/Automattic/newspack-newsletters/commit/db27e64064815553a6932898349c63014319ed47))
|
||||
* condition ([6f44e03](https://github.com/Automattic/newspack-newsletters/commit/6f44e0303f81f69ada2b7ce981672d88c14a31eb))
|
||||
* corrected license in package and composer files ([1a2fcd3](https://github.com/Automattic/newspack-newsletters/commit/1a2fcd3a2cccbd6bcbbc4f03054ac5da314e753c))
|
||||
* duplicate plugin registration from merge conflict error ([6726994](https://github.com/Automattic/newspack-newsletters/commit/67269940bbbc86197f31a94f1e161653c6f83a60))
|
||||
* ensure attribute exists in renderer ([dc6bbc9](https://github.com/Automattic/newspack-newsletters/commit/dc6bbc9def0b29f454ccd3d9a0cab5380f719e6c))
|
||||
* gpl 2.0 license ([41e7738](https://github.com/Automattic/newspack-newsletters/commit/41e7738a9b4ed4a4f322b5851ad9dc3a93ba92a7))
|
||||
* grid auto rows ([b9d0841](https://github.com/Automattic/newspack-newsletters/commit/b9d0841e444c47616c4013bdc511668b7980fc32))
|
||||
* grid on small screens ([a603ebb](https://github.com/Automattic/newspack-newsletters/commit/a603ebbda4c8b7d35d0007155f2d88edafb495ab))
|
||||
* identical placeholder text for blank template or no template ([7ff325b](https://github.com/Automattic/newspack-newsletters/commit/7ff325bd268c51a00ca75bc514ecc66732a073f2))
|
||||
* image size from template ([07bc7ed](https://github.com/Automattic/newspack-newsletters/commit/07bc7ed124ee3539dc37d720760b5e86979892e0))
|
||||
* include logo image ID in class ([1c7fbd3](https://github.com/Automattic/newspack-newsletters/commit/1c7fbd3960c031de7d7057eb7cbce247f8882c00))
|
||||
* include vendor in release package ([01928b5](https://github.com/Automattic/newspack-newsletters/commit/01928b55353fa7af7a7cd591b29deb8b24bd21c2))
|
||||
* increase mjml request timeout, handle errors ([aa1f3c4](https://github.com/Automattic/newspack-newsletters/commit/aa1f3c4a5cd3450698806bb22d71194e9de12b62))
|
||||
* loading text improvement ([59703cf](https://github.com/Automattic/newspack-newsletters/commit/59703cfe513b32d1c40545ad1ee145ba46cab6b2))
|
||||
* modal content background and preview items since gutenberg 7.9 ([#49](https://github.com/Automattic/newspack-newsletters/issues/49)) ([3eb5f1e](https://github.com/Automattic/newspack-newsletters/commit/3eb5f1e546c21d51324eb5509b366fe5c3a9a712))
|
||||
* move settings menu item to newspack newsletters menu ([b562a39](https://github.com/Automattic/newspack-newsletters/commit/b562a397f605aef0331087debbd70ed8ed60eeb5))
|
||||
* overflow scroll to preview ([cd0289f](https://github.com/Automattic/newspack-newsletters/commit/cd0289fcf8c3c13057005a605117f79b8bc69124))
|
||||
* patterns overflow when screen height is smaller ([e443814](https://github.com/Automattic/newspack-newsletters/commit/e443814aa8fe700915c9687987fc1e02db152267))
|
||||
* remove group block from template 1 to have focus on sitename ([1cd40ec](https://github.com/Automattic/newspack-newsletters/commit/1cd40ec8643e9fe9f8a9e2960eb993b4335193a4))
|
||||
* remove pointer-events when layout is selected ([3fc35fb](https://github.com/Automattic/newspack-newsletters/commit/3fc35fb9a8bb50c396693f9c7ea3c1dbe7811b2d))
|
||||
* remove todo that has been addressed ([fffbcd2](https://github.com/Automattic/newspack-newsletters/commit/fffbcd25eca2b7637f162566eee1725ba90de19a))
|
||||
* rename interests to groups ([d8f8802](https://github.com/Automattic/newspack-newsletters/commit/d8f8802a144c3a4a91bcb52a1686665ab9963e86))
|
||||
* rename labels ([0fd0ac2](https://github.com/Automattic/newspack-newsletters/commit/0fd0ac2c866062b2333e715d57430b53bc038eab))
|
||||
* replace SVGs with PNG in social icons folder ([bf79d6f](https://github.com/Automattic/newspack-newsletters/commit/bf79d6f48fbfffe09aa8f57563880aa125b51d5f)), closes [#38](https://github.com/Automattic/newspack-newsletters/issues/38)
|
||||
* resolve error occurring before list selection ([3aae4d4](https://github.com/Automattic/newspack-newsletters/commit/3aae4d4d3eaad66277c678bf9431bd5d414bba3c))
|
||||
* **template-modal:** prevent modal closing after autosave ([12965c4](https://github.com/Automattic/newspack-newsletters/commit/12965c4c2aea11c7cd18b95836d76676b6057c56)), closes [#45](https://github.com/Automattic/newspack-newsletters/issues/45)
|
||||
* send content to mailchimp immediately before sending campaign ([0d0bb5a](https://github.com/Automattic/newspack-newsletters/commit/0d0bb5a656688ad431cfb4e2c7364371ac41f2eb))
|
||||
* template image ([e77d1b0](https://github.com/Automattic/newspack-newsletters/commit/e77d1b02e1b0d88d863dc604cad83ae49aa1711f))
|
||||
* templates ([a1cb385](https://github.com/Automattic/newspack-newsletters/commit/a1cb38500709346c7942a6b0e207c1374510a9d9))
|
||||
* **validation:** invalid by default ([89ce8a9](https://github.com/Automattic/newspack-newsletters/commit/89ce8a93470707170b02687e9d0ed7e0def95de4))
|
||||
* settings update api supports individual fields ([cd7b18f](https://github.com/Automattic/newspack-newsletters/commit/cd7b18fa1483fd8adec65a6277d396ff5147b657))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* remove any other editor modifications ([#8](https://github.com/Automattic/newspack-newsletters/issues/8)) ([2cb3f4c](https://github.com/Automattic/newspack-newsletters/commit/2cb3f4c72c59abbfb782dd97e37a074e7473b2a5))
|
||||
* activation nag ([1cc6f04](https://github.com/Automattic/newspack-newsletters/commit/1cc6f040d94f33b605a0d830de5e14e07cf4902f))
|
||||
* add back a single spinner during XHR requests ([3c0d097](https://github.com/Automattic/newspack-newsletters/commit/3c0d097a77507dbaffe4d6fad6a3454d405beb48))
|
||||
* add class to wrapper when XHR request is in flight ([feb9db6](https://github.com/Automattic/newspack-newsletters/commit/feb9db64607d7137cc28a1753893fbfac4aa0da9))
|
||||
* add email validation ([#79](https://github.com/Automattic/newspack-newsletters/issues/79)) ([9b1dbb1](https://github.com/Automattic/newspack-newsletters/commit/9b1dbb1681d8ebca53dadabcf6ff9a9ac1b23690))
|
||||
* add Posts Inserter block ([#47](https://github.com/Automattic/newspack-newsletters/issues/47)) ([f36d8f3](https://github.com/Automattic/newspack-newsletters/commit/f36d8f35a1d6eb73364348b1efc115bddb42a666))
|
||||
* add posts inserter to modal and strip placeholder style ([#98](https://github.com/Automattic/newspack-newsletters/issues/98)) ([9fc9f46](https://github.com/Automattic/newspack-newsletters/commit/9fc9f466827c9ebe81c9a2bed4192714b2405f00))
|
||||
* add pre-send confirmation ([#181](https://github.com/Automattic/newspack-newsletters/issues/181)) ([3579363](https://github.com/Automattic/newspack-newsletters/commit/35793632d56c36096f9b422aa971bde4eda4eb03)), closes [#139](https://github.com/Automattic/newspack-newsletters/issues/139)
|
||||
* add preview modal ([#59](https://github.com/Automattic/newspack-newsletters/issues/59)) ([515f281](https://github.com/Automattic/newspack-newsletters/commit/515f2812516b338d98b6a0d3f623b7ad2b38a584))
|
||||
* add spacer block support ([996cb69](https://github.com/Automattic/newspack-newsletters/commit/996cb69b433f64a17d2b5abc31303f5dfd52be00)), closes [#100](https://github.com/Automattic/newspack-newsletters/issues/100)
|
||||
* adjust style of the settings ([3b94145](https://github.com/Automattic/newspack-newsletters/commit/3b941450ff70c27c220fa834932bde5696974f97))
|
||||
* api key ui in modal ([e6f9a6a](https://github.com/Automattic/newspack-newsletters/commit/e6f9a6a57df55b0ba1badb1c79ac19343a242fef))
|
||||
* change order of sidebar panels ([405773d](https://github.com/Automattic/newspack-newsletters/commit/405773d346dcf4e1135422faa85d22e54769f934))
|
||||
* clear notifications before showing success or error ([ab45d60](https://github.com/Automattic/newspack-newsletters/commit/ab45d604fefe1360d0646a3fbd57e0f394cd7aae))
|
||||
* clearer error messages ([b165075](https://github.com/Automattic/newspack-newsletters/commit/b165075401ad82f317dd2d102dde4c547b0811ef))
|
||||
* disabled options and empty subscribers info in select ([44cc68f](https://github.com/Automattic/newspack-newsletters/commit/44cc68f8bb7da02e266515462bbd27ff3d6642a4))
|
||||
* enable selecting specific post ids ([#170](https://github.com/Automattic/newspack-newsletters/issues/170)) ([1781d60](https://github.com/Automattic/newspack-newsletters/commit/1781d60e0415e0a449032c6656a4e098bd705d0e))
|
||||
* error catching and notification for lists and groups ([8582c04](https://github.com/Automattic/newspack-newsletters/commit/8582c04ebdd8c4c9ac50750e28d2d21dfc3135a5))
|
||||
* error handling in save and publish operations ([eac62c2](https://github.com/Automattic/newspack-newsletters/commit/eac62c2d9ff4b89d82bafd8ebfb87acaa9d85bc5))
|
||||
* error notifications for from name/email changes ([887afee](https://github.com/Automattic/newspack-newsletters/commit/887afeeef013d62c44dc0a3e68a8e3b3baa158e8))
|
||||
* error notifications when retrieving mailchimp data ([ce4fb32](https://github.com/Automattic/newspack-newsletters/commit/ce4fb32951b02cb93cb9dc0be31be6e5811507d1))
|
||||
* field-level error handling for sender email ([d1bcfaf](https://github.com/Automattic/newspack-newsletters/commit/d1bcfaf063b1bf8b92c0501b291f6ceb13069ce8))
|
||||
* fullscreen modal show the edit-post-fullscreen-mode-close button ([0cc6d5d](https://github.com/Automattic/newspack-newsletters/commit/0cc6d5db4f111ee2f64443bc07eb6d9711fb42c8))
|
||||
* handle campaign fetching in editor plugin ([a7a86e2](https://github.com/Automattic/newspack-newsletters/commit/a7a86e25b96e471683516b356c5b371accbf32f1))
|
||||
* handle color palette as it appears in the editor ([#176](https://github.com/Automattic/newspack-newsletters/issues/176)) ([862d3cf](https://github.com/Automattic/newspack-newsletters/commit/862d3cf712ffa7bc7ce72f0649d343f32f877d4b)), closes [#173](https://github.com/Automattic/newspack-newsletters/issues/173)
|
||||
* handle uninserted Posts Inserter block state ([#127](https://github.com/Automattic/newspack-newsletters/issues/127)) ([15b47b2](https://github.com/Automattic/newspack-newsletters/commit/15b47b2f8e80b5b5f9bfe7b45aa0906902c706d6)), closes [#114](https://github.com/Automattic/newspack-newsletters/issues/114)
|
||||
* hoc to handle api requests, notifications ([1be5ada](https://github.com/Automattic/newspack-newsletters/commit/1be5adad8e5a8fcaee20143e3cf8407ddbd0e7cd))
|
||||
* improved permissions ([a564813](https://github.com/Automattic/newspack-newsletters/commit/a564813485aee9eb5272210134b8f8513aef16b5))
|
||||
* list management link ([aa90782](https://github.com/Automattic/newspack-newsletters/commit/aa90782582bc922f98621ac66416d68ff173e1ab))
|
||||
* move preview button to post status slot ([1f450e2](https://github.com/Automattic/newspack-newsletters/commit/1f450e2c645aa56ca08049f3e7258ad4c63a2479))
|
||||
* move testing panel above layout ([d35b2ad](https://github.com/Automattic/newspack-newsletters/commit/d35b2ad41320d0ce086dd2822fc4d4948a07b11b))
|
||||
* override publish button ([2786afb](https://github.com/Automattic/newspack-newsletters/commit/2786afbc495506a60dc5f0701d9587dad78ffb16))
|
||||
* pass color settings from group and column blocks ([9f8a73e](https://github.com/Automattic/newspack-newsletters/commit/9f8a73e2204d67eee716ef2f4c7236bc589086cb))
|
||||
* prevent duplicate posts when multiple Posts Inserter instances ([#167](https://github.com/Automattic/newspack-newsletters/issues/167)) ([bbdbc3e](https://github.com/Automattic/newspack-newsletters/commit/bbdbc3e9820a65121711041dd9913ff16e0142a0)), closes [#147](https://github.com/Automattic/newspack-newsletters/issues/147)
|
||||
* remove custom preview button ([#136](https://github.com/Automattic/newspack-newsletters/issues/136)) ([d0e3eff](https://github.com/Automattic/newspack-newsletters/commit/d0e3eff5e874cbc557dff33e5a17907a19f322da))
|
||||
* remove post content before changing layout ([f253342](https://github.com/Automattic/newspack-newsletters/commit/f253342deae01247ddeb27713fecf060fbcf3bf4))
|
||||
* remove spinners, disable submission while fields are empty ([5607807](https://github.com/Automattic/newspack-newsletters/commit/5607807fb62cb91a9fdd38a0676b2cab45e08ef8))
|
||||
* reorder the sidebar settings ([#56](https://github.com/Automattic/newspack-newsletters/issues/56)) ([e9c4630](https://github.com/Automattic/newspack-newsletters/commit/e9c4630387910460bd6bff111f63f1a7d844d758))
|
||||
* save post before previewing or sending test email ([#108](https://github.com/Automattic/newspack-newsletters/issues/108)) ([cc05ed9](https://github.com/Automattic/newspack-newsletters/commit/cc05ed9ab162d657edfd2ef2b0d2fe45abb37b1b)), closes [#25](https://github.com/Automattic/newspack-newsletters/issues/25)
|
||||
* send button support for pending state ([db15bc6](https://github.com/Automattic/newspack-newsletters/commit/db15bc67fcc001d6dd3034e968122b2d82bb0df7))
|
||||
* separate panel for test email ui ([28a3be5](https://github.com/Automattic/newspack-newsletters/commit/28a3be5abf4db35180f5f4a1d38da07cff35246b))
|
||||
* sidebar ui to change template ([4b6da11](https://github.com/Automattic/newspack-newsletters/commit/4b6da11973355be91587bc8659cfb42dc2a8852d))
|
||||
* success/error messages when sending test emails ([1afb952](https://github.com/Automattic/newspack-newsletters/commit/1afb95213196488b7feca41375754ce04716cf04))
|
||||
* support image alignment in Posts Inserter block ([#137](https://github.com/Automattic/newspack-newsletters/issues/137)) ([0b1b446](https://github.com/Automattic/newspack-newsletters/commit/0b1b446661026a2f8649e5bc95d9b8250ea0a231)), closes [#128](https://github.com/Automattic/newspack-newsletters/issues/128)
|
||||
* support post scheduling ([db5c5be](https://github.com/Automattic/newspack-newsletters/commit/db5c5be4ff86045c83be64b4d829b311a02cba29))
|
||||
* template picker initial selection improvements ([af1bd2e](https://github.com/Automattic/newspack-newsletters/commit/af1bd2e208d0f75bc39a5d4286f45643919ef201))
|
||||
* throw error for unverified reply-to email ([8ba7906](https://github.com/Automattic/newspack-newsletters/commit/8ba7906a471b58d819165316187bdcbf4832bf8d))
|
||||
* update default layouts ([#192](https://github.com/Automattic/newspack-newsletters/issues/192)) ([5415704](https://github.com/Automattic/newspack-newsletters/commit/541570465307caf83bb62586ec8f3b35bfa62e89))
|
||||
* update general padding of newsletter to increase white space ([#178](https://github.com/Automattic/newspack-newsletters/issues/178)) ([e18064f](https://github.com/Automattic/newspack-newsletters/commit/e18064f48d1d40bb64147bfe31a41b4536deb1ad))
|
||||
* update post inserter placeholder style ([#83](https://github.com/Automattic/newspack-newsletters/issues/83)) ([916afa8](https://github.com/Automattic/newspack-newsletters/commit/916afa8d2c8a3fcb0306281472a999604559a277))
|
||||
* update posts inserter defaults ([#99](https://github.com/Automattic/newspack-newsletters/issues/99)) ([05d761f](https://github.com/Automattic/newspack-newsletters/commit/05d761f07863a499880a7c70adeca827d16cfb7f))
|
||||
* update posts inserter preview margins ([#182](https://github.com/Automattic/newspack-newsletters/issues/182)) ([7df27cc](https://github.com/Automattic/newspack-newsletters/commit/7df27ccd23cb30450a4e1a164b6c85a036f3650d))
|
||||
* update style of the layout preview and modal ([05c592f](https://github.com/Automattic/newspack-newsletters/commit/05c592f72728cdfbccd8efa29c08520b53699622))
|
||||
* update style when settings are in-flight ([fc46333](https://github.com/Automattic/newspack-newsletters/commit/fc463334d1fcf530686bf36a4d4d3ebac2db6e4a))
|
||||
* update templates ([be014b4](https://github.com/Automattic/newspack-newsletters/commit/be014b44212ce6d420fcf25eee182257ff8260ec))
|
||||
* wrap action buttons around a div for better positioning ([0b28524](https://github.com/Automattic/newspack-newsletters/commit/0b28524efd14655abf7ef2d0c2fdc84753a140da))
|
||||
* **sidebar:** default values ([d9e0bef](https://github.com/Automattic/newspack-newsletters/commit/d9e0bef35eef3236a5124df97f8e7d831f4405f3))
|
||||
* add blank layout ([70d9058](https://github.com/Automattic/newspack-newsletters/commit/70d9058871173d44571d8eb67f8d4cee1e181212))
|
||||
* add new layouts: daily/weekly (no image), breaking news, breaking news (no image), and support ([#48](https://github.com/Automattic/newspack-newsletters/issues/48)) ([424b550](https://github.com/Automattic/newspack-newsletters/commit/424b55095979a8fe398d60e779bb8d15a63e4b06))
|
||||
* add new template ([aa0336f](https://github.com/Automattic/newspack-newsletters/commit/aa0336ffceca95f5bb7e2254e8a0107840ddfea7))
|
||||
* add preview modal ([41c7348](https://github.com/Automattic/newspack-newsletters/commit/41c73481bdde02db917ae11e800f94843fc95338))
|
||||
* add template selection modal ([a765ddc](https://github.com/Automattic/newspack-newsletters/commit/a765ddc78eed8b419217a1db647fcd75aa3abba0))
|
||||
* adjust layout modal style to be fullscreen ([2378fd0](https://github.com/Automattic/newspack-newsletters/commit/2378fd0cb7f459499422c612361cdd72a82a4af0))
|
||||
* adjust ui if campaign is sent or sending ([69e60d0](https://github.com/Automattic/newspack-newsletters/commit/69e60d009c83187b67dd4f585cfa9dfe2644245f))
|
||||
* allow unsetting interest groups ([5498f66](https://github.com/Automattic/newspack-newsletters/commit/5498f666771bc8f51a9b06eb89599838b0d93063))
|
||||
* author newsletters in wordpress ([311de03](https://github.com/Automattic/newspack-newsletters/commit/311de0393b238f019bebe0ffed37fe1aa6f29bd9))
|
||||
* block publish and notify for missing sender fields ([a3269a2](https://github.com/Automattic/newspack-newsletters/commit/a3269a22bc909756cd6898443a7e38b1b6793074))
|
||||
* blocks to MJML conversion ([#5](https://github.com/Automattic/newspack-newsletters/issues/5)) ([5a30354](https://github.com/Automattic/newspack-newsletters/commit/5a30354418ca690ab97cd519e586ce0b3eb2c495))
|
||||
* clear mailchimp campaign id when post is trashed ([47810eb](https://github.com/Automattic/newspack-newsletters/commit/47810eb8c6c7f00c95071b3c4ce2c733791970e6))
|
||||
* custom field to assess template readiness ([5d8b6a3](https://github.com/Automattic/newspack-newsletters/commit/5d8b6a3642abb5495529f112322e61a9efe2c37c))
|
||||
* delete unsent mailchimp campaigns when cpt trashed ([164009f](https://github.com/Automattic/newspack-newsletters/commit/164009f27e099027084700428053e70bada08479))
|
||||
* disable column alignment ([a16876e](https://github.com/Automattic/newspack-newsletters/commit/a16876eb098e2b47fe614504608da386335ffcbb))
|
||||
* disable editor styles ([7f592df](https://github.com/Automattic/newspack-newsletters/commit/7f592df4018a82d1ccfeb465db9bfce539f8a529))
|
||||
* disable gradients for the Newsletter custom post type ([742e141](https://github.com/Automattic/newspack-newsletters/commit/742e1412b82a2603481590c074fa107566efa7fd))
|
||||
* display modal on new newsletter posts ([1247c59](https://github.com/Automattic/newspack-newsletters/commit/1247c5980886ea609ac4313d6b18d206f1680d42))
|
||||
* display validation errors in pre-publish slot ([92dd7d1](https://github.com/Automattic/newspack-newsletters/commit/92dd7d1cb82c4a7af5574b0e22dc7c5d7430f8f8))
|
||||
* display warnings in editor for unsupported features ([#9](https://github.com/Automattic/newspack-newsletters/issues/9)) ([1edd153](https://github.com/Automattic/newspack-newsletters/commit/1edd153fcfca0d2eec2f55accfe087f981e7793f))
|
||||
* handle campaign validation via post meta field ([58d090d](https://github.com/Automattic/newspack-newsletters/commit/58d090d6a54069ad7743b42f4876eccd34ee6e65))
|
||||
* handle group block ([#10](https://github.com/Automattic/newspack-newsletters/issues/10)) ([eda73d2](https://github.com/Automattic/newspack-newsletters/commit/eda73d2d03027ade775c5c698a4964656055a39d))
|
||||
* hide editor preview ui ([37315d0](https://github.com/Automattic/newspack-newsletters/commit/37315d00f4246d1b58039366a6a8d118e4116cd7))
|
||||
* hide title, add subject field in sidebar ([33fc00a](https://github.com/Automattic/newspack-newsletters/commit/33fc00a389ea585f2107443efb0cc1e2755c0553))
|
||||
* inputs for test email and sender ([09fa566](https://github.com/Automattic/newspack-newsletters/commit/09fa56610c696eaf7c2ae463cb49e503847c5906))
|
||||
* live block preview ([7247383](https://github.com/Automattic/newspack-newsletters/commit/72473836c2a20bcf9dedf8bad874af1786972037))
|
||||
* loading ui in pre publish checklist ([193edcb](https://github.com/Automattic/newspack-newsletters/commit/193edcbc8b8e41c8073abdce37c3114fe5ad4c3e))
|
||||
* move MJML creds to plugin settings ([06840ad](https://github.com/Automattic/newspack-newsletters/commit/06840ad514f1fa9702a9db53f6035868f9f22ec5)), closes [#16](https://github.com/Automattic/newspack-newsletters/issues/16)
|
||||
* multiple test emails ([8e0b444](https://github.com/Automattic/newspack-newsletters/commit/8e0b4443a2e72daa1c9ab91c58a7a4251c7ccc46))
|
||||
* placeholder text for no template or blank template ([6bbfcfe](https://github.com/Automattic/newspack-newsletters/commit/6bbfcfe94d5ad87cb9a41540b33dce4743afe7a6))
|
||||
* placeholder text for no template or blank template ([a378b54](https://github.com/Automattic/newspack-newsletters/commit/a378b54e6ba5d0c6b676d9c7020b0a32a8fbd352))
|
||||
* publish button state, pre-publish message ([eb6ed6f](https://github.com/Automattic/newspack-newsletters/commit/eb6ed6f2e2c380c17d4263e92b2ab057e4538476))
|
||||
* remove any other editor modifications ([946bc04](https://github.com/Automattic/newspack-newsletters/commit/946bc046b59e42e9be5b23ce4506a3988a0d5603))
|
||||
* remove image and use blockpreview instead ([dd0e489](https://github.com/Automattic/newspack-newsletters/commit/dd0e4897e9cf8452fcbf8c214e92458def04eb19))
|
||||
* remove is_ready meta ([1866393](https://github.com/Automattic/newspack-newsletters/commit/18663938dab2a3e93d16959978ffb9bec1e6730f))
|
||||
* remove send btn, sender name/email from campaign ([397f41f](https://github.com/Automattic/newspack-newsletters/commit/397f41fd5074dbe5f660b2217bf3181aa5ef3621))
|
||||
* Remove Unsupported Features From Core Blocks ([2184d1f](https://github.com/Automattic/newspack-newsletters/commit/2184d1f84cdc9d6cfd37f16c59fa7e52123ac5f2))
|
||||
* remove unsupported features of core blocks ([69a0f10](https://github.com/Automattic/newspack-newsletters/commit/69a0f10c34845f8aa6fac0ee2823d96c68b27bf6))
|
||||
* reorganize folders and remove images ([c2e643c](https://github.com/Automattic/newspack-newsletters/commit/c2e643cb8efcfba90431dac05976565fa47ae024))
|
||||
* save/publish flow ([757162c](https://github.com/Automattic/newspack-newsletters/commit/757162cfbfe301d2fa06979c8d82f1b554b8075f))
|
||||
* select mailchimp interests ([59f0643](https://github.com/Automattic/newspack-newsletters/commit/59f064315b7f1833212be6f3978461a9107cfedc))
|
||||
* select to display mailchimp interests (groups) ([48d1366](https://github.com/Automattic/newspack-newsletters/commit/48d136601af73b154e05167306853381cef512b1))
|
||||
* sender name/email updating ([85ac847](https://github.com/Automattic/newspack-newsletters/commit/85ac847d196ef3822d89164871b6d8438cb33803))
|
||||
* sidebar subject input ([321f047](https://github.com/Automattic/newspack-newsletters/commit/321f047dc892f9c14cca4c697e414509fbf0a080))
|
||||
* template insertion ([452c48b](https://github.com/Automattic/newspack-newsletters/commit/452c48b81fac539abde77598252558171f2e6ea4))
|
||||
* template selection modal - display regardless of side panel status ([9656712](https://github.com/Automattic/newspack-newsletters/commit/9656712c31061d005d271732fa6640ec2feb7318))
|
||||
* token replace function, logo or sitename token ([0bc8875](https://github.com/Automattic/newspack-newsletters/commit/0bc88750d8cf2c7167ddb745cbc4c8579df54393))
|
||||
* update campagin on save, send campaign on publish ([c316923](https://github.com/Automattic/newspack-newsletters/commit/c3169239c668465130915d1af81ed033cb64fcae))
|
||||
* update display of patterns using grid ([6e04641](https://github.com/Automattic/newspack-newsletters/commit/6e046419f8e2781405fbe26d7a3c80af11d8f62d))
|
||||
* update menu icon to material's alternate_email ([#6](https://github.com/Automattic/newspack-newsletters/issues/6)) ([f8ecaa4](https://github.com/Automattic/newspack-newsletters/commit/f8ecaa4914dc1c9a0dc2ab0ba90913ca1851d9c4))
|
||||
* update pre-check with notice and reorganize sidebar ([#42](https://github.com/Automattic/newspack-newsletters/issues/42)) ([ad9b6c1](https://github.com/Automattic/newspack-newsletters/commit/ad9b6c1fdf1461713d294a6a908915abbed21356))
|
||||
* update settings description to match MJML api email ([#46](https://github.com/Automattic/newspack-newsletters/issues/46)) ([df826c7](https://github.com/Automattic/newspack-newsletters/commit/df826c74401e46d308a15d4b0901912a4c11ec2c))
|
||||
* use current date as default title ([32ce655](https://github.com/Automattic/newspack-newsletters/commit/32ce65530965e303958ed8b0c5066e8091bc6541))
|
||||
* warn about nested groups ([43fb115](https://github.com/Automattic/newspack-newsletters/commit/43fb115d3c7bd6cdf930a0843a18f6d7dd5ad690))
|
||||
* **template:** thumbnail logo size ([65eba93](https://github.com/Automattic/newspack-newsletters/commit/65eba93bae2f35e1f1c686cad57115e0658217a2))
|
||||
* wrap modal content around its own div ([6cf6c3b](https://github.com/Automattic/newspack-newsletters/commit/6cf6c3b11159977eb9aaadd0d0b9c637a7a00d3e))
|
||||
522
spec/fixtures/dynamic_finders/plugin_version/nextgen-gallery-pro/change_log/changelog.txt
vendored
Normal file
522
spec/fixtures/dynamic_finders/plugin_version/nextgen-gallery-pro/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,522 @@
|
||||
NextGEN Pro
|
||||
by Imagely
|
||||
|
||||
= V3.1.7 - 01.14.2021 =
|
||||
* Fixed: Pro Lightbox not opening via trigger icons
|
||||
* Fixed: Removed Composer dev dependencies from build
|
||||
|
||||
= V3.1.5 - 01.13.2021 =
|
||||
* Fixed: Pro Lightbox not opening
|
||||
* Fixed: Direct digital download links not working
|
||||
* Fixed: Coupon details could not be saved or edited
|
||||
* Fixed: Image proofs could not be submitted
|
||||
* Fixed: PHP 8 compatibility
|
||||
|
||||
= v3.1.2 - 11.25.2020 =
|
||||
* Fixed: The "Search" display type could not search or tag filter using some UTF8 characters
|
||||
* Changed: Several changes have been made for future jQuery 3.5 compatibility
|
||||
|
||||
= V3.0.18 - 08.17.2020 =
|
||||
* Fixed: Manage Pricelist page had several features broken by the WordPress 5.5 update
|
||||
|
||||
= v3.0.17 - 08.14.2020 =
|
||||
* Fixed: Proofing submission and some ecommerce cart functions were broken by the WordPress 5.5 update
|
||||
|
||||
= v3.0.16 - 08.10.2020 =
|
||||
* Fixed: Digital downloads were being served from the 'main' rather than 'backup' image files
|
||||
* Fixed: Hover captions are broken with WordPress 5.5's jQuery upgrade
|
||||
* Fixed: Hover captions styling was slightly misaligned with MS Edge
|
||||
|
||||
= v3.0.15 - 07.22.2020 =
|
||||
* NEW: Added 'minimum relevance' setting to Search display type
|
||||
* Fixed: "Delete pricelist" button was not working
|
||||
* Fixed: Allow digital downloads of images to continue even if the image is deleted from NextGen as long as the file remains on the server
|
||||
* Fixed: Bulk actions dropdown on Manage Orders didn't always appear
|
||||
* Fixed: ECommerce setup wizard was halting at step 4
|
||||
* Fixed: Fixed a PHP warning generated when calculating sales taxes
|
||||
* Fixed: Hover captions would misalign Pro Tile displays
|
||||
* Fixed: PayPal Checkout transactions failed if a coupon was applied to the cart
|
||||
* Fixed: PayPal Checkout would not work with non-USD currencies
|
||||
* Fixed: Pro Lightbox routing issue could cause the incorrect image to appear when loaded a second time
|
||||
* Fixed: Pro Search's template used incorrect HTML closing tags
|
||||
* Fixed: Search display types could not be inserted into a page when results were limited to albums that were also sub-albums to another album
|
||||
* Fixed: The regions of France was out of date and required adjustments
|
||||
|
||||
= v3.0.13 - 04.21.2020 =
|
||||
* Changed: Pro Lightbox will now enforce a minimum of 50% available screenpace when calculating padding
|
||||
* Fixed: "(number) items" string in the cart sidebar was not translateable
|
||||
* Fixed: 'Open in Pro Lightbox' setting not being honored by Pro Albums
|
||||
* Fixed: Buttons on the cart checkout page were styled incorrectly with the Photocrati theme
|
||||
* Fixed: Cart checkout page was not showing countries in the shipping fields when using IE11
|
||||
* Fixed: Cart sidebar would generate javascript errors when using IE11
|
||||
* Fixed: Images with very long descriptions could not be shared to Pinterest due to URL limits
|
||||
* Fixed: Pro Film displays were not centered
|
||||
* Fixed: Pro Film images were not center aligned when using the Photocrati theme
|
||||
* Fixed: Pro Lightbox was bugged when viewing the results of a Pro Search display type
|
||||
* Fixed: Removed inline javascript from display type templates
|
||||
* Fixed: Resetting non-ecommerce settings caused the 'studio email' field to lose its value
|
||||
* Fixed: Stripe webhook was failing to automatically mark orders as paid while generating an error about signature verification
|
||||
* Fixed: Trim whitespace from shipping information when validating and processing orders
|
||||
|
||||
= v3.0.10 - 03.16.2020 =
|
||||
* NEW: Added WP-CLI methods for viewing pricelists and orders
|
||||
* NEW: Added frontend image search display type
|
||||
* NEW: Added optional image title and descriptions to Pro Film displays
|
||||
* Changed: Removed use of jquery.placeholder.js as it is no longer needed
|
||||
* Fixed: Applying an invalid coupon after a valid coupon did not remove the valid coupon from the cart
|
||||
* Fixed: Browser validation was failing to highlight the pricelist title field when saving a pricelist without a title
|
||||
* Fixed: Customer order confirmation page did not include the second shipping line if provided
|
||||
* Fixed: Horizontal filmstrip carousels were appearing incorrectly when using a right-to-left language
|
||||
* Fixed: Hover Captions did not appear correctly with the TwentyTwenty theme
|
||||
* Fixed: Hover captions' "Titlebar" style was displaying incorrectly
|
||||
* Fixed: Prevent Pro Albums from displaying duplicate sub-albums and galleries when more than one Pro Album display exists on a page
|
||||
* Fixed: Pro Albums could not display albums / galleries if they included an ampersand in their title
|
||||
* Fixed: Pro Masonry displays were not working if the WordPress provided masonry.js was enqueued
|
||||
* Fixed: Pro Sidescroll displays could sometimes show a horizontal scrollbar
|
||||
* Fixed: Stripe orders were not including discounts from coupons
|
||||
* Fixed: Stripe webhook handler was not sending admin notifications when encountering errors
|
||||
* Fixed: Twitter Cards were passing a deprecated parameter
|
||||
|
||||
= v3.0.9 - 12.12.2019 =
|
||||
* NEW: Added new PayPal Checkout payment gateway
|
||||
* NEW: Added 'ngg_order_details_content' filter to control order confirmation text
|
||||
* NEW: Added methods to WP-CLI to view and manipulate pricelists
|
||||
* Changed: Include WHCC nexus states in sales tax by default if print lab is ready
|
||||
* Changed: Increased list of WHCC nexus states from 8 to 31
|
||||
* Changed: Renamed nextgen-gallery-pro.po to nextgen-gallery-pro.pot for better Loco Translate compatibility
|
||||
* Changed: Set NGG_PRO_USE_WHCC_NEXUS to TRUE by default if print lab is ready
|
||||
* Changed: The Stripe payment gateway no longer requires manually verifying the private key provided
|
||||
* Changed: Updated basil.js used by ecommerce for cart storage
|
||||
* Changed: Updated datetimepicker.js used by the coupons admin
|
||||
* Changed: Updated pressure.js used for image protection features
|
||||
* Changed: Updated sprintf.js used by ecommerce templates
|
||||
* Changed: Updated velocity.js used by the pro lightbox to scroll the comments sidebar
|
||||
* Fixed: Coupon codes could not be saved or edited when the site language was not English
|
||||
* Fixed: Digital Downloads did not appear on the cart sidebar if they did not exceed minimum requirements
|
||||
* Fixed: Hover captions sometimes caused JS errors if both image titles and descriptions were hidden
|
||||
* Fixed: Masonry galleries could have small thumbnails along the right column with certain themes (like TwentyTwenty)
|
||||
* Fixed: PayPal IPN events were generating multiple print lab orders
|
||||
* Fixed: Some cart sidebar texts were not translating
|
||||
* Fixed: Stripe checkout with free items in the cart would result in an error given to the customer
|
||||
* Fixed: Submitting image proofs was bugged when the site language was not English
|
||||
* Fixed: Testing keys or gateways were generating actual WHCC orders
|
||||
* Fixed: The category dropdown when adding new pricelist items was not displaying correctly with WordPress 5.3
|
||||
* Fixed: The shopping cart page loading-spinner appeared incorrectly with TwentyTwenty
|
||||
|
||||
= V3.0.6 - 11.06.2019 =
|
||||
* Fixed: Stripe orders not marked as paid automatically.
|
||||
* NOTE: Please click "Verify Stripe Keys" in Ecommerce Options -> Payment Gateways -> Stripe
|
||||
|
||||
= V3.0.5 - 10.15.2019 =
|
||||
* NEW: (Optional) Free download items can now be downloaded directly from the Pro Lightbox cart sidebar
|
||||
* Changed: Made "Resize images" feature an option when selling manually fulfilled items
|
||||
* Changed: Stripe SDK has been upgraded to support 3DS. Now requires PHP 5.4.0+
|
||||
* Changed: Updated gettext PO source
|
||||
* Fixed: Applying an invalid coupon on the cart page would display "Invalid coupon" but apply the deduction anyway on the cart page display
|
||||
* Fixed: Irish 'Eircode' were not validating correctly
|
||||
* Fixed: Orders consisting entirely of downloadable items were being marked 'unpaid' if processed via PayPal
|
||||
* Fixed: Orders processed by PayPal Express were not displaying the gateway name in the "Payment Gateway" column on the View Orders page
|
||||
* Fixed: Orders with items from more than one pricelist could have the shipping costs applied for each pricelist
|
||||
* Fixed: Pro Tiled Gallery images sometimes had incorrect sizing and/or aspect ratios
|
||||
* Fixed: Some PayPal Standard IPN were not being processed
|
||||
* Fixed: Subtotal amounts were not updating on the cart page when users with coupons changed item quantities
|
||||
|
||||
= v3.0.4 - 09.17.2019 =
|
||||
* Changed: Renamed zip to postal code (more universal)
|
||||
* Changed: Removed fullscreen button in Pro Lightbox (deprecated by browsers)
|
||||
* Fixed: Add to cart buttons not appearing in IE Edge
|
||||
* Fixed: Pro Lightbox urls invalid and not sharable
|
||||
* Fixed: Do not allow items added to the cart without ecommerce requirements met
|
||||
* Fixed: Cost of goods not formatted as currency in confirmation e-mails
|
||||
* Fixed: CSS typo galleria.nextgen_pro_lightbox.css
|
||||
* Fixed: Do not send emails until PayPal Standard orders are marked as paid
|
||||
|
||||
= v3.0.1 - 09.10.2019 =
|
||||
* NEW: Added ngg_pro_taxjar_nexus and ngg_pro_taxjar_params filters
|
||||
* NEW: Integrated with WHCC to provide automatic print lab fulfillment
|
||||
* NEW: Integrated with TaxJar to provide automated sales tax calculations
|
||||
* NEW: Ecommerce setup wizard
|
||||
* NEW: Revamped interface for managing pricelists
|
||||
* NEW: NextGEN Pro Tile display type
|
||||
* NEW: Integration with currency conversion service
|
||||
* NEW: Ability to crop images at checkout
|
||||
* NEW: Validation of ecommerce options and payment gateways
|
||||
* NEW: When NGG_PRO_LAB_TEST_MODE constant is set to true, print lab orders will not be fulfilled
|
||||
* NEW: Automatically retry loading dynamic thumbnail generation urls
|
||||
* Changed: Minimum version of NextGEN Gallery increased to 3.0.0
|
||||
* Changed: Order data integrity is always preserved
|
||||
* Changed: Added notices about SSL requirements
|
||||
* Changed: Test gateway will always assume that NGG_PRO_LAB_TEST_MODE is set to true
|
||||
* Fixed: Retina images generated at appropriate size
|
||||
* Fixed: Memory optimizations when generating images
|
||||
* Fixed: Excessive license checks and problems with caching
|
||||
* Fixed: PHP warning when no nav menus exist for shopping cart icon
|
||||
* Fixed: Styling and markup tweaks for 2019 redesign
|
||||
|
||||
|
||||
= v2.6.12 - 03.27.2019 =
|
||||
* Changed: Sharing with Facebook is now done through /share.php instead of the old /sharer/sharer.php
|
||||
* Fixed: Albums did not display nested sub-albums if the child albums name was an integer
|
||||
* Fixed: Horizontal Filmstrip and Slideshow galleries failed to run if their parent container was hidden at startup
|
||||
* Fixed: NextGen Pro's product file was causing NextGen's activation routine to run too frequently
|
||||
* Fixed: Pro Lightbox was scrolling to the top of the page after viewing a Pro Mosaic image
|
||||
|
||||
= v2.6.8 - 12.13.2018 =
|
||||
* Fixed: Images "shared" to Facebook will no longer be directed to the site frontpage when visited
|
||||
* Fixed: Stripe TLS 1.2 warnings were displaying even though the system supported TLS 1.2+
|
||||
* Fixed: Pro Lightbox was unable to open older, "preview image" based ATP galleries
|
||||
|
||||
= v2.6.7 - 10.09.2018 =
|
||||
* Changed: Improved quantity selectors in the Pro Lightbox ecommerce sidebar
|
||||
* Changed: Numerous phpdoc entries have been corrected
|
||||
* Changed: Pro Lightbox 'cart updated' message was moved to avoid other elements being repositioned
|
||||
* Changed: Upgraded FontAwesome to version 5
|
||||
* Fixed: Pro Imagebrowser navigation was positioned incorrectly with RTL languages
|
||||
* Fixed: Pro Lightbox carousel was misstyled with RTL languages
|
||||
* Fixed: Pro Lightbox was not honoring 'Apply to all images' lightbox setting
|
||||
|
||||
= V2.6.3 - 07.24.2018 =
|
||||
* NEW: Added French translations
|
||||
* NEW: Added German translations
|
||||
* NEW: Added Slovakian translations
|
||||
* NEW: Browsers on mobile devices can now use the Pro Lightbox open-with-cart-sidebar and open-with-comments-sidebar features
|
||||
* NEW: Pro Masonry displays can now have proofing enabled (requires hover captions, pro lightbox)
|
||||
* NEW: Warn admins that Stripe requires TLS 1.2 and their system is affected
|
||||
* Changed: Plugin URL in nggallery-pro.php has been updated for accuracy
|
||||
* Fixed: Hover captions compatibility with thickbox effect
|
||||
* Fixed: Pro Lightbox image captions were sometimes floated when sharing icons were disabled
|
||||
* Fixed: Pro Lightbox images were not correctly centered at startup under iOS
|
||||
* Fixed: Pro Masonry displays included a single gallery-level trigger icon that should not have been included
|
||||
|
||||
= V2.6.0 - 05.16.2018 =
|
||||
* NEW: Complete redesign of NextGEN Gallery backend interface
|
||||
* NEW: Pro Lightbox option to disable carousel thumbnails
|
||||
* NEW: Pro Lightbox uses Facebook JS SDK to generate share dialogs
|
||||
* Changed: Location of NextGen Pro Ecommerce in the main WordPress admin menu
|
||||
* Changed: Optimized Pro Lightbox for performance, especially mobile devices
|
||||
* Changed: Galleria.js upgraded to the latest version (1.5.7)
|
||||
* Fixed: Gutenberg compatibility
|
||||
* Fixed: Pro Lightbox sidebar overlay not being removed when comments are disabled / users must be registered
|
||||
* Fixed: Pro Lightbox will no longer attempt to use synchronous XHR
|
||||
|
||||
= V2.5.7 - 06.21.2017 =
|
||||
* NEW: Added Dutch translations as provided by Frank Leenders
|
||||
* Changed: Updated Pro Lightbox comment mechanism to use latest WP conventions
|
||||
* Changed: Uses KSES sanitization where applicable
|
||||
* Fixed: Pro Lightbox routing when wordpress_page_root not defined
|
||||
* Fixed: Pricelist requires at least one item to be saved
|
||||
* Fixed: NextGEN Widget always opens first image in Pro Lightbox
|
||||
* Fixed: Masonry display in Twenty Seventeen has overlapping image borders
|
||||
|
||||
= V2.5.5 - 05.23.2017 =
|
||||
* Changed: Updated to PictureFill 3.0.2
|
||||
* Changed: Use KSES sanitization for output of properties which allow HTML
|
||||
* Changed: Provide the ability to reset NGG options with and without ecommerce settings
|
||||
* Changed: Proofs sent to Ecommerce Options > Email > Order notification e-mail recipient
|
||||
* Fixed: Ability to include html in pro thumbnail caption templates
|
||||
* Fixed: Removed tooltip caption showing on top Pro Mosaic hover captions
|
||||
* Fixed: Stripped certain html tags from hover caption effects
|
||||
* Fixed: Removed use of PHP Sessions from Cheque module
|
||||
|
||||
= V2.5.0 - 03.28.2017 =
|
||||
* NEW: Pro Imagebrowser Gallery
|
||||
* NEW: Template support for Pro Galleries (requires NextGEN Gallery 2.2.0 or later)
|
||||
* NEW: Three new Pro Imagebrowser templates (requires NextGEN Gallery 2.2.0 or later)
|
||||
* NEW: Three new Pro Thumbnail Grid templates (requires NextGEN Gallery 2.2.0 or later)
|
||||
* Changed: Updated Imagely branding in Pro Modules
|
||||
* Changed: Branding changes from Photocrati to Imagely
|
||||
* Changed: Use localStorage for cart instead of cookies by default. May adjust using option.
|
||||
* Fixed: Digital Downloads tab showing in sidebar without products added
|
||||
* Fixed: View Cart button in Pro Lightbox not working in IE11 in certain cases
|
||||
* Fixed: Album setting 'Open gallery in Pro Lightbox' working on thumbnail but not title
|
||||
* Fixed: Pro Lightbox settings to display comments and cart initially can both be selected
|
||||
* Fixed: Presure.js generating errors in IE11 in certain cases
|
||||
* Fixed: Pro Lightbox 'Localize limit' interferes with Pro Album 'Open in Lightbox' option
|
||||
* Fixed: Ensure that modules are loaded when NGG re-activates using WordPress 4.7
|
||||
* Fixed: Incompatibilities with Elegant Themes
|
||||
* Fixed: Hover captions not appearing
|
||||
* Fixed: Misalignment of images in the Pro Lightbox
|
||||
* Fixed: Images appear as zoomed in the Pro Lightbox
|
||||
* Fixed: Ability to use quotes in pricelist titles
|
||||
* Fixed: Various PHP warnings and notices
|
||||
|
||||
= V2.3.63 - 12.13.2016 =
|
||||
* NEW: Added display type aliases to Pro display types
|
||||
* Changed: Minimum required version of NextGEN Gallery is now 2.1.49 or higher
|
||||
* Changed: Upgrading PHP-Parser to 2.1.0 for PHP7 compatibility for build generation
|
||||
* Fixed: The ability to add-to-cart on devices that have both touch and mouse inputs
|
||||
* Fixed: Conflict with Gravity Forms
|
||||
* Fixed: Local shipping rate applied to international orders
|
||||
* Fixed: The ability to key "k" during a Pro Sidescroll
|
||||
* Fixed: Pagination not working with "Open gallery in Pro Lightbox" feature for albums
|
||||
|
||||
= V2.3.61 - 11.17.2016 =
|
||||
* Fixed: Removed experimental category support for pricelists
|
||||
|
||||
= V2.3.60 - 11.16.2016 =
|
||||
* Fixed: Don't double-minify static resources in gulp build script
|
||||
* Fixed: Hover captions working on all display types
|
||||
* Fixed: Pro lightbox not working on iOS
|
||||
* Fixed: Scrolling not working on iOS
|
||||
* Fixed: Long tap image protection improvements on iOS
|
||||
* Fixed: Only show "display galleries as" option for albums when relevant
|
||||
* Fixed: Pro Sidescroll galleries are moved offscreen until they initialize
|
||||
|
||||
= V2.3.58 - 10.12.2016 =
|
||||
* Fixed: Use local version of imagesloaded if not provided by WordPress for Pro Sidescroll
|
||||
|
||||
= V2.3.56 - 10.12.2016 =
|
||||
* NEW: Added Pro Sidescroll Gallery
|
||||
* Changed: Now uses gulp for package compilation & JS/CSS minification
|
||||
* Changed: Removed "by Photocrati" from plugin description
|
||||
* Changed: Reorganized lightbox settings design to be more intuitive
|
||||
* Fixed: Hover captions not running and/or not including image descriptions in some circumstances
|
||||
* Fixed: Long press on mobile devices opening context menu when image protection was enabled
|
||||
* Fixed: Pro Mosaic previously required NextGen's lightbox setting to not be "None"
|
||||
|
||||
= V2.3.53 - 08.31.2016 =
|
||||
* NEW: Added the ability to click on album galleries to open in Pro Lightbox
|
||||
* NEW: Display a cart with dynamic total in menu
|
||||
* Changed: Mentions of Photocrati to Imagely
|
||||
* Fixed: Images not responsive for all display types
|
||||
* Fixed: Cannot save or delete pricelists using non-english languages
|
||||
* Fixed: Long image descriptions being obscured by the Pro Lightbox sidebar
|
||||
* Fixed: Ensure Pro albums show gallery descriptions on gallery-within-album pages
|
||||
* Fixed: Ensure that Retina images fit within the same dimensions as non-retina images on Pro Film and Pro Album types
|
||||
* Fixed: New pages not created in Ecommerce Options page
|
||||
|
||||
= V2.3.48 - 08.01.2016 =
|
||||
* NEW: Coupons and discount support
|
||||
* NEW: Free items and $0 orders
|
||||
* NEW: Gulp build system
|
||||
* NEW: Added "Enable fullscreen" option to Pro Lightbox
|
||||
* NEW: Added image thumbnail to lightbox sidebars (when browser width < 520px)
|
||||
* Changed: Increased size of Pro Lightbox sidebar
|
||||
* Changed: Pro Lightbox carousel no longer obscures the displayed image
|
||||
* Changed: Updated JustifiedGallery to 3.6.1
|
||||
* Fixed: Display the tax on the thank you page
|
||||
* Fixed: Dynamic ecommerce pages not being rendered correctly on home pages with no loop
|
||||
* Fixed: Resolved all found PHP warnings/notices/deprecations and strict errors
|
||||
* Fixed: Pro Mosaic spacing issue when margin option set to zero
|
||||
* Fixed: Convert PayPal Express Checkout module to use curl and fsockopen directly instead of using WP HTTP classes
|
||||
* Fixed: Display tax at PayPal Standard
|
||||
* Fixed: PayPal IPNs not being processed correctly for PayPal Standard
|
||||
* Fixed: PayPal Standard customer receipts have $0.00 order total
|
||||
|
||||
= V2.3.45 - 04.26.2016 =
|
||||
- NEW: A simple percentage tax option
|
||||
- Fixed: Navigating to a new image in the Pro Lightbox sometimes using the prior images url when sharing to social media
|
||||
- Fixed: Horizontal Filmstrip & Slideshow not displaying ecommerce triggers
|
||||
- Fixed: Horizontal Filmstrip not displaying carousel thumbnails with Photocrati-theme
|
||||
- Fixed: Display of existing orders totals, subtotals, and shipping amounts whose pricelist was edited post-purchase
|
||||
|
||||
= V2.3.42 - 03.15.2016 =
|
||||
* Fixed: Ensure that modules are compiled and that CSS/JS is minified
|
||||
|
||||
= V2.3.41 - 02.29.2016 =
|
||||
* Fixed: Pro Lightbox navigation when image protection is enabled
|
||||
|
||||
= V2.3.40 - 02.25.2016 =
|
||||
* NEW: Add-To-Cart and Proofing icons are added to Pro Captions
|
||||
* NEW: Added filter "ngg_ecommerce_page_list"
|
||||
* NEW: All Pro modules are now compiled before distribution
|
||||
* NEW: Finnish translation (first Pro translation!)
|
||||
* NEW: NextGen Pro Mosaic display type
|
||||
* NEW: Pro Lightbox can be padded and toggled full-browser
|
||||
* NEW: Pro Lightbox sets opacity through CSS class instead of inline style
|
||||
* Changed: "Lato" font is used for all parts of the ecommerce / checkout process now
|
||||
* Changed: All Pro templates now use "echo esc_attr()" instead of esc_attr_e() to avoid possible translation incompatibility
|
||||
* Changed: Digital Downloads page now hides the description column if the browser width is less than 400px
|
||||
* Changed: If the browser width is under 650px the cart & order-confirmation pages will place preview images and order description on their own rows rather than side-by-side
|
||||
* Changed: Pro Lightbox can now more efficiently initialize with large galleries
|
||||
* Changed: Pro Lightbox close-lightbox, toggle-sidebar, and toggle-carousel icons are much larger on touch devices
|
||||
* Changed: Pro Lightbox now defaults to the "white" style
|
||||
* Changed: Pro Lightbox now has its own routing code and does not rely on backbone.js. Closing the pro-lightbox no longer ends in a URL of "#"
|
||||
* Changed: Pro Lightbox sidebars are now 350px and not a variable width
|
||||
* Changed: Pro Thumbnail Grid now defaults to never displaying trigger icons
|
||||
* Changed: Removed Pro Lightbox option "touch transition effect": Galleria.js ignores this setting for touch devices if swipe is enabled.
|
||||
* Changed: Removed iframes from Pro Slideshow and Pro Horizontal Filmstrip, upgraded to Galleria 1.4.2
|
||||
* Changed: Several tweaks to the ecommerce checkout styling
|
||||
* Fixed: Changing the orientation of Chrome on iOS will no longer result in more than one main-image being displayed at once
|
||||
* Fixed: Comments module was generating a warning post WP 4.4
|
||||
* Fixed: Picturefill module was not working correctly with images containing spaces in their URL
|
||||
* Fixed: Pro Blog Gallery compatibility with TwentyFifteen theme (some attributes were not applying to the img element, our CSS needed a finer selector)
|
||||
* Fixed: Pro Grid Album thumbnails appeared outside their container with IE-11
|
||||
* Fixed: Pro Horizontal Filmstrip now handles mixed-height thumbnails in the carousel
|
||||
* Fixed: Pro Lightbox comments were not linking to the origin URL correctly
|
||||
* Fixed: Several changes were made to the Pro Lightbox to be more mobile (especially iOS 9) friendly
|
||||
* Fixed: View Orders page compatibility with WordPress 4.4
|
||||
|
||||
|
||||
= V2.3.5 - 07.13.2015 =
|
||||
* Fixed: Galleria and comments modules not updated during auto-update process
|
||||
|
||||
= V2.3.0 - 06.22.2015 =
|
||||
* NEW: Retina support for Pro display types
|
||||
* NEW: Hover captions for Pro display types
|
||||
* NEW: Breadcrumb support for Pro Albums
|
||||
* NEW: Internationalization support
|
||||
* NEW: Sharing images supports Twitter Card
|
||||
* NEW: Added max height option for Pro Blog display type
|
||||
* Changed: NextGEN Pro Lightbox does not require transients
|
||||
* Changed: Significant performance improvement to NextGEN Pro Lightbox. Removed iframes.
|
||||
* Changed: Updated to the latest Stripe SDK
|
||||
* Changed: Default thumbnail dimensions for horizontal filmstrips are 120x90
|
||||
* Fixed: jQuery explicitly marked as dependency for Masonry
|
||||
* Fixed: Auto deactivation of NextGEN Pro when NextGEN Plus is activated
|
||||
* Fixed: Various styling issues of NextGEN Pro Lightbox
|
||||
* Fixed: Styling conflicts between Shopping Cart page and TwentyFifteen theme
|
||||
* Fixed: CSS z-index issues with the Pro Lightbox
|
||||
* Fixed: Restore scroll position after closing the Pro Lightbox in full-screen mode
|
||||
* Fixed: Various styling improvements to the autogenerated ecommerce-related content
|
||||
* Fixed: Display checkboxes in comment form regardless of theme
|
||||
* Fixed: Display triggers for blog style galleries when images are a mix of landscape and portrait photos
|
||||
* Fixed: Determine whether override image settings is enabled for blog style
|
||||
* Fixed: Broken blog style images
|
||||
|
||||
= V2.1.4 - 11.18.2014 =
|
||||
* Fixed: Activating Plus doesn't deactivate Pro; fatal error
|
||||
* Fixed: Fatal error when NextGEN Gallery is disabled
|
||||
|
||||
= V2.1.1 - 11.17.2014 =
|
||||
* Fixed: Fatal error when activating without NextGEN Gallery installed
|
||||
|
||||
= V2.1 - 11.13.2014 =
|
||||
* NEW: Added the ability to proof galleries
|
||||
* NEW: Image protection feature to protect from theft
|
||||
* NEW: Added Test Gateway to evaluate checkout procedure
|
||||
* NEW: Added "Pay by Check" mechanism
|
||||
* NEW: Added NGG_ALLOW_CROSS_ORIGIN_FRAMING constant for those that need it
|
||||
* NEW: Added "%%file_list%%" placeholder for ecommerce-related e-mails
|
||||
* NEW: Digital downloads are served from PHP for compatibility and security reasons
|
||||
* NEW: Added "display cart" setting to Pro Lightbox to open sidebar automatically
|
||||
* NEW: Ability to duplicate pricelists
|
||||
* Changed: When NextGEN Gallery 2.0.68 is installed, only enqueue static resources when needed
|
||||
* Changed: Don't enqueue scripts or styles unless we require them
|
||||
* Changed: Updated Stripe SDK to the latest version
|
||||
* Changed: Don't use SSLv3 when connecting to PayPal via cURL to avoid Poodle vulnerability
|
||||
* Changed: Default all pro display types ngg_triggers_display to 'always'
|
||||
* Fixed: Forward-compatibility with NextGEN Gallery
|
||||
* Fixed: Use NextGEN Gallery's version of FontAwesome
|
||||
* Fixed: Problems with album routing
|
||||
* Fixed: Dynamic ecommerce pages not using default is_singular page templates
|
||||
* Fixed: Pro Lightbox not opening correctly on Firefox
|
||||
* Fixed: Display of currency in wide variety of character sets
|
||||
* Fixed: Ecommerce instructions should be the last item in the menu
|
||||
* Fixed: Social sharing links of the Pro Lightbox pointed to the wrong image
|
||||
* Fixed: Pro Lightbox performance improvements
|
||||
* Fixed: Cart not clearing after successful checkout
|
||||
* Fixed: Pricelists cannot be deleted, only trashed
|
||||
* Fixed: Optimized queries related to pricelists
|
||||
* Fixed: Use image filename as item id for PayPal Standard
|
||||
* Fixed: Display of view licensing terms link in ecommerce sidebar
|
||||
* Fixed: Reversed pro thumbnail grid hover effect to avoid image saturation
|
||||
* Fixed: Correct calculation and display of order totals for international orders
|
||||
* Fixed: Display image filename in cart
|
||||
* Fixed: Alignment issues
|
||||
* Fixed: Allow a shipping rate of $0
|
||||
* Fixed: Show processing indicator when checkout button is clicked
|
||||
|
||||
= V2.0 – 06.18.2014 =
|
||||
* NEW: E-commerce functionality added to the Pro Lightbox
|
||||
* NEW: Payment gateways for Stripe, PayPal Standard, and PayPal Express Checkout
|
||||
* NEW: Forward compatibility with new lightbox manager implementation
|
||||
* Fixed: Added notice to Roles tab about Change options capability and ecommerce
|
||||
* Fixed: Use image filename as item number for PayPal Standard.
|
||||
* Fixed: Masonary display type adjusted for responsiveness; no longer relies on dynamic thumbnails
|
||||
* Fixed: Captions position issues with Horizontal Filmstrip and Slideshow display types
|
||||
|
||||
= V1.0.17 - 04.24.2014 =
|
||||
* NEW: NextGEN Pro will automatically deactivate if it's dependencies aren't met
|
||||
* NEW: Compatibility fixes with WordPress 3.9
|
||||
* NEW: Added an option to the Pro Lightbox to display captions automatically
|
||||
* NEW: Added an option to the Pro Lightbox to open the comment/social sidebar automatically
|
||||
* NEW: Renamed all constants to use NGG_ prefix
|
||||
* Changed: Removed double-tap capability for the Pro Lightbox in fullscreen mode
|
||||
* Changed: Adjusted the way setting parameters are passed to Galleria themes
|
||||
* Changed: Removed thumbnail_quality & thumbnail_watermark fields for all display types
|
||||
* Changed: Use FontAwesome library that is bundled with NextGEN Gallery
|
||||
* Changed: Removed obsolete CSS rules used for Jetpack compatibility
|
||||
* Changed: Removed 1px black border from images in Pro Film galleries
|
||||
* Changed: Removed backbone/underscore from Pro Lightbox scripts property
|
||||
* Changed: Use relative urls instead of absolute urls for Pro Lightbox resources
|
||||
* Fixed: Various iOS compatibility issues
|
||||
* Fixed: Fix size and positioning of images in Horizontal Filmstrip and Slideshow galleries
|
||||
* Fixed: Positioning of captions for Horizontal Filmstrip and Slideshow galleries
|
||||
* Fixed: Flickering between image transitions for Horizontal Filmstrip and Slideshow galleries
|
||||
* Fixed: Image alignment and cropping settings for Horizontal Filmstrip and Slideshow galleries
|
||||
* Fixed: Center Film galleries within their parent container. Remove any whitespace in the markup
|
||||
* Fixed: Vertically-align images to the top of the image container for Grid Albums
|
||||
* Fixed: Remove "crop" setting for Blog Style galleries
|
||||
* Fixed: Styling of Pro List Albums
|
||||
* Fixed: Routing conflicts for albums on the same page
|
||||
* Fixed: Adjust position of comment toggle icon
|
||||
* Fixed: Apply nl2br() to all gallery descriptions
|
||||
* Fixed: Images aren't forced to be larger than their original dimensions in Blog Style galleries
|
||||
* Fixed: Don't display PHP errors/warnings in JSON response for pre_comments AJAX action
|
||||
* Fixed: Don't open Pro Lightbox for links that are to use ImageBrowser as the lightbox effect
|
||||
* Fixed: Allow HTML in the Pro Lightbox for image titles & descriptions
|
||||
* Fixed: Use original sized image when sharing an image via Facebook/OpenGraph
|
||||
* Fixed: Provide detailed data in OpenGraph representation
|
||||
* Fixed: OpenGraph should work with default and custom permalinks
|
||||
* Fixed: Use correct value for Yes/No setting selections for Pro Lightbox
|
||||
* Fixed: When opening the Pro Lightbox for a gallery using random images, display the correct image
|
||||
|
||||
= V1.0.12 - 03.28.2014 =
|
||||
* NEW: Added E-commerce functionality
|
||||
|
||||
= V1.0.10 - 11.26.2013 =
|
||||
* NEW: Pro Lightbox may be applied to non-NGG images
|
||||
* NEW: Pro Lightbox appearance now configurable with two presets, "Light" and "Dark"
|
||||
* NEW: Added Slideshow and Transition Speed settings for Pro Lightbox
|
||||
* NEW: Added "faux fullscreen" mode for browsers that don't support native fullscreen
|
||||
* NEW: Provide instructions after activation for enabling the Pro Lightbox
|
||||
* NEW: Ability to choose display type for galleries within Pro Albums
|
||||
* NEW: Grid albums are responsive
|
||||
* NEW: Added NextGEN Gallery version detection for compatibility reasons
|
||||
* Changed: Auto-update modules shared across Photocrati products (NextGEN Pro + Photocrati Theme)
|
||||
* Fixed: Addressed many performance concerns with Pro Lightbox
|
||||
* Fixed: The ability to view galleries within albums that have numeric names
|
||||
* Fixed: Generate thumbnails if they don't exist before trying to use them
|
||||
* Fixed: Properly enqueue scripts/styles to avoid "did it wrong" errors from WordPress
|
||||
* Fixed: Toggle-fullscreen button now toggles its icon-type correctly when users leave fullscreen
|
||||
* Fixed: Slideshows/filmstrips jumping to top left corner when clicking on the image
|
||||
* Fixed: Check existence of transient before rendering gallery
|
||||
* Fixed: Don't apply Pro Lightbox to images that specify a non-existing target
|
||||
* Fixed: Filmstrip captions cutting off tall images
|
||||
* Fixed: Compatibility with third party plugins and themes that use FontAwesome
|
||||
* Fixed: Custom CSS stylesheets are now applied to the Pro Lightbox
|
||||
* Fixed: Pro Lightbox compatibility with Opera
|
||||
* Fixed: Increase minimum screen size for displaying trigger buttons
|
||||
* Fixed: Share original images with Pinterest
|
||||
* Fixed: Lightbox conflicts with Photocrati Theme
|
||||
|
||||
= V1.0.6 - 08.21.2013 =
|
||||
* Fixed: Use settings class compatible with multisite
|
||||
* Fixed: Fixed PHP notices for invalid index in wp-admin
|
||||
* Fixed: Fixed invalid use of wp_register_script/wp_enqueue_script notices
|
||||
* Changed: Comments: return in comment_post_redirect filter
|
||||
* Fixed: Ensure that we don't check for updates until our check time has expired
|
||||
|
||||
= V1.0.4 - 08.09.2013 =
|
||||
* NEW: All Pro display types' styles can be customized by "Other Options -> Styles"
|
||||
* Changed: NextGEN Pro requires NextGEN Gallery 2.0.7 or later
|
||||
* Fixed: Pro Slideshows and Horizontal Filmstrip are fully responsive
|
||||
* Fixed: NextGEN Pro is loaded after NextGEN Gallery 2.0.x
|
||||
* Fixed: Pro Lightbox CSS is compatible with many other themes
|
||||
* Fixed: Incompatibility with WPMUDEV's Membership plugin
|
||||
* Fixed: Fix autoupdate cache not being properly managed when the server would return 0 updates
|
||||
* Fixed: Pro Album styling issues in some themes such as 2013
|
||||
|
||||
= V1.0 - 07.30.2013 =
|
||||
* NEW: Added Pro Lightbox, with social sharing and commenting functionality
|
||||
* NEW: Added Pro Blog Style display type
|
||||
* NEW: Added Pro Thumbnail Grid Style display type
|
||||
* NEW: Added Pro List & Grid Album display types
|
||||
* NEW: Added Pro Film display type
|
||||
* NEW: Added Galleria Display Type Engine
|
||||
* NEW: Added Pro Horizontal Filmstrip display type
|
||||
* NEW: Added Pro Slideshow display type
|
||||
* NEW: Added Pro Masonry display type
|
||||
* Changed: Since Beta #1, we're using a new Installer and Settings Manager implementation
|
||||
* Changed: Since Beta #1, we cache the final rendering output of display galleries
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "notify-biz/notify-for-woocommerce",
|
||||
"version": "1.0.0",
|
||||
"type": "project",
|
||||
"description": "Wordpress plugin for WooCommerce notifications."
|
||||
}
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/novinhub/composer_file/composer.json
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/novinhub/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "masoud_sa/novinhub",
|
||||
"type": "project",
|
||||
"license": "MIT",
|
||||
"version": "0.0.5",
|
||||
"authors": [
|
||||
{
|
||||
"name": "datasc-masa",
|
||||
"email": "Masoudsa291171@gmail.com"
|
||||
}
|
||||
],
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Novinhub\\Inc\\": "./inc"
|
||||
},
|
||||
"classmap": ["inc/"]
|
||||
},
|
||||
"config": {
|
||||
"platform": {
|
||||
"php": "5.6"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"novinhubcom/php-sdk": "^0.0.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,527 @@
|
||||
# Copyright (C) 2021 OpenAgenda
|
||||
# This file is distributed under the same license as the OpenAgenda plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenAgenda 0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/openagenda\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-02-02 15:45+0100\n"
|
||||
"PO-Revision-Date: 2021-03-10 14:38+0100\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: openagenda\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Language: fr\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "OpenAgenda"
|
||||
msgstr "OpenAgenda"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://openagenda.com/"
|
||||
msgstr "https://openagenda.com/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Display your OpenAgenda data on your WordPress site."
|
||||
msgstr "Affiche vos agendas OpenAgenda sur votre site WordPress."
|
||||
|
||||
#: inc/class-admin-pages.php:24
|
||||
msgid "OpenAgenda Settings"
|
||||
msgstr "Réglages OpenAgenda"
|
||||
|
||||
#: inc/class-admin-pages.php:25 openagenda.php:113
|
||||
msgid "Settings"
|
||||
msgstr "Réglages"
|
||||
|
||||
#: inc/class-admin-pages.php:32
|
||||
msgid "General"
|
||||
msgstr "Généraux"
|
||||
|
||||
#: inc/class-admin-pages.php:122 inc/class-settings.php:46
|
||||
msgid "General settings"
|
||||
msgstr "Réglages généraux"
|
||||
|
||||
#: inc/class-admin-pages.php:138
|
||||
msgid "Display settings"
|
||||
msgstr "Réglages d'affichage"
|
||||
|
||||
#: inc/class-ajax-handler.php:36
|
||||
msgid "No post ID was provided."
|
||||
msgstr "Aucun ID de publication n'a été fourni."
|
||||
|
||||
#: inc/class-ajax-handler.php:42
|
||||
msgid "The post ID provided does not refer to a calendar."
|
||||
msgstr "L'identifiant fourni ne correspond à aucun agenda."
|
||||
|
||||
#: inc/class-content-manager.php:18 inc/class-content-manager.php:105
|
||||
#: inc/class-settings.php:363
|
||||
msgid "calendar"
|
||||
msgstr "agenda"
|
||||
|
||||
#: inc/class-content-manager.php:23
|
||||
msgctxt "Post type general name"
|
||||
msgid "Calendars"
|
||||
msgstr "Agendas"
|
||||
|
||||
#: inc/class-content-manager.php:24
|
||||
msgctxt "Post type singular name"
|
||||
msgid "Calendar"
|
||||
msgstr "Agenda"
|
||||
|
||||
#: inc/class-content-manager.php:25
|
||||
msgctxt "Admin Menu text"
|
||||
msgid "Calendars"
|
||||
msgstr "Agendas"
|
||||
|
||||
#: inc/class-content-manager.php:26
|
||||
msgctxt "Add New on Toolbar"
|
||||
msgid "Calendar"
|
||||
msgstr "Agenda"
|
||||
|
||||
#: inc/class-content-manager.php:27
|
||||
msgid "Add New Calendar"
|
||||
msgstr "Ajouter un nouvel agenda"
|
||||
|
||||
#: inc/class-content-manager.php:28
|
||||
msgid "New Calendar"
|
||||
msgstr "Nouvel agenda"
|
||||
|
||||
#: inc/class-content-manager.php:29
|
||||
msgid "Edit Calendar"
|
||||
msgstr "Modifier l'agenda"
|
||||
|
||||
#: inc/class-content-manager.php:30
|
||||
msgid "View Calendar"
|
||||
msgstr "Voir l'agenda"
|
||||
|
||||
#: inc/class-content-manager.php:31
|
||||
msgid "All Calendars"
|
||||
msgstr "Tous les agendas"
|
||||
|
||||
#: inc/class-content-manager.php:32
|
||||
msgid "Search Calendars"
|
||||
msgstr "Chercher dans les agendas"
|
||||
|
||||
#: inc/class-content-manager.php:33
|
||||
msgid "Parent Calendars:"
|
||||
msgstr "Agenda parent :"
|
||||
|
||||
#: inc/class-content-manager.php:34
|
||||
msgid "No Calendars found."
|
||||
msgstr "Aucun agenda trouvé."
|
||||
|
||||
#: inc/class-content-manager.php:35
|
||||
msgid "No Calendars found in Trash."
|
||||
msgstr "Aucun agenda dans la corbeille."
|
||||
|
||||
#: inc/class-content-manager.php:36
|
||||
msgctxt ""
|
||||
"Overrides the “Featured Image” phrase for this post type. Added in 4.3"
|
||||
msgid "Calendar Cover Image"
|
||||
msgstr "Image mise en avant de l'agenda"
|
||||
|
||||
#: inc/class-content-manager.php:37
|
||||
msgctxt ""
|
||||
"The post type archive label used in nav menus. Default “Post Archives”. "
|
||||
"Added in 4.4"
|
||||
msgid "Calendar archives"
|
||||
msgstr "Archive des agendas"
|
||||
|
||||
#: inc/class-content-manager.php:38
|
||||
msgctxt ""
|
||||
"Overrides the “Insert into post”/”Insert into page” phrase (used when "
|
||||
"inserting media into a post). Added in 4.4"
|
||||
msgid "Insert into Calendar"
|
||||
msgstr "Insérer dans l'agenda"
|
||||
|
||||
#: inc/class-content-manager.php:39
|
||||
msgctxt ""
|
||||
"Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used "
|
||||
"when viewing media attached to a post). Added in 4.4"
|
||||
msgid "Uploaded to this Calendar"
|
||||
msgstr "Téléversé vers cet agenda"
|
||||
|
||||
#: inc/class-content-manager.php:40
|
||||
msgctxt ""
|
||||
"Screen reader text for the filter links heading on the post type listing "
|
||||
"screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4"
|
||||
msgid "Filter Calendars list"
|
||||
msgstr "Filtrer la liste des agendas"
|
||||
|
||||
#: inc/class-content-manager.php:41
|
||||
msgctxt ""
|
||||
"Screen reader text for the pagination heading on the post type listing "
|
||||
"screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4"
|
||||
msgid "Calendars list navigation"
|
||||
msgstr "Navigation de la liste des agendas"
|
||||
|
||||
#: inc/class-content-manager.php:42
|
||||
msgctxt ""
|
||||
"Screen reader text for the items list heading on the post type listing "
|
||||
"screen. Default “Posts list”/”Pages list”. Added in 4.4"
|
||||
msgid "Calendars list"
|
||||
msgstr "Liste des agendas"
|
||||
|
||||
#: inc/class-content-manager.php:148
|
||||
msgid "Please provide a calendar UID in this calendar's settings box first."
|
||||
msgstr "Veuillez fournir un UID d'agenda valide dans les réglages de l'agenda."
|
||||
|
||||
#: inc/class-customizer-settings.php:32
|
||||
msgid "Calendars"
|
||||
msgstr "Agendas"
|
||||
|
||||
#: inc/class-customizer-settings.php:33
|
||||
msgid "Manage calendars display settings here."
|
||||
msgstr "Gérez vos réglages d'affichage ici."
|
||||
|
||||
#: inc/class-customizer-settings.php:38
|
||||
msgid "Colors"
|
||||
msgstr "Couleurs"
|
||||
|
||||
#: inc/class-customizer-settings.php:48
|
||||
msgid "OpenAgenda main color"
|
||||
msgstr "Couleur principal Openagenda"
|
||||
|
||||
#: inc/class-filter-widget.php:29
|
||||
msgid "Open Agenda Filter"
|
||||
msgstr "Open Agenda - Filtre"
|
||||
|
||||
#: inc/class-filter-widget.php:31
|
||||
msgid "Displays a filter widget."
|
||||
msgstr "Affiche un filtre."
|
||||
|
||||
#: inc/class-filter-widget.php:81
|
||||
msgid "Title :"
|
||||
msgstr "Titre :"
|
||||
|
||||
#: inc/class-filter-widget.php:85
|
||||
msgid "Filter to display :"
|
||||
msgstr "Filtre à afficher :"
|
||||
|
||||
#: inc/class-filter-widget.php:87
|
||||
msgid "Choose filter"
|
||||
msgstr "Choisissez un filtre"
|
||||
|
||||
#: inc/class-filter-widget.php:183
|
||||
msgid "Map tiles link :"
|
||||
msgstr "Liens du fond de carte :"
|
||||
|
||||
#: inc/class-filter-widget.php:189
|
||||
msgid "Automatically update map on scroll ?"
|
||||
msgstr "Ajuster automatiquement la carte au défilement ?"
|
||||
|
||||
#: inc/class-filter-widget.php:195
|
||||
msgid "Default longitude :"
|
||||
msgstr "Longitude par défaut :"
|
||||
|
||||
#: inc/class-filter-widget.php:200
|
||||
msgid "Default latitude :"
|
||||
msgstr "Latitude par défaut :"
|
||||
|
||||
#: inc/class-filter-widget.php:205
|
||||
msgid "Map default zoom :"
|
||||
msgstr "Niveau de zoom par défaut :"
|
||||
|
||||
#: inc/class-filter-widget.php:214
|
||||
msgid "Agenda UID :"
|
||||
msgstr "UID de l'agenda :"
|
||||
|
||||
#: inc/class-filter-widget.php:220
|
||||
msgid "Preview label :"
|
||||
msgstr "Label du lien de prévisualisation :"
|
||||
|
||||
#: inc/class-filter-widget.php:222
|
||||
msgid "Preview"
|
||||
msgstr "Prévisualisation"
|
||||
|
||||
#: inc/class-filter-widget.php:223
|
||||
msgid "This corresponds to the text for the link to the calendar."
|
||||
msgstr "Correspond au texte du lien vers l'agenda."
|
||||
|
||||
#: inc/class-filter-widget.php:229
|
||||
msgid "Placeholder text :"
|
||||
msgstr "Texte de substitution :"
|
||||
|
||||
#: inc/class-filter-widget.php:231
|
||||
msgid "Search events"
|
||||
msgstr "Rechercher un événement"
|
||||
|
||||
#: inc/class-filter-widget.php:237
|
||||
msgid "Tag group :"
|
||||
msgstr "Groupe tag :"
|
||||
|
||||
#: inc/class-filter-widget.php:242
|
||||
msgid "Tags to display :"
|
||||
msgstr "Tags à afficher :"
|
||||
|
||||
#: inc/class-filter-widget.php:243
|
||||
msgid "Enter tags separated by a comma."
|
||||
msgstr "Entrer les tags séparés par des virgules."
|
||||
|
||||
#: inc/class-main.php:26
|
||||
msgctxt "Filter name"
|
||||
msgid "Active filters"
|
||||
msgstr "Filtres actifs"
|
||||
|
||||
#: inc/class-main.php:31
|
||||
msgctxt "Filter name"
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: inc/class-main.php:36
|
||||
msgctxt "Filter name"
|
||||
msgid "Calendar"
|
||||
msgstr "Calendrier"
|
||||
|
||||
#: inc/class-main.php:41
|
||||
msgctxt "Filter name"
|
||||
msgid "Map"
|
||||
msgstr "Carte"
|
||||
|
||||
#: inc/class-main.php:46
|
||||
msgctxt "Filter name"
|
||||
msgid "Preview"
|
||||
msgstr "Prévisualisation"
|
||||
|
||||
#: inc/class-main.php:51
|
||||
msgctxt "Filter name"
|
||||
msgid "Upcoming"
|
||||
msgstr "Prochainement"
|
||||
|
||||
#: inc/class-main.php:56
|
||||
msgctxt "Filter name"
|
||||
msgid "Search"
|
||||
msgstr "Recherche"
|
||||
|
||||
#: inc/class-metaboxes.php:24
|
||||
msgid "Calendar settings"
|
||||
msgstr "Réglages de l'agenda"
|
||||
|
||||
#: inc/class-metaboxes.php:36
|
||||
msgid "Calendar UID"
|
||||
msgstr "UID de l'agenda"
|
||||
|
||||
#: inc/class-metaboxes.php:41
|
||||
msgid "How to find my calendar UID ?"
|
||||
msgstr "Comment trouver l'UID de mon agenda ?"
|
||||
|
||||
#: inc/class-metaboxes.php:47
|
||||
msgid "Events per page"
|
||||
msgstr "Evénements par page"
|
||||
|
||||
#: inc/class-metaboxes.php:129
|
||||
msgid "New field"
|
||||
msgstr "Nouveau champ"
|
||||
|
||||
#: inc/class-openagenda.php:290
|
||||
msgid "XLSX"
|
||||
msgstr "XLSX"
|
||||
|
||||
#: inc/class-openagenda.php:291
|
||||
msgid "JSON"
|
||||
msgstr "JSON"
|
||||
|
||||
#: inc/class-openagenda.php:292
|
||||
msgid "RSS"
|
||||
msgstr "RSS"
|
||||
|
||||
#: inc/class-openagenda.php:293
|
||||
msgid "PDF"
|
||||
msgstr "PDF"
|
||||
|
||||
#: inc/class-openagenda.php:398
|
||||
msgid "There was an error parsing the JSON."
|
||||
msgstr "Il y a eu une erreur de lecture du JSON."
|
||||
|
||||
#: inc/class-settings.php:54
|
||||
msgid "OpenAgenda API key"
|
||||
msgstr "Clé API OpenAgenda"
|
||||
|
||||
#. translators: %s: openagenda site url
|
||||
#: inc/class-settings.php:67
|
||||
msgid ""
|
||||
"Your API key can be found in your <a href=\"%s\">OpenAgenda account</a>."
|
||||
msgstr ""
|
||||
"Vous pouvez trouver votre clé API sur votre <a href=\"%s\">compte "
|
||||
"OpenAgenda</a>."
|
||||
|
||||
#: inc/class-settings.php:74
|
||||
msgid "Allow embedded content."
|
||||
msgstr "Autoriser les contenus embarqués."
|
||||
|
||||
#: inc/class-settings.php:85
|
||||
msgid "Allow for embedded content in the event's content."
|
||||
msgstr "Autoriser le contenu embarqué dans le contenu des événements."
|
||||
|
||||
#: inc/class-settings.php:86
|
||||
msgid ""
|
||||
"By default, embedded content like Youtube players will be filtered, and will "
|
||||
"not appear on the frontend. Checking this option will disable filtering."
|
||||
msgstr ""
|
||||
"Par défaut, les contenus embarqués comme les lecteur Youtube sont filtrés et "
|
||||
"n'apparitront pas sur le devant du site. En cochant cette option, vous "
|
||||
"désactiverez ce filtrage."
|
||||
|
||||
#: inc/class-settings.php:91
|
||||
msgid "Load default stylesheets."
|
||||
msgstr "Charger des styles par défaut."
|
||||
|
||||
#: inc/class-settings.php:102
|
||||
msgid "Load default styling."
|
||||
msgstr "Charger les styles par défaut."
|
||||
|
||||
#: inc/class-settings.php:107
|
||||
msgid "Cache duration"
|
||||
msgstr "Durée du cache"
|
||||
|
||||
#: inc/class-settings.php:118
|
||||
msgid ""
|
||||
"Requests responses are temporarily stored for performance reasons. This "
|
||||
"setting controls the number of seconds basic requests responses are stored"
|
||||
msgstr ""
|
||||
"Les requêtes sont mise en cache temporaire pour des raisons de performance. "
|
||||
"Ce réglage contrôle le nombre de secondes pendant lesquelles les requêtes "
|
||||
"sont stockées"
|
||||
|
||||
#: inc/class-settings.php:123
|
||||
msgid "Default map tiles link"
|
||||
msgstr "Liens du fond de carte"
|
||||
|
||||
#: inc/class-settings.php:138
|
||||
msgid "Default map tiles attribution link"
|
||||
msgstr "URL des crédits du fond de carte"
|
||||
|
||||
#: inc/class-settings.php:153
|
||||
msgid "Delete all calendar content on uninstall ?"
|
||||
msgstr "Supprimer tous les contenus des agendas lors de la désinstallation ?"
|
||||
|
||||
#: inc/class-settings.php:164
|
||||
msgid ""
|
||||
"Delete all posts of type \"Calendar\" permanently when I uninstall the "
|
||||
"plugin. Content will NOT be deleted when deactivating the plugin."
|
||||
msgstr ""
|
||||
"Effacer tous les contenus de type \"Agenda\" définitivement quand je "
|
||||
"désinstalle cette extension. Le contenu NE sera PAS supprimé lors d'une "
|
||||
"désactivation."
|
||||
|
||||
#: inc/class-settings.php:169
|
||||
msgid "Delete all options on uninstall ?"
|
||||
msgstr ""
|
||||
"Supprimer tous les réglages de l'extension lors de la désinstallation ?"
|
||||
|
||||
#: inc/class-settings.php:180
|
||||
msgid ""
|
||||
"Delete all of this plugin's settings permanently when I uninstall the plugin."
|
||||
msgstr ""
|
||||
"Supprimer définitivement tous les réglages de cette extension quand je la "
|
||||
"désinstalle."
|
||||
|
||||
#: inc/class-settings.php:185
|
||||
msgid "Calendar base"
|
||||
msgstr "Base des agendas"
|
||||
|
||||
#. translators: %s : home url
|
||||
#: inc/class-settings.php:197
|
||||
msgid ""
|
||||
"You can modify the URL prefix for the calendars. For example, the default "
|
||||
"prefix is <code>calendar</code>, so URLs will look like <code>%s/calendar/"
|
||||
"calendar-name</code>."
|
||||
msgstr ""
|
||||
"Vous pouvez modifier le préfixe des URLs des agendas. Par exemple, le "
|
||||
"préfixe par défaut est <code>agenda</code>, donc vos URLs ressembleront à "
|
||||
"<code>%s/agenda/nom-de-l-agenda</code>."
|
||||
|
||||
#: inc/class-shortcodes.php:68
|
||||
msgid ""
|
||||
"Please provide a valid calendar UID to display in the calendar settings."
|
||||
msgstr "Veuillez fournir un UID d'agenda valide dans les réglages de l'agenda."
|
||||
|
||||
#: inc/class-shortcodes.php:216
|
||||
msgid "Preview the calendar"
|
||||
msgstr "Prévisualiser l'agenda"
|
||||
|
||||
#: inc/class-shortcodes.php:278
|
||||
msgid "Search this calendar"
|
||||
msgstr "Chercher dans cet agenda"
|
||||
|
||||
#: inc/helper-functions.php:263
|
||||
msgid "Fetching events... Please wait a moment."
|
||||
msgstr "Recherche des événements en cours... Veuillez patienter un moment."
|
||||
|
||||
#: inc/helper-functions.php:275
|
||||
msgid ""
|
||||
"There was an error updating the events. Pleaser refresh the page and try "
|
||||
"again."
|
||||
msgstr ""
|
||||
"Il y a eu une erreur lors de la mise à jour des événements. Veuillez "
|
||||
"rafraichir la page et réessayer."
|
||||
|
||||
#. translators: %s : next event relative timing
|
||||
#: inc/helper-functions.php:307
|
||||
msgctxt "next event timing"
|
||||
msgid "In %s"
|
||||
msgstr "Dans %s"
|
||||
|
||||
#. translators: %s : last event relative timing
|
||||
#: inc/helper-functions.php:309
|
||||
msgctxt "last event timing"
|
||||
msgid "%s ago"
|
||||
msgstr "Il y a %s"
|
||||
|
||||
#: inc/template-tags.php:246
|
||||
msgid "No timing avilable"
|
||||
msgstr "Pas d'horaire disponible"
|
||||
|
||||
#: inc/template-tags.php:306
|
||||
msgid "View previous month"
|
||||
msgstr "Voir le mois précédent"
|
||||
|
||||
#: inc/template-tags.php:309
|
||||
msgid "View next month"
|
||||
msgstr "Voir le mois suivant"
|
||||
|
||||
#: inc/template-tags.php:397
|
||||
msgid "Share on Facebook"
|
||||
msgstr "Partagez sur Facebook"
|
||||
|
||||
#: inc/template-tags.php:402
|
||||
msgid "Share on Twitter"
|
||||
msgstr "Partagez sur Twitter"
|
||||
|
||||
#: inc/template-tags.php:410
|
||||
msgid "Share on Linkedin"
|
||||
msgstr "Partagez sur LinkedIn"
|
||||
|
||||
#: inc/template-tags.php:440
|
||||
msgid "Share :"
|
||||
msgstr "Partager :"
|
||||
|
||||
#: inc/template-tags.php:504
|
||||
msgid "Previous page"
|
||||
msgstr "Page précédente"
|
||||
|
||||
#: inc/template-tags.php:505
|
||||
msgid "Next page"
|
||||
msgstr "Page suivante"
|
||||
|
||||
#: inc/template-tags.php:645
|
||||
msgid "Download :"
|
||||
msgstr "Télécharger :"
|
||||
|
||||
#: inc/template-tags.php:725
|
||||
msgctxt "event navigation"
|
||||
msgid "Next event"
|
||||
msgstr "Evénement suivant"
|
||||
|
||||
#: inc/template-tags.php:726
|
||||
msgctxt "event navigation"
|
||||
msgid "Previous event"
|
||||
msgstr "Evénement précédent"
|
||||
|
||||
#: templates/event-loop.php:28
|
||||
msgid "Sorry, we could not find any event."
|
||||
msgstr "Désolé, aucun événement n'a été trouvé."
|
||||
@@ -0,0 +1,5 @@
|
||||
# Change Log
|
||||
|
||||
## [1.0.0] - 2021-04-10
|
||||
### Added:
|
||||
- Initial release
|
||||
@@ -0,0 +1,181 @@
|
||||
# payware Mobile Payments for WooCommerce
|
||||
# Copyright (C) 2021
|
||||
# This file is distributed under the same license as the payware Mobile Payments for WooCommerce package.
|
||||
# info@payware.eu 2021
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-03-14 16:00+0200\n"
|
||||
"PO-Revision-Date: 2021-03-14 15:18+0200\n"
|
||||
"Last-Translator: info@payware.eu\n"
|
||||
"Language-Team: info@payware.eu\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 2.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/class-paywr-form-fields.php:9
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:10
|
||||
msgid "Enable payware mobile payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:16
|
||||
msgid "Sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:17
|
||||
msgid "Enable Sandbox Mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:19
|
||||
msgid ""
|
||||
"Place the payment gateway in test mode.<br>Use the <a href=\"https://play."
|
||||
"google.com/store/apps/details?id=eu.payware.demo.fi\">payware e-wallet "
|
||||
"emulator</a> to confirm a payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:24
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:26
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:27
|
||||
msgid "Mobile payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:31
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:33
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:34
|
||||
msgid "Pay with your favorite payment mobile app."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:45
|
||||
msgid "Payware partner data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:49
|
||||
msgid "Partner ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:51
|
||||
msgid ""
|
||||
"<a href=\"https://kb.payware.eu/general/faqs#where-is-my-partner-identifier"
|
||||
"\" target=\"_blank\">Where is my payware partner identifier?</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:52
|
||||
#: includes/class-paywr-form-fields.php:58
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:55
|
||||
msgid "vPOS identifier"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:57
|
||||
msgid ""
|
||||
"<a href=\"https://kb.payware.eu/general/faqs#where-are-my-virtual-pos-"
|
||||
"identifiers\" target=\"_blank\">Where is my vPOS identifier?</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:62
|
||||
msgid "Payware Public Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:64
|
||||
msgid ""
|
||||
"<a href=\"https://kb.payware.eu/general/faqs#where-is-payware-public-key\" "
|
||||
"target=\"_blank\">Where is payware Public Key?</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:68
|
||||
msgid "Payment period"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:70
|
||||
msgid ""
|
||||
"The time allowed for payment completion in seconds. Accepted range 60 - 600."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:71
|
||||
msgid "600"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:74
|
||||
msgid "Mobile page url"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-form-fields.php:75
|
||||
msgid "Use default if unsure, e.g. - mobile-payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-gateway.php:28
|
||||
msgid "Mobile payments by payware"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-gateway.php:29
|
||||
msgid "Enables receiving payments by customer's favorite payment app."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-gateway.php:156
|
||||
msgid "No valid payment link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-paywr-gateway.php:260
|
||||
msgid "Your order is paid. Thank you!"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:60
|
||||
msgid "Awaiting mobile payment"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:61
|
||||
msgid "Back to checkout"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:112
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:173
|
||||
msgid "Expired"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:174
|
||||
msgid "Expires in"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:193
|
||||
msgid "Shared payment"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:201
|
||||
msgid "Pay Now"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:213
|
||||
msgid "Action is missed"
|
||||
msgstr ""
|
||||
|
||||
#: payware-mobile-payments-for-woocommerce.php:228
|
||||
msgid "Invalid order ID"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
# Change Log
|
||||
|
||||
## [1.0.0] - 2021-04-14
|
||||
### Added:
|
||||
- Initial release
|
||||
@@ -0,0 +1,2 @@
|
||||
/*1.0.0 - 2021.03.10 */
|
||||
- The first released
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user