Compare commits
43 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 |
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
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.15'
|
||||
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
|
||||
|
||||
4267
spec/fixtures/db/dynamic_finders.yml
vendored
4267
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"
|
||||
}
|
||||
]
|
||||
}
|
||||
1854
spec/fixtures/dynamic_finders/expected.yml
vendored
1854
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 ""
|
||||
@@ -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.
|
||||
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.
|
||||
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,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 ""
|
||||
@@ -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.
|
||||
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"
|
||||
}
|
||||
}
|
||||
@@ -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,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))
|
||||
@@ -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
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/product-size-chart-for-woo/change_log/CHANGELOG.txt
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/product-size-chart-for-woo/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/**2021.01.31 - 1.0.0**/
|
||||
- The first release
|
||||
/**2021.03.06 - 1.0.1**/
|
||||
- Fixed: Pop-up CSS
|
||||
- Fixed: Pop-up conflict with some themes
|
||||
- Fixed: Setting display Before add to cart properties
|
||||
/**2021.03.11 - 1.0.2**/
|
||||
- Update: Pop-up CSS
|
||||
/**2021.04.19 - 1.0.3**/
|
||||
- Fixed: Preview css
|
||||
- Fixed: Assign categories and assign products
|
||||
- Fixed: Lose size charts data when restoring size chart
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,350 @@
|
||||
# Copyright (C) 2021 Team ReviewPack
|
||||
# This file is distributed under the same license as the ReviewPack Reviews plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ReviewPack Reviews 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/reviewpack-reviews-seo\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-25T13:35:34+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: reviewpack\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "ReviewPack Reviews"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://reviewpack.eu"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Collect feedback about your company and site with this plugin for ReviewPack. Improve your business quality and sales."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Team ReviewPack"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://reviewpack.eu/about-us"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:56
|
||||
msgid "ReviewPack reviews"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:114
|
||||
#: views/admin_dashboard.php:7
|
||||
msgid "ReviewPack dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:116
|
||||
#: views/admin_dashboard.php:27
|
||||
#: views/admin_invites.php:25
|
||||
#: views/admin_settings.php:20
|
||||
#: views/admin_widgets.php:25
|
||||
msgid "Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:117
|
||||
#: views/admin_dashboard.php:24
|
||||
#: views/admin_invites.php:23
|
||||
#: views/admin_settings.php:18
|
||||
#: views/admin_widgets.php:22
|
||||
msgid "Invite mail"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:134
|
||||
msgid "Please activate an integration in the ReviewPack settings. Otherwise we will not be able to send invitations automatically!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:135
|
||||
#: src/Admin/Admin.php:146
|
||||
#: src/Admin/Admin.php:251
|
||||
msgid "Configure now"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:145
|
||||
msgid "Please validate the ReviewPack plugin settings and connect a (free) ReviewPack account. Otherwise we will not be able to send invitations!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:243
|
||||
msgid "Total reviews"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:245
|
||||
msgid "Open public page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:247
|
||||
msgid "Whoops: could not fetch data:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:250
|
||||
msgid "The plugin is not connected with ReviewPack."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Integrations.php:80
|
||||
msgid "ReviewPack invite planned, sent on %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Integrations.php:87
|
||||
msgid "ReviewPack error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:57
|
||||
msgid "API token"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:58
|
||||
msgid "API secret"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:60
|
||||
msgid "WordPress integrations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:61
|
||||
msgid "Integrations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:64
|
||||
msgid "Company settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:130
|
||||
msgid "Copy and paste the API token and secret here. You can find the tokens in the ReviewPack portal, at the Sales Channel section."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:138
|
||||
msgid "This company is linked with your API credentials and will be used on this WordPress site."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:144
|
||||
msgid "View public page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:147
|
||||
msgid "Could not fetch company details, please try again!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:156
|
||||
msgid "Select the integrations with which you want to automatically send invitations. This invitation will only be processed after the order or reservation has been completed. We automatically send an email to the customer to leave a review behind."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings.php:198
|
||||
msgid "No compatible integrations activated, please contact us with your wishes! Currently, only WooCommerce is supported."
|
||||
msgstr ""
|
||||
|
||||
#: src/Frontend/Shortcodes.php:63
|
||||
msgid "Please define a valid widget type"
|
||||
msgstr ""
|
||||
|
||||
#: src/Resources/Api.php:247
|
||||
msgid "Wrong API response, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Resources/Api.php:252
|
||||
msgid "Wrong API response: "
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:12
|
||||
#: views/admin_invites.php:12
|
||||
#: views/admin_settings.php:10
|
||||
#: views/admin_widgets.php:12
|
||||
msgid "Open ReviewPack"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:19
|
||||
#: views/admin_invites.php:18
|
||||
#: views/admin_settings.php:16
|
||||
#: views/admin_widgets.php:18
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:21
|
||||
#: views/admin_invites.php:20
|
||||
#: views/admin_settings.php:17
|
||||
#: views/admin_widgets.php:20
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:34
|
||||
#: views/admin_invites.php:32
|
||||
#: views/admin_settings.php:26
|
||||
#: views/admin_widgets.php:32
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:39
|
||||
#: views/admin_invites.php:37
|
||||
#: views/admin_settings.php:30
|
||||
#: views/admin_widgets.php:37
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:54
|
||||
msgid "About your company"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:57
|
||||
msgid "Edit details"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:70
|
||||
msgid "Company rating"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:73
|
||||
msgid "No review data yet, please invite more customers."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:84
|
||||
msgid "Based on %d reviews"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:90
|
||||
msgid "Your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:93
|
||||
msgid "Upgrade plan"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:99
|
||||
msgid "Subscription"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:104
|
||||
msgid "Invites"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:110
|
||||
msgid "Invite reset date"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:119
|
||||
msgid "Recent reviews"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:122
|
||||
msgid "Manage reviews"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:129
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:130
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:131
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:145
|
||||
msgid "No title"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:157
|
||||
msgid "Recent invites"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:160
|
||||
msgid "Manage invites"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:167
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:168
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_dashboard.php:169
|
||||
msgid "Planned"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:7
|
||||
#: views/admin_settings.php:6
|
||||
#: views/admin_widgets.php:7
|
||||
msgid "ReviewPack settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:52
|
||||
msgid "First invitation mail to customer"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:54
|
||||
msgid "Edit mail"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:60
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:67
|
||||
msgid "Hi [name],"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:73
|
||||
msgid "Click on the desired number of stars:"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_invites.php:84
|
||||
msgid "Sincerely,"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_widgets.php:52
|
||||
msgid "Small review counter"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_widgets.php:62
|
||||
#: views/admin_widgets.php:78
|
||||
#: views/admin_widgets.php:94
|
||||
#: views/admin_widgets.php:113
|
||||
msgid "Use this shortcode:"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_widgets.php:68
|
||||
msgid "Score widget"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_widgets.php:84
|
||||
msgid "Score widget with title"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin_widgets.php:103
|
||||
msgid "Big review Carrousel"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:2
|
||||
msgid "Connect a free ReviewPack account"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:4
|
||||
msgid "Create a free ReviewPack account"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:8
|
||||
msgid "We invite your customers automatically by email"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:9
|
||||
msgid "Public review page that increases trust in your online store"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:10
|
||||
msgid "Show widgets with your review score to increase conversion rates"
|
||||
msgstr ""
|
||||
|
||||
#: views/not_connected_body.php:11
|
||||
msgid "Start with a free account"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,42 @@
|
||||
# Copyright (C) 2020 Pdfcrowd <support@pdfcrowd.com>
|
||||
# This file is distributed under the same license as the Save as Image by Pdfcrowd plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Save as Image by Pdfcrowd 2.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/save-as-image-pdfcrowd\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-03T11:27:22+01:00\n"
|
||||
"PO-Revision-Date: 2021-01-27T09:46:19+01:00\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: save_as_image_pdfcrowd\n"
|
||||
|
||||
msgid "Save as Image by Pdfcrowd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email with the image has been sent."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error occurred."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enter your email:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration error. Refresh page and retry."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal error. Refresh page and retry."
|
||||
msgstr ""
|
||||
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,42 @@
|
||||
# Copyright (C) 2020 Pdfcrowd <support@pdfcrowd.com>
|
||||
# This file is distributed under the same license as the Save as PDF by Pdfcrowd plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Save as PDF by Pdfcrowd 2.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/save-as-pdf-pdfcrowd\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-03T11:27:22+01:00\n"
|
||||
"PO-Revision-Date: 2021-01-27T09:46:19+01:00\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: save_as_pdf_pdfcrowd\n"
|
||||
|
||||
msgid "Save as PDF by Pdfcrowd"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email with PDF has been sent."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error occurred."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enter your email:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Configuration error. Refresh page and retry."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal error. Refresh page and retry."
|
||||
msgstr ""
|
||||
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/sb-chart-block/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/sb-chart-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "sb-chart-block",
|
||||
"version": "0.3.0",
|
||||
"description": "Displays a chart from CSV content.",
|
||||
"author": "bobbingwide",
|
||||
"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",
|
||||
"dev": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"makepot": "wp i18n make-pot . languages/sb-chart-block.pot --exclude=node_modules,vendor,src",
|
||||
"makejson": "wp i18n make-json languages --no-purge",
|
||||
"l10n": "l10n sb-chart-block"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/tinycolor2": "^1.4.2",
|
||||
"@wordpress/components": "^13.0.2",
|
||||
"@wordpress/icons": "^2.10.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,115 @@
|
||||
# Copyright (C) 2021 bobbingwide
|
||||
# This file is distributed under the same license as the SB Chart block plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SB Chart block 0.3.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sb-chart-block\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-04-18T16:41:04+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: sb-chart-block\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SB Chart block"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.oik-plugins.com/oik-plugins/sb-chart-block"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Displays a Chart for CSV content"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bobbingwide"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.bobbingwide.com/about-bobbing-wide"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Horizontal bar chart"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Choose Line, Bar, Horizontal bar or Pie."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Line chart"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Bar chart"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Pie chart"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Stacked"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Begin Y-axis at 0"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Fill"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Color palette"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Opacity"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Height (pixels)"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Chart"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Displays a chart for CSV content."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Line"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Bar"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Horizontal bar"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Pie"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid ""
|
||||
"Label,Value\n"
|
||||
"One,1\n"
|
||||
"Two,2\n"
|
||||
"Three,3"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,624 @@
|
||||
# Copyright (C) 2021 SecurePay Sdn Bhd
|
||||
# This file is distributed under the same license as the SecurePay for Gravityforms plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SecurePay for Gravityforms 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/securepay-for-gravityforms\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-17T15:35:55+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: securepaygfm\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SecurePay for Gravityforms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://securepay.my/?utm_source=wp-plugins-gravityforms&utm_campaign=plugin-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Accept payment by using SecurePay. A Secure Marketplace Platform for Malaysian."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "SecurePay Sdn Bhd"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://securepay.my/?utm_source=wp-plugins-gravityforms&utm_campaign=author-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:318
|
||||
#: includes/src/GFSecurePay.php:626
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:304
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:612
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:304
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:612
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:305
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:613
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:305
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:613
|
||||
msgid "Pay with SecurePay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:518
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:504
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:504
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:505
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:505
|
||||
msgid "Live Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:522
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:508
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:508
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:509
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:509
|
||||
msgid "Your SecurePay Live Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:522
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:508
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:508
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:509
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:509
|
||||
msgid "Enter the SecurePay Live Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:526
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:512
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:512
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:513
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:513
|
||||
msgid "Live Checksum Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:530
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:516
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:516
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:517
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:517
|
||||
msgid "Your SecurePay Live Checksum Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:530
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:516
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:516
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:517
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:517
|
||||
msgid "Enter the SecurePay Live Checksum Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:534
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:520
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:520
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:521
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:521
|
||||
msgid "Live UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:538
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:524
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:524
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:525
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:525
|
||||
msgid "Your SecurePay Live UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:538
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:524
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:524
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:525
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:525
|
||||
msgid "Enter the SecurePay Live UID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:542
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:528
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:528
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:529
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:529
|
||||
msgid "Live Partner UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:546
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:532
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:532
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:533
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:533
|
||||
msgid "Your SecurePay Live Partner UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:546
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:532
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:532
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:533
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:533
|
||||
msgid "Enter the SecurePay Live Partner UID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:550
|
||||
#: includes/src/GFSecurePay.php:559
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:536
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:545
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:536
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:545
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:537
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:546
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:537
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:546
|
||||
msgid "Sandbox Mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:555
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:541
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:541
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:542
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:542
|
||||
msgid "Enable Sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:559
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:545
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:545
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:546
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:546
|
||||
msgid "Enable Sandbox for testing purposes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:563
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:549
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:549
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:550
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:550
|
||||
msgid "Sandbox Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:567
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:553
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:553
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:554
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:554
|
||||
msgid "Your SecurePay Sandbox Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:567
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:553
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:553
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:554
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:554
|
||||
msgid "Enter the SecurePay Sandbox Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:571
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:557
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:557
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:558
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:558
|
||||
msgid "Sandbox Checksum Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:575
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:561
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:561
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:562
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:562
|
||||
msgid "Your SecurePay Sandbox Checksum Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:575
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:561
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:561
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:562
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:562
|
||||
msgid "Enter the SecurePay Sandbox Checksum Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:579
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:565
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:565
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:566
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:566
|
||||
msgid "Sandbox UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:583
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:569
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:569
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:570
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:570
|
||||
msgid "Your SecurePay Sandbox UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:583
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:569
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:569
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:570
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:570
|
||||
msgid "Enter the SecurePay Sandbox UID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:587
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:573
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:573
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:574
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:574
|
||||
msgid "Sandbox Partner UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:591
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:577
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:577
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:578
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:578
|
||||
msgid "Your SecurePay Sandbox Partner UID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:591
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:577
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:577
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:578
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:578
|
||||
msgid "Enter the SecurePay Sandbox Partner UID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:595
|
||||
#: includes/src/GFSecurePay.php:604
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:581
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:590
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:581
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:590
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:582
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:591
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:582
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:591
|
||||
msgid "Show Bank List"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:600
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:586
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:586
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:587
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:587
|
||||
msgid "SecurePay Supported Banks"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:604
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:590
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:590
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:591
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:591
|
||||
msgid "SecurePay Supported Banks."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:608
|
||||
#: includes/src/GFSecurePay.php:617
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:594
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:603
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:594
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:603
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:595
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:604
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:595
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:604
|
||||
msgid "Show Bank Logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:613
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:599
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:599
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:600
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:600
|
||||
msgid "Use supported banks logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:617
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:603
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:603
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:604
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:604
|
||||
msgid "SecurePay Supported Banks Logo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:621
|
||||
#: includes/src/GFSecurePay.php:625
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:607
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:611
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:607
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:611
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:608
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:612
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:608
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:612
|
||||
msgid "Bank Selection Header"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:625
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:611
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:611
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:612
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:612
|
||||
msgid "This is the header for bank selection."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:629
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:615
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:615
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:616
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:616
|
||||
msgid "Bill Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:632
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:618
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:618
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:619
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:619
|
||||
msgid "SecurePay Bills Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:632
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:618
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:618
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:619
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:619
|
||||
msgid "Enter your description here. It will displayed on Bill page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:647
|
||||
#: includes/src/GFSecurePay.php:651
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:633
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:637
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:633
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:637
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:634
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:638
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:634
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:638
|
||||
msgid "Return URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:651
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:637
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:637
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:638
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:638
|
||||
msgid "Return to this URL after payment complete. Leave blank for default."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:655
|
||||
#: includes/src/GFSecurePay.php:659
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:641
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:645
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:641
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:645
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:642
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:646
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:642
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:646
|
||||
msgid "Cancel URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:659
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:645
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:645
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:646
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:646
|
||||
msgid "Return to this URL if payment failed. Leave blank for default."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:666
|
||||
#: includes/src/GFSecurePay.php:668
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:652
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:654
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:652
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:654
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:653
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:655
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:653
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:655
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:668
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:654
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:654
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:655
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:655
|
||||
msgid "Enable this option if you would like to only send out this form's notifications for the 'Form is submitted' event after payment has been received. Leaving this option disabled will send these notifications immediately after the form is submitted. Notifications which are configured for other events will not be affected by this option."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:676
|
||||
#: includes/src/GFSecurePay.php:678
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:662
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:664
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:662
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:664
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:663
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:665
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:663
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:665
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:678
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:664
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:664
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:665
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:665
|
||||
msgid "Enable this option if you would like to only create the post after payment has been received."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:681
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:667
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:667
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:668
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:668
|
||||
msgid "Create post only when payment is received."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:722
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:708
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:708
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:709
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:709
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:727
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:713
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:713
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:714
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:714
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:732
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:718
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:718
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:719
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:719
|
||||
msgid "Mobile Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:737
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:723
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:733
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:723
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:724
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:724
|
||||
msgid "Reference #1 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:742
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:728
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:728
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:729
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:729
|
||||
msgid "Reference #1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:747
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:733
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:734
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:734
|
||||
msgid "Reference #2 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:752
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:738
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:738
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:739
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:739
|
||||
msgid "Reference #2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:757
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:744
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:744
|
||||
msgid "Reference #3 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:762
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:749
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:749
|
||||
msgid "Reference #3"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:767
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:754
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:754
|
||||
msgid "Reference #4 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:772
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:759
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:759
|
||||
msgid "Reference #4"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:777
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:764
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:764
|
||||
msgid "Reference #5 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:782
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:769
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:769
|
||||
msgid "Reference #5"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:787
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:774
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:774
|
||||
msgid "Reference #6 Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:792
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:779
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:779
|
||||
msgid "Reference #6"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:814
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:760
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:760
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:801
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:801
|
||||
msgid "SecurePay Field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:861
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:807
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:807
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:848
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:848
|
||||
msgid "Send notifications for the 'Form is submitted' event only when payment is received."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:948
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:894
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:894
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:935
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:935
|
||||
msgid "Mark Post as Draft"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:952
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:898
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:898
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:939
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:939
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:1280
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:1170
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:1170
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:1264
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:1264
|
||||
msgid "Payment Completed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/GFSecurePay.php:1281
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/GFSecurePay.php:1171
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/GFSecurePay.php:1171
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/GFSecurePay.php:1265
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/GFSecurePay.php:1265
|
||||
msgid "Payment Failed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/SecurePayGFM.php:74
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.0/includes/src/SecurePayGFM.php:74
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.1/includes/src/SecurePayGFM.php:74
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/tags/1.0.2/includes/src/SecurePayGFM.php:74
|
||||
#: wp-plugins-svn/securepay-for-gravityforms/trunk/includes/src/SecurePayGFM.php:74
|
||||
msgid "SecurePay for GravityForms require GravityForms plugin. Please install and activate."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,46 @@
|
||||
# Copyright (C) 2021 cs_army
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Seo Assistant 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/cs_army/seo-assistant/issues\n"
|
||||
"POT-Creation-Date: 2021-01-26 14:36:26+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: cs army <cs.army021@gmail.com>\n"
|
||||
"Language-Team: cs army <cs.army021@gmail.com>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:182
|
||||
msgid "Enable Google Webmaster"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:190
|
||||
msgid "Google Webmaster ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:213
|
||||
msgid "Enable Google Analytics"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:221
|
||||
msgid "Google Analytics ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:245
|
||||
msgid "Enable Google Tag Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-seo-assistant-admin.php:253
|
||||
msgid "Google Tag Manager ID"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Add tracking and verification script on your WordPress site with ease. "
|
||||
"Place your ids and content tags in *Easy Tags and Tracking Id Inserter* to "
|
||||
"get verified."
|
||||
msgstr ""
|
||||
181
spec/fixtures/dynamic_finders/plugin_version/shortnotes/translation_file/languages/shortnotes.pot
vendored
Normal file
181
spec/fixtures/dynamic_finders/plugin_version/shortnotes/translation_file/languages/shortnotes.pot
vendored
Normal file
@@ -0,0 +1,181 @@
|
||||
# Copyright (C) 2021 jeremyfelt
|
||||
# This file is distributed under the same license as the Shortnotes plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Shortnotes 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/shortnotes\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-12T20:01:18+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: shortnotes\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Shortnotes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/shortnotes/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add a notes post type to WordPress. For your short notes."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "jeremyfelt"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://jeremyfelt.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:31
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:32
|
||||
#: includes/post-type-note.php:155
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:34
|
||||
msgid "Add New Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:35
|
||||
msgid "Edit Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:36
|
||||
msgid "New Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:37
|
||||
msgid "View Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:38
|
||||
msgid "View Notes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:39
|
||||
msgid "Search Notes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:40
|
||||
msgid "No notes found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:41
|
||||
msgid "No notes found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:42
|
||||
msgid "All Notes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:43
|
||||
msgid "Note Archives"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:44
|
||||
msgid "Note Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:45
|
||||
msgid "Insert into note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:46
|
||||
msgid "Uploaded to this note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:47
|
||||
msgid "Filter notess list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:48
|
||||
msgid "Notes list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:49
|
||||
msgid "Notes list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:50
|
||||
msgid "Note published."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:51
|
||||
msgid "Note published privately."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:52
|
||||
msgid "Note reverted to draft."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:53
|
||||
msgid "Note scheduled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:54
|
||||
msgid "Note updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:103
|
||||
msgid "The URL this note is a reply to."
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:117
|
||||
msgid "A name this note is a reply to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:190
|
||||
msgid "Image posted on"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:192
|
||||
msgid "Images posted on"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:242
|
||||
msgid "Your note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/post-type-note.php:270
|
||||
msgid "this post"
|
||||
msgstr ""
|
||||
|
||||
#: plugin.php:26
|
||||
msgid "The Shortnotes WordPress plugin requires PHP 5.6 to function properly. Please upgrade PHP or deactivate the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:23
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:27
|
||||
msgid "Reply to URL (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:28
|
||||
msgid "Enter a URL if this note is a reply"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:33
|
||||
msgid "Reply to name (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:34
|
||||
msgid "Enter a name this reply is directed to"
|
||||
msgstr ""
|
||||
17
spec/fixtures/dynamic_finders/plugin_version/speedplus-optimini/change_log/changelog.txt
vendored
Normal file
17
spec/fixtures/dynamic_finders/plugin_version/speedplus-optimini/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
# Changelog
|
||||
All notable changes to SpeedPlus OptiMini will be documented in this file.
|
||||
|
||||
## [Unreleased]
|
||||
- .htaccess changes
|
||||
|
||||
## [1.2.1] - 2021-04-11
|
||||
- FIX: robots.txt - Yandex reports issue with line "host".
|
||||
- FIX: readme.txt - shortening the text.
|
||||
|
||||
## [1.2.0] - 2021-04-10
|
||||
### Added
|
||||
- Link to OptiMini settings on Plugins list page.
|
||||
- Descriptions of all options.
|
||||
- Creation of robots.txt file.
|
||||
|
||||
|
||||
104
spec/fixtures/dynamic_finders/plugin_version/spoki/translation_file/languages/spoki-it_IT.po
vendored
Normal file
104
spec/fixtures/dynamic_finders/plugin_version/spoki/translation_file/languages/spoki-it_IT.po
vendored
Normal file
@@ -0,0 +1,104 @@
|
||||
# Copyright (C) 2021 Reddoak Srl
|
||||
# This file is distributed under the same license as the Spoki 4 WordPress plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Spoki 4 WordPress 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/spoki\n"
|
||||
"POT-Creation-Date: 2021-03-31T15:49:45+00:00\n"
|
||||
"PO-Revision-Date: 2021-03-31 18:06+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: it_IT\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-Domain: spoki\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/page-setup.php:16
|
||||
msgid "Spoki"
|
||||
msgstr "Spoki"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Free fixed WhatsApp button for your website."
|
||||
msgstr "Pulsante WhatsApp fisso GRATUITO per il tuo sito."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Reddoak Srl"
|
||||
msgstr "Reddoak Srl"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://reddoak.com"
|
||||
msgstr "https://reddoak.com"
|
||||
|
||||
#: includes/page-setup.php:11
|
||||
msgid "Please insert a valid telephone number!"
|
||||
msgstr "Inserisci un numero di telefono valido!"
|
||||
|
||||
#: includes/page-setup.php:21
|
||||
msgid "Fixed Support Button"
|
||||
msgstr "Pulsante fisso di supporto"
|
||||
|
||||
#: includes/page-setup.php:23
|
||||
msgid ""
|
||||
"The fixed support button will always be present on your website. It allows "
|
||||
"you to receive information requests from your customers."
|
||||
msgstr ""
|
||||
"Il pulsante fisso di supporto sarà sempre presente sul tuo sito web. Ti "
|
||||
"permette di ricevere richieste di informazioni dai tuoi clienti."
|
||||
|
||||
#: includes/page-setup.php:29
|
||||
msgid "Enable"
|
||||
msgstr "Abilita"
|
||||
|
||||
#: includes/page-setup.php:39
|
||||
msgid "Show in all website pages"
|
||||
msgstr "Mostra un pulsante fisso in tutte le pagine del sito."
|
||||
|
||||
#: includes/page-setup.php:47
|
||||
msgid "Your Telephone Number"
|
||||
msgstr "Il tuo numero di telefono"
|
||||
|
||||
#: includes/page-setup.php:59
|
||||
msgid ""
|
||||
"When the customer clicks on the button will send the message to this number."
|
||||
msgstr ""
|
||||
"Quando il cliente cliccherà sul pulsante creato invierà il messaggio al "
|
||||
"numero inserito."
|
||||
|
||||
#: includes/page-setup.php:68
|
||||
msgid "Customer Message"
|
||||
msgstr "Messaggio del cliente"
|
||||
|
||||
#: includes/page-setup.php:77
|
||||
msgid "Hi, I would like to receive more information about your business."
|
||||
msgstr "Ciao, vorrei ricevere ulteriori informazioni sulla vostra attività."
|
||||
|
||||
#: includes/page-setup.php:78
|
||||
msgid ""
|
||||
"The customer will send you the following message via WhatsApp whenever press "
|
||||
"on this button."
|
||||
msgstr ""
|
||||
"Ogni qualvolta il cliente utilizzerà questo pulsante ti invierà un messaggio "
|
||||
"al numero inserito."
|
||||
|
||||
#: includes/page-setup.php:86
|
||||
msgid "Position"
|
||||
msgstr "Posizione"
|
||||
|
||||
#: includes/page-setup.php:95
|
||||
msgid "Left"
|
||||
msgstr "Sinistra"
|
||||
|
||||
#: includes/page-setup.php:100
|
||||
msgid "Right"
|
||||
msgstr "Destra"
|
||||
|
||||
#: includes/page-setup.php:102
|
||||
msgid "Select where to attach the button on the screen."
|
||||
msgstr "Seleziona il punto dello schermo in cui fissare il pulsante."
|
||||
|
||||
#~ msgid "Spoki 4 WordPress"
|
||||
#~ msgstr "Spoki 4 WordPress"
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user