Compare commits
26 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 |
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:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v2.3.4
|
||||||
|
|
||||||
- name: Set up Ruby ${{ matrix.ruby }}
|
- name: Set up Ruby ${{ matrix.ruby }}
|
||||||
uses: actions/setup-ruby@v1
|
uses: actions/setup-ruby@v1
|
||||||
@@ -37,5 +37,6 @@ jobs:
|
|||||||
|
|
||||||
- name: Coveralls
|
- name: Coveralls
|
||||||
uses: coverallsapp/github-action@master
|
uses: coverallsapp/github-action@master
|
||||||
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
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
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@v2.3.4
|
||||||
- name: Set up Ruby 2.6
|
- name: Set up Ruby 2.6
|
||||||
uses: actions/setup-ruby@v1
|
uses: actions/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -6,8 +6,7 @@ module WPScan
|
|||||||
class Aliases < CMSScanner::Controller::Base
|
class Aliases < CMSScanner::Controller::Base
|
||||||
def cli_options
|
def cli_options
|
||||||
[
|
[
|
||||||
OptAlias.new(['--stealthy'],
|
OptAlias.new(['--stealthy'], alias_for: '--random-user-agent --detection-mode passive')
|
||||||
alias_for: '--random-user-agent --detection-mode passive --plugins-version-detection passive')
|
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -32,8 +32,7 @@ module WPScan
|
|||||||
value_if_empty: '1-100')
|
value_if_empty: '1-100')
|
||||||
},
|
},
|
||||||
value_if_empty: 'vp,vt,tt,cb,dbe,u,m',
|
value_if_empty: 'vp,vt,tt,cb,dbe,u,m',
|
||||||
incompatible: [%i[vp ap p], %i[vt at t]],
|
incompatible: [%i[vp ap p], %i[vt at t]]
|
||||||
default: { all_plugins: true, config_backups: true }
|
|
||||||
),
|
),
|
||||||
OptRegexp.new(
|
OptRegexp.new(
|
||||||
[
|
[
|
||||||
@@ -52,7 +51,7 @@ module WPScan
|
|||||||
OptChoice.new(
|
OptChoice.new(
|
||||||
['--plugins-detection MODE',
|
['--plugins-detection MODE',
|
||||||
'Use the supplied mode to enumerate Plugins.'],
|
'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(
|
OptBoolean.new(
|
||||||
['--plugins-version-all',
|
['--plugins-version-all',
|
||||||
@@ -63,7 +62,7 @@ module WPScan
|
|||||||
OptChoice.new(
|
OptChoice.new(
|
||||||
['--plugins-version-detection MODE',
|
['--plugins-version-detection MODE',
|
||||||
'Use the supplied mode to check plugins\' versions.'],
|
'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(
|
OptInteger.new(
|
||||||
['--plugins-threshold THRESHOLD',
|
['--plugins-threshold THRESHOLD',
|
||||||
@@ -170,6 +169,12 @@ module WPScan
|
|||||||
['--users-detection MODE',
|
['--users-detection MODE',
|
||||||
'Use the supplied mode to enumerate Users, instead of the global (--detection-mode) 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
|
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
|
end
|
||||||
|
|||||||
@@ -200,7 +200,7 @@ module WPScan
|
|||||||
# If the --enumerate is used, the default value is handled by the Option
|
# 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
|
# However, when using --passwords alone, the default has to be set by the code below
|
||||||
def enum_users_range
|
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
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -11,6 +11,16 @@ require_relative 'users/yoast_seo_author_sitemap'
|
|||||||
|
|
||||||
module WPScan
|
module WPScan
|
||||||
module Finders
|
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
|
module Users
|
||||||
# Users Finder
|
# Users Finder
|
||||||
class Base
|
class Base
|
||||||
@@ -28,6 +38,10 @@ module WPScan
|
|||||||
Users::AuthorIdBruteForcing.new(target) <<
|
Users::AuthorIdBruteForcing.new(target) <<
|
||||||
Users::LoginErrorMessages.new(target)
|
Users::LoginErrorMessages.new(target)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def finders
|
||||||
|
@finders ||= Finders::UsersFinders.new
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ module WPScan
|
|||||||
module Finders
|
module Finders
|
||||||
# Specific Finders container to filter the version detected
|
# Specific Finders container to filter the version detected
|
||||||
# and remove the one with low confidence to avoid false
|
# 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.
|
# determine it.
|
||||||
class WpVersionFinders < UniqueFinders
|
class WpVersionFinders < UniqueFinders
|
||||||
def filter_findings
|
def filter_findings
|
||||||
|
|||||||
@@ -2,5 +2,5 @@
|
|||||||
|
|
||||||
# Version
|
# Version
|
||||||
module WPScan
|
module WPScan
|
||||||
VERSION = '3.8.16'
|
VERSION = '3.9.0-dev'
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -21,9 +21,7 @@ describe WPScan::Controller::Aliases do
|
|||||||
describe 'parsed_options' do
|
describe 'parsed_options' do
|
||||||
context 'when no --stealthy supplied' do
|
context 'when no --stealthy supplied' do
|
||||||
it 'contains the correct options' do
|
it 'contains the correct options' do
|
||||||
expect(WPScan::ParsedCli.options).to include(
|
expect(WPScan::ParsedCli.options).to include(detection_mode: :mixed)
|
||||||
detection_mode: :mixed, plugins_version_detection: :mixed
|
|
||||||
)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -31,9 +29,7 @@ describe WPScan::Controller::Aliases do
|
|||||||
let(:cli_args) { "#{super()} --stealthy" }
|
let(:cli_args) { "#{super()} --stealthy" }
|
||||||
|
|
||||||
it 'contains the correct options' do
|
it 'contains the correct options' do
|
||||||
expect(WPScan::ParsedCli.options).to include(
|
expect(WPScan::ParsedCli.options).to include(random_user_agent: true, detection_mode: :passive)
|
||||||
random_user_agent: true, detection_mode: :passive, plugins_version_detection: :passive
|
|
||||||
)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ describe WPScan::Controller::Enumeration do
|
|||||||
let(:type) { t }
|
let(:type) { t }
|
||||||
let(:detection_mode) { :mixed }
|
let(:detection_mode) { :mixed }
|
||||||
|
|
||||||
context 'when vulnerable' do
|
context 'when vulnerable and mixed detection' do
|
||||||
let(:cli_args) { "#{super()} -e v#{type[0]}" }
|
let(:cli_args) { "#{super()} -e v#{type[0]}" }
|
||||||
|
|
||||||
it 'returns the expected string' do
|
it 'returns the expected string' do
|
||||||
@@ -37,7 +37,7 @@ describe WPScan::Controller::Enumeration do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when all' do
|
context 'when all and passive detection' do
|
||||||
let(:cli_args) { "#{super()} -e a#{type[0]}" }
|
let(:cli_args) { "#{super()} -e a#{type[0]}" }
|
||||||
let(:detection_mode) { :passive }
|
let(:detection_mode) { :passive }
|
||||||
|
|
||||||
@@ -46,7 +46,7 @@ describe WPScan::Controller::Enumeration do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when most popular' do
|
context 'when most popular and aggressive detection' do
|
||||||
let(:cli_args) { "#{super()} -e #{type[0]}" }
|
let(:cli_args) { "#{super()} -e #{type[0]}" }
|
||||||
let(:detection_mode) { :aggressive }
|
let(:detection_mode) { :aggressive }
|
||||||
|
|
||||||
@@ -58,14 +58,6 @@ describe WPScan::Controller::Enumeration do
|
|||||||
end
|
end
|
||||||
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
|
describe '#cli_options' do
|
||||||
it 'contains the correct options' do
|
it 'contains the correct options' do
|
||||||
expect(controller.cli_options.map(&:to_sym)).to eql(
|
expect(controller.cli_options.map(&:to_sym)).to eql(
|
||||||
@@ -76,7 +68,7 @@ describe WPScan::Controller::Enumeration do
|
|||||||
config_backups_list config_backups_detection
|
config_backups_list config_backups_detection
|
||||||
db_exports_list db_exports_detection
|
db_exports_list db_exports_detection
|
||||||
medias_detection
|
medias_detection
|
||||||
users_list users_detection]
|
users_list users_detection exclude_usernames]
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -104,17 +96,6 @@ describe WPScan::Controller::Enumeration do
|
|||||||
|
|
||||||
describe '#run' do
|
describe '#run' do
|
||||||
context 'when no :enumerate' 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
|
context 'when --passwords supplied but no --username or --usernames' do
|
||||||
let(:cli_args) { "#{super()} --passwords some-file.txt" }
|
let(:cli_args) { "#{super()} --passwords some-file.txt" }
|
||||||
|
|
||||||
|
|||||||
2051
spec/fixtures/db/dynamic_finders.yml
vendored
2051
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
916
spec/fixtures/dynamic_finders/expected.yml
vendored
916
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,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"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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 ""
|
||||||
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.
|
||||||
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 ""
|
||||||
@@ -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> из настроек и вставьте его в форму ниже:"
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
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,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"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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 @@
|
|||||||
|
# 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,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,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 ""
|
||||||
@@ -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 ""
|
||||||
@@ -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,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 ""
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"name": "notify-biz/notify-for-woocommerce",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"type": "project",
|
||||||
|
"description": "Wordpress plugin for WooCommerce notifications."
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
# Change Log
|
||||||
|
|
||||||
|
## [1.0.0] - 2021-04-10
|
||||||
|
### Added:
|
||||||
|
- Initial release
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
# Change Log
|
||||||
|
|
||||||
|
## [1.0.0] - 2021-04-14
|
||||||
|
### Added:
|
||||||
|
- Initial release
|
||||||
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
@@ -176,6 +176,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/acc-conditional-typo/public/js/acc-conditional-typo-public.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/acc-conditional-typo/public/js/acc-conditional-typo-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- accessally -->
|
||||||
|
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/accessally/resource/frontend/js/jquery.csv.js?ver=3.5.8" id="accessally-jquery-csv-js"></script>
|
||||||
|
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/accessally/resource/frontend/js/accessally.min.js?ver=3.5.8" id="accessally-script-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- accessibility-help-button -->
|
<!-- accessibility-help-button -->
|
||||||
<link rel="stylesheet" id="aa-call-css" href="http://wp.lab/wp-content/plugins/accessibility-help-button/public/css/aa-call-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="aa-call-css" href="http://wp.lab/wp-content/plugins/accessibility-help-button/public/css/aa-call-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/accessibility-help-button/public/js/aa-call-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/accessibility-help-button/public/js/aa-call-public.js?ver=1.0.0"></script>
|
||||||
@@ -299,6 +304,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/activities/public/js/activities-public.js?ver=1.0.2"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/activities/public/js/activities-public.js?ver=1.0.2"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- activity-link-preview-for-buddypress -->
|
||||||
|
<link rel="stylesheet" id="bp-activity-link-preview-css-css" href="http://wp.lab/wp-content/plugins/activity-link-preview-for-buddypress/assets/css/bp-activity-link-preview.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/activity-link-preview-for-buddypress/assets/js/bp-activity-link-preview.js?ver=1.0.0" id="bp-activity-link-preview-js-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- activityhub -->
|
<!-- activityhub -->
|
||||||
<link rel="stylesheet" id="intl-tel-input-css" href="http://wp.lab/wp-content/plugins/activityhub/assets/css/intlTelInput.css?ver=2.0.1" media="all">
|
<link rel="stylesheet" id="intl-tel-input-css" href="http://wp.lab/wp-content/plugins/activityhub/assets/css/intlTelInput.css?ver=2.0.1" media="all">
|
||||||
<link rel="stylesheet" id="select2css-css" href="http://wp.lab/wp-content/plugins/activityhub/assets/css/select2.min.css?ver=2.0.1" media="all">
|
<link rel="stylesheet" id="select2css-css" href="http://wp.lab/wp-content/plugins/activityhub/assets/css/select2.min.css?ver=2.0.1" media="all">
|
||||||
@@ -1733,6 +1743,10 @@
|
|||||||
<link rel="stylesheet" id="bpquotes-styles-css" href="http://wp.lab/wp-content/plugins/beautiful-pull-quotes/css/beautiful-pull-quotes.css?ver=1.0" type="text/css" media="all">
|
<link rel="stylesheet" id="bpquotes-styles-css" href="http://wp.lab/wp-content/plugins/beautiful-pull-quotes/css/beautiful-pull-quotes.css?ver=1.0" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- beautiful-steps -->
|
||||||
|
<link rel="stylesheet" id="beautiful-steps-css-css" href="http://wp.lab/wp-content/plugins/beautiful-steps/css/styles.css?ver=1.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- beautiful-taxonomy-filters -->
|
<!-- beautiful-taxonomy-filters -->
|
||||||
<link rel="stylesheet" id="select2-css" href="http://wp.lab/wp-content/plugins/beautiful-taxonomy-filters/public/css/select2.min.css?ver=2.3.1" type="text/css" media="all">
|
<link rel="stylesheet" id="select2-css" href="http://wp.lab/wp-content/plugins/beautiful-taxonomy-filters/public/css/select2.min.css?ver=2.3.1" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="beautiful-taxonomy-filters-basic-css" href="http://wp.lab/wp-content/plugins/beautiful-taxonomy-filters/public/css/beautiful-taxonomy-filters-base.min.css?ver=2.3.1" type="text/css" media="all">
|
<link rel="stylesheet" id="beautiful-taxonomy-filters-basic-css" href="http://wp.lab/wp-content/plugins/beautiful-taxonomy-filters/public/css/beautiful-taxonomy-filters-base.min.css?ver=2.3.1" type="text/css" media="all">
|
||||||
@@ -2532,6 +2546,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bs-faq/public/js/bs_faq_my_js.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bs-faq/public/js/bs_faq_my_js.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- bs-scroll-progress -->
|
||||||
|
<link rel="stylesheet" id="bs-scroll-progress-css" href="http://wp.lab/wp-content/plugins/bs-scroll-progress/public/css/bs-scroll-progress-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/bs-scroll-progress/public/js/bs-scroll-progress-public.js?ver=1.0.0" id="bs-scroll-progress-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- bsf-docs -->
|
<!-- bsf-docs -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bsf-docs/assets/js/jquery.livesearch.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bsf-docs/assets/js/jquery.livesearch.js?ver=1.0.0"></script>
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bsf-docs/assets/js/searchbox-script.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bsf-docs/assets/js/searchbox-script.js?ver=1.0.0"></script>
|
||||||
@@ -2572,6 +2591,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddy-views/public/js/buddy-views.min.js?ver=1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buddy-views/public/js/buddy-views.min.js?ver=1.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- buddyboss-group-auto-subscription-to-forum-and-discussions -->
|
||||||
|
<link rel="stylesheet" id="bbsgs-css-css" href="http://wp.lab/wp-content/plugins/buddyboss-group-auto-subscription-to-forum-and-discussions/frontend/custom.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/buddyboss-group-auto-subscription-to-forum-and-discussions/frontend/custom.js?ver=1.0.0" id="bbsgs-js-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- buddymeet -->
|
<!-- buddymeet -->
|
||||||
<link rel="stylesheet" id="buddymeet-css-css" href="http://wp.lab/wp-content/plugins/buddymeet/assets/css/buddymeet.css?ver=1.7.4" media="screen">
|
<link rel="stylesheet" id="buddymeet-css-css" href="http://wp.lab/wp-content/plugins/buddymeet/assets/css/buddymeet.css?ver=1.7.4" media="screen">
|
||||||
|
|
||||||
@@ -2635,6 +2659,15 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bulk-me-now/assets/js-min/ajax.min.js?ver=2.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bulk-me-now/assets/js-min/ajax.min.js?ver=2.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- bulk-variations-for-woocommerce -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/bulk-variations-for-woocommerce/assets/js/main.js?ver=1.1.4" id="wcbv-main-js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- bulk-verify-email -->
|
||||||
|
<link rel="stylesheet" id="bulk-verify-email-css" href="http://wp.lab/wp-content/plugins/bulk-verify-email/public/css/bulk-verify-email-public.css?ver=1.0.1" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/bulk-verify-email/public/js/bulk-verify-email-public.js?ver=1.0.1" id="bulk-verify-email-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- business-directory-plugin -->
|
<!-- business-directory-plugin -->
|
||||||
<link rel="stylesheet" id="wpbdp-widgets-css" href="http://wp.lab/wp-content/plugins/business-directory-plugin/assets/css/widgets.min.css?ver=5.1.6" type="text/css" media="all">
|
<link rel="stylesheet" id="wpbdp-widgets-css" href="http://wp.lab/wp-content/plugins/business-directory-plugin/assets/css/widgets.min.css?ver=5.1.6" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -2848,6 +2881,8 @@
|
|||||||
<!-- card-oracle -->
|
<!-- card-oracle -->
|
||||||
<link rel="stylesheet" id="card-oracle-css" href="http://wp.lab/wp-content/plugins/card-oracle/public/css/card-oracle-public.css?ver=0.5.0" media="all">
|
<link rel="stylesheet" id="card-oracle-css" href="http://wp.lab/wp-content/plugins/card-oracle/public/css/card-oracle-public.css?ver=0.5.0" media="all">
|
||||||
<script src="http://wp.lab/wp-content/plugins/card-oracle/public/js/card-oracle-public.js?ver=0.5.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/card-oracle/public/js/card-oracle-public.js?ver=0.5.0"></script>
|
||||||
|
<link rel="stylesheet" id="card-oracle-css" href="http://wp.lab/wp-content/plugins/card-oracle/public/css/min/card-oracle-public.min.css?ver=0.5.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/card-oracle/public/js/min/card-oracle-public.min.js?ver=0.5.0" id="card-oracle-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- cardojo-lite -->
|
<!-- cardojo-lite -->
|
||||||
@@ -3156,6 +3191,15 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-message-filter/public/js/contact_form_message_filter-public.js?ver=1.1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-message-filter/public/js/contact_form_message_filter-public.js?ver=1.1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- cf7-multi-step -->
|
||||||
|
<link rel="stylesheet" id="cf7mls-css" href="http://wp.lab/wp-content/plugins/cf7-multi-step/assets/frontend/css/cf7mls.css?ver=2.6.1" media="all">
|
||||||
|
<link rel="stylesheet" id="cf7mls_animate-css" href="http://wp.lab/wp-content/plugins/cf7-multi-step/assets/frontend/animate/animate.min.css?ver=2.6.1" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/cf7-multi-step/assets/frontend/js/cf7mls.js?ver=2.6.1" id="cf7mls-js"></script>
|
||||||
|
<link rel="stylesheet" id="cf7mls-css" href="http://wp.lab/wp-content/plugins/cf7-multi-step//assets/frontend/css/cf7mls.css?ver=2.6.1" media="all">
|
||||||
|
<link rel="stylesheet" id="cf7mls_animate-css" href="http://wp.lab/wp-content/plugins/cf7-multi-step//assets/frontend/animate/animate.min.css?ver=2.6.1" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/cf7-multi-step//assets/frontend/js/cf7mls.js?ver=2.6.1" id="cf7mls-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- cf7-notie -->
|
<!-- cf7-notie -->
|
||||||
<link rel="stylesheet" id="cf7_notie-css" href="http://wp.lab/wp-content/plugins/cf7-notie/public/css/cf7_notie-public.css?ver=1.0" type="text/css" media="all">
|
<link rel="stylesheet" id="cf7_notie-css" href="http://wp.lab/wp-content/plugins/cf7-notie/public/css/cf7_notie-public.css?ver=1.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-notie/public/js/notie.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-notie/public/js/notie.js?ver=1.0"></script>
|
||||||
@@ -3271,6 +3315,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chat-bee/assets/js/base.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chat-bee/assets/js/base.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- chat-everywhere -->
|
||||||
|
<link rel="stylesheet" id="chat-everywhere-css" href="http://wp.lab/wp-content/plugins/chat-everywhere/public/css/chat-everywhere-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/chat-everywhere/public/js/chat-everywhere-public.js?ver=1.0.0" id="chat_everywhere_public_js-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- chat-with-me-on-zalo -->
|
<!-- chat-with-me-on-zalo -->
|
||||||
<link rel="stylesheet" id="cwmoz-style-css" href="http://wp.lab/wp-content/plugins/chat-with-me-on-zalo/assets/css/style-2.css?ver=1.0" media="all">
|
<link rel="stylesheet" id="cwmoz-style-css" href="http://wp.lab/wp-content/plugins/chat-with-me-on-zalo/assets/css/style-2.css?ver=1.0" media="all">
|
||||||
|
|
||||||
@@ -3728,6 +3777,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/js/cto-acf-public.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/js/cto-acf-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- coneblog-widgets -->
|
||||||
|
<link rel="stylesheet" id="coneblog-font-icons-css" href="http://wp.lab/wp-content/plugins/coneblog-widgets/assets/css/fontello.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/coneblog-widgets/assets/js/coneblog-main.js?ver=1.0.0" id="coneblog-plugin-main-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- conformis-cookie-banner -->
|
<!-- conformis-cookie-banner -->
|
||||||
<script src="http://wp.lab/wp-content/plugins/conformis-cookie-banner/js/main.js?ver=0.1.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/conformis-cookie-banner/js/main.js?ver=0.1.0"></script>
|
||||||
<link rel="stylesheet" id="conformis_style-css" href="http://wp.lab/wp-content/plugins/conformis-cookie-banner/css/main.css?ver=0.1.0" media="all">
|
<link rel="stylesheet" id="conformis_style-css" href="http://wp.lab/wp-content/plugins/conformis-cookie-banner/css/main.css?ver=0.1.0" media="all">
|
||||||
@@ -3898,6 +3952,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cooked/assets/js/cooked-functions.min.js?ver=1.2.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cooked/assets/js/cooked-functions.min.js?ver=1.2.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- cookie-consent-autoblock -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/cookie-consent-autoblock/assets/js/cookie-consent.js?ver=1.0.1" id="script-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- cookie-consent-box -->
|
<!-- cookie-consent-box -->
|
||||||
<link rel="stylesheet" id="cookie-consent-box-css" href="http://wp.lab/wp-content/plugins/cookie-consent-box/public/css/cookie-consent-box.css?ver=1.0.1" type="text/css" media="all">
|
<link rel="stylesheet" id="cookie-consent-box-css" href="http://wp.lab/wp-content/plugins/cookie-consent-box/public/css/cookie-consent-box.css?ver=1.0.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" defer async src="http://wp.lab/wp-content/plugins/cookie-consent-box/public/js/cookie-consent-box.js?ver=1.0.1"></script>
|
<script type="text/javascript" defer async src="http://wp.lab/wp-content/plugins/cookie-consent-box/public/js/cookie-consent-box.js?ver=1.0.1"></script>
|
||||||
@@ -4312,6 +4370,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/custom-layouts/assets/js/frontend/custom-layouts.js?ver=1.1.3"></script>
|
<script src="http://wp.lab/wp-content/plugins/custom-layouts/assets/js/frontend/custom-layouts.js?ver=1.1.3"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- custom-login-form-and-logout-redirect -->
|
||||||
|
<link rel="stylesheet" id="mstteam-login-form-css" href="http://wp.lab/wp-content/plugins/custom-login-form-and-logout-redirect//assets/css/frontend.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/custom-login-form-and-logout-redirect//assets/js/frontend.js?ver=1.0.0" id="mstteam-login-form-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- custom-map-for-real-estate -->
|
<!-- custom-map-for-real-estate -->
|
||||||
<link rel="stylesheet" id="maps-points-css" href="http://wp.lab/wp-content/plugins/custom-map-for-real-estate/frontend/css/maps_points.css?ver=1.1.1" type="text/css" media="all">
|
<link rel="stylesheet" id="maps-points-css" href="http://wp.lab/wp-content/plugins/custom-map-for-real-estate/frontend/css/maps_points.css?ver=1.1.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-map-for-real-estate/frontend/js/maps_points.js?ver=1.1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-map-for-real-estate/frontend/js/maps_points.js?ver=1.1.1"></script>
|
||||||
@@ -4384,6 +4447,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cyclone-slider-2/js/client.js?ver=3.2.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cyclone-slider-2/js/client.js?ver=3.2.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- cylist -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/cylist/js/cylist.js?ver=1.0.0" id="ajax-script-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- da-reactions -->
|
<!-- da-reactions -->
|
||||||
<link rel="stylesheet" id="da-reactions-css" href="http://wp.lab/wp-content/plugins/da-reactions/assets/dist/public.css?ver=3.3.3" type="text/css" media="all">
|
<link rel="stylesheet" id="da-reactions-css" href="http://wp.lab/wp-content/plugins/da-reactions/assets/dist/public.css?ver=3.3.3" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/da-reactions/assets/dist/public.js?ver=3.3.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/da-reactions/assets/dist/public.js?ver=3.3.3"></script>
|
||||||
@@ -4394,6 +4461,12 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/daily-bible-readings/public/js/readmore_v2.2.0.min.js?ver=1.0.2"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/daily-bible-readings/public/js/readmore_v2.2.0.min.js?ver=1.0.2"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- daily-maxim-365 -->
|
||||||
|
<link rel="stylesheet" id="daily-maxim-365_frontend-css-css" href="http://wp.lab/wp-content/plugins/daily-maxim-365/assets/css/frontend/daily-maxim-365.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="daily-maxim-365_frontend-css-1-css" href="http://wp.lab/wp-content/plugins/daily-maxim-365/assets/css/frontend/daily-maxim-365-other-1.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/daily-maxim-365/assets/js/frontend/daily-maxim-365.js?ver=1.0.0" id="daily-maxim-365_frontend-js-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- dailybrief -->
|
<!-- dailybrief -->
|
||||||
<link rel="stylesheet" id="dailybrief-css" href="http://wp.lab/wp-content/plugins/dailybrief/public/css/dailybrief-public.css?ver=1.0.28" type="text/css" media="all">
|
<link rel="stylesheet" id="dailybrief-css" href="http://wp.lab/wp-content/plugins/dailybrief/public/css/dailybrief-public.css?ver=1.0.28" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dailybrief/public/js/dailybrief-public.js?ver=1.0.28"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dailybrief/public/js/dailybrief-public.js?ver=1.0.28"></script>
|
||||||
@@ -4555,6 +4628,15 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/disable-wp-comments/public/js/disable-wp-comments-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/disable-wp-comments/public/js/disable-wp-comments-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- disclaimer-popup -->
|
||||||
|
<link rel="stylesheet" id="wp-disclaimer-popup-css" href="http://wp.lab/wp-content/plugins/disclaimer-popup/public/css/wp-disclaimer-popup-public.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="wp-disclaimer-popup-gen-css" href="http://wp.lab/wp-content/plugins/disclaimer-popup/public/css/wp-disclaimer-popup-public.gen.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="magnific-popup-css" href="http://wp.lab/wp-content/plugins/disclaimer-popup/public/css/magnific-popup.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/disclaimer-popup/public/js/wp-disclaimer-popup-public.js?ver=1.0.0" id="wp-disclaimer-popup-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/disclaimer-popup/public/js/jquery.magnific-popup.min.js?ver=1.0.0" id="magnific-popup-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/disclaimer-popup/public/js/js.cookie.js?ver=1.0.0" id="js-cookie-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- dispensary-age-verification -->
|
<!-- dispensary-age-verification -->
|
||||||
<link rel="stylesheet" id="dispensary-age-verification-css" href="http://wp.lab/wp-content/plugins/dispensary-age-verification/public/css/dispensary-age-verification-public.css?ver=1.6" type="text/css" media="all">
|
<link rel="stylesheet" id="dispensary-age-verification-css" href="http://wp.lab/wp-content/plugins/dispensary-age-verification/public/css/dispensary-age-verification-public.css?ver=1.6" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dispensary-age-verification/public/js/dispensary-age-verification-public.js?ver=1.6"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dispensary-age-verification/public/js/dispensary-age-verification-public.js?ver=1.6"></script>
|
||||||
@@ -4672,6 +4754,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/dreamgrow-scroll-triggered-box/js/script.js?ver=2.3"></script>
|
<script src="http://wp.lab/wp-content/plugins/dreamgrow-scroll-triggered-box/js/script.js?ver=2.3"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- dressfit-virtual-clothes-try-on -->
|
||||||
|
<link rel="stylesheet" id="virtual-clothes-try-on-css" href="http://wp.lab/wp-content/plugins/dressfit-virtual-clothes-try-on/public/css/virtual-clothes-try-on-public.css?ver=1.0.2" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/dressfit-virtual-clothes-try-on/public/js/virtual-clothes-try-on-public.js?ver=1.0.2" id="virtual-clothes-try-on-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- drim-share -->
|
<!-- drim-share -->
|
||||||
<link rel="stylesheet" id="drim-share-css" href="http://wp.lab/wp-content/plugins/drim-share/public/css/drim-share.min.css?ver=1.1.0" type="text/css" media="all">
|
<link rel="stylesheet" id="drim-share-css" href="http://wp.lab/wp-content/plugins/drim-share/public/css/drim-share.min.css?ver=1.1.0" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -5072,6 +5159,10 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/ebook-woohook/public/js/epubsystems_woo-public.js?ver=4.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/ebook-woohook/public/js/epubsystems_woo-public.js?ver=4.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ecards-lite -->
|
||||||
|
<link rel="stylesheet" id="ecards-lite-css" href="http://wp.lab/wp-content/plugins/ecards-lite/css/vintage.css?ver=4.2.2" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- echelon-so -->
|
<!-- echelon-so -->
|
||||||
<link rel="stylesheet" id="echelonso-utilities-css" href="http://wp.lab/wp-content/plugins/echelon-so/inc/utilities.css?ver=1.1.1" type="text/css" media="all">
|
<link rel="stylesheet" id="echelonso-utilities-css" href="http://wp.lab/wp-content/plugins/echelon-so/inc/utilities.css?ver=1.1.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/animated-gradients/inc/granim.min.js?ver=1.1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/animated-gradients/inc/granim.min.js?ver=1.1.1"></script>
|
||||||
@@ -5901,6 +5992,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/faq-wd/js/faq_wd_front_end.js?ver=1.0.34_5a2c0f2729647"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/faq-wd/js/faq_wd_front_end.js?ver=1.0.34_5a2c0f2729647"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- fast-fancy-filter-3f -->
|
||||||
|
<link rel="stylesheet" id="fast-fancy-filter-main-css-css" href="http://wp.lab/wp-content/plugins/fast-fancy-filter-3f/assets/css/style.css?ver=1.0.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- fat-live-fixed -->
|
<!-- fat-live-fixed -->
|
||||||
<script src="http://wp.lab/wp-content/plugins/fat-live-fixed/live.js?ver=1.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/fat-live-fixed/live.js?ver=1.0"></script>
|
||||||
|
|
||||||
@@ -6315,6 +6410,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/food-truck/assets/src/js/main.js?ver=1.0.4"></script>
|
<script src="http://wp.lab/wp-content/plugins/food-truck/assets/src/js/main.js?ver=1.0.4"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- foopeople -->
|
||||||
|
<link rel="stylesheet" id="foopeople-block-style-css-css" href="http://wp.lab/wp-content/plugins/foopeople/assets/css/foopeople.blocks.min.css?ver=1.0.4" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/foopeople/assets/js/theme.min.js?ver=1.0.4" id="foopeople_front_scripts-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- footable -->
|
<!-- footable -->
|
||||||
<link rel="stylesheet" id="footable-core-min-css" href="http://wp.lab/wp-content/plugins/footable/css/footable.core.min.css?ver=0.3.1" type="text/css" media="all">
|
<link rel="stylesheet" id="footable-core-min-css" href="http://wp.lab/wp-content/plugins/footable/css/footable.core.min.css?ver=0.3.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/footable/js/footable.min.js?ver=0.3.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/footable/js/footable.min.js?ver=0.3.1"></script>
|
||||||
@@ -6615,6 +6715,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gambling-addiction-test/js/mga.js?ver=1.0" id="mga-plugin-js"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gambling-addiction-test/js/mga.js?ver=1.0" id="mga-plugin-js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- gambling-quiz -->
|
||||||
|
<link rel="stylesheet" id="gambling-quiz-style-css" href="http://wp.lab/wp-content/plugins/gambling-quiz/css/gambling-quiz.css?ver=1.0" type="text/css" media="all">
|
||||||
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gambling-quiz/js/gambling-quiz.js?ver=1.0" id="gambling-quiz-plugin-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- game-showcase -->
|
<!-- game-showcase -->
|
||||||
<link rel="stylesheet" id="game-showcase-css" href="http://wp.lab/wp-content/plugins/game-showcase/public/css/game-showcase-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="game-showcase-css" href="http://wp.lab/wp-content/plugins/game-showcase/public/css/game-showcase-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/game-showcase/public/js/game-showcase-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/game-showcase/public/js/game-showcase-public.js?ver=1.0.0"></script>
|
||||||
@@ -8125,6 +8230,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/integrate-ticket-master/includes/js/bootstrap.min.js?ver=1.0.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/integrate-ticket-master/includes/js/bootstrap.min.js?ver=1.0.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- integration-with-mautic-for-wp -->
|
||||||
|
<link rel="stylesheet" id="wp-mautic-integration-css" href="http://wp.lab/wp-content/plugins/integration-with-mautic-for-wp/public/css/wp-mautic-integration-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/integration-with-mautic-for-wp/public/js/wp-mautic-integration-public.js?ver=1.0.0" id="wp-mautic-integration-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- intelligence -->
|
<!-- intelligence -->
|
||||||
<link rel="stylesheet" id="intel-css" href="http://wp.lab/wp-content/plugins/intelligence/public/css/intel-public.css?ver=1.2.3" type="text/css" media="all">
|
<link rel="stylesheet" id="intel-css" href="http://wp.lab/wp-content/plugins/intelligence/public/css/intel-public.css?ver=1.2.3" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/intelligence/public/js/intel-public.js?ver=1.2.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/intelligence/public/js/intel-public.js?ver=1.2.3"></script>
|
||||||
@@ -8231,6 +8341,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/issuem/js/jquery.flexslider-min.js?ver=2.7.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/issuem/js/jquery.flexslider-min.js?ver=2.7.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- istk-add-on -->
|
||||||
|
<link rel="stylesheet" id="istk_add_on-css" href="http://wp.lab/wp-content/plugins/istk-add-on/assets/style.css?ver=1.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- it-popups -->
|
<!-- it-popups -->
|
||||||
<link rel="stylesheet" id="itpopup_modal_css-css" href="http://wp.lab/wp-content/plugins/it-popups/assets/css/itpopup-front.css?ver=1.0" type="text/css" media="all">
|
<link rel="stylesheet" id="itpopup_modal_css-css" href="http://wp.lab/wp-content/plugins/it-popups/assets/css/itpopup-front.css?ver=1.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/it-popups/assets/js/itpopup-front.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/it-popups/assets/js/itpopup-front.js?ver=1.0"></script>
|
||||||
@@ -8659,6 +8773,11 @@
|
|||||||
<link rel="stylesheet" id="kpsFrontendCss-css" href="http://wp.lab/wp-content/plugins/kletterpartner-suche/frontend/css/kps-frontend.css?ver=0.3" type="text/css" media="all">
|
<link rel="stylesheet" id="kpsFrontendCss-css" href="http://wp.lab/wp-content/plugins/kletterpartner-suche/frontend/css/kps-frontend.css?ver=0.3" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- klubraum-membership-request -->
|
||||||
|
<link rel="stylesheet" id="klubraum-membership-request-widget-css" href="http://wp.lab/wp-content/plugins/klubraum-membership-request/public/css/klubraum-membership-request-widget-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/klubraum-membership-request/public/js/klubraum-membership-request-widget-public.js?ver=1.0.0" id="klubraum-membership-request-widget-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- knb-lite-knowledge-base-faq -->
|
<!-- knb-lite-knowledge-base-faq -->
|
||||||
<link rel="stylesheet" id="bootstrap-tooltip-css" href="http://wp.lab/wp-content/plugins/knb-lite-knowledge-base-faq/public/css/tooltip.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="bootstrap-tooltip-css" href="http://wp.lab/wp-content/plugins/knb-lite-knowledge-base-faq/public/css/tooltip.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="wpKnB-css" href="http://wp.lab/wp-content/plugins/knb-lite-knowledge-base-faq/public/css/wpknb.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="wpKnB-css" href="http://wp.lab/wp-content/plugins/knb-lite-knowledge-base-faq/public/css/wpknb.css?ver=1.0.0" type="text/css" media="all">
|
||||||
@@ -8721,6 +8840,15 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kvl-localization/js/options.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kvl-localization/js/options.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- label-grid-tools -->
|
||||||
|
<link rel="stylesheet" id="jquery-ui-css" href="http://wp.lab/wp-content/plugins/label-grid-tools/public/css/jquery-ui.min.css?ver=1.3.5" media="all">
|
||||||
|
<link rel="stylesheet" id="labelgrid-tools-css" href="http://wp.lab/wp-content/plugins/label-grid-tools/public/css/labelgrid-tools-public.css?ver=1.3.5" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/label-grid-tools/public/js/labelgrid-tools-public.js?ver=1.3.5" id="labelgrid-tools-frontend-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/label-grid-tools/public/js/json2.min.js?ver=1.3.5" id="labelgrid-tools-json2-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/label-grid-tools/public/js/handlebars.min.js?ver=1.3.5" id="labelgrid-tools-handlebars-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/label-grid-tools/vendor/bower-asset/moment/moment.js?ver=1.3.5" id="labelgrid-tools-moment-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- laboratory-menu-rest-endpoints -->
|
<!-- laboratory-menu-rest-endpoints -->
|
||||||
<link rel="stylesheet" id="laboratory-menu-api-css" href="http://wp.lab/wp-content/plugins/laboratory-menu-rest-endpoints/src/css/laboratory-menu-api-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="laboratory-menu-api-css" href="http://wp.lab/wp-content/plugins/laboratory-menu-rest-endpoints/src/css/laboratory-menu-api-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/laboratory-menu-rest-endpoints/src/js/laboratory-menu-api-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/laboratory-menu-rest-endpoints/src/js/laboratory-menu-api-public.js?ver=1.0.0"></script>
|
||||||
@@ -9012,6 +9140,13 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lightweight-and-responsive-youtube-embed/public/js/wp-youtube-lightweight-embed-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lightweight-and-responsive-youtube-embed/public/js/wp-youtube-lightweight-embed-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- lightweight-cookie-notice-free -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/lightweight-cookie-notice-free/public/assets/js/daextlwcnf-polyfills.js?ver=1.05" id="daextlwcnf-daextlwcnf-polyfills-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/lightweight-cookie-notice-free/public/assets/js/daextlwcnf-utility.js?ver=1.05" id="daextlwcnf-daextlwcnf-utility-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/lightweight-cookie-notice-free/public/assets/js/daextlwcnf-cookie-settings.js?ver=1.05" id="daextlwcnf-daextlwcnf-cookie-settings-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/lightweight-cookie-notice-free/public/assets/js/daextlwcnf-cookie-notice.js?ver=1.05" id="daextlwcnf-daextlwcnf-cookie-notice-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- lightweight-grid-columns -->
|
<!-- lightweight-grid-columns -->
|
||||||
<link rel="stylesheet" id="lgc-unsemantic-grid-responsive-tablet-css" href="http://wp.lab/wp-content/plugins/lightweight-grid-columns/css/unsemantic-grid-responsive-tablet.css?ver=0.7" type="text/css" media="all">
|
<link rel="stylesheet" id="lgc-unsemantic-grid-responsive-tablet-css" href="http://wp.lab/wp-content/plugins/lightweight-grid-columns/css/unsemantic-grid-responsive-tablet.css?ver=0.7" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -9253,6 +9388,10 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/js/login-public.js?ver=1.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/js/login-public.js?ver=1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- loginid-directweb -->
|
||||||
|
<link rel="stylesheet" id="loginid_dw-main-css-css" href="http://wp.lab/wp-content/plugins/loginid-directweb/includes/main.css?ver=1.0.8" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- logistia -->
|
<!-- logistia -->
|
||||||
<link rel="stylesheet" id="logistia-css" href="http://wp.lab/wp-content/plugins/logistia/public/css/logistia-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="logistia-css" href="http://wp.lab/wp-content/plugins/logistia/public/css/logistia-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/logistia/public/js/logistia-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/logistia/public/js/logistia-public.js?ver=1.0.0"></script>
|
||||||
@@ -9956,6 +10095,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/menu-import-export/public/js/menu-import-export-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/menu-import-export/public/js/menu-import-export-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- menu-item-editor -->
|
||||||
|
<link rel="stylesheet" id="menu-item-editor-css" href="http://wp.lab/wp-content/plugins/menu-item-editor/public/css/menu-item-editor-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/menu-item-editor/public/js/menu-item-editor-public.js?ver=1.0.0" id="menu-item-editor-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- menu-manager -->
|
<!-- menu-manager -->
|
||||||
<link rel="stylesheet" id="superfish_css-css" href="http://wp.lab/wp-content/plugins/menu-manager/display/styles/superfish.css?ver=1.0.4" type="text/css" media="all">
|
<link rel="stylesheet" id="superfish_css-css" href="http://wp.lab/wp-content/plugins/menu-manager/display/styles/superfish.css?ver=1.0.4" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="menu-manager_css-css" href="http://wp.lab/wp-content/plugins/menu-manager/display/styles/menu-manager.css?ver=1.0.4" type="text/css" media="all">
|
<link rel="stylesheet" id="menu-manager_css-css" href="http://wp.lab/wp-content/plugins/menu-manager/display/styles/menu-manager.css?ver=1.0.4" type="text/css" media="all">
|
||||||
@@ -10164,6 +10308,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mobile-switcher/public/js/mobile-switcher-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mobile-switcher/public/js/mobile-switcher-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- mobilize -->
|
||||||
|
<link rel="stylesheet" id="mobilize-css" href="http://wp.lab/wp-content/plugins/mobilize/css/mobilize.css?ver=3.0.2" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/mobilize/js/mobilize.js?ver=3.0.2" id="mobilize-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- modal-contact-form -->
|
<!-- modal-contact-form -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/modal-contact-form/js/lb-modal-contact-form.js?ver=1.8.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/modal-contact-form/js/lb-modal-contact-form.js?ver=1.8.1"></script>
|
||||||
|
|
||||||
@@ -10522,6 +10671,12 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/my-favorites/assets/select.js?ver=1.1.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/my-favorites/assets/select.js?ver=1.1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- my-github -->
|
||||||
|
<link rel="stylesheet" id="my-github-styles-css" href="http://wp.lab/wp-content/plugins/my-github/assets/my_github.min.css?ver=1.1.0" media="all">
|
||||||
|
<link rel="stylesheet" id="my-pure-grid-css-css" href="http://wp.lab/wp-content/plugins/my-github/assets/grids-min.css?ver=1.1.0" media="all">
|
||||||
|
<link rel="stylesheet" id="my-font-awesome-css-css" href="http://wp.lab/wp-content/plugins/my-github/assets/fontawesome-free-5.15.3/css/all.min.css?ver=1.1.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- my-idx-home-search -->
|
<!-- my-idx-home-search -->
|
||||||
<link rel="stylesheet" id="homeasap-search-css" href="http://wp.lab/wp-content/plugins/my-idx-home-search/public/css/homeasap-search-public.css?ver=1.0.1" media="all">
|
<link rel="stylesheet" id="homeasap-search-css" href="http://wp.lab/wp-content/plugins/my-idx-home-search/public/css/homeasap-search-public.css?ver=1.0.1" media="all">
|
||||||
<script src="http://wp.lab/wp-content/plugins/my-idx-home-search/public/js/homeasap-search-public.js?ver=1.0.1"></script>
|
<script src="http://wp.lab/wp-content/plugins/my-idx-home-search/public/js/homeasap-search-public.js?ver=1.0.1"></script>
|
||||||
@@ -10835,6 +10990,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/nines-music/static/APlayer.min.js?ver=1.0.2"></script>
|
<script src="http://wp.lab/wp-content/plugins/nines-music/static/APlayer.min.js?ver=1.0.2"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ninjateam-telegram -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/ninjateam-telegram/assets/dist/libs/njt-telegram.js?ver=1.0" id="nta-tele-libs-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/ninjateam-telegram/assets/js/telegram-button.js?ver=1.0" id="nta-js-tele-global-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- nitek-carousel-cool-transitions -->
|
<!-- nitek-carousel-cool-transitions -->
|
||||||
<link rel="stylesheet" id="nitek-carousel-css" href="http://wp.lab/wp-content/plugins/nitek-carousel-cool-transitions/public/css/nitek-carousel-public.css?ver=1.1.0" type="text/css" media="all">
|
<link rel="stylesheet" id="nitek-carousel-css" href="http://wp.lab/wp-content/plugins/nitek-carousel-cool-transitions/public/css/nitek-carousel-public.css?ver=1.1.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nitek-carousel-cool-transitions/public/js/nitek-carousel-public.js?ver=1.1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nitek-carousel-cool-transitions/public/js/nitek-carousel-public.js?ver=1.1.0"></script>
|
||||||
@@ -10894,6 +11054,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/notification-system/dist/js/notificationsRESTAPI/app.js?ver=1.0.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/notification-system/dist/js/notificationsRESTAPI/app.js?ver=1.0.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- notify-for-woocommerce -->
|
||||||
|
<link rel="stylesheet" id="notify-for-woocommerce-css" href="http://wp.lab/wp-content/plugins/notify-for-woocommerce/public/css/notify-for-woocommerce-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/notify-for-woocommerce/public/js/notify-for-woocommerce-public.js?ver=1.0.0" id="notify-for-woocommerce-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- notifyit -->
|
<!-- notifyit -->
|
||||||
<link rel="stylesheet" id="notify_default-css" href="http://wp.lab/wp-content/plugins/notifyit/css/ns-style.min.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="notify_default-css" href="http://wp.lab/wp-content/plugins/notifyit/css/ns-style.min.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/notifyit/js/modernizr.custom.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/notifyit/js/modernizr.custom.js?ver=1.0.0"></script>
|
||||||
@@ -11630,6 +11795,14 @@
|
|||||||
<link rel="stylesheet" id="jsjr-pci-wp-css-css" href="http://wp.lab/wp-content/plugins/personal-contact-info-widget/css/wp-styles.css?ver=1.3" type="text/css" media="">
|
<link rel="stylesheet" id="jsjr-pci-wp-css-css" href="http://wp.lab/wp-content/plugins/personal-contact-info-widget/css/wp-styles.css?ver=1.3" type="text/css" media="">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- personal-dictionary -->
|
||||||
|
<link rel="stylesheet" id="personal-dictionary-css" href="http://wp.lab/wp-content/plugins/personal-dictionary/public/css/personal-dictionary-public.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="personal-dictionary-select2-css" href="http://wp.lab/wp-content/plugins/personal-dictionary/public/css/select2.min.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/personal-dictionary/public/js/personal-dictionary-public.js?ver=1.0.0" id="personal-dictionary-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/personal-dictionary/public/js/personal-dictionary-public-plugin.js?ver=1.0.0" id="personal-dictionary-plugin-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/personal-dictionary/public/js/select2.min.js?ver=1.0.0" id="personal-dictionary-select2-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- personalized-shortcode-pro -->
|
<!-- personalized-shortcode-pro -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/personalized-shortcode-pro/public/js/personalized-shortcode-pro-public.js?ver=1.0.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/personalized-shortcode-pro/public/js/personalized-shortcode-pro-public.js?ver=1.0.1"></script>
|
||||||
|
|
||||||
@@ -11796,6 +11969,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/placester/placester-search/js/listings.js?ver=1.4.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/placester/placester-search/js/listings.js?ver=1.4.3"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- plajabook -->
|
||||||
|
<link rel="stylesheet" id="plajabook-css" href="http://wp.lab/wp-content/plugins/plajabook/public/css/plajabook-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/plajabook/public/js/plajabook-public.js?ver=1.0.0" id="plajabook-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- planaday-api -->
|
<!-- planaday-api -->
|
||||||
<link rel="stylesheet" id="planaday_fa-css" href="http://wp.lab/wp-content/plugins/planaday-api/css/planaday-fa.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="planaday_fa-css" href="http://wp.lab/wp-content/plugins/planaday-api/css/planaday-fa.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="planaday_calendar_style-css" href="http://wp.lab/wp-content/plugins/planaday-api/css/fullcalendar.min.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="planaday_calendar_style-css" href="http://wp.lab/wp-content/plugins/planaday-api/css/fullcalendar.min.css?ver=1.0.0" type="text/css" media="all">
|
||||||
@@ -11916,6 +12094,11 @@
|
|||||||
<link rel="stylesheet" id="popupaoc-public-style-css" href="http://wp.lab/wp-content/plugins/popup-anything-on-click/assets/css/popupaoc-public-style.css?ver=1.1.3" type="text/css" media="all">
|
<link rel="stylesheet" id="popupaoc-public-style-css" href="http://wp.lab/wp-content/plugins/popup-anything-on-click/assets/css/popupaoc-public-style.css?ver=1.1.3" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- popup-lead -->
|
||||||
|
<link rel="stylesheet" id="popup-lead-css" href="http://wp.lab/wp-content/plugins/popup-lead/public/css/popup-lead-public.css?ver=1.1.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/popup-lead/public/js/popup-lead-public.js?ver=1.1.0" id="popup-lead-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- popup-maker -->
|
<!-- popup-maker -->
|
||||||
<link rel="stylesheet" id="popup-maker-site-css" href="http://wp.lab/wp-content/plugins/popup-maker/deprecated/assets/css/site.min.css?ver=1.6.6" type="text/css" media="all">
|
<link rel="stylesheet" id="popup-maker-site-css" href="http://wp.lab/wp-content/plugins/popup-maker/deprecated/assets/css/site.min.css?ver=1.6.6" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -11971,6 +12154,11 @@
|
|||||||
<link rel="stylesheet" id="wp-pap-portfolio-css-css" href="http://wp.lab/wp-content/plugins/portfolio-and-projects/assets/css/portfolio.jquery.css?ver=1.0.3" type="text/css" media="all">
|
<link rel="stylesheet" id="wp-pap-portfolio-css-css" href="http://wp.lab/wp-content/plugins/portfolio-and-projects/assets/css/portfolio.jquery.css?ver=1.0.3" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- portfolio-cat-filter-gtb-block -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/portfolio-cat-filter-gtb-block/assets/js/isotope.pkgd.min.js?ver=1.0.0" id="spcf_isotope-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/portfolio-cat-filter-gtb-block/assets/js/sara_portfolio.js?ver=1.0.0" id="spcf_ptf_js-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- portfolio-designer-lite -->
|
<!-- portfolio-designer-lite -->
|
||||||
<link rel="stylesheet" id="pdl_fancybox_css-css" href="http://wp.lab/wp-content/plugins/portfolio-designer-lite/css/jquery.fancybox.css?ver=1.0.2" type="text/css" media="all">
|
<link rel="stylesheet" id="pdl_fancybox_css-css" href="http://wp.lab/wp-content/plugins/portfolio-designer-lite/css/jquery.fancybox.css?ver=1.0.2" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="pdl_font_awesome_css-css" href="http://wp.lab/wp-content/plugins/portfolio-designer-lite/css/font-awesome.min.css?ver=1.0.2" type="text/css" media="all">
|
<link rel="stylesheet" id="pdl_font_awesome_css-css" href="http://wp.lab/wp-content/plugins/portfolio-designer-lite/css/font-awesome.min.css?ver=1.0.2" type="text/css" media="all">
|
||||||
@@ -12270,6 +12458,7 @@
|
|||||||
|
|
||||||
<!-- preloader-for-website -->
|
<!-- preloader-for-website -->
|
||||||
<link rel="stylesheet" id="plwao-front-style-css" href="http://wp.lab/wp-content/plugins/preloader-for-website/assets/css/plwao-front.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="plwao-front-style-css" href="http://wp.lab/wp-content/plugins/preloader-for-website/assets/css/plwao-front.css?ver=1.0.0" type="text/css" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/preloader-for-website/assets/js/plwao-public.js?ver=1.0.0" id="plwao-public-script-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- prerender -->
|
<!-- prerender -->
|
||||||
@@ -12536,6 +12725,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/promociones-tap/public/assets/js/modal.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/promociones-tap/public/assets/js/modal.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- prompt-cash-monetize-your-blog-with-bitcoin-cash -->
|
||||||
|
<link rel="stylesheet" id="promptcash-css" href="http://wp.lab/wp-content/plugins/prompt-cash-monetize-your-blog-with-bitcoin-cash/tpl/css/promptcash.css?ver=1.0.9" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/prompt-cash-monetize-your-blog-with-bitcoin-cash/tpl/js/bundle.js?ver=1.0.9" id="promptcash-bundle-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- proof-factor-social-proof-notifications -->
|
<!-- proof-factor-social-proof-notifications -->
|
||||||
<link rel="stylesheet" id="proof-factor-wp-css" href="http://wp.lab/wp-content/plugins/proof-factor-social-proof-notifications/public/css/proof-factor-wp-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="proof-factor-wp-css" href="http://wp.lab/wp-content/plugins/proof-factor-social-proof-notifications/public/css/proof-factor-wp-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -12655,6 +12849,9 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/load-file.js?ver=1.0.7.1" id="qahm-load-file-js"></script>
|
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/load-file.js?ver=1.0.7.1" id="qahm-load-file-js"></script>
|
||||||
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/common.js?ver=1.0.7.1" id="qahm-common-js"></script>
|
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/common.js?ver=1.0.7.1" id="qahm-common-js"></script>
|
||||||
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/behavioral-data.js?ver=1.0.7.1" id="qahm-behavioral-data-js"></script>
|
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/behavioral-data.js?ver=1.0.7.1" id="qahm-behavioral-data-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/polyfill/object_assign.js?ver=1.0.7.1" id="qahm-polyfill-object-assign-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/behavioral-data-init.js?ver=1.0.7.1" id="qahm-behavioral-data-init-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/qa-heatmap-analytics/js/behavioral-data-record.js?ver=1.0.7.1" id="qahm-behavioral-data-record-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- qbot-question-answer -->
|
<!-- qbot-question-answer -->
|
||||||
@@ -12673,6 +12870,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/qlik-sense/index.js?ver=1.1.7"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/qlik-sense/index.js?ver=1.1.7"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- qmean -->
|
||||||
|
<link rel="stylesheet" id="qmean-style-css" href="http://wp.lab/wp-content/plugins/qmean/assets/css/qmean.css?ver=1.1.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/qmean/assets/js/qmean.js?ver=1.1.0" id="qmean-script-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- qr-code-composer -->
|
<!-- qr-code-composer -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/qr-code-composer/public/js/qrious.min.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/qr-code-composer/public/js/qrious.min.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
@@ -12710,6 +12912,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/quentn-wp/public/js/flipclock.min.js?ver=1.0.5"></script>
|
<script src="http://wp.lab/wp-content/plugins/quentn-wp/public/js/flipclock.min.js?ver=1.0.5"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- quick-back-to-top-button -->
|
||||||
|
<link rel="stylesheet" id="quick-back-to-top-button-css" href="http://wp.lab/wp-content/plugins/quick-back-to-top-button/public/css/quick-back-to-top-button-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/quick-back-to-top-button/public/js/quick-back-to-top-button-public.js?ver=1.0.0" id="quick-back-to-top-button-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- quick-chat -->
|
<!-- quick-chat -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-chat/js/jquery.c00kie.js?ver=4.14"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-chat/js/jquery.c00kie.js?ver=4.14"></script>
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-chat/js/quick-chat-load.js?ver=4.14"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-chat/js/quick-chat-load.js?ver=4.14"></script>
|
||||||
@@ -12722,6 +12929,9 @@
|
|||||||
<!-- quick-event-calendar -->
|
<!-- quick-event-calendar -->
|
||||||
<link rel="stylesheet" id="calendar-css" href="http://wp.lab/wp-content/plugins/quick-event-calendar/css/calendar.css?ver=1.3.2" type="text/css" media="all">
|
<link rel="stylesheet" id="calendar-css" href="http://wp.lab/wp-content/plugins/quick-event-calendar/css/calendar.css?ver=1.3.2" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-event-calendar/calendar.js?ver=1.3.2"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quick-event-calendar/calendar.js?ver=1.3.2"></script>
|
||||||
|
<link rel="stylesheet" id="qcc-datepicker-css" href="http://wp.lab/wp-content/plugins/quick-event-calendar/css/datepicker.min.css?ver=1.3.2" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/quick-event-calendar/js/datepicker.min.js?ver=1.3.2" id="qcc-datepicker-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/quick-event-calendar/js/frontend.js?ver=1.3.2" id="qcc-frontend-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- quick-login -->
|
<!-- quick-login -->
|
||||||
@@ -12854,6 +13064,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ray-social-feeds-for-twitter/js/rc_myctf_image_slider.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ray-social-feeds-for-twitter/js/rc_myctf_image_slider.js?ver=1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- rc-flight-manager -->
|
||||||
|
<link rel="stylesheet" id="rc-flight-manager-css" href="http://wp.lab/wp-content/plugins/rc-flight-manager/public/css/rc-flight-manager-public.css?ver=0.9.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- rd-wapp -->
|
<!-- rd-wapp -->
|
||||||
<link rel="stylesheet" id="rdwapp-style-css" href="http://wp.lab/wp-content/plugins/rd-wapp/assets/css/rdwapp-style-front.css?ver=1.0" media="all">
|
<link rel="stylesheet" id="rdwapp-style-css" href="http://wp.lab/wp-content/plugins/rd-wapp/assets/css/rdwapp-style-front.css?ver=1.0" media="all">
|
||||||
<script src="http://wp.lab/wp-content/plugins/rd-wapp/assets/js/rdwapp-script-front.js?ver=1.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/rd-wapp/assets/js/rdwapp-script-front.js?ver=1.0"></script>
|
||||||
@@ -13167,6 +13381,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/responcierge/public/js/responcierge-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/responcierge/public/js/responcierge-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- responsive-accordion-slider -->
|
||||||
|
<link rel="stylesheet" id="resp-accordion-slider-css-css" href="http://wp.lab/wp-content/plugins/responsive-accordion-slider/assets/css/accordion-design.css?ver=1.0.3" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/responsive-accordion-slider/assets/js/responsive-accordion-slider-js.js?ver=1.0.3" id="jquery-accordion-slider-js-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- responsive-album-and-image-gallery-lightbox -->
|
<!-- responsive-album-and-image-gallery-lightbox -->
|
||||||
<link rel="stylesheet" id="raigl-magnific-style-css" href="http://wp.lab/wp-content/plugins/responsive-album-and-image-gallery-lightbox/assets/css/magnific-popup.css?ver=1.0" type="text/css" media="all">
|
<link rel="stylesheet" id="raigl-magnific-style-css" href="http://wp.lab/wp-content/plugins/responsive-album-and-image-gallery-lightbox/assets/css/magnific-popup.css?ver=1.0" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="raigl-slick-style-css" href="http://wp.lab/wp-content/plugins/responsive-album-and-image-gallery-lightbox/assets/css/slick.css?ver=1.0" type="text/css" media="all">
|
<link rel="stylesheet" id="raigl-slick-style-css" href="http://wp.lab/wp-content/plugins/responsive-album-and-image-gallery-lightbox/assets/css/slick.css?ver=1.0" type="text/css" media="all">
|
||||||
@@ -13706,6 +13925,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/sayonara/public/js/sayonara-public.js?ver=1.0.1"></script>
|
<script src="http://wp.lab/wp-content/plugins/sayonara/public/js/sayonara-public.js?ver=1.0.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- scheduled-notification-bar -->
|
||||||
|
<link rel="stylesheet" id="scheduled-notification-bar-css" href="http://wp.lab/wp-content/plugins/scheduled-notification-bar/public/css/scheduled-notification-bar-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/scheduled-notification-bar/public/js/scheduled-notification-bar-public.js?ver=1.0.0" id="scheduled-notification-bar-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- schemaninja -->
|
<!-- schemaninja -->
|
||||||
<link rel="stylesheet" id="schema-ninja-style-css" href="http://wp.lab/wp-content/plugins/schemaninja/style.css?ver=2.2.1" type="text/css" media="all">
|
<link rel="stylesheet" id="schema-ninja-style-css" href="http://wp.lab/wp-content/plugins/schemaninja/style.css?ver=2.2.1" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="fontawesome-css" href="http://wp.lab/wp-content/plugins/schemaninja/assets/font-awesome/css/font-awesome.min.css?ver=2.2.1" type="text/css" media="all">
|
<link rel="stylesheet" id="fontawesome-css" href="http://wp.lab/wp-content/plugins/schemaninja/assets/font-awesome/css/font-awesome.min.css?ver=2.2.1" type="text/css" media="all">
|
||||||
@@ -14387,6 +14611,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-cookie-notification-bar/assets/js/script.js?ver=1.5"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-cookie-notification-bar/assets/js/script.js?ver=1.5"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- simple-cpt -->
|
||||||
|
<link rel="stylesheet" id="simple-cpt-css" href="http://wp.lab/wp-content/plugins/simple-cpt/public/css/simple-cpt-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/simple-cpt/public/js/simple-cpt-public.js?ver=1.0.0" id="simple-cpt-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- simple-customer-crm -->
|
<!-- simple-customer-crm -->
|
||||||
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/simple-customer-crm/css/bootstrap.min.css?ver=1.0.0" type="text/css" media="screen">
|
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/simple-customer-crm/css/bootstrap.min.css?ver=1.0.0" type="text/css" media="screen">
|
||||||
<link rel="stylesheet" id="simple_customer_crm-main-css-css" href="http://wp.lab/wp-content/plugins/simple-customer-crm/css/main.css?ver=1.0.0" type="text/css" media="screen">
|
<link rel="stylesheet" id="simple_customer_crm-main-css-css" href="http://wp.lab/wp-content/plugins/simple-customer-crm/css/main.css?ver=1.0.0" type="text/css" media="screen">
|
||||||
@@ -14618,6 +14847,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-testimonials-showcase/public/js/simple-testimonials-showcase-public.js?ver=1.1.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-testimonials-showcase/public/js/simple-testimonials-showcase-public.js?ver=1.1.3"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- simple-tour-guide -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/simple-tour-guide/assets/js/main.js?ver=1.0.0" id="simple-tour-guide-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- simple-url-tracker -->
|
<!-- simple-url-tracker -->
|
||||||
<link rel="stylesheet" id="simple-track-css" href="http://wp.lab/wp-content/plugins/simple-url-tracker/public/css/simple-track-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="simple-track-css" href="http://wp.lab/wp-content/plugins/simple-url-tracker/public/css/simple-track-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-url-tracker/public/js/simple-track-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-url-tracker/public/js/simple-track-public.js?ver=1.0.0"></script>
|
||||||
@@ -14920,6 +15153,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/smartarget-contact-us/public/js/smartarget-public.js?ver=1.1.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/smartarget-contact-us/public/js/smartarget-public.js?ver=1.1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- smartarget-faq-floating-button -->
|
||||||
|
<link rel="stylesheet" id="smartarget_faq-css" href="http://wp.lab/wp-content/plugins/smartarget-faq-floating-button/public/css/smartarget-faq-public.css?ver=1.0.4" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/smartarget-faq-floating-button/public/js/smartarget-faq-public.js?ver=1.0.4" id="smartarget_faq-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- smartcat-video-image-slider -->
|
<!-- smartcat-video-image-slider -->
|
||||||
<link rel="stylesheet" id="camera-style-css" href="http://wp.lab/wp-content/plugins/smartcat-video-image-slider/assets/css/camera.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="camera-style-css" href="http://wp.lab/wp-content/plugins/smartcat-video-image-slider/assets/css/camera.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="scslider-style-css" href="http://wp.lab/wp-content/plugins/smartcat-video-image-slider/assets/css/style.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="scslider-style-css" href="http://wp.lab/wp-content/plugins/smartcat-video-image-slider/assets/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||||
@@ -15416,6 +15654,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stay-alive/assets/js/stay-alive.js?ver=2.4.8"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stay-alive/assets/js/stay-alive.js?ver=2.4.8"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- stay-in-touch-connect -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/stay-in-touch-connect/js/stayintouch_public.js?ver=1.0.0" id="ajax-script-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- steemit-feed -->
|
<!-- steemit-feed -->
|
||||||
<link rel="stylesheet" id="steemit-feed-css" href="http://wp.lab/wp-content/plugins/steemit-feed/public/css/steemit-feed-public.css?ver=1.1.1" type="text/css" media="all">
|
<link rel="stylesheet" id="steemit-feed-css" href="http://wp.lab/wp-content/plugins/steemit-feed/public/css/steemit-feed-public.css?ver=1.1.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/steemit-feed/public/js/spin.min.js?ver=1.1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/steemit-feed/public/js/spin.min.js?ver=1.1.1"></script>
|
||||||
@@ -15757,6 +15999,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/swap-google-font-display/public/js/google-font-display-swapper-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/swap-google-font-display/public/js/google-font-display-swapper-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- sweep-go-zip-code-form -->
|
||||||
|
<link rel="stylesheet" id="sweepandgo-zip-code-form-css" href="http://wp.lab/wp-content/plugins/sweep-go-zip-code-form/public/css/sweepandgo-zip-code-form-public.css?ver=1.0.1" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/sweep-go-zip-code-form/public/js/sweepandgo-zip-code-form-public.js?ver=1.0.1" id="sweepandgo-zip-code-form-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- sweet-energy-efficiency -->
|
<!-- sweet-energy-efficiency -->
|
||||||
<link rel="stylesheet" id="sweet-energy-efficiency-css" href="http://wp.lab/wp-content/plugins/sweet-energy-efficiency/public/css/sweet-energy-efficiency-public.css?ver=1.0.0" media="all">
|
<link rel="stylesheet" id="sweet-energy-efficiency-css" href="http://wp.lab/wp-content/plugins/sweet-energy-efficiency/public/css/sweet-energy-efficiency-public.css?ver=1.0.0" media="all">
|
||||||
<script src="http://wp.lab/wp-content/plugins/sweet-energy-efficiency/public/js/sweet-energy-efficiency-public.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/sweet-energy-efficiency/public/js/sweet-energy-efficiency-public.js?ver=1.0.0"></script>
|
||||||
@@ -15814,6 +16061,14 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/syntax-highlighter-mt/brushTypes.js?ver=2.2.5"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/syntax-highlighter-mt/brushTypes.js?ver=2.2.5"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- taamul -->
|
||||||
|
<link rel="stylesheet" id="taamul-css" href="http://wp.lab/wp-content/plugins/taamul/public/css/taamul-public.css?ver=1.0.0" media="all">
|
||||||
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/taamul/public/js/taamul-public.js?ver=1.0.0" id="taamul-js"></script>
|
||||||
|
<link rel="stylesheet" id="taamul_taamul_reset-css" href="http://wp.lab/wp-content/plugins/taamul/public/css/taamul_reset.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="taamul_taamul_style-css" href="http://wp.lab/wp-content/plugins/taamul/public/css/taamul_style.css?ver=1.0.0" media="all">
|
||||||
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/taamul/public/js/taamul_main.js?ver=1.0.0" id="taamul_taamul_main-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- table-addons-for-elementor -->
|
<!-- table-addons-for-elementor -->
|
||||||
<link rel="stylesheet" id="table-addons-for-elementor-css" href="http://wp.lab/wp-content/plugins/table-addons-for-elementor/public/css/table-addons-for-elementor-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="table-addons-for-elementor-css" href="http://wp.lab/wp-content/plugins/table-addons-for-elementor/public/css/table-addons-for-elementor-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -16114,6 +16369,12 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/text-hover/assets/text-hover.js?ver=3.7.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/text-hover/assets/text-hover.js?ver=3.7.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- text-united-translation -->
|
||||||
|
<link rel="stylesheet" id="text-united-translation-css" href="http://wp.lab/wp-content/plugins/text-united-translation/public/css/text-united-translation-public.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="flags-ico-css" href="http://wp.lab/wp-content/plugins/text-united-translation/public//css/flag-icon.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/text-united-translation/public/js/text-united-translation-public.js?ver=1.0.0" id="text-united-translation-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- textp2p-texting-widget -->
|
<!-- textp2p-texting-widget -->
|
||||||
<link rel="stylesheet" id="textp2p-css-css" href="http://wp.lab/wp-content/plugins/textp2p-texting-widget/assets/css/im-textp2p.css?ver=1.0" type="text/css" media="all">
|
<link rel="stylesheet" id="textp2p-css-css" href="http://wp.lab/wp-content/plugins/textp2p-texting-widget/assets/css/im-textp2p.css?ver=1.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/textp2p-texting-widget/assets/js/im-textp2p.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/textp2p-texting-widget/assets/js/im-textp2p.js?ver=1.0"></script>
|
||||||
@@ -16190,6 +16451,8 @@
|
|||||||
|
|
||||||
<!-- themeisle-companion -->
|
<!-- themeisle-companion -->
|
||||||
<link rel="stylesheet" id="obfx-module-pub-css-menu-icons-1-css" href="http://wp.lab/wp-content/plugins/themeisle-companion/obfx_modules/menu-icons/css/public.css?ver=2.7.5" type="text/css" media="all">
|
<link rel="stylesheet" id="obfx-module-pub-css-menu-icons-1-css" href="http://wp.lab/wp-content/plugins/themeisle-companion/obfx_modules/menu-icons/css/public.css?ver=2.7.5" type="text/css" media="all">
|
||||||
|
<link rel="stylesheet" id="font-awesome-5-css" href="http://wp.lab/wp-content/plugins/themeisle-companion/obfx_modules/gutenberg-blocks/assets/fontawesome/css/all.min.css?ver=2.7.5" media="all">
|
||||||
|
<link rel="stylesheet" id="font-awesome-4-shims-css" href="http://wp.lab/wp-content/plugins/themeisle-companion/obfx_modules/gutenberg-blocks/assets/fontawesome/css/v4-shims.min.css?ver=2.7.5" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- themepaste-secure-admin -->
|
<!-- themepaste-secure-admin -->
|
||||||
@@ -16448,6 +16711,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/total-gdpr-compliance-lite/assets/js/jquery.mCustomScrollbar.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/total-gdpr-compliance-lite/assets/js/jquery.mCustomScrollbar.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- total-price-for-product-page -->
|
||||||
|
<link rel="stylesheet" id="woo-total-price-css" href="http://wp.lab/wp-content/plugins/total-price-for-product-page/public/css/woo-total-price-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/total-price-for-product-page/public/js/woo-total-price-public.js?ver=1.0.0" id="woo-total-price-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- total-team-lite -->
|
<!-- total-team-lite -->
|
||||||
<link rel="stylesheet" id="totalteam-frontend-style-css" href="http://wp.lab/wp-content/plugins/total-team-lite/assets/css/front-end.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="totalteam-frontend-style-css" href="http://wp.lab/wp-content/plugins/total-team-lite/assets/css/front-end.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="totalteam-slider-frontend-style-css" href="http://wp.lab/wp-content/plugins/total-team-lite/assets/css/jquery-ui.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="totalteam-slider-frontend-style-css" href="http://wp.lab/wp-content/plugins/total-team-lite/assets/css/jquery-ui.css?ver=1.0.0" type="text/css" media="all">
|
||||||
@@ -16479,6 +16747,13 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tour-operator-search/assets/js/to-search.min.js?ver=1.1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tour-operator-search/assets/js/to-search.min.js?ver=1.1.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- tp-product-quick-view-for-woocommerce -->
|
||||||
|
<link rel="stylesheet" id="venobox.min-css" href="http://wp.lab/wp-content/plugins/tp-product-quick-view-for-woocommerce/public/css/venobox.min.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="tp-product-quick-view-for-woocommerce-css" href="http://wp.lab/wp-content/plugins/tp-product-quick-view-for-woocommerce/public/css/tp-product-quick-view-for-woocommerce-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/tp-product-quick-view-for-woocommerce/public/js/venobox.min.js?ver=1.0.0" id="venobox.min-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/tp-product-quick-view-for-woocommerce/public/js/tp-product-quick-view-for-woocommerce-public.js?ver=1.0.0" id="tp-product-quick-view-for-woocommerce-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- tp-product-tooltip -->
|
<!-- tp-product-tooltip -->
|
||||||
<link rel="stylesheet" id="tp-woocommerce-product-tooltip-css" href="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/css/tp-woocommerce-product-tooltip-public.css?ver=1.0.2" media="all">
|
<link rel="stylesheet" id="tp-woocommerce-product-tooltip-css" href="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/css/tp-woocommerce-product-tooltip-public.css?ver=1.0.2" media="all">
|
||||||
<link rel="stylesheet" id="tp-woocommerce-product-tooltip-tp_animate-css" href="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/css/tp_animate.css?ver=1.0.2" media="all">
|
<link rel="stylesheet" id="tp-woocommerce-product-tooltip-tp_animate-css" href="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/css/tp_animate.css?ver=1.0.2" media="all">
|
||||||
@@ -16575,6 +16850,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tripadvisor-stream/js/tripadvisorstream.0.2.js?ver=0.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tripadvisor-stream/js/tripadvisorstream.0.2.js?ver=0.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- truanon-identity -->
|
||||||
|
<link rel="stylesheet" id="tru_anon_custom_css-css" href="http://wp.lab/wp-content/plugins/truanon-identity/includes/css/custom.css?ver=1.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/truanon-identity/includes/js/public-custom.js?ver=1.0" id="truanon_frontend_custom_js-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- truendo -->
|
<!-- truendo -->
|
||||||
<link rel="stylesheet" id="truendo_wordpress-css" href="http://wp.lab/wp-content/plugins/truendo/public/css/truendo-public.css?ver=1.0.3" type="text/css" media="all">
|
<link rel="stylesheet" id="truendo_wordpress-css" href="http://wp.lab/wp-content/plugins/truendo/public/css/truendo-public.css?ver=1.0.3" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/truendo/public/js/truendo-public.js?ver=1.0.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/truendo/public/js/truendo-public.js?ver=1.0.3"></script>
|
||||||
@@ -17199,6 +17479,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/urvanov-syntax-highlighter/js/min/urvanov_syntax_highlighter.min.js?ver=2.8.5"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/urvanov-syntax-highlighter/js/min/urvanov_syntax_highlighter.min.js?ver=2.8.5"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- us-address-lookup-by-zip-code -->
|
||||||
|
<link rel="stylesheet" id="pt-us-zip-codes-css" href="http://wp.lab/wp-content/plugins/us-address-lookup-by-zip-code/public/css/pt-us-zip-codes-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/us-address-lookup-by-zip-code/public/js/pt-us-zip-codes-public.js?ver=1.0.0" id="pt-us-zip-codes-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- used-media-identifier -->
|
<!-- used-media-identifier -->
|
||||||
<link rel="stylesheet" id="used-media-identifier-css" href="http://wp.lab/wp-content/plugins/used-media-identifier/public/css/used-media-identifier-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="used-media-identifier-css" href="http://wp.lab/wp-content/plugins/used-media-identifier/public/css/used-media-identifier-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/used-media-identifier/public/js/used-media-identifier-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/used-media-identifier/public/js/used-media-identifier-public.js?ver=1.0.0"></script>
|
||||||
@@ -17272,6 +17557,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/users-list-table/public/js/users-list-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/users-list-table/public/js/users-list-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- utilitify -->
|
||||||
|
<link rel="stylesheet" id="utilitify-css" href="http://wp.lab/wp-content/plugins/utilitify/lite/dist/styles/utilitify.css?ver=1.0.2" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/utilitify/lite/dist/scripts/utilitify.js?ver=1.0.2" id="utilitify-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- utm-tracker -->
|
<!-- utm-tracker -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/utm-tracker/js/utmtracker.min.js?ver=1.0.2" async="async"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/utm-tracker/js/utmtracker.min.js?ver=1.0.2" async="async"></script>
|
||||||
|
|
||||||
@@ -17319,6 +17609,10 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/variation-stock-inventory/public/js/woocom-variation-stock-inventory-public.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/variation-stock-inventory/public/js/woocom-variation-stock-inventory-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- vat-assist-for-woocommerce -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/vat-assist-for-woocommerce/assets/init.js?ver=1.0.5" id="wcva-main-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- vc-mailchimp -->
|
<!-- vc-mailchimp -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vc-mailchimp/libs/jquery.growl/javascripts/jquery.growl.js?ver=2.1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vc-mailchimp/libs/jquery.growl/javascripts/jquery.growl.js?ver=2.1.0"></script>
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vc-mailchimp/assets/js/frontend.js?ver=2.1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vc-mailchimp/assets/js/frontend.js?ver=2.1.0"></script>
|
||||||
@@ -17412,6 +17706,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vessel/js/vessel.js?ver=0.7.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vessel/js/vessel.js?ver=0.7.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- vhm-share-buttons -->
|
||||||
|
<link rel="stylesheet" id="vhm-share-buttons-css" href="http://wp.lab/wp-content/plugins/vhm-share-buttons/public/css/vhm-share-buttons-public.css?ver=1.0.2" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/vhm-share-buttons/public/js/vhm-share-buttons-public.js?ver=1.0.2" id="vhm-share-buttons-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- video-background -->
|
<!-- video-background -->
|
||||||
<link rel="stylesheet" id="vidbg-frontend-style-css" href="http://wp.lab/wp-content/plugins/video-background/css/pushlabs-vidbg.css?ver=2.6.3" type="text/css" media="all">
|
<link rel="stylesheet" id="vidbg-frontend-style-css" href="http://wp.lab/wp-content/plugins/video-background/css/pushlabs-vidbg.css?ver=2.6.3" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -17604,6 +17903,10 @@
|
|||||||
<link rel="stylesheet" id="wabiwidget-css" href="http://wp.lab/wp-content/plugins/wabi-whatsapp/public/css/WabiWidget-public.css?ver=1.0.7" type="text/css" media="all">
|
<link rel="stylesheet" id="wabiwidget-css" href="http://wp.lab/wp-content/plugins/wabi-whatsapp/public/css/WabiWidget-public.css?ver=1.0.7" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- wagering-requirement-calculator -->
|
||||||
|
<link rel="stylesheet" id="mga-calc-style-css" href="http://wp.lab/wp-content/plugins/wagering-requirement-calculator/css/mga-calc.css?ver=1.0" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- waitlist-woocommerce -->
|
<!-- waitlist-woocommerce -->
|
||||||
<link rel="stylesheet" id="xoo-wl-style-css" href="http://wp.lab/wp-content/plugins/waitlist-woocommerce/assets/css/xoo-wl-style.css?ver=1.4" type="text/css" media="all">
|
<link rel="stylesheet" id="xoo-wl-style-css" href="http://wp.lab/wp-content/plugins/waitlist-woocommerce/assets/css/xoo-wl-style.css?ver=1.4" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -17843,6 +18146,12 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/weather-forecast/public/js/weather-forecast-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/weather-forecast/public/js/weather-forecast-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- weather-forecast-widget -->
|
||||||
|
<link rel="stylesheet" id="weather-forecast-widget-css" href="http://wp.lab/wp-content/plugins/weather-forecast-widget/public/css/weather-forecast-widget-public.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="weather-icons-css" href="http://wp.lab/wp-content/plugins/weather-forecast-widget/public/css/weather-icons/weather-icons.min.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/weather-forecast-widget/public/js/weather-forecast-widget-public.js?ver=1.0.0" id="weather-forecast-widget-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- weather-press -->
|
<!-- weather-press -->
|
||||||
<link rel="stylesheet" id="weather-press-css" href="http://wp.lab/wp-content/plugins/weather-press/public/css/weather-press-public-min.css?ver=4.5" type="text/css" media="all">
|
<link rel="stylesheet" id="weather-press-css" href="http://wp.lab/wp-content/plugins/weather-press/public/css/weather-press-public-min.css?ver=4.5" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/weather-press/public/js/weather-press-public-min.js?ver=4.5"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/weather-press/public/js/weather-press-public-min.js?ver=4.5"></script>
|
||||||
@@ -18725,6 +19034,15 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/js/NormalControls.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/js/NormalControls.js?ver=1.0"></script>
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/js/Thingviewer.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/js/Thingviewer.js?ver=1.0"></script>
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/js/public.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/js/public.js?ver=1.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r127/three.min.js?ver=1.0" id="three-js-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r127/WebGL.js?ver=1.0" id="three-js-webgl-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r127/OrbitControls.js?ver=1.0" id="three-js-orbit-controls-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r127/BufferGeometryUtils.js?ver=1.0" id="three-js-bgeo-utils-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r127/fflate.min.js?ver=1.0" id="three-js-fflate-lib-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r127/STLLoader.js?ver=1.0" id="three-js-stl-loader-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r127/FBXLoader.js?ver=1.0" id="three-js-fbx-loader-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r127/OBJLoader.js?ver=1.0" id="three-js-obj-loader-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-3d-thingviewer-lite/public/libraries/three-js-r127/GLTFLoader.js?ver=1.0" id="three-js-gltf-loader-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- wp-accordion-with-categories -->
|
<!-- wp-accordion-with-categories -->
|
||||||
@@ -18982,6 +19300,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-charts-and-graphs/assets/js/pantherius_wp_charts_init.js?ver=1.0.4"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-charts-and-graphs/assets/js/pantherius_wp_charts_init.js?ver=1.0.4"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- wp-chat-button-for-telegram-accounts -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-chat-button-for-telegram-accounts/assets/dist/libs/rj-telegram.js?ver=1.0.0" id="rj-te-libs-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-chat-button-for-telegram-accounts/assets/js/telegram-button.js?ver=1.0.0" id="nta-js-global-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- wp-cirrus -->
|
<!-- wp-cirrus -->
|
||||||
<link rel="stylesheet" id="wpcirrus-cloudStyle-css" href="http://wp.lab/wp-content/plugins/wp-cirrus/cirrusCloud.css?ver=0.6.11" type="text/css" media="all">
|
<link rel="stylesheet" id="wpcirrus-cloudStyle-css" href="http://wp.lab/wp-content/plugins/wp-cirrus/cirrusCloud.css?ver=0.6.11" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-cirrus/wp_cirrus_gwt/wp_cirrus_gwt.nocache.js?ver=0.6.11"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-cirrus/wp_cirrus_gwt/wp_cirrus_gwt.nocache.js?ver=0.6.11"></script>
|
||||||
@@ -21507,6 +21830,13 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yoel-responsive-slider/js/responsiveslides.min.js?ver=1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yoel-responsive-slider/js/responsiveslides.min.js?ver=1.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- yoo-bar -->
|
||||||
|
<link rel="stylesheet" id="yoo-bar-css" href="http://wp.lab/wp-content/plugins/yoo-bar/assets/css/yoobar.min.css?ver=1.0.1" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/yoo-bar/assets/js/jquery.magnific-popup.min.js?ver=1.0.1" id="magnific-popup-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/yoo-bar/assets/js/owl.carousel.min.js?ver=1.0.1" id="owl-carousel-js"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/yoo-bar/assets/js/yoobar.min.js?ver=1.0.1" id="yoobar-js-js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- yottie-lite -->
|
<!-- yottie-lite -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yottie-lite/assets/yottie-lite/dist/jquery.yottie-lite.bundled.js?ver=1.3.2"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yottie-lite/assets/yottie-lite/dist/jquery.yottie-lite.bundled.js?ver=1.3.2"></script>
|
||||||
|
|
||||||
|
|||||||
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 ""
|
||||||
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"
|
||||||
@@ -0,0 +1,230 @@
|
|||||||
|
# Copyright (C) 2021 Luiz C. M. de Aquino
|
||||||
|
# This file is distributed under the same license as the Subscriber Login for YouTube plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Subscriber Login for YouTube 1.0.4\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/subscriber-login-for-youtube\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-22T13:37:58+01:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.4.0\n"
|
||||||
|
"X-Domain: subscriber-login-for-youtube\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Subscriber Login for YouTube"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wordpress.org/plugins/subscriber-login-for-youtube/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Subscriber Login for YouTube enables user sign in with their YouTube account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Luiz C. M. de Aquino"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://www.professoraquino.com.br/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:89
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:147
|
||||||
|
#: src/Admin/Setting.php:529
|
||||||
|
msgid "Google Client ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:151
|
||||||
|
#: src/Admin/Setting.php:530
|
||||||
|
msgid "Google Client secret"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:155
|
||||||
|
#: src/Admin/Setting.php:531
|
||||||
|
#: src/Admin/Setting.php:551
|
||||||
|
msgid "Google Client redirect URI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:187
|
||||||
|
msgid "Google Client"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:199
|
||||||
|
msgid "YouTube Channel ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:203
|
||||||
|
msgid "YouTube Channel Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:207
|
||||||
|
msgid "YouTube Channel URI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:239
|
||||||
|
msgid "YouTube"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:250
|
||||||
|
msgid "User profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:265
|
||||||
|
#: src/Admin/Setting.php:592
|
||||||
|
msgid "Default role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:289
|
||||||
|
msgid "User registration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:300
|
||||||
|
msgid "Always show the Google account consent screen"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:324
|
||||||
|
msgid "Login page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:359
|
||||||
|
msgid "YouTube Channel ID is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:364
|
||||||
|
msgid "YouTube Channel Title is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s it's a YouTube Channel URI.
|
||||||
|
#: src/Admin/Setting.php:372
|
||||||
|
msgid "YouTube Channel URI should be like %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:379
|
||||||
|
msgid "Google Client ID is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:384
|
||||||
|
msgid "Google Client secret is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s it's the plugin slug.
|
||||||
|
#: src/Admin/Setting.php:396
|
||||||
|
msgid "Google Client redirect URI should be something like <code>%s</code>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:467
|
||||||
|
#: src/Admin/Setting.php:575
|
||||||
|
msgid "Basic"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:469
|
||||||
|
#: src/Admin/Setting.php:583
|
||||||
|
msgid "Full"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: it's an URI address.
|
||||||
|
#: src/Admin/Setting.php:503
|
||||||
|
msgid "You can see your YouTube Channel ID in your <a href=\"%s\">advanced account settings</a> on YouTube."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s: it's an URI address. %2$s, %3$s, and %4$s: those are Google Client OAuth 2.0 parameters.
|
||||||
|
#: src/Admin/Setting.php:526
|
||||||
|
msgid "Before using this plugin, you need to set up a Google project for web application in <a href=\"%1$s\">Google Console</a>. It's a Google requirement for users to login! The web application project will provide: \"%2$s\", \"%3$s\", and \"%4$s\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s, %2$s, and %3$s: those are Google Client OAuth 2.0 scopes. %4$s: it's an URI address. %5$s: it's an Google support page for setting up OAuth 2.0.
|
||||||
|
#: src/Admin/Setting.php:537
|
||||||
|
msgid "Activate the \"YouTube Data API v3\" in your project and add the scopes <code>%1$s</code>, <code>%2$s</code>, and <code>%3$s</code> for its consent screen. See more details in <a href=\"%4$s\">%5$s</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s: it's an URI address. %2$s: it's the redirect URI for a Google Client OAuth 2.0.
|
||||||
|
#: src/Admin/Setting.php:549
|
||||||
|
msgid "Set your project \"%1$s\" to be something like <code>%2$s</code>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1s: the "Basic" option for "User profile".
|
||||||
|
#: src/Admin/Setting.php:573
|
||||||
|
msgid "The \"%s\" user profile stores: email and picture."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s: the "Full" option for "User profile". %2$s: it's a scope for a Google Client OAuth 2.0.
|
||||||
|
#: src/Admin/Setting.php:581
|
||||||
|
msgid "The \"%s\" user profile stores: email, picture, full name, given name, family name, and locale. This option only works if the scope <code>%2$s</code> is added to the Google web application project."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: the "Default role" option.
|
||||||
|
#: src/Admin/Setting.php:590
|
||||||
|
msgid "When users login for the first time they will be registrated as the \"%s\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s it's the filter slug.
|
||||||
|
#: src/Admin/Setting.php:613
|
||||||
|
msgid "Add the filter <code>%s</code> to custom your sign in button."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:620
|
||||||
|
msgid "Example"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: the function.php template file.
|
||||||
|
#: src/Admin/Setting.php:624
|
||||||
|
msgid "Add to <code>%s</code> template file the following code."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s it's the plugin name.
|
||||||
|
#: src/Admin/Setting.php:650
|
||||||
|
msgid "%s • Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Setting.php:658
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site/Plugin.php:289
|
||||||
|
msgid "Sign in with YouTube"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site/Plugin.php:294
|
||||||
|
msgid "YouTube icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: it's an URI address.
|
||||||
|
#: src/Site/Plugin.php:315
|
||||||
|
msgid "You need to subscribe to <a href=\"%1$s\">%2$s</a> for login."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site/User.php:204
|
||||||
|
msgid "Google account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site/User.php:208
|
||||||
|
#: src/Site/User.php:212
|
||||||
|
msgid "Revoke access"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site/User.php:213
|
||||||
|
msgid "Revoke the website access to this Google account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site/User.php:215
|
||||||
|
msgid "This Google account was revoked."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s: the plugin name; %2$s: PHP version
|
||||||
|
#: subscriber-login-for-youtube.php:61
|
||||||
|
msgid "%1$s requires PHP version %2$s or later. This plugin is NOT RUNING."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s: the plugin name; %2$s: WordPress version
|
||||||
|
#: subscriber-login-for-youtube.php:73
|
||||||
|
msgid "%1$s requires WordPress version %2$s or later. This plugin is NOT RUNING."
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,911 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Subscriptions For WooCommerce 1.0.0\n"
|
||||||
|
"POT-Creation-Date: 2021-04-08 13:13+0530\n"
|
||||||
|
"PO-Revision-Date: 2021-04-08 13:13+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: ..\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-subscriptions-for-woocommerce-admin.php:129
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:397
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:508
|
||||||
|
msgid "Days"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:130
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:398
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:509
|
||||||
|
msgid "Weeks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:131
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:399
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:510
|
||||||
|
msgid "Months"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:132
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:400
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:511
|
||||||
|
msgid "Years"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:133
|
||||||
|
msgid "Expiry Interval must be greater than subscription interval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:184
|
||||||
|
msgid "Subscriptions For WooCommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:228
|
||||||
|
msgid "Enable/Disable Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:230
|
||||||
|
msgid "Check this box to enable the subscription."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:237
|
||||||
|
msgid "Add to cart text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:239
|
||||||
|
msgid "Use this option to change add to cart button text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:243
|
||||||
|
msgid "Add to cart button text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:246
|
||||||
|
msgid "Place order text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:248
|
||||||
|
msgid "Use this option to change place order button text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:252
|
||||||
|
msgid "Place order button text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:255
|
||||||
|
msgid "Allow Customer to cancel Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:257
|
||||||
|
msgid "Enable this option to allow the customer to cancel the subscription."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:266
|
||||||
|
msgid "Save Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:285
|
||||||
|
msgid "User Guide"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:286
|
||||||
|
msgid "View the detailed guides and documentation to set up your plugin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:287
|
||||||
|
msgid "VIEW"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:291
|
||||||
|
msgid "Free Support"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:292
|
||||||
|
msgid "Please submit a ticket, our team will respond within 24 hours."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:293
|
||||||
|
msgid "SUBMIT"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:338
|
||||||
|
msgid "Id of some field is missing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:341
|
||||||
|
msgid "Settings saved !"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:361
|
||||||
|
#: subscriptions-for-woocommerce.php:220
|
||||||
|
msgid "Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:362
|
||||||
|
msgid "This is the Subscriptions type product."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:380
|
||||||
|
msgid "Subscription Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:435
|
||||||
|
msgid "Subscriptions Per Interval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:437
|
||||||
|
msgid "Enter subscription interval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:444
|
||||||
|
msgid ""
|
||||||
|
"Choose the subscriptions time interval for the product \"for example 10 days"
|
||||||
|
"\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:450
|
||||||
|
msgid "Subscriptions Expiry Interval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:452
|
||||||
|
msgid "Enter subscription expiry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:459
|
||||||
|
msgid ""
|
||||||
|
"Choose the subscriptions expiry time interval for the product \"leave empty "
|
||||||
|
"for unlimited\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:466
|
||||||
|
msgid "Initial Signup fee"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:470
|
||||||
|
msgid "Enter signup fee"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:473
|
||||||
|
msgid ""
|
||||||
|
"Choose the subscriptions initial fee for the product \"leave empty for no "
|
||||||
|
"initial fee\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:479
|
||||||
|
msgid "Free trial interval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:481
|
||||||
|
msgid "Enter free trial interval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:488
|
||||||
|
msgid ""
|
||||||
|
"Choose the trial period for subscription \"leave empty for no trial period\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:774
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:793
|
||||||
|
msgid "Mwb Renewal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-subscriptions-for-woocommerce-admin.php:780
|
||||||
|
#, php-format
|
||||||
|
msgid "Mwb Renewal <span class=\"count\">(%s)</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:54
|
||||||
|
msgid "Subscription ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:55
|
||||||
|
msgid "Parent Order ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:56
|
||||||
|
#: public/partials/templates/myaccount/mwb-show-subscription-details.php:44
|
||||||
|
#: public/partials/templates/myaccount/mwb-susbcrptions.php:24
|
||||||
|
msgid "Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:57
|
||||||
|
#: public/partials/templates/myaccount/mwb-show-subscription-details.php:111
|
||||||
|
msgid "Product Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:58
|
||||||
|
msgid "Recurring Amount"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:59
|
||||||
|
msgid "User Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:60
|
||||||
|
#: public/partials/templates/myaccount/mwb-show-subscription-details.php:62
|
||||||
|
msgid "Next Payment Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:61
|
||||||
|
msgid "Subscription Expiry Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:87
|
||||||
|
#: public/partials/templates/myaccount/mwb-show-subscription-details.php:146
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:170
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:349
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:844
|
||||||
|
#: subscriptions-for-woocommerce.php:219 subscriptions-for-woocommerce.php:232
|
||||||
|
msgid "Subscriptions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:351
|
||||||
|
msgid "susbcription_list_table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/class-subscriptions-for-woocommerce-admin-subscription-list.php:357
|
||||||
|
msgid "Search Order"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-admin-dashboard.php:26
|
||||||
|
#: subscriptions-for-woocommerce.php:176
|
||||||
|
msgid "Support"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:37
|
||||||
|
msgid "Subscriptions for WooCommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:38
|
||||||
|
msgid ""
|
||||||
|
"Subscriptions for WooCommerce Plugin allows the WooCommerce merchants to "
|
||||||
|
"provide their products or services regularly through subscription programs. "
|
||||||
|
"Thus, helping in collecting the recurring revenue of your store."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:41
|
||||||
|
msgid "What does Subscriptions for WooCommerce do?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:43
|
||||||
|
msgid "With our Subscriptions for WooCommerce Plugin, you can:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:45
|
||||||
|
msgid ""
|
||||||
|
"Provide subscriptions on physical products, and virtual or downloadable "
|
||||||
|
"products"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:46
|
||||||
|
msgid "Generate trouble-free recurring revenue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:47
|
||||||
|
msgid "Sell recurring services for a set period"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:48
|
||||||
|
msgid "Convert simple product selling WooCommerce store to subscription-based"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:49
|
||||||
|
msgid "Give free trials to your customers and loyalize them"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:54
|
||||||
|
msgid "Salient Features of Subscriptions for WooCommerce Plugin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:61
|
||||||
|
msgid "Create Simple Products As Subscription Product"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:63
|
||||||
|
msgid ""
|
||||||
|
"You can easily assign a subscription product label to simple product type by "
|
||||||
|
"simply ticking a checkbox. The product will then be available as a "
|
||||||
|
"subscription product."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:72
|
||||||
|
msgid "Offer Subscription Frequency and Expiry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:75
|
||||||
|
msgid ""
|
||||||
|
"You can set the frequency for subscribed products for the user. Recurrence "
|
||||||
|
"can be regulated as monthly, weekly, or yearly. The recurring payments will "
|
||||||
|
"be done according to the frequency plan. You can set the expiration date of "
|
||||||
|
"the subscription plan. And, for extending this subscription plan can be "
|
||||||
|
"renewed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:84
|
||||||
|
msgid "Charge Initial Fee with WooCommerce Payment Integrations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:86
|
||||||
|
msgid ""
|
||||||
|
"You can charge extra payment in the form of an initial fee. Stripe payment "
|
||||||
|
"integration of WooCommerce is supported with the subscription."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:95
|
||||||
|
msgid ""
|
||||||
|
"Offer Free Trial To Users With Both User and Admin Stop Subscription Option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:98
|
||||||
|
msgid ""
|
||||||
|
"Provide free trials to the users and take payments after it is over for "
|
||||||
|
"continued subscription plans. The flexibility of ending the subscription by "
|
||||||
|
"the admin or the user anytime. Both can stop subscriptions of products or "
|
||||||
|
"services in easy steps."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:108
|
||||||
|
msgid "Complete Subscription Reports"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:110
|
||||||
|
msgid ""
|
||||||
|
"With a clean subscription report module, you will get complete subscription "
|
||||||
|
"data of all users. Find important details like active and inactive "
|
||||||
|
"subscriptions, next payment dates, product names, subscription expiry dates, "
|
||||||
|
"and due dates of the respective plans."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:119
|
||||||
|
msgid "Subscription Details To User and Admin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-overview.php:121
|
||||||
|
msgid ""
|
||||||
|
"View all details of the subscription plans of every user of your store. The "
|
||||||
|
"user can see his subscription plan details and history"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-system-status.php:30
|
||||||
|
msgid "WP Variables"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-system-status.php:31
|
||||||
|
msgid "WP Values"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-system-status.php:56
|
||||||
|
msgid "System Variables"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/subscriptions-for-woocommerce-system-status.php:57
|
||||||
|
msgid "System Values"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:36
|
||||||
|
msgid "Cancelled Subscription Email Notification"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:38
|
||||||
|
msgid "This Email Notification Send if any subscription is Cancelled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:60
|
||||||
|
msgid "Cancelled Susbcription Email {site_title}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:70
|
||||||
|
msgid "Subscription Cancelled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:142
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:140
|
||||||
|
msgid "Enable/Disable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:144
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:142
|
||||||
|
msgid "Enable this email notification"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:148
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:146
|
||||||
|
msgid "Recipient Email Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:151
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:149
|
||||||
|
#, php-format
|
||||||
|
msgid "Enter recipient email address. Defaults to %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:157
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:155
|
||||||
|
msgid "Subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:159
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:157
|
||||||
|
msgid "Enter the email subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:165
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:167
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:163
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:165
|
||||||
|
msgid "Email Heading"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:173
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:171
|
||||||
|
msgid "Email type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-cancel-subscription-email.php:175
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:173
|
||||||
|
msgid "Choose which format of email to send."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:36
|
||||||
|
msgid "Expired Subscription Email Notification"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:37
|
||||||
|
msgid "This Email Notification Send if any subscription is Expired"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:58
|
||||||
|
msgid "Expired Susbcription Email {site_title}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/class-subscriptions-for-woocommerce-expired-subscription-email.php:68
|
||||||
|
msgid "Subscription Expired"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/templates/mwb-sfw-cancel-subscription-email-template.php:18
|
||||||
|
#: emails/templates/plain/mwb-sfw-cancel-subscription-email-template.php:20
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"A subscription [#%s] has been cancelled. Their subscription's details are as "
|
||||||
|
"follows:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/templates/mwb-sfw-expired-subscription-email-template.php:18
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"A subscription [#%s] has been Expired. Their subscription's details are as "
|
||||||
|
"follows:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/templates/plain/mwb-sfw-cancel-subscription-email-template.php:29
|
||||||
|
#: emails/templates/plain/mwb-sfw-expired-subscription-email-template.php:27
|
||||||
|
#: includes/subscriptions-for-woocommerce-common-function.php:291
|
||||||
|
#: public/partials/templates/myaccount/mwb-add-new-payment-details.php:21
|
||||||
|
msgid "Product"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/templates/plain/mwb-sfw-cancel-subscription-email-template.php:33
|
||||||
|
#: emails/templates/plain/mwb-sfw-expired-subscription-email-template.php:31
|
||||||
|
#: includes/subscriptions-for-woocommerce-common-function.php:292
|
||||||
|
#: public/partials/templates/myaccount/mwb-add-new-payment-details.php:22
|
||||||
|
msgid "Quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/templates/plain/mwb-sfw-cancel-subscription-email-template.php:37
|
||||||
|
#: emails/templates/plain/mwb-sfw-expired-subscription-email-template.php:35
|
||||||
|
#: includes/subscriptions-for-woocommerce-common-function.php:293
|
||||||
|
msgid "Price"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: emails/templates/plain/mwb-sfw-expired-subscription-email-template.php:18
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"A subscription [#%s] has been expired. Their subscription's details are as "
|
||||||
|
"follows:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce-onboarding-steps.php:300
|
||||||
|
msgid "What is your monthly revenue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce-onboarding-steps.php:319
|
||||||
|
msgid "What industry defines your business?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce-onboarding-steps.php:325
|
||||||
|
msgid "Industry Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce-onboarding-steps.php:356
|
||||||
|
msgid "What is the best email address to contact you?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce-onboarding-steps.php:360
|
||||||
|
msgid "Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce-onboarding-steps.php:368
|
||||||
|
msgid "What is your contact number?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce-onboarding-steps.php:373
|
||||||
|
msgid "Contact Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce-onboarding-steps.php:485
|
||||||
|
#, php-format
|
||||||
|
msgid " Let us know why you are deactivating %s so we can improve the plugin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce-onboarding-steps.php:489
|
||||||
|
msgid "Reason"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce-onboarding-steps.php:734
|
||||||
|
msgid "Unexpected Error Occured"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:379
|
||||||
|
msgid "Overview"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:383
|
||||||
|
msgid "General Setting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:389
|
||||||
|
msgid "Subscription Table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:393
|
||||||
|
msgid "System Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:417
|
||||||
|
#, 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-subscriptions-for-woocommerce.php:475
|
||||||
|
msgid "N/A (phpversion function does not exist)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:484
|
||||||
|
msgid "N/A (make sure exec function is enabled)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:487
|
||||||
|
msgid "N/A (ABSPATH constant not defined)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:490
|
||||||
|
msgid "N/A (php_uname function does not exist)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:493
|
||||||
|
msgid "N/A (get_bloginfo function does not exist)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:496
|
||||||
|
msgid "N/A (get_option function does not exist)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:499
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:502
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:505
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:499
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:502
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:505
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:508
|
||||||
|
msgid "N/A (count_users function does not exist)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:511
|
||||||
|
msgid "0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:514
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:520
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:523
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:551
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:554
|
||||||
|
msgid "N/A (ini_get function does not exist)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:517
|
||||||
|
msgid "N/A"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:535
|
||||||
|
msgid "N/A (gethostname function does not exist)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:538
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:547
|
||||||
|
msgid "N/A (make sure exec is enabled)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-subscriptions-for-woocommerce.php:557
|
||||||
|
msgid "N/A (file_get_contents function does not exist)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/subscriptions-for-woocommerce-common-function.php:354
|
||||||
|
msgid "There was an error with your request."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/subscriptions-for-woocommerce-common-function.php:357
|
||||||
|
msgid "Invalid Subscription."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/subscriptions-for-woocommerce-common-function.php:360
|
||||||
|
msgid "Invalid subscription order."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: onboarding/templates/subscriptions-for-woocommerce-deactivation-template.php:33
|
||||||
|
msgid "May we have a little info about why you are deactivating?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: onboarding/templates/subscriptions-for-woocommerce-deactivation-template.php:44
|
||||||
|
msgid "Skip and Deactivate Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: onboarding/templates/subscriptions-for-woocommerce-onboarding-template.php:27
|
||||||
|
msgid "Welcome to MakeWebBetter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: onboarding/templates/subscriptions-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/subscriptions-for-woocommerce-onboarding-template.php:40
|
||||||
|
msgid "Skip For Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: package/gateways/stripe/class-subscriptions-for-woocommerce-stripe.php:58
|
||||||
|
msgid "Something Went Wrong. Please see the log file for more info."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: package/gateways/stripe/class-subscriptions-for-woocommerce-stripe.php:64
|
||||||
|
#: package/gateways/stripe/class-subscriptions-for-woocommerce-stripe.php:84
|
||||||
|
msgid "Stripe Transaction Failed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: package/gateways/stripe/class-subscriptions-for-woocommerce-stripe.php:72
|
||||||
|
#, php-format
|
||||||
|
msgid "Stripe Renewal Transaction Successful (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: package/gateways/stripe/class-subscriptions-for-woocommerce-stripe.php:110
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s - Order %2$s - Renewal Order."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: package/gateways/stripe/class-subscriptions-for-woocommerce-stripe.php:120
|
||||||
|
msgid "customer_name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: package/gateways/stripe/class-subscriptions-for-woocommerce-stripe.php:121
|
||||||
|
msgid "customer_email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:141
|
||||||
|
#, php-format
|
||||||
|
msgid " / %1$s For %2$s "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:149
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:924
|
||||||
|
#, php-format
|
||||||
|
msgid " / %s "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:172
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:209
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Day"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:176
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:213
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:180
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:217
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:184
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:221
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Year"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:241
|
||||||
|
#, php-format
|
||||||
|
msgid " and %s Sign up fee"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:261
|
||||||
|
#, php-format
|
||||||
|
msgid " and %s free trial"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:581
|
||||||
|
msgid "%1$b %2$d, %Y @ %I:%M %p"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:590
|
||||||
|
#, php-format
|
||||||
|
msgid "MWB Subscription – %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:716
|
||||||
|
msgid "Please enable payment method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:742
|
||||||
|
msgid "Payment Method Added Successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-subscriptions-for-woocommerce-public.php:939
|
||||||
|
msgid "Not a valid subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-add-new-payment-details.php:23
|
||||||
|
msgid "Totals"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-add-new-payment-details.php:46
|
||||||
|
msgid "Add payment method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-show-subscription-details.php:41
|
||||||
|
msgid "Subscription Details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-show-subscription-details.php:53
|
||||||
|
msgid "Subscription Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-show-subscription-details.php:76
|
||||||
|
msgid "Trial End Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-show-subscription-details.php:95
|
||||||
|
msgid "Add Payment Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-show-subscription-details.php:107
|
||||||
|
msgid "Subscription Order Details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-show-subscription-details.php:114
|
||||||
|
msgid "Total"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-susbcrptions.php:23
|
||||||
|
msgid "ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-susbcrptions.php:25
|
||||||
|
msgid "Next payment date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-susbcrptions.php:26
|
||||||
|
msgid "Recurring Total"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-susbcrptions.php:27
|
||||||
|
msgid "Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-susbcrptions.php:63
|
||||||
|
msgid "Show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-susbcrptions.php:79
|
||||||
|
msgid "Previous"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-susbcrptions.php:83
|
||||||
|
msgid "Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/templates/myaccount/mwb-susbcrptions.php:89
|
||||||
|
msgid "You have not any active subscriptions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:80 subscriptions-for-woocommerce.php:86
|
||||||
|
msgid "Subscriptions For Woocommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:153
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:172
|
||||||
|
msgid "Free Demo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:174
|
||||||
|
msgid "Documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:221
|
||||||
|
msgid "Add Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:222
|
||||||
|
msgid "Add New Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:223
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:224
|
||||||
|
msgid "Edit Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:225
|
||||||
|
msgid "New Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:226 subscriptions-for-woocommerce.php:227
|
||||||
|
msgid "View Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:228
|
||||||
|
msgid "Search Subscriptions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:229
|
||||||
|
msgid "Not Found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:230
|
||||||
|
msgid "No Subscriptions found in the trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:231
|
||||||
|
msgid "Parent Subscriptions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:234
|
||||||
|
msgid "This subscriptions are stored."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: subscriptions-for-woocommerce.php:291
|
||||||
|
msgid ""
|
||||||
|
"WooCommerce is not activated, Please activate WooCommerce first to activate "
|
||||||
|
"Subscriptions for Woocommerce."
|
||||||
|
msgstr ""
|
||||||
205
spec/fixtures/dynamic_finders/plugin_version/telenote/translation_file/languages/telenote-plugin.pot
vendored
Normal file
205
spec/fixtures/dynamic_finders/plugin_version/telenote/translation_file/languages/telenote-plugin.pot
vendored
Normal file
@@ -0,0 +1,205 @@
|
|||||||
|
# Copyright (C) 2021 telenote
|
||||||
|
# This file is distributed under the same license as the Telenote plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Telenote 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/telenote\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-03T06:58:00+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.4.0\n"
|
||||||
|
"X-Domain: telenote-plugin\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Telenote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://www.telenote.site/#/plugins/telenote-wordpress-woocommerce-plugin/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Telenote plugin allows you to send notifications to site users via telegram"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "telenote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://www.telenote.site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:148
|
||||||
|
#: telenote.php:180
|
||||||
|
msgid "Telenote plugin warning! An error has occurred. Please check settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:218
|
||||||
|
#: telenote.php:219
|
||||||
|
msgid "Telenote plugin settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:243
|
||||||
|
msgid "Telenote Plugin Settings updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:249
|
||||||
|
msgid "Please set API token."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:271
|
||||||
|
msgid "Telenote Account settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:275
|
||||||
|
msgid "Telenote API Token"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:281
|
||||||
|
msgid "Telenote Project Alias"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:285
|
||||||
|
msgid "Your balance: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:292
|
||||||
|
msgid "Link your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:296
|
||||||
|
msgid "Click on this link to receive admin notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:305
|
||||||
|
msgid "Message Templates"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:309
|
||||||
|
msgid "Template for \"New Order\" message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:315
|
||||||
|
msgid "Placeholdres:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:316
|
||||||
|
msgid "Order Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:317
|
||||||
|
msgid "Order Total Sum"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:318
|
||||||
|
msgid "Client Email Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:319
|
||||||
|
msgid "Client Phone Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:320
|
||||||
|
msgid "Client First Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:321
|
||||||
|
msgid "Client Last Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:322
|
||||||
|
msgid "Client City"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:323
|
||||||
|
msgid "Client Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:324
|
||||||
|
msgid "Shop Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:325
|
||||||
|
msgid "Prevous Order Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:326
|
||||||
|
msgid "New Order Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:327
|
||||||
|
msgid "Items List In \"Name Count Price\" format"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:328
|
||||||
|
msgid "Payment Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:329
|
||||||
|
msgid "Delivery Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:330
|
||||||
|
msgid "Order Creation Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:333
|
||||||
|
#: telenote.php:352
|
||||||
|
msgid "Message To Admin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:336
|
||||||
|
#: telenote.php:355
|
||||||
|
msgid "Send Message To Admin?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:340
|
||||||
|
#: telenote.php:359
|
||||||
|
msgid "Message To Client"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:343
|
||||||
|
#: telenote.php:362
|
||||||
|
msgid "Send Message To Client?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:348
|
||||||
|
msgid "Template for \"Order Changed\" message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:366
|
||||||
|
msgid "Save Changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:543
|
||||||
|
msgid "Please set Telenote API Token in the settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:589
|
||||||
|
msgid "Yes, send notifications in my Telegram. "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:590
|
||||||
|
msgid "No, thanks."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:598
|
||||||
|
msgid "Do you want to receive notifications in Telegram?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:601
|
||||||
|
msgid "If yes, please click on this link before place order "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:603
|
||||||
|
msgid " to subscribe to our Telegram bot."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: telenote.php:615
|
||||||
|
msgid "Error when using Telenote plugin."
|
||||||
|
msgstr ""
|
||||||
@@ -1,3 +1,193 @@
|
|||||||
|
##### [Version 2.10.4](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.3...v2.10.4) (2021-03-09)
|
||||||
|
|
||||||
|
- [Fix] Translations and text-domain issues
|
||||||
|
- [Fix] Translation and text-domain issues.
|
||||||
|
|
||||||
|
##### [Version 2.10.3](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.2...v2.10.3) (2020-12-17)
|
||||||
|
|
||||||
|
[Fix] removes role selector from registration content form
|
||||||
|
[Fix] ThemeIsle icons not appearing on WebKit browsers in Gutenberg blocks
|
||||||
|
|
||||||
|
##### [Version 2.10.2](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.1...v2.10.2) (2020-12-09)
|
||||||
|
|
||||||
|
- [Fix] Fatal error on older versions of PHP
|
||||||
|
|
||||||
|
##### [Version 2.10.1](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.0...v2.10.1) (2020-12-07)
|
||||||
|
|
||||||
|
- [Feat] New ascending/descending order option for Post Type Grid Elementor widget
|
||||||
|
- [Fix] Compatibility with WP 5.6
|
||||||
|
- [Fix] Header and Footer scripts not working on the Shop page
|
||||||
|
- [Fix] Remove Google Plus from the social-sharing module
|
||||||
|
|
||||||
|
#### [Version 2.10.0](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.19...v2.10.0) (2020-10-09)
|
||||||
|
|
||||||
|
- New Custom Fonts module
|
||||||
|
|
||||||
|
##### [Version 2.9.19](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.18...v2.9.19) (2020-09-25)
|
||||||
|
|
||||||
|
* Fix elementor post grid jQuery dependencies
|
||||||
|
|
||||||
|
##### [Version 2.9.18](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.17...v2.9.18) (2020-09-21)
|
||||||
|
|
||||||
|
- [Fix] Missing FontAwesome icons when Otter Blocks plugin was active
|
||||||
|
|
||||||
|
##### [Version 2.9.17](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.16...v2.9.17) (2020-09-02)
|
||||||
|
|
||||||
|
- [Fix] Compatibility with WP 5.5
|
||||||
|
- [Fix] Installing recommended plugins not working
|
||||||
|
|
||||||
|
##### [Version 2.9.16](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.15...v2.9.16) (2020-08-12)
|
||||||
|
|
||||||
|
fix: add permission_callback for analytics module
|
||||||
|
|
||||||
|
##### [Version 2.9.15](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.14...v2.9.15) (2020-08-12)
|
||||||
|
|
||||||
|
fix: notice showing up in the editor on the new WordPress version for users with WP_DEBUG turned on
|
||||||
|
|
||||||
|
##### [Version 2.9.14](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.13...v2.9.14) (2020-08-07)
|
||||||
|
|
||||||
|
- Remove affiliate link
|
||||||
|
|
||||||
|
##### [Version 2.9.13](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.12...v2.9.13) (2020-08-04)
|
||||||
|
|
||||||
|
- Removed Starter Sites library and import process used for the Neve theme
|
||||||
|
- [Fix] Menu Icons module not working with WP 5.5
|
||||||
|
- [Fix] Empty team member widget appearing on mobile in Hestia theme
|
||||||
|
|
||||||
|
##### [Version 2.9.12](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.11...v2.9.12) (2020-07-20)
|
||||||
|
|
||||||
|
- New checkbox field in the Contact widget for both Elementor and Beaver Builder
|
||||||
|
- [Fix] Newsletter widget not taking into account the double opt-in option from Mailchimp
|
||||||
|
|
||||||
|
##### [Version 2.9.11](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.10...v2.9.11) (2020-07-10)
|
||||||
|
|
||||||
|
- Starter Sites library and import process from the Neve theme
|
||||||
|
|
||||||
|
##### [Version 2.9.10](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.9...v2.9.10) (2020-06-24)
|
||||||
|
|
||||||
|
- [Fix] JS error for some modules when the module names are translated
|
||||||
|
|
||||||
|
##### [Version 2.9.9](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.8...v2.9.9) (2020-06-05)
|
||||||
|
|
||||||
|
New Header/Footer Scripts module
|
||||||
|
|
||||||
|
##### [Version 2.9.8](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.7...v2.9.8) (2020-04-28)
|
||||||
|
|
||||||
|
- Fixed importing multiple photos and better error handling in the Mystock module
|
||||||
|
|
||||||
|
##### [Version 2.9.7](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.6...v2.9.7) (2020-04-22)
|
||||||
|
|
||||||
|
- New Hidden field in the contact form widget
|
||||||
|
- Fix Mystock Import in the Gutenberg editor
|
||||||
|
- Fix overlapping widgets names with Beaver Builder Pro version
|
||||||
|
- Fix undefined index notice in Elementor Services widget
|
||||||
|
- Upgrade FontAwesome icons to FA5 for Hestia default content
|
||||||
|
- Make inline social icons round in Hestia
|
||||||
|
- Fix inline social icons not applying on pages in Hestia
|
||||||
|
|
||||||
|
##### [Version 2.9.6](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.5...v2.9.6) (2020-04-06)
|
||||||
|
|
||||||
|
* Update compatibility with WordPress 5.4
|
||||||
|
* Sync dependencies
|
||||||
|
* Fix selective refresh for Hestia enhacements features
|
||||||
|
|
||||||
|
##### [Version 2.9.5](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.4...v2.9.5) (2020-03-30)
|
||||||
|
|
||||||
|
* Fix notice on analytics module when the codes are missing
|
||||||
|
* Update dependencies to the latest versions
|
||||||
|
|
||||||
|
##### [Version 2.9.4](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.3...v2.9.4) (2020-03-23)
|
||||||
|
|
||||||
|
* Improve FA loading in Hestia compatibility features
|
||||||
|
* Update dependencies
|
||||||
|
|
||||||
|
##### [Version 2.9.3](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.2...v2.9.3) (2020-03-05)
|
||||||
|
|
||||||
|
* Update dependencies
|
||||||
|
* Fix admin notice viewed by non-admins
|
||||||
|
|
||||||
|
##### [Version 2.9.2](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.1...v2.9.2) (2020-02-13)
|
||||||
|
|
||||||
|
* Fix issue with cookie notices closing behavior.
|
||||||
|
* Fix notice when Otter and Orbit Fox were both active.
|
||||||
|
|
||||||
|
##### [Version 2.9.1](https://github.com/Codeinwp/themeisle-companion/compare/v2.9.0...v2.9.1) (2020-02-05)
|
||||||
|
|
||||||
|
* Fix possible error with edge case legacy module loading.
|
||||||
|
|
||||||
|
#### [Version 2.9.0](https://github.com/Codeinwp/themeisle-companion/compare/v2.8.14...v2.9.0) (2020-02-03)
|
||||||
|
|
||||||
|
* Update dependencies
|
||||||
|
* Remove legacy modules
|
||||||
|
|
||||||
|
### v2.8.14 - 2019-12-02
|
||||||
|
**Changes:**
|
||||||
|
* Fix fatal error with Membership Pro
|
||||||
|
* Various bug fixes to forms and Elementor widgets
|
||||||
|
|
||||||
|
### v2.8.13 - 2019-11-18
|
||||||
|
**Changes:**
|
||||||
|
* Fix dependency issues on content forms module
|
||||||
|
|
||||||
|
### v2.8.12 - 2019-11-18
|
||||||
|
**Changes:**
|
||||||
|
* sync dependencies
|
||||||
|
|
||||||
|
### v2.8.11 - 2019-11-18
|
||||||
|
**Changes:**
|
||||||
|
* Various improvements for Beaver and Elementor form widgets.
|
||||||
|
* Improvements to the post grid Elementor module.
|
||||||
|
* Compatibility with WordPress 5.3
|
||||||
|
|
||||||
|
### v2.8.10 - 2019-09-13
|
||||||
|
**Changes:**
|
||||||
|
* Development
|
||||||
|
|
||||||
|
### v2.8.8 - 2019-09-11
|
||||||
|
**Changes:**
|
||||||
|
* Fixes Constant Warning for Beaver Widgets Module
|
||||||
|
|
||||||
|
### v2.8.7 - 2019-08-13
|
||||||
|
**Changes:**
|
||||||
|
* Release
|
||||||
|
|
||||||
|
### v2.8.6 - 2019-08-12
|
||||||
|
**Changes:**
|
||||||
|
* Improve script loading performance
|
||||||
|
* Fix issue with mystock import
|
||||||
|
|
||||||
|
### v2.8.5 - 2019-07-26
|
||||||
|
**Changes:**
|
||||||
|
* Merge pull request #368 from Codeinwp/master
|
||||||
|
|
||||||
|
### v2.8.4 - 2019-05-23
|
||||||
|
**Changes:**
|
||||||
|
* minor adjustments to the dashboard UI
|
||||||
|
* various updates to the Gutenberg blocks available
|
||||||
|
* adds compatibility with WordPress 5.2
|
||||||
|
|
||||||
|
### v2.8.3 - 2019-04-20
|
||||||
|
**Changes:**
|
||||||
|
* Fixed issue with constant not being checked in Otter
|
||||||
|
* Added error handling in Backbone functions
|
||||||
|
|
||||||
|
### v2.8.2 - 2019-04-18
|
||||||
|
**Changes:**
|
||||||
|
* Fix PHP notice
|
||||||
|
|
||||||
|
### v2.8.1 - 2019-04-18
|
||||||
|
**Changes:**
|
||||||
|
* Fix issues with newsletter form
|
||||||
|
|
||||||
|
### v2.8.0 - 2019-04-02
|
||||||
|
**Changes:**
|
||||||
|
* Fix font awesome menu icons issue in the menu builder
|
||||||
|
* Fix issue on dismiss nag info for OrbitFox post install
|
||||||
|
* Fix menu icon possible conflicts report info
|
||||||
|
* FIx undefined error on new installs for image module
|
||||||
|
* Fix issues with mystock import on certain use cases
|
||||||
|
* Remove image CDN module for new users, service will be migrated to optimole plugin
|
||||||
|
* Adds recommended plugins tab into Orbitfox settings page.
|
||||||
|
|
||||||
### v2.7.5 - 2019-02-02
|
### v2.7.5 - 2019-02-02
|
||||||
**Changes:**
|
**Changes:**
|
||||||
@@ -277,4 +467,3 @@
|
|||||||
* Added simple reporting functionality.
|
* Added simple reporting functionality.
|
||||||
* Added support for upcoming caching, security and analytics feature.
|
* Added support for upcoming caching, security and analytics feature.
|
||||||
* Branded to Orbit Fox companion
|
* Branded to Orbit Fox companion
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
18
spec/fixtures/dynamic_finders/plugin_version/ultimate-post-kit/change_log/changelog.txt
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/ultimate-post-kit/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
## 1.1.0 [Work in progress]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Paradox Slider Widget Added
|
||||||
|
|
||||||
|
## 1.0.1 [12th April 2021]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Date and Category Added in Elite Grid, Elite Carousel Widget
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Some minor issue fixed and updated on some special cases
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
- Initial Release
|
||||||
@@ -0,0 +1,944 @@
|
|||||||
|
# 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.19\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/3d-flip-book\n"
|
||||||
|
"POT-Creation-Date: 2021-03-26 19:39: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: 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 "Inline on page (fullscreen)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:91
|
||||||
|
msgid "Select skin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:92
|
||||||
|
msgid "3D FlipBook container CSS classes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:93
|
||||||
|
msgid "Lightbox theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:94
|
||||||
|
msgid "Light"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:95
|
||||||
|
msgid "Dark"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:96
|
||||||
|
msgid "default value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:97
|
||||||
|
msgid "Default value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:98
|
||||||
|
msgid "minimum value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:99
|
||||||
|
msgid "maximum value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:100
|
||||||
|
msgid "amount of zoom levels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:101
|
||||||
|
msgid "amount of lighting levels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:102
|
||||||
|
msgid "pan step for comands cmdPanLeft, cmdPanRight, cmdPanUp, cmdPanDown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:103
|
||||||
|
msgid "zoom in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:104
|
||||||
|
msgid "zoom out"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:105
|
||||||
|
msgid "set default zoom"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:106
|
||||||
|
msgid "show bookmarks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:107
|
||||||
|
msgid "turn 10 pages backward"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:108
|
||||||
|
msgid "turn a page backward"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:109
|
||||||
|
msgid "turn a page forward"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:110
|
||||||
|
msgid "turn 10 pages forward"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:111
|
||||||
|
msgid "download"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:112
|
||||||
|
msgid "print"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:113
|
||||||
|
msgid "toggle fulscreen mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:114
|
||||||
|
msgid "show/hide the settings toolbar button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:115
|
||||||
|
msgid "toggle the smart pan mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:116
|
||||||
|
msgid "toggle single page mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:117
|
||||||
|
msgid "toggle sound effects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:118
|
||||||
|
msgid "toggle statistics monitor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:119
|
||||||
|
msgid "increase lighting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:120
|
||||||
|
msgid "reduce lighting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:121
|
||||||
|
msgid "move pan to the left"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:122
|
||||||
|
msgid "move pan to the right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:123
|
||||||
|
msgid "move pan to the up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:124
|
||||||
|
msgid "move pan to the down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:125
|
||||||
|
msgid "rotate the book by means mouse drag operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:126
|
||||||
|
msgid "zoom by means mouse drag operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:127
|
||||||
|
msgid "pan by means mouse drag operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:128
|
||||||
|
msgid "zoom by means mouse wheel operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:129
|
||||||
|
msgid "rotate the book by means touch drag operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:130
|
||||||
|
msgid "zoom by means touch drag operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:131
|
||||||
|
msgid "pan by means touch drag operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:132
|
||||||
|
msgid "Ctrl, Shift, Alt, or their combination like Ctrl+Shift"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:133
|
||||||
|
msgid "modificator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:134
|
||||||
|
msgid "keyboard key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:135
|
||||||
|
msgid "key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:136
|
||||||
|
msgid "mouse button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:137
|
||||||
|
msgid "button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:138
|
||||||
|
msgid "amount of touches"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:139
|
||||||
|
msgid "touches"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:140
|
||||||
|
msgid "event that activates the action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:141
|
||||||
|
msgid "event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:142
|
||||||
|
msgid "is action enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:143
|
||||||
|
msgid "is action enabled in narrow view"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:144
|
||||||
|
msgid "enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:145
|
||||||
|
msgid "enabledInNarrow"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:146
|
||||||
|
msgid "is active by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:147
|
||||||
|
msgid "active"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:148
|
||||||
|
msgid "is active for mobile devices by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:149
|
||||||
|
msgid "activeForMobile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:150
|
||||||
|
msgid "Zoom"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:151
|
||||||
|
msgid "Lighting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:152
|
||||||
|
msgid "Pan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:153 inc/settings.php:7
|
||||||
|
msgid "3D FlipBook - Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:154
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:155
|
||||||
|
msgid "Update"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:156
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:157
|
||||||
|
msgid "Settings saved successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:158
|
||||||
|
msgid "One"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:159
|
||||||
|
msgid "Two"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:160
|
||||||
|
msgid "Three"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:161
|
||||||
|
msgid "Left"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:162
|
||||||
|
msgid "Middle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:163
|
||||||
|
msgid "Right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:164
|
||||||
|
msgid "Mouse button down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:165
|
||||||
|
msgid "Mouse move"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:166
|
||||||
|
msgid "Mouse button up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:167
|
||||||
|
msgid "Click"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:168
|
||||||
|
msgid "Double click"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:169
|
||||||
|
msgid "Touch start"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:170
|
||||||
|
msgid "Touch move"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:171
|
||||||
|
msgid "Touch end"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:172
|
||||||
|
msgid "Key down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:173
|
||||||
|
msgid "Key press"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:174
|
||||||
|
msgid "Key up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:175
|
||||||
|
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:176
|
||||||
|
msgid "Please wait... the Application is Loading"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:177
|
||||||
|
msgid "PDF is Loading:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:178
|
||||||
|
msgid "Previous page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:179
|
||||||
|
msgid "Next page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:180
|
||||||
|
msgid "Table of contents"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:181
|
||||||
|
msgid "Close"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:182
|
||||||
|
msgid "Bookmarks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:183
|
||||||
|
msgid "Thumbnails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:184
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:185
|
||||||
|
msgid "Zoom in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:186
|
||||||
|
msgid "Zoom out"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:187
|
||||||
|
msgid "Fit view"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:188
|
||||||
|
msgid "10 pages backward"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:189
|
||||||
|
msgid "10 pages forward"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:190
|
||||||
|
msgid "Download"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:191
|
||||||
|
msgid "Print"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:192
|
||||||
|
msgid "Full screen"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:193 inc/settings.php:8
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:194
|
||||||
|
msgid "Smart pan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:195
|
||||||
|
msgid "Single page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:196
|
||||||
|
msgid "Sounds"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:197
|
||||||
|
msgid "Stats"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:198
|
||||||
|
msgid "Increase lighting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:199
|
||||||
|
msgid "Reduce lighting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:200
|
||||||
|
msgid "Loading..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:201
|
||||||
|
msgid "See the debugging console for details (Ctrl+Shift+I in Chrome)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:202
|
||||||
|
msgid "yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:203
|
||||||
|
msgid "no"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:204
|
||||||
|
msgid "Skin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:205
|
||||||
|
msgid "default control skin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:206
|
||||||
|
msgid "CSS text for skin customization"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:207
|
||||||
|
msgid "Lightbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:208
|
||||||
|
msgid "default lightbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:209
|
||||||
|
msgid "Loading Animation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:210
|
||||||
|
msgid "show the skin loading animation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:211
|
||||||
|
msgid "show the book loading animation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:212
|
||||||
|
msgid "Auto Resolution"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:213
|
||||||
|
msgid "the page texture resolution will be computed automatically"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:214
|
||||||
|
msgid "the computed automatically resolution is multiplied by the coefficient"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:215
|
||||||
|
msgid "Narrow View"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:216
|
||||||
|
msgid "width in pixels when the view switches into the narrow mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:217
|
||||||
|
msgid "Ready Function"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:218
|
||||||
|
msgid "function ready(scene) {/* code */} ready"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:219
|
||||||
|
msgid "global book ready function: function ready(scene) {/* code */} ready"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:220
|
||||||
|
msgid "Control properties"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:221
|
||||||
|
msgid "Book style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:222
|
||||||
|
msgid "Pages customization"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:223
|
||||||
|
msgid "show advanced options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:224
|
||||||
|
msgid "render loaded hidden pages in the background on mobile devices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:225
|
||||||
|
msgid "curvature of open sheet, 0.05 is for flat sheet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:226
|
||||||
|
msgid "side texture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:227
|
||||||
|
msgid "3D FlipBook source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:228
|
||||||
|
msgid "Prebuilt"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:229
|
||||||
|
msgid "PDF URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:230 inc/taxonomy.php:7
|
||||||
|
msgid "Categories"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:231
|
||||||
|
msgid "Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:232
|
||||||
|
msgid "Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:233
|
||||||
|
msgid "500px, 50% - % of parent container height, empty - auto"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:234
|
||||||
|
msgid "Background"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:235
|
||||||
|
msgid "color: #333"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:236
|
||||||
|
msgid "image: http://example.com/image.jpg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:237
|
||||||
|
msgid "http://example.com/image.jpg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:238
|
||||||
|
msgid "http://example.com?fb3d-page=1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:239
|
||||||
|
msgid "Thumbnail URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:240
|
||||||
|
msgid "Volumetric"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:241
|
||||||
|
msgid "Volumetric with paddings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/dictionary.php:242
|
||||||
|
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 ""
|
||||||
76
spec/fixtures/dynamic_finders/plugin_version/utilitify/translation_file/languages/utilitify.pot
vendored
Normal file
76
spec/fixtures/dynamic_finders/plugin_version/utilitify/translation_file/languages/utilitify.pot
vendored
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
# Copyright (C) 2021 KaizenCoders
|
||||||
|
# This file is distributed under the same license as the Utilitify plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Utilitify 1.0.2\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/utilitify\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-08T06:42:19+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.4.0\n"
|
||||||
|
"X-Domain: utilitify\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#: lite/includes/Admin.php:140
|
||||||
|
#: lite/includes/Helper.php:453
|
||||||
|
msgid "Utilitify"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wordpress.org/plugins/utilitify"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
#: lite/includes/Admin/Templates/Dashboard.php:85
|
||||||
|
msgid "Supercharge Your WordPress Site With Powerpack WordPress Utilities"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "KaizenCoders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://kaizencoders.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lite/includes/Admin/admin-settings.php:37
|
||||||
|
msgid "General"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lite/includes/Admin/admin-settings.php:42
|
||||||
|
msgid "404 Redirect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lite/includes/Admin/admin-settings.php:52
|
||||||
|
msgid "Hide Admin Bar From Frontend"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lite/includes/Admin/admin-settings.php:60
|
||||||
|
msgid "Hide Admin Bar From Backend"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lite/includes/Admin/admin-settings.php:74
|
||||||
|
msgid "Enable 404 Redirect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lite/includes/Admin/admin-settings.php:82
|
||||||
|
msgid "Redirect All 404 Pages To"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lite/includes/Admin/Settings.php:40
|
||||||
|
#: lite/includes/Admin/Settings.php:41
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lite/includes/Admin/Templates/Dashboard.php:90
|
||||||
|
msgid "Get Started"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: PHP version
|
||||||
|
#: utilitify.php:106
|
||||||
|
msgid "Utilitify requires PHP version %s+, plugin is currently NOT RUNNING."
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
# Copyright (C) 2021 Wayra Marketing Digtial
|
||||||
|
# This file is distributed under the same license as the Wayra - Validar código postal argentino plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Wayra - Validar código postal argentino 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wayra-postcode-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-04-02T15:02:17+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.4.0\n"
|
||||||
|
"X-Domain: wayra-postcode-validator\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Wayra - Validar código postal argentino"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wayramarketing.com.ar/plugins/wayra-postcode-validator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Plugin para WooCommerce para validad el código postal argentino (formato válidos 0000, X0000, X0000XXX)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Wayra Marketing Digtial"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://wayramarketing.com.ar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-wayra-postcode-validator-public.php:83
|
||||||
|
msgid "<strong>Facturación Código Postal</strong>, debe estar en formato 0000, o X0000, o X0000XXX."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-wayra-postcode-validator-public.php:89
|
||||||
|
msgid "<strong>Envío Código Postal</strong>, debe estar en formato 0000, o X0000, o X0000XXX."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-wayra-postcode-validator-public.php:100
|
||||||
|
#: public/class-wayra-postcode-validator-public.php:101
|
||||||
|
msgid "Formato 0000, o X0000, o X0000XXX"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"name": "wc-paddle-payment-gateway",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "=== Plugin Name === Contributors: (this should be a list of wordpress.org userid's) Donate link: https://codecanyon.net/user/divdojo/portfolio Tags: comments, spam Requires at least: 3.0.1 Tested up to: 3.4 Stable tag: 4.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"browserslist": [
|
||||||
|
"extends @wordpress/browserslist-config"
|
||||||
|
],
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC",
|
||||||
|
"dependencies": {},
|
||||||
|
"devDependencies": {
|
||||||
|
"@babel/core": "^7.13.1",
|
||||||
|
"@babel/preset-env": "^7.13.5",
|
||||||
|
"@wordpress/browserslist-config": "^3.0.1",
|
||||||
|
"browser-sync": "^2.26.14",
|
||||||
|
"browserslist": "^4.16.3",
|
||||||
|
"gulp": "^4.0.2",
|
||||||
|
"gulp-autoprefixer": "^7.0.1",
|
||||||
|
"gulp-babel": "^8.0.0",
|
||||||
|
"gulp-clean-css": "^4.3.0",
|
||||||
|
"gulp-rename": "^2.0.0",
|
||||||
|
"gulp-sass": "^4.1.0",
|
||||||
|
"gulp-terser": "^2.0.1",
|
||||||
|
"gulp-zip": "^5.0.2",
|
||||||
|
"node-sass": "^5.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,414 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: weather-forecast-widget\n"
|
||||||
|
"POT-Creation-Date: 2021-04-10 18:44+0200\n"
|
||||||
|
"PO-Revision-Date: 2021-04-10 18:45+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: de_DE\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 2.4.2\n"
|
||||||
|
"X-Poedit-Basepath: ../../Weather Forecast Widget/1.0.0 - Kopie/weather-"
|
||||||
|
"forecast-widget\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Poedit-KeywordsList: __\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:128
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "Beschreibung"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:137
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:138
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:327
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "Einstellungen"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:189
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"<p style=\"color: green\">API KEY <strong>%s</strong> is VALID!</p><br />"
|
||||||
|
msgstr ""
|
||||||
|
"<p style=\"color: green\">API-Schlüssel <strong>%s</strong> ist GÜLTIG!</"
|
||||||
|
"p><br />"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:192
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"<p style=\"color: red\">API KEY <strong>%1$s</strong> is NOT VALID: %2$s | "
|
||||||
|
"%3$s</p><br />"
|
||||||
|
msgstr ""
|
||||||
|
"<p style=\"color: red\">API-Schlüssel <strong>%1$s</strong> is NICHT GÜLTIG: "
|
||||||
|
"%2$s | %3$s</p><br />"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:219
|
||||||
|
msgid ""
|
||||||
|
"If you <strong>choose an image from your media</strong> here, it will be "
|
||||||
|
"used as the background image."
|
||||||
|
msgstr ""
|
||||||
|
"Wenn du hier <strong>ein Bild aus deiner Mediathek auswählst</strong>, wird "
|
||||||
|
"dieses Bild als Hintergrundbild verwendet."
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:220
|
||||||
|
msgid ""
|
||||||
|
"If you <strong>don´t choose an image from your media</strong> here, the "
|
||||||
|
"thumbnail of the page or of the post will be used as the background image."
|
||||||
|
msgstr ""
|
||||||
|
"Wenn du hier <strong>kein Bild aus deiner Mediathek auswählst</strong>, wird "
|
||||||
|
"das Beitragsbild der Seite bzw. des Beitrags als Hintergrundbild verwendet."
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:223
|
||||||
|
msgid "Select Background Image"
|
||||||
|
msgstr "Hintergrundbild auswählen"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:240
|
||||||
|
msgid ""
|
||||||
|
"This setting will be used as <strong>a default if nothing else will be "
|
||||||
|
"passed in the shortcode</strong>. If you´ll pass <strong>title_cityname</"
|
||||||
|
"strong> or <strong>title_overwrite</strong> as a shortcode attribute, the "
|
||||||
|
"attributes will be processed in the widget output."
|
||||||
|
msgstr ""
|
||||||
|
"Diese Einstellung wird <strong>standardmäßig</strong> verwendet, wenn kein "
|
||||||
|
"dementsprechendes Attribut beim Shortcode selbst hinterlegt wird. Wenn du "
|
||||||
|
"hingegen einen der beiden Shortcode Attribute <strong>title_cityname</"
|
||||||
|
"strong> oder <strong>title_overwrite</strong> beim Shortcode hinterlegst, "
|
||||||
|
"wird dieses Attribut in der Widget Ausgabe verarbeitet."
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:242
|
||||||
|
msgid "Page/Post Title"
|
||||||
|
msgstr "Seiten-/Beitragstitel"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:243
|
||||||
|
msgid "Post Meta Field (choose one of the dropdown below)"
|
||||||
|
msgstr "Beitrags-Metadatenfeld (eines aus der Dropdown Liste auswählen)"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:265
|
||||||
|
msgid ""
|
||||||
|
"<p style=\"color: red\"><strong>Post Meta Field is blank but mandatory!</"
|
||||||
|
"strong></p><br />"
|
||||||
|
msgstr ""
|
||||||
|
"<p style=\"color: red\"><strong>Beitrags-Metadatenfeld ist leer, obwohl es "
|
||||||
|
"verpflichtend befüllt werden muss!</strong></p><br />"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:269
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"<p style=\"color: orange\">Post Meta Field is filled (<strong>%s</strong>) , "
|
||||||
|
"but is not used because the Post Title is used!</p><br />"
|
||||||
|
msgstr ""
|
||||||
|
"<p style=\"color: orange\">Beitrags-Metadatenfeld ist befüllt (<strong>%s</"
|
||||||
|
"strong>) , aber wird nicht verwendet, da der Beitragstitel verwendet wird!</"
|
||||||
|
"p><br />"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:298
|
||||||
|
msgid "Never cache"
|
||||||
|
msgstr "Nie zwischenspeichern"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:299
|
||||||
|
msgid "5 Minutes"
|
||||||
|
msgstr "5 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:300
|
||||||
|
msgid "10 Minutes"
|
||||||
|
msgstr "10 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:301
|
||||||
|
msgid "15 Minutes"
|
||||||
|
msgstr "15 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:302
|
||||||
|
msgid "20 Minutes"
|
||||||
|
msgstr "20 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:303
|
||||||
|
msgid "25 Minutes"
|
||||||
|
msgstr "25 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:304
|
||||||
|
msgid "30 Minutes"
|
||||||
|
msgstr "30 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:305
|
||||||
|
msgid "35 Minutes"
|
||||||
|
msgstr "35 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:306
|
||||||
|
msgid "40 Minutes"
|
||||||
|
msgstr "40 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:307
|
||||||
|
msgid "45 Minutes"
|
||||||
|
msgstr "45 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:308
|
||||||
|
msgid "50 Minutes"
|
||||||
|
msgstr "50 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:309
|
||||||
|
msgid "55 Minutes"
|
||||||
|
msgstr "55 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:310
|
||||||
|
msgid "60 Minutes"
|
||||||
|
msgstr "60 Minuten"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:335
|
||||||
|
msgid "Open Weather Map API Key"
|
||||||
|
msgstr "Open Weather Map API-Schlüssel"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:342
|
||||||
|
msgid "Type in your API KEY"
|
||||||
|
msgstr "Deinen API-Schlüssel eingeben"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:349
|
||||||
|
msgid "Cache Time (in Minutes)"
|
||||||
|
msgstr "Cache/Zwischenspeicher Zeit (in Minuten)"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:363
|
||||||
|
msgid "Widget Background Image"
|
||||||
|
msgstr "Widget Hintergrundbild"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:370
|
||||||
|
msgid ""
|
||||||
|
"Choose an image from your media library via button \"Select Background Image"
|
||||||
|
"\""
|
||||||
|
msgstr ""
|
||||||
|
"Ein Bild aus der Mediathek über den Button \"Hintergrundbild auswählen\" "
|
||||||
|
"selektieren"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:377
|
||||||
|
msgid "Widget Title Text"
|
||||||
|
msgstr "Widget Titel Text"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:391
|
||||||
|
msgid "Widget Title Post Meta Field"
|
||||||
|
msgstr "Widget Titel Beitrags-Metadatenfeld"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:398
|
||||||
|
msgid "Choose a post meta field"
|
||||||
|
msgstr "Beitrags-Metadatenfeld auswählen"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:433
|
||||||
|
msgid "No Open Weather Map API Key provided in settings!"
|
||||||
|
msgstr ""
|
||||||
|
"Keinen/Falschen Open Weather Map API-Schlüssel in den Einstellungen "
|
||||||
|
"hinterlegt!"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:495
|
||||||
|
msgid ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>ERROR MESSAGE FOR ADMIN => No "
|
||||||
|
"Open Weather Map API Key provided in settings!</strong></p></center>"
|
||||||
|
msgstr ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>FEHLERMELDUNG NUR FÜR DEN ADMIN "
|
||||||
|
"=> Keinen/Falschen Open Weather Map API-Schlüssel in den Einstellungen "
|
||||||
|
"hinterlegt!</strong></p></center>"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:497
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:509
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:554
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:572
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:583
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:628
|
||||||
|
msgid ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>Weather Forecast Info can´t be "
|
||||||
|
"read at the moment!</strong></p></center>"
|
||||||
|
msgstr ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>Wetterinformation kann aktuell "
|
||||||
|
"nicht gelesen werden!</strong></p></center>"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:507
|
||||||
|
msgid ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>ERROR MESSAGE FOR ADMIN => "
|
||||||
|
"Language code can´t be read from wordpress!</strong></p></center>"
|
||||||
|
msgstr ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>FEHLERMELDUNG NUR FÜR DEN ADMIN "
|
||||||
|
"=> Sprachenschlüssel kann nicht von Wordpress gelesen werden!</strong></p></"
|
||||||
|
"center>"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:552
|
||||||
|
msgid ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>ERROR MESSAGE FOR ADMIN => No "
|
||||||
|
"Shortcode Attributes provided!</strong></p></center>"
|
||||||
|
msgstr ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>FEHLERMELDUNG NUR FÜR DEN ADMIN "
|
||||||
|
"=> Keine Shortcode Attribute bereitgestellt!</strong></p></center>"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:570
|
||||||
|
msgid ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>ERROR MESSAGE FOR ADMIN => No "
|
||||||
|
"option for WIDGET TITLE set!</strong></p></center>"
|
||||||
|
msgstr ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>FEHLERMELDUNG NUR FÜR DEN ADMIN "
|
||||||
|
"=> Keinen Option für Widget Titel Text in den Einstellungen gesetzt!</"
|
||||||
|
"strong></p></center>"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:581
|
||||||
|
msgid ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>ERROR MESSAGE FOR ADMIN => POST "
|
||||||
|
"META FIELD for WIDGET TITLE hasn´t been set!</strong></p></center>"
|
||||||
|
msgstr ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>FEHLERMELDUNG NUR FÜR DEN ADMIN "
|
||||||
|
"=> Beitrags-Metadatenfeld für den Widget Titel Text nicht gesetzt!</strong></"
|
||||||
|
"p></center>"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:626
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>RECEIVED ERROR MESSAGE FOR ADMIN "
|
||||||
|
"=> %s</strong></p></center>"
|
||||||
|
msgstr ""
|
||||||
|
"<center><p style=\"color:#ff0000\"><strong>EMPFANGENE FEHLERMELDUNG NUR FÜR "
|
||||||
|
"DEN ADMIN => %s</strong></p></center>"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:692
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:776
|
||||||
|
msgid "Last updated: "
|
||||||
|
msgstr "Zuletzt aktualisiert: "
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:700
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:720
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:731
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:742
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:781
|
||||||
|
msgid "TEMP:"
|
||||||
|
msgstr "TEMP:"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:701
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:721
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:732
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:743
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:782
|
||||||
|
msgid "WIND:"
|
||||||
|
msgstr "WIND:"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:702
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:722
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:733
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:744
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:783
|
||||||
|
msgid "CLOUDS:"
|
||||||
|
msgstr "WOLKEN:"
|
||||||
|
|
||||||
|
#: admin/class-weather-forecast-widget-admin.php:779
|
||||||
|
msgid "CITY: "
|
||||||
|
msgstr "STADT: "
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:20
|
||||||
|
msgid "General Information"
|
||||||
|
msgstr "Allgemeine Informationen"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:21
|
||||||
|
msgid ""
|
||||||
|
"This plugin <strong>Weather Forecast Widget</strong> shows a widget with "
|
||||||
|
"current weather and 3-day forecast weather data."
|
||||||
|
msgstr ""
|
||||||
|
"Dieses Plugin <strong>Weather Forecast Widget</strong> zeigt ein Widget mit "
|
||||||
|
"aktuellen Wetterdaten und Vorhersagedaten für die kommenden 3 Tage."
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:22
|
||||||
|
msgid ""
|
||||||
|
"The weather data will be retrieved from the Open Weather Map API (<a href="
|
||||||
|
"\"https://openweathermap.org/api\" rel=\"noopener\" target=\"_blank"
|
||||||
|
"\">https://openweathermap.org/api</a>) with your own API key."
|
||||||
|
msgstr ""
|
||||||
|
"Die Wetterdaten werden von der Open Weather Map API (<a href=\"https://"
|
||||||
|
"openweathermap.org/api\" rel=\"noopener\" target=\"_blank\">https://"
|
||||||
|
"openweathermap.org/api</a>) mit deinem eigenen API-Schlüssel abgerufen."
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:23
|
||||||
|
msgid ""
|
||||||
|
"You can show the weather for a <strong>CITY</strong> or for specific "
|
||||||
|
"<strong>COORDINATES (Latitude & Longitude)</strong> in the widget."
|
||||||
|
msgstr ""
|
||||||
|
"Du kannst das Wetter in dem Widget für eine <strong>STADT</strong> oder für "
|
||||||
|
"bestimmte <strong>KOORDINATEN (Breitenkoordinate & Längenkoordinate)</"
|
||||||
|
"strong> anzeigen."
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:24
|
||||||
|
msgid ""
|
||||||
|
"The weather widget can be implemented in a page, a post or into the widget "
|
||||||
|
"area with the help of a shortcode."
|
||||||
|
msgstr ""
|
||||||
|
"Das Widget kann mithilfe eines Shortcodes an der gewünschten Stelle (z.B. in "
|
||||||
|
"einer Seite, einem Beitrag oder im Widget Bereich) implementiert werden."
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:26
|
||||||
|
msgid "Shortcode Information"
|
||||||
|
msgstr "Shortcode Informationen"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:27
|
||||||
|
msgid "Shortcode Name:"
|
||||||
|
msgstr "Shortcode Name:"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:29
|
||||||
|
msgid "Shortcode Attributes:"
|
||||||
|
msgstr "Shortcode Attribute:"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:31
|
||||||
|
msgid "City Name"
|
||||||
|
msgstr "Stadtname"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:32
|
||||||
|
msgid "Latitude Coordinate"
|
||||||
|
msgstr "Breitenkoordinate"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:33
|
||||||
|
msgid "Longitude Coordinate"
|
||||||
|
msgstr "Längenkoordinate"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:34
|
||||||
|
msgid "Show city name as widget title"
|
||||||
|
msgstr "Stadtname als Widget Titel anzeigen"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:35
|
||||||
|
msgid "Overwrite widget title with this title"
|
||||||
|
msgstr "Widget Titel mit diesem Titel Text überschreiben"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:36
|
||||||
|
msgid "Maximum width of the widget (Default: 600px)"
|
||||||
|
msgstr "Maximale Widget-Breite (Standardmäßig: 600px)"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:38
|
||||||
|
msgid "Shortcode Examples:"
|
||||||
|
msgstr "Shortcode Beispiele:"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:40
|
||||||
|
msgid "Retrieve weather data for a <strong>city</strong>"
|
||||||
|
msgstr "Wetterdaten für eine <strong>Stadt</strong> abrufen"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:41
|
||||||
|
msgid ""
|
||||||
|
"Retrieve weather data for a <strong>city</strong> and show <strong>city name "
|
||||||
|
"as title text</strong>"
|
||||||
|
msgstr ""
|
||||||
|
"Wetterdaten für eine <strong>Stadt</strong> abrufen und <strong>den "
|
||||||
|
"Stadtnamen als Titel Text</strong> anzeigen"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:42
|
||||||
|
msgid "Retrieve weather data for <strong>specific coordinates</strong>"
|
||||||
|
msgstr "Wetterdaten für <strong>Koordinaten</strong> abrufen"
|
||||||
|
|
||||||
|
#: admin/partials/weather-forecast-widget-admin-menu.php:43
|
||||||
|
msgid ""
|
||||||
|
"Retrieve weather data for <strong>specific coordinates</strong> and show "
|
||||||
|
"<strong>\"Weather for Weather Widget\" as title text</strong>"
|
||||||
|
msgstr ""
|
||||||
|
"Wetterdaten für <strong>Koordinaten</strong> abrufen und <strong>\"Weather "
|
||||||
|
"for Weather Widget\" als Titel Text</strong> anzeigen"
|
||||||
|
|
||||||
|
#~ msgid "Current value"
|
||||||
|
#~ msgstr "Aktuell gespeicherter Wert"
|
||||||
|
|
||||||
|
#~ msgid "Latitude"
|
||||||
|
#~ msgstr "Latitude"
|
||||||
|
|
||||||
|
#~ msgid "Shortcode Name: <strong>wpwf_weather_widget</strong>"
|
||||||
|
#~ msgstr "Shortcode Name: <strong>wpwf_weather_widget</strong>"
|
||||||
|
|
||||||
|
#~ msgid "DATE: "
|
||||||
|
#~ msgstr "DATUM: "
|
||||||
|
|
||||||
|
#~ msgid "RECEIVED ERROR MESSAGE FOR ADMIN =>"
|
||||||
|
#~ msgstr "Fehlermeldung"
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: \n"
|
||||||
|
"POT-Creation-Date: 2021-04-09 10:23+0200\n"
|
||||||
|
"PO-Revision-Date: 2015-14-13 18:20+0100\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: en_US\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 2.4.2\n"
|
||||||
|
"X-Poedit-Basepath: ..\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
#: admin/class-wp-3d-thingviewer-lite-admin.php:71
|
||||||
|
msgid ""
|
||||||
|
"With the 2.0 version the plugin does not need anymore the plugin Redux Framework to "
|
||||||
|
"work. You can safely disable if you don't need."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-wp-3d-thingviewer-lite-admin.php:127
|
||||||
|
msgid "STL Files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-wp-3d-thingviewer-lite-admin.php:128
|
||||||
|
msgid "Manage STL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-wp-3d-thingviewer-lite-admin.php:129
|
||||||
|
#, php-format
|
||||||
|
msgid "STL Files <span class=\"count\">(%s)</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-wp-3d-thingviewer-lite-public.php:84
|
||||||
|
msgid ""
|
||||||
|
"MOUSE LEFT BUTTON = rotate<br/>MOUSE RIGHT BUTTON = pan<br/>MOUSE WHEEL = zoom in / "
|
||||||
|
"zoom out<br/>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-wp-3d-thingviewer-lite-public.php:85
|
||||||
|
msgid ""
|
||||||
|
"File name: {0}<br/>File size: {1}<br/>Triangles: {2}<br/>Surface area: {3} cm2<br/"
|
||||||
|
">Model volume: {4} cm3<br/>Bounding box<br/>X: {5} cm<br/>Y: {6} cm<br/>Z: {7} cm<br/"
|
||||||
|
">"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,673 @@
|
|||||||
|
# Copyright (C) 2021 John James Jacoby
|
||||||
|
# This file is distributed under the GPLv2 or later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: WP User Profiles 2.6.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: "
|
||||||
|
"https://github.com/stuttter/wp-user-profiles/issues/new\n"
|
||||||
|
"POT-Creation-Date: 2021-03-27 01:16:31+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: WP-Translations (http://wp-translations.org/)\n"
|
||||||
|
"Language-Team: WP-Translations <wpt@wp-translations.org>\n"
|
||||||
|
"Language: en_US\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"
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/admin.php:147
|
||||||
|
#: wp-user-profiles/includes/admin.php:148
|
||||||
|
#: wp-user-profiles/includes/admin.php:216
|
||||||
|
#: wp-user-profiles/includes/admin.php:217
|
||||||
|
#: wp-user-profiles/includes/sections.php:23
|
||||||
|
msgid "Profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/admin.php:329
|
||||||
|
msgid "← Back to Users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/admin.php:336
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-applications.php:101
|
||||||
|
msgid "Dismiss this notice."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/admin.php:494
|
||||||
|
msgid "Secondary menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/admin.php:578
|
||||||
|
msgid "General"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/admin.php:698
|
||||||
|
msgid "Anonymous"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/capabilities.php:76
|
||||||
|
msgid "Invalid user ID."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/capabilities.php:98
|
||||||
|
msgid "Sorry, you are not allowed to edit this user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/common.php:446
|
||||||
|
msgid "User updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/help.php:21
|
||||||
|
msgid "Some information may be displayed publicly on the site."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/help.php:22
|
||||||
|
msgid ""
|
||||||
|
"Always use a strong password, and never give your login information to "
|
||||||
|
"anyone."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-applications.php:31
|
||||||
|
msgid "Add Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-applications.php:40
|
||||||
|
#. translators: %s: Application name.
|
||||||
|
msgid "The password for %s is:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-applications.php:53
|
||||||
|
msgid "Password Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-applications.php:56
|
||||||
|
msgid "Name of App or Service"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-applications.php:56
|
||||||
|
msgid "Required to create an Application Password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-applications.php:94
|
||||||
|
msgid "Save this in a safe location. You cannot retrieve it again later."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-email.php:29
|
||||||
|
msgid "Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-email.php:30
|
||||||
|
#: wp-user-profiles/includes/metaboxes/profile-name.php:87
|
||||||
|
msgid "(required)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-email.php:41
|
||||||
|
msgid "There is a pending change of your email to %1$s. <a href=\"%2$s\">Cancel</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-language.php:37
|
||||||
|
msgid "Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:26
|
||||||
|
msgid "New Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:29
|
||||||
|
msgid "Set New Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:34
|
||||||
|
msgid "Hide password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:36
|
||||||
|
msgid "Hide"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:38
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:40
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:47
|
||||||
|
msgid "Repeat New Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:51
|
||||||
|
msgid "Type your new password again."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:53
|
||||||
|
msgid "Type the new password again."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:58
|
||||||
|
msgid "Confirm Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:62
|
||||||
|
msgid "Confirm use of weak password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:70
|
||||||
|
msgid "Password Reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:74
|
||||||
|
msgid "Send Password Reset Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-password.php:78
|
||||||
|
msgid "Sending this email does not force-change their password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:33
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:45
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:57
|
||||||
|
msgid "Sessions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:35
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:47
|
||||||
|
msgid "Log Out Everywhere Else"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:37
|
||||||
|
msgid "You are only logged in at this location."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:49
|
||||||
|
msgid ""
|
||||||
|
"Did you lose your phone or leave your account logged in at a public "
|
||||||
|
"computer? You can log out everywhere else, and stay logged in here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:59
|
||||||
|
msgid "Log Out Everywhere"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:63
|
||||||
|
#. translators: 1: User's display name.
|
||||||
|
msgid "Log %s out of all locations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:72
|
||||||
|
#: wp-user-profiles/includes/metaboxes/all-status.php:39
|
||||||
|
msgid "Inactive"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/account-sessions.php:77
|
||||||
|
#. translators: 1: User's display name.
|
||||||
|
msgid "%s has not logged in yet."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/all-status.php:38
|
||||||
|
msgid "Active"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/all-status.php:40
|
||||||
|
msgid "Spammer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/all-status.php:51
|
||||||
|
msgid "Registered on: %1$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/all-status.php:60
|
||||||
|
msgid "View User"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/all-status.php:61
|
||||||
|
msgid "Update"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/options-color-scheme.php:26
|
||||||
|
msgid "Admin Color Scheme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/options-personal.php:55
|
||||||
|
#: wp-user-profiles/includes/sections/options.php:107
|
||||||
|
msgid "Visual Editor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/options-personal.php:58
|
||||||
|
msgid "Disable the visual editor when writing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/options-personal.php:69
|
||||||
|
msgid "Syntax Highlighting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/options-personal.php:72
|
||||||
|
msgid "Disable syntax highlighting when editing code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/options-personal.php:83
|
||||||
|
msgid "Keyboard Shortcuts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/options-personal.php:86
|
||||||
|
msgid "Enable keyboard shortcuts for comment moderation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/options-personal.php:97
|
||||||
|
#: wp-user-profiles/includes/metaboxes/options-personal.php:100
|
||||||
|
msgid "Toolbar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/options-personal.php:103
|
||||||
|
msgid "Show Toolbar when viewing site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/other-all.php:47
|
||||||
|
msgid "A plugin attempted to show something here, but then failed to do so."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:39
|
||||||
|
msgid "Super Admin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:47
|
||||||
|
msgid "Grant this user super admin privileges for the Network."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:53
|
||||||
|
msgid ""
|
||||||
|
"Super admin privileges cannot be removed because this user has the network "
|
||||||
|
"admin email."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:66
|
||||||
|
msgid "Capabilities"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:78
|
||||||
|
msgid "Allowed: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:79
|
||||||
|
msgid "Denied: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-capabilities.php:86
|
||||||
|
msgid "No additional capabilities"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-roles.php:50
|
||||||
|
msgid "No Sites"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-roles.php:56
|
||||||
|
msgid "You have no role on any sites."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-roles.php:57
|
||||||
|
msgid "This user has no role on any sites"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/permissions-roles.php:100
|
||||||
|
msgid "— No role for this site —"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/profile-about.php:30
|
||||||
|
msgid "Website"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/profile-about.php:39
|
||||||
|
msgid "Biographical Info"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/profile-about.php:45
|
||||||
|
msgid ""
|
||||||
|
"Share a little biographical information to fill out your profile. This may "
|
||||||
|
"be shown publicly."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/profile-name.php:58
|
||||||
|
msgid "Username"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/profile-name.php:61
|
||||||
|
msgid "Usernames cannot be changed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/profile-name.php:68
|
||||||
|
msgid "First Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/profile-name.php:77
|
||||||
|
msgid "Last Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/profile-name.php:86
|
||||||
|
msgid "Nickname"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/profile-name.php:97
|
||||||
|
msgid "Display name publicly as"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-list.php:153
|
||||||
|
msgid "Roles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-list.php:175
|
||||||
|
msgid "Assigned"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-list.php:176
|
||||||
|
msgid "All Sites"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-list.php:193
|
||||||
|
msgid "Remove"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-list.php:205
|
||||||
|
msgid "Assign as (Choose a Role)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-list.php:247
|
||||||
|
msgid "User is not a member of this site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-list.php:322
|
||||||
|
msgid "Default site role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-list.php:439
|
||||||
|
msgid "Invalid nonce or user ID."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-primary.php:42
|
||||||
|
msgid "Primary Site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-primary.php:61
|
||||||
|
msgid "You are not a member of any sites."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-primary.php:62
|
||||||
|
msgid "This user is not a member of any sites."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes.php:76
|
||||||
|
msgid "No options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes.php:79
|
||||||
|
msgid "The options in this area are not available to you at this time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:114
|
||||||
|
msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:119
|
||||||
|
msgid ""
|
||||||
|
"<strong>ERROR</strong>: Please enter the same password in both password "
|
||||||
|
"fields."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:150
|
||||||
|
msgid "<strong>ERROR</strong>: Please enter an email address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:154
|
||||||
|
msgid "<strong>ERROR</strong>: The email address is not correct."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:158
|
||||||
|
msgid "<strong>ERROR</strong>: This email is already in use."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:181
|
||||||
|
msgid "This is where important account information can be found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:182
|
||||||
|
msgid "Your email address is used for receiving notifications from this site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:183
|
||||||
|
msgid "Passwords should be lengthy and complex to help keep your account secure"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:184
|
||||||
|
msgid "The language you pick will be used wherever it is supported."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:185
|
||||||
|
msgid "Sessions are logged from each device you login from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:186
|
||||||
|
msgid "Application passwords allow authentication via non-interactive systems."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/options.php:105
|
||||||
|
msgid "This is where most options & site preferences can be found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/options.php:106
|
||||||
|
msgid "Color Schemes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/options.php:108
|
||||||
|
msgid "Comment Moderation Shortcuts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/other.php:67
|
||||||
|
msgid "This is where any additional information can be found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/other.php:68
|
||||||
|
msgid "Plugins using legacy actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/other.php:69
|
||||||
|
msgid "Fields without explicit sections"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/permissions.php:106
|
||||||
|
msgid "This is where role & capability settings can be found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/permissions.php:107
|
||||||
|
msgid "Your role determines what you are able to do"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/permissions.php:108
|
||||||
|
msgid "In some cases, you may have more than one role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/permissions.php:109
|
||||||
|
msgid "Some capabilities may be uniquely granted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:85
|
||||||
|
msgid ""
|
||||||
|
"<strong>ERROR</strong>: This username is invalid because it uses illegal "
|
||||||
|
"characters. Please enter a valid username."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:90
|
||||||
|
msgid ""
|
||||||
|
"<strong>ERROR</strong>: This username is already registered. Please choose "
|
||||||
|
"another one."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:95
|
||||||
|
msgid "<strong>ERROR</strong>: Please enter a username."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:122
|
||||||
|
msgid "<strong>ERROR</strong>: Please enter a nickname."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:178
|
||||||
|
msgid "This is where most biographical information can be found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:179
|
||||||
|
msgid "First and Last Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:180
|
||||||
|
msgid "Nickname and Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:181
|
||||||
|
msgid "Website and Biography"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/sites.php:111
|
||||||
|
msgid "This is where sites & the primary set setting can be found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/sites.php:112
|
||||||
|
msgid "Your sites are determined by having a role on each one"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/sites.php:113
|
||||||
|
msgid "You may be able to navigate between these sites"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/sites.php:114
|
||||||
|
msgid "You may be able to take action on these sites"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections.php:41
|
||||||
|
msgid "Account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections.php:59
|
||||||
|
msgid "Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections.php:84
|
||||||
|
msgid "Other"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections.php:102
|
||||||
|
msgid "Permissions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections.php:121
|
||||||
|
msgid "Sites"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sites-list-table.php:29
|
||||||
|
#. translators: %s: Site URL.
|
||||||
|
msgid "Select %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid "A sophisticated way to edit users in WordPress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/admin.php:639
|
||||||
|
msgctxt "user"
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/admin.php:643
|
||||||
|
msgctxt "user"
|
||||||
|
msgid "Add Existing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes/sites-list.php:211
|
||||||
|
#. translators: prefix for roles dropdown
|
||||||
|
msgctxt "translators: prefix for roles dropdown"
|
||||||
|
msgid "— %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/metaboxes.php:52
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:35
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:46
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:57
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Language"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:68
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Sessions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/account.php:80
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Application Passwords"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/options.php:36
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Color Scheme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/options.php:48
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Personal Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/other.php:35
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Additional"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/permissions.php:35
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Roles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/permissions.php:46
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Additional Capabilities"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:35
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:46
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "About"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/profile.php:58
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Contact"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/sites.php:35
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Primary Site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-user-profiles/includes/sections/sites.php:46
|
||||||
|
msgctxt "users user-admin edit screen"
|
||||||
|
msgid "Sites"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,267 @@
|
|||||||
|
# Copyright (C) 2021 WPClever
|
||||||
|
# This file is distributed under the same license as the WPC AJAX Search plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: WPC AJAX Search 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-ajax-search\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-23T00:22:23+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.2.0\n"
|
||||||
|
"X-Domain: wpc-ajax-search\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#: wpc-ajax-search.php:136
|
||||||
|
#: wpc-ajax-search.php:147
|
||||||
|
msgid "WPC AJAX Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wpclever.net/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "An interaction search popup for WooCommerce."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "WPClever"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://wpclever.net"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:110
|
||||||
|
#: wpc-ajax-search.php:164
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:126
|
||||||
|
#: wpc-ajax-search.php:167
|
||||||
|
msgid "Support"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:136
|
||||||
|
msgid "AJAX Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:150
|
||||||
|
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:153
|
||||||
|
msgid "Reviews"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:155
|
||||||
|
msgid "Changelog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:157
|
||||||
|
msgid "Discussion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:177
|
||||||
|
msgid "General"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:178
|
||||||
|
msgid "General settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:181
|
||||||
|
msgid "Auto show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:186
|
||||||
|
#: wpc-ajax-search.php:260
|
||||||
|
#: wpc-ajax-search.php:388
|
||||||
|
#: wpc-ajax-search.php:411
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:190
|
||||||
|
#: wpc-ajax-search.php:264
|
||||||
|
#: wpc-ajax-search.php:315
|
||||||
|
#: wpc-ajax-search.php:392
|
||||||
|
#: wpc-ajax-search.php:415
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:194
|
||||||
|
msgid "Show the search popup when clicking on all search inputs."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:199
|
||||||
|
msgid "Manual show up button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:203
|
||||||
|
msgid "button class or id"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:205
|
||||||
|
msgid "The class or id of the button, when clicking to this button the search popup will show up. Example %s or %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:210
|
||||||
|
msgid "Overlay layer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:215
|
||||||
|
#: wpc-ajax-search.php:287
|
||||||
|
msgid "Show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:219
|
||||||
|
#: wpc-ajax-search.php:291
|
||||||
|
msgid "Hide"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:223
|
||||||
|
msgid "If you hide the overlay layer, the buyer still can work on your site when the search popup is opening."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:228
|
||||||
|
msgid "Position"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:233
|
||||||
|
msgid "Right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:237
|
||||||
|
msgid "Left"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:241
|
||||||
|
msgid "Top"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:245
|
||||||
|
msgid "Bottom"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:249
|
||||||
|
msgid "Center"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:255
|
||||||
|
msgid "Effect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:268
|
||||||
|
msgid "Enable/disable slide effect."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:273
|
||||||
|
msgid "Heading"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:277
|
||||||
|
#: wpc-ajax-search.php:379
|
||||||
|
#: wpc-ajax-search.php:583
|
||||||
|
#: wpc-ajax-search.php:645
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:278
|
||||||
|
msgid "Leave blank to use the default text and can be translated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:282
|
||||||
|
msgid "Close button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:294
|
||||||
|
msgid "Show/hide the close button."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:298
|
||||||
|
msgid "Link to individual product"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:303
|
||||||
|
msgid "Yes, open in the same tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:307
|
||||||
|
msgid "Yes, open in the new tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:311
|
||||||
|
msgid "Yes, open quick view popup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:323
|
||||||
|
msgid "Special keywords"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:328
|
||||||
|
msgid "Keyword for on-sale products."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:333
|
||||||
|
msgid "Keyword for recent products."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:338
|
||||||
|
msgid "Keyword for featured products."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:343
|
||||||
|
msgid "Keyword for popular products."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:348
|
||||||
|
msgid "Popular keywords"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:353
|
||||||
|
msgid "Add popular keywords, split by a comma. You also can use above Special keywords."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:358
|
||||||
|
msgid "Menu(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:373
|
||||||
|
msgid "Choose the menu(s) you want to add the \"search menu\" at the end."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:383
|
||||||
|
msgid "Search by category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:398
|
||||||
|
msgid "Search limit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:406
|
||||||
|
msgid "Search by SKU"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:423
|
||||||
|
msgid "Update Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:532
|
||||||
|
msgid "No results found for \"%s\" in \"%s\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:534
|
||||||
|
msgid "No results found for \"%s\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:607
|
||||||
|
msgid "All categories"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-ajax-search.php:618
|
||||||
|
msgid "Popular keywords:"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,163 @@
|
|||||||
|
# Copyright (C) 2021 WPClever
|
||||||
|
# This file is distributed under the same license as the WPC Linked Variation for WooCommerce plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: WPC Linked Variation for WooCommerce 1.0.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-linked-variation\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-16T02:51:27+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.2.0\n"
|
||||||
|
"X-Domain: wpc-linked-variation\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "WPC Linked Variation for WooCommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wpclever.net/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "WPC Linked Variation built to link separate products together by attributes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "WPClever"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://wpclever.net"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:123
|
||||||
|
#: wpc-linked-variation.php:134
|
||||||
|
msgid "WPC Linked Variation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:123
|
||||||
|
msgid "Linked Variation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:137
|
||||||
|
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:140
|
||||||
|
msgid "Reviews"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:142
|
||||||
|
msgid "Changelog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:144
|
||||||
|
msgid "Discussion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:151
|
||||||
|
#: wpc-linked-variation.php:540
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:155
|
||||||
|
#: wpc-linked-variation.php:541
|
||||||
|
msgid "Linked Variations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:159
|
||||||
|
msgid "Essential Kit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:169
|
||||||
|
msgid "Position"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:174
|
||||||
|
msgid "Above the add to cart button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:178
|
||||||
|
msgid "Under the add to cart button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:182
|
||||||
|
msgid "Under the title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:186
|
||||||
|
msgid "Under the price"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:190
|
||||||
|
msgid "Under the excerpt"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:194
|
||||||
|
msgid "No (hide it)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:197
|
||||||
|
msgid "Choose the position to show the linked variations."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:203
|
||||||
|
msgid "Shortcode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:205
|
||||||
|
msgid "You can use the shortcode %s to show the list where you want."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:209
|
||||||
|
msgid "Link to individual product"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:214
|
||||||
|
msgid "Open in the same tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:218
|
||||||
|
msgid "Open in the new tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:222
|
||||||
|
msgid "Open quick view popup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:232
|
||||||
|
#: wpc-linked-variation.php:267
|
||||||
|
msgid "Update Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:259
|
||||||
|
msgid "+ Add Linked Variation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:318
|
||||||
|
msgid "Products"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:324
|
||||||
|
msgid "Search for a product…"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:342
|
||||||
|
msgid "Linked by (attributes)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:357
|
||||||
|
msgid "Move"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:357
|
||||||
|
msgid "Show images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-linked-variation.php:557
|
||||||
|
msgid "Support"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,253 @@
|
|||||||
|
# Copyright (C) 2021 WPClever
|
||||||
|
# This file is distributed under the same license as the WPC Share Cart plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: WPC Share Cart 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-share-cart\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-27T15:43:46+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.2.0\n"
|
||||||
|
"X-Domain: wpc-share-cart\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "WPC Share Cart"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wpclever.net/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "WPC Share Cart is a simple but powerful tool that can help your customer share their cart."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "WPClever"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://wpclever.net"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:93
|
||||||
|
msgid "Share Cart"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:200
|
||||||
|
#: wpc-share-cart.php:244
|
||||||
|
msgid "Product"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:201
|
||||||
|
#: wpc-share-cart.php:265
|
||||||
|
msgid "Price"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:202
|
||||||
|
#: wpc-share-cart.php:270
|
||||||
|
msgid "Quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:203
|
||||||
|
#: wpc-share-cart.php:275
|
||||||
|
msgid "Subtotal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:259
|
||||||
|
msgid "Available on backorder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:297
|
||||||
|
msgid "Add selected products to cart"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:302
|
||||||
|
#: wpc-share-cart.php:461
|
||||||
|
msgid "Restore cart"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:316
|
||||||
|
#: wpc-share-cart.php:526
|
||||||
|
msgid "Facebook"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:317
|
||||||
|
#: wpc-share-cart.php:529
|
||||||
|
msgid "Twitter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:318
|
||||||
|
#: wpc-share-cart.php:532
|
||||||
|
msgid "Pinterest"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:319
|
||||||
|
#: wpc-share-cart.php:535
|
||||||
|
msgid "Mail"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:329
|
||||||
|
msgid "Share on:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:340
|
||||||
|
msgid "Share link:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:342
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:366
|
||||||
|
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:369
|
||||||
|
msgid "Reviews"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:371
|
||||||
|
msgid "Changelog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:373
|
||||||
|
msgid "Discussion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:380
|
||||||
|
#: wpc-share-cart.php:628
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:383
|
||||||
|
#: wpc-share-cart.php:644
|
||||||
|
msgid "Support"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:387
|
||||||
|
msgid "Essential Kit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:398
|
||||||
|
msgid "General"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:402
|
||||||
|
msgid "Share page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:407
|
||||||
|
msgid "Choose a page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:411
|
||||||
|
msgid "Add shortcode %s to display the cart contents on a page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:413
|
||||||
|
msgid "After choosing a page, please go to Setting >> Permalinks and press Save Changes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:418
|
||||||
|
msgid "Link to individual product"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:423
|
||||||
|
msgid "Yes, open in the same tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:427
|
||||||
|
msgid "Yes, open in the new tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:431
|
||||||
|
msgid "Yes, open quick view popup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:435
|
||||||
|
#: wpc-share-cart.php:452
|
||||||
|
#: wpc-share-cart.php:470
|
||||||
|
#: wpc-share-cart.php:488
|
||||||
|
#: wpc-share-cart.php:506
|
||||||
|
#: wpc-share-cart.php:550
|
||||||
|
#: wpc-share-cart.php:568
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:443
|
||||||
|
msgid "Add selected products"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:448
|
||||||
|
#: wpc-share-cart.php:466
|
||||||
|
#: wpc-share-cart.php:484
|
||||||
|
#: wpc-share-cart.php:502
|
||||||
|
#: wpc-share-cart.php:546
|
||||||
|
#: wpc-share-cart.php:564
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:456
|
||||||
|
msgid "Enable \"Add selected products\" buttons?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:474
|
||||||
|
msgid "Enable \"Restore cart\" buttons?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:479
|
||||||
|
msgid "Redirect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:492
|
||||||
|
msgid "Redirect to the cart page after adding products?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:497
|
||||||
|
msgid "Share buttons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:510
|
||||||
|
msgid "Enable share buttons?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:515
|
||||||
|
msgid "Share links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:541
|
||||||
|
msgid "Use icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:554
|
||||||
|
msgid "Use icon for share link?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:559
|
||||||
|
msgid "Copy link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:572
|
||||||
|
msgid "Enable copy link to share?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:579
|
||||||
|
msgid "Update Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:609
|
||||||
|
msgid "Share link was generated! Now you can copy below link to share."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:610
|
||||||
|
msgid "Share link %s was copied to clipboard!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-share-cart.php:654
|
||||||
|
msgid "Share cart"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,175 @@
|
|||||||
|
# Copyright (C) 2021 WPClever
|
||||||
|
# This file is distributed under the same license as the WPC Variation Swatches for WooCommerce plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: WPC Variation Swatches for WooCommerce 1.1.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-variation-swatches\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-30T04:00:35+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.2.0\n"
|
||||||
|
"X-Domain: wpc-variation-swatches\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "WPC Variation Swatches for WooCommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wpclever.net/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "WooCommerce Variation Swatches by WPClever"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "WPClever"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://wpclever.net"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:93
|
||||||
|
msgid "Select"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:94
|
||||||
|
#: wpc-variation-swatches.php:127
|
||||||
|
msgid "Button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:95
|
||||||
|
#: wpc-variation-swatches.php:133
|
||||||
|
msgid "Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:96
|
||||||
|
msgid "Image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:97
|
||||||
|
msgid "Radio"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:128
|
||||||
|
#: wpc-variation-swatches.php:134
|
||||||
|
#: wpc-variation-swatches.php:168
|
||||||
|
msgid "Tooltip"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:154
|
||||||
|
msgid "Upload/Add image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:157
|
||||||
|
msgid "Remove image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:167
|
||||||
|
msgid "Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:360
|
||||||
|
#: wpc-variation-swatches.php:370
|
||||||
|
msgid "WPC Variation Swatches"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:360
|
||||||
|
msgid "Variation Swatches"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:373
|
||||||
|
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:376
|
||||||
|
msgid "Reviews"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:378
|
||||||
|
msgid "Changelog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:380
|
||||||
|
msgid "Discussion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:387
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:391
|
||||||
|
msgid "Essential Kit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:407
|
||||||
|
msgid "General"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:411
|
||||||
|
msgid "Button swatch by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:414
|
||||||
|
#: wpc-variation-swatches.php:426
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:415
|
||||||
|
#: wpc-variation-swatches.php:427
|
||||||
|
#: wpc-variation-swatches.php:442
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:418
|
||||||
|
msgid "Turn the default type to button type."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:423
|
||||||
|
msgid "Enable second click to undo?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:430
|
||||||
|
msgid "Enable/disable click again to undo the selection on current attribute."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:435
|
||||||
|
msgid "Tooltip position"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:438
|
||||||
|
msgid "Top"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:439
|
||||||
|
msgid "Right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:440
|
||||||
|
msgid "Bottom"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:441
|
||||||
|
msgid "Left"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:447
|
||||||
|
msgid "Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:450
|
||||||
|
msgid "Square"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:451
|
||||||
|
msgid "Rounded"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpc-variation-swatches.php:458
|
||||||
|
msgid "Update Options"
|
||||||
|
msgstr ""
|
||||||
48
spec/fixtures/dynamic_finders/plugin_version/wppedia/composer_file/package.json
vendored
Normal file
48
spec/fixtures/dynamic_finders/plugin_version/wppedia/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
{
|
||||||
|
"name": "wppedia",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"build": "webpack"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/bfiessinger/wppedia.git"
|
||||||
|
},
|
||||||
|
"author": "Bastian Fießinger",
|
||||||
|
"license": "GPL-3.0-or-later",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/bfiessinger/wppedia/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/bfiessinger/wppedia#readme",
|
||||||
|
"dependencies": {
|
||||||
|
"fuse.js": "^6.4.1",
|
||||||
|
"micro-dash": "^8.1.0",
|
||||||
|
"tippy.js": "^6.2.6"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@babel/core": "^7.11.6",
|
||||||
|
"@babel/preset-env": "^7.11.5",
|
||||||
|
"autoprefixer": "^9.8.6",
|
||||||
|
"babel-loader": "^8.1.0",
|
||||||
|
"css-loader": "^4.3.0",
|
||||||
|
"csso-webpack-plugin": "^2.0.0-beta.1",
|
||||||
|
"file-loader": "^6.1.0",
|
||||||
|
"glob-all": "^3.2.1",
|
||||||
|
"mini-css-extract-plugin": "^0.9.0",
|
||||||
|
"node-sass": "^4.14.1",
|
||||||
|
"optimize-css-assets-webpack-plugin": "^5.0.4",
|
||||||
|
"postcss-import": "^12.0.1",
|
||||||
|
"postcss-loader": "^3.0.0",
|
||||||
|
"postcss-preset-env": "^6.7.0",
|
||||||
|
"resolve-url-loader": "^3.1.1",
|
||||||
|
"sass-loader": "^9.0.3",
|
||||||
|
"svgo": "^1.3.2",
|
||||||
|
"svgo-loader": "^2.2.1",
|
||||||
|
"terser-webpack-plugin": "^4.2.2",
|
||||||
|
"webpack": "^4.44.2",
|
||||||
|
"webpack-cli": "^3.3.12",
|
||||||
|
"webpack-dev-server": "^3.11.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
# Blank WordPress Pot
|
||||||
|
# Copyright 2014 ...
|
||||||
|
# This file is distributed under the GNU General Public License v3 or later.
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: "
|
||||||
|
"Blank WordPress Pot "
|
||||||
|
"v1.0.0\n"
|
||||||
|
"POT-Creation-Date: "
|
||||||
|
"2021-03-29 11:02+0700\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Your "
|
||||||
|
"Name <you@example.com>\n"
|
||||||
|
"Language-Team: Your Team "
|
||||||
|
"<translations@example."
|
||||||
|
"com>\n"
|
||||||
|
"Report-Msgid-Bugs-To: "
|
||||||
|
"Translator Name "
|
||||||
|
"<translations@example."
|
||||||
|
"com>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/"
|
||||||
|
"plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-"
|
||||||
|
"Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: "
|
||||||
|
"nplurals=2; plural=n != "
|
||||||
|
"1;\n"
|
||||||
|
"X-Textdomain-Support: "
|
||||||
|
"yesX-Generator: Poedit "
|
||||||
|
"1.6.4\n"
|
||||||
|
"X-Poedit-SourceCharset: "
|
||||||
|
"UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: "
|
||||||
|
"__;_e;esc_html_e;"
|
||||||
|
"esc_html_x:1,2c;"
|
||||||
|
"esc_html__;esc_attr_e;"
|
||||||
|
"esc_attr_x:1,2c;"
|
||||||
|
"esc_attr__;_ex:1,2c;"
|
||||||
|
"_nx:4c,1,2;"
|
||||||
|
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||||
|
"_n:1,2;_n_noop:1,2;"
|
||||||
|
"__ngettext:1,2;"
|
||||||
|
"__ngettext_noop:1,2;_c,"
|
||||||
|
"_nc:4c,1,2\n"
|
||||||
|
"X-Poedit-Basepath: ..\n"
|
||||||
|
"Language: en_US\n"
|
||||||
|
"X-Generator: Poedit "
|
||||||
|
"2.4.2\n"
|
||||||
|
"X-Poedit-"
|
||||||
|
"SearchPath-0: .\n"
|
||||||
|
|
||||||
|
#: includes/class-admin-settings.php:39
|
||||||
|
msgid "Quicktags Button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-admin-settings.php:43
|
||||||
|
msgid "Button Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-admin-settings.php:48
|
||||||
|
msgid "Start Tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-admin-settings.php:55
|
||||||
|
msgid "End Tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-admin-settings.php:62
|
||||||
|
msgid "Post Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-admin-settings.php:67
|
||||||
|
msgid "Visual"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-admin.php:25
|
||||||
|
#: includes/class-admin.php:26
|
||||||
|
msgid "WP AddQuicktags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/html-admin-repeater-field.php:51
|
||||||
|
#: templates/html-admin-repeater-field.php:62
|
||||||
|
#: templates/html-admin-repeater-field.php:88
|
||||||
|
msgid "Add Row"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/html-admin-repeater-field.php:52
|
||||||
|
#: templates/html-admin-repeater-field.php:89
|
||||||
|
msgid "Remove Row"
|
||||||
|
msgstr ""
|
||||||
@@ -9,7 +9,6 @@ Gem::Specification.new do |s|
|
|||||||
s.platform = Gem::Platform::RUBY
|
s.platform = Gem::Platform::RUBY
|
||||||
s.required_ruby_version = '>= 2.5'
|
s.required_ruby_version = '>= 2.5'
|
||||||
s.authors = ['WPScanTeam']
|
s.authors = ['WPScanTeam']
|
||||||
s.date = Time.now.utc.strftime('%Y-%m-%d')
|
|
||||||
s.email = ['contact@wpscan.com']
|
s.email = ['contact@wpscan.com']
|
||||||
s.summary = 'WPScan - WordPress Vulnerability Scanner'
|
s.summary = 'WPScan - WordPress Vulnerability Scanner'
|
||||||
s.description = 'WPScan is a black box WordPress vulnerability scanner.'
|
s.description = 'WPScan is a black box WordPress vulnerability scanner.'
|
||||||
@@ -21,15 +20,15 @@ Gem::Specification.new do |s|
|
|||||||
s.executables = ['wpscan']
|
s.executables = ['wpscan']
|
||||||
s.require_paths = ['lib']
|
s.require_paths = ['lib']
|
||||||
|
|
||||||
s.add_dependency 'cms_scanner', '~> 0.13.2'
|
s.add_dependency 'cms_scanner', '~> 0.13.4'
|
||||||
|
|
||||||
s.add_development_dependency 'bundler', '>= 1.6'
|
s.add_development_dependency 'bundler', '>= 1.6'
|
||||||
s.add_development_dependency 'memory_profiler', '~> 1.0.0'
|
s.add_development_dependency 'memory_profiler', '~> 1.0.0'
|
||||||
s.add_development_dependency 'rake', '~> 13.0'
|
s.add_development_dependency 'rake', '~> 13.0'
|
||||||
s.add_development_dependency 'rspec', '~> 3.10.0'
|
s.add_development_dependency 'rspec', '~> 3.10.0'
|
||||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||||
s.add_development_dependency 'rubocop', '~> 1.11.0'
|
s.add_development_dependency 'rubocop', '~> 1.13.0'
|
||||||
s.add_development_dependency 'rubocop-performance', '~> 1.10.0'
|
s.add_development_dependency 'rubocop-performance', '~> 1.11.0'
|
||||||
s.add_development_dependency 'simplecov', '~> 0.21.0'
|
s.add_development_dependency 'simplecov', '~> 0.21.0'
|
||||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||||
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
||||||
|
|||||||
Reference in New Issue
Block a user