Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
105d06c8f8 | ||
|
|
82941906ca | ||
|
|
470fbb1ff3 | ||
|
|
8c6234879e | ||
|
|
689252c715 | ||
|
|
19cf00227b | ||
|
|
c9795dc560 | ||
|
|
188c8f31b2 | ||
|
|
76b2c067f6 | ||
|
|
01316ceac1 | ||
|
|
52f14c5f06 | ||
|
|
6782730d80 | ||
|
|
4235871a00 | ||
|
|
cb27a22fc4 | ||
|
|
e639d4eee3 | ||
|
|
d95b70f1c2 | ||
|
|
fb97553f7c | ||
|
|
b3b3bec6b0 |
@@ -8,13 +8,13 @@ module WPScan
|
||||
def cli_options
|
||||
[OptURL.new(['--url URL', 'The URL of the blog to scan'],
|
||||
required_unless: %i[update help hh version], default_protocol: 'http')] +
|
||||
super.drop(1) + # delete the --url from CMSScanner
|
||||
super.drop(2) + # delete the --url and --force from CMSScanner
|
||||
[
|
||||
OptChoice.new(['--server SERVER', 'Force the supplied server module to be loaded'],
|
||||
choices: %w[apache iis nginx],
|
||||
normalize: %i[downcase to_sym],
|
||||
advanced: true),
|
||||
OptBoolean.new(['--force', 'Do not check if the target is running WordPress']),
|
||||
OptBoolean.new(['--force', 'Do not check if the target is running WordPress or returns a 403']),
|
||||
OptBoolean.new(['--[no-]update', 'Whether or not to update the Database'])
|
||||
]
|
||||
end
|
||||
|
||||
@@ -6,6 +6,7 @@ require_relative 'interesting_findings/multisite'
|
||||
require_relative 'interesting_findings/debug_log'
|
||||
require_relative 'interesting_findings/backup_db'
|
||||
require_relative 'interesting_findings/mu_plugins'
|
||||
require_relative 'interesting_findings/php_disabled'
|
||||
require_relative 'interesting_findings/registration'
|
||||
require_relative 'interesting_findings/tmm_db_migrate'
|
||||
require_relative 'interesting_findings/upload_sql_dump'
|
||||
@@ -26,7 +27,7 @@ module WPScan
|
||||
%w[
|
||||
Readme DebugLog FullPathDisclosure BackupDB DuplicatorInstallerLog
|
||||
Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate
|
||||
UploadSQLDump EmergencyPwdResetScript WPCron
|
||||
UploadSQLDump EmergencyPwdResetScript WPCron PHPDisabled
|
||||
].each do |f|
|
||||
finders << InterestingFindings.const_get(f).new(target)
|
||||
end
|
||||
|
||||
21
app/finders/interesting_findings/php_disabled.rb
Normal file
21
app/finders/interesting_findings/php_disabled.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
module InterestingFindings
|
||||
# See https://github.com/wpscanteam/wpscan/issues/1593
|
||||
class PHPDisabled < CMSScanner::Finders::Finder
|
||||
PATTERN = /\$wp_version =/.freeze
|
||||
|
||||
# @return [ InterestingFinding ]
|
||||
def aggressive(_opts = {})
|
||||
path = 'wp-includes/version.php'
|
||||
|
||||
return unless PATTERN.match?(target.head_and_get(path).body)
|
||||
|
||||
Model::PHPDisabled.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -132,5 +132,19 @@ module WPScan
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
class PHPDisabled < InterestingFinding
|
||||
# @return [ String ]
|
||||
def to_s
|
||||
@to_s ||= 'PHP seems to be disabled'
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= {
|
||||
url: ['https://github.com/wpscanteam/wpscan/issues/1593']
|
||||
}
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.11'
|
||||
VERSION = '3.8.13'
|
||||
end
|
||||
|
||||
50
spec/app/finders/interesting_findings/php_disabled_spec.rb
Normal file
50
spec/app/finders/interesting_findings/php_disabled_spec.rb
Normal file
@@ -0,0 +1,50 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::PHPDisabled do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'php_disabled') }
|
||||
let(:file_path) { 'wp-includes/version.php' }
|
||||
let(:file_url) { target.url(file_path) }
|
||||
|
||||
describe '#aggressive' do
|
||||
before do
|
||||
expect(target).to receive(:sub_dir).at_least(1).and_return(false)
|
||||
expect(target).to receive(:head_or_get_params).and_return(method: :head)
|
||||
end
|
||||
|
||||
context 'when not a 200' do
|
||||
it 'return nil' do
|
||||
stub_request(:head, file_url).to_return(status: 404)
|
||||
|
||||
expect(finder.aggressive).to eql nil
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a 200' do
|
||||
before do
|
||||
stub_request(:head, file_url)
|
||||
stub_request(:get, file_url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when the body does not match' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should be_nil }
|
||||
end
|
||||
|
||||
context 'when the body matches' do
|
||||
let(:body) { File.read(fixtures.join('version.php')) }
|
||||
|
||||
it 'returns the PHPDisabled' do
|
||||
expect(finder.aggressive).to eql WPScan::Model::PHPDisabled.new(
|
||||
file_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -10,7 +10,7 @@ describe WPScan::Finders::InterestingFindings::Base do
|
||||
%w[
|
||||
Readme DebugLog FullPathDisclosure
|
||||
Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate
|
||||
UploadSQLDump
|
||||
UploadSQLDump PHPDisabled
|
||||
]
|
||||
end
|
||||
|
||||
|
||||
1266
spec/fixtures/db/dynamic_finders.yml
vendored
1266
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
530
spec/fixtures/dynamic_finders/expected.yml
vendored
530
spec/fixtures/dynamic_finders/expected.yml
vendored
@@ -583,6 +583,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/accept-qpay-payments-using-contact-form-7/languages/accept-qpay-payments-using-contact-form-7.pot,
|
||||
Match: ''cept Qpay payments Using Contact form 7 1.0'''
|
||||
accept-sagepay-payments-using-contact-form-7:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/accept-sagepay-payments-using-contact-form-7/languages/accept-sagepay-payments-using-contact-form-7.pot,
|
||||
Match: ''t SagePay Payments Using Contact Form 7 1.0'''
|
||||
accept-stripe-payments-using-contact-form-7:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
@@ -1818,7 +1825,9 @@ plugins:
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/advanced-sermons/styling/asp-frontend.css?ver=1.8
|
||||
confidence: 10
|
||||
- http://wp.lab/wp-content/plugins/advanced-sermons/styling/css/asp-frontend.css?ver=1.8
|
||||
- http://wp.lab/wp-content/plugins/advanced-sermons/styling/media-player/asp-media-player.css?ver=1.8
|
||||
confidence: 30
|
||||
advanced-spoiler:
|
||||
QueryParameter:
|
||||
number: 2.02
|
||||
@@ -1917,6 +1926,14 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/advert/js/advertfe.min.js?ver=1.0.5
|
||||
advertisement-space:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/advertisement-space/public/css/advertisement-space-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/advertisement-space/public/js/advertisement-space-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
advice-box:
|
||||
QueryParameter:
|
||||
number: 1.0.2
|
||||
@@ -1981,6 +1998,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/affiliate-videohive-widget/css/style.css?ver=1.0.1
|
||||
confidence: 10
|
||||
affiliatebooster-blocks:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/affiliatebooster-blocks/package.json, Match:
|
||||
''1.0.0'''
|
||||
affiliates:
|
||||
ChangeLog:
|
||||
number: 4.0.4
|
||||
@@ -2048,6 +2072,13 @@ plugins:
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/affilicious/package.json, Match: ''0.9.14'''
|
||||
affliates-manager-prime-for-wc-lite:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/affliates-manager-prime-for-wc-lite/languages/ciwcamp-affliate-manager.pot,
|
||||
Match: ''d-Version: Wordpress Contact Form 7 PDF-1.0.0'''
|
||||
afs-analytics-for-woocommerce:
|
||||
Comment:
|
||||
number: '1.1'
|
||||
@@ -2119,6 +2150,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/agile-whatsapp-share/languages/agile_whatsapp_share.po,
|
||||
Match: ''"Project-Id-Version: Whatsapp Share v1.0'''
|
||||
agy-verification:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/agy-verification/languages/agy-verification.pot,
|
||||
Match: ''"Project-Id-Version: Agy Verification 1.0.0'''
|
||||
ahachat-messenger-marketing:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -3458,6 +3496,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/assign-missing-categories/languages/assign-missing-categories.pot,
|
||||
Match: ''t-Id-Version: Assign Missing Categories 1.2'''
|
||||
assistant7:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/assistant7/public/css/assistant7-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/assistant7/public/js/assistant7-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
asterisk-web-callback:
|
||||
TranslationFile:
|
||||
number: '0.1'
|
||||
@@ -3504,6 +3550,12 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/astro-woocommerce-free-gift/assets/css/frontend.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/astro-woocommerce-free-gift/assets/js/frontend.js?ver=1.0.1
|
||||
asura-connector:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/asura-connector/package.json, Match: ''1.0.0'''
|
||||
at-lazy-loader:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -3879,6 +3931,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/automatically-add-product-to-cart/changelog.txt,
|
||||
Match: ''Version 1.0'''
|
||||
automizy-gravity-forms:
|
||||
TranslationFile:
|
||||
number: 1.0.1
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/automizy-gravity-forms/languages/automizy-gravity-forms.pot,
|
||||
Match: ''ject-Id-Version: Automizy Gravity Forms 1.0.1'''
|
||||
autoptimize-criticalcss:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -5375,6 +5434,13 @@ plugins:
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bio-links/package-lock.json, Match: ''1.0.0'''
|
||||
bip-pages:
|
||||
TranslationFile:
|
||||
number: 1.1.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bip-pages/languages/bip-pages.pot, Match:
|
||||
''"Project-Id-Version: BIP for WordPress 1.1.0'''
|
||||
birdseed:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -7051,6 +7117,31 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bulk-delete/languages/bulk-delete.pot, Match:
|
||||
''Project-Id-Version: Bulk Delete 5.5.7'''
|
||||
bulk-edit-categories-tags:
|
||||
ComposerFile:
|
||||
number: 1.5.9
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bulk-edit-categories-tags/package.json,
|
||||
Match: ''1.5.9'''
|
||||
TranslationFile:
|
||||
number: 1.5.9
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bulk-edit-categories-tags/lang/bulk-edit-categories-tags.pot,
|
||||
Match: ''rsion: WP Sheet Editor - Taxonomy Terms 1.5.9'''
|
||||
bulk-edit-events:
|
||||
ComposerFile:
|
||||
number: 1.0.37
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bulk-edit-events/package.json, Match: ''1.0.37'''
|
||||
TranslationFile:
|
||||
number: 1.0.37
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bulk-edit-events/lang/bulk-edit-events.pot,
|
||||
Match: ''ct-Id-Version: WP Sheet Editor - Events 1.0.37'''
|
||||
bulk-edit-post-titles:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -7058,6 +7149,32 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/bulk-edit-post-titles/js/bulk-action.js?ver=1.0.0
|
||||
bulk-edit-posts-on-frontend:
|
||||
ComposerFile:
|
||||
number: 2.4.1
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bulk-edit-posts-on-frontend/package.json,
|
||||
Match: ''2.4.1'''
|
||||
TranslationFile:
|
||||
number: 2.4.1
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bulk-edit-posts-on-frontend/lang/bulk-edit-posts-on-frontend.pot,
|
||||
Match: ''Sheet Editor - Editable Frontend Tables 2.4.1'''
|
||||
bulk-edit-user-profiles-in-spreadsheet:
|
||||
ComposerFile:
|
||||
number: 1.4.1
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bulk-edit-user-profiles-in-spreadsheet/package.json,
|
||||
Match: ''1.4.1'''
|
||||
TranslationFile:
|
||||
number: 1.4.1
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bulk-edit-user-profiles-in-spreadsheet/lang/bulk-edit-user-profiles-in-spreadsheet.pot,
|
||||
Match: ''ect-Id-Version: WP Sheet Editor - Users 1.4.1'''
|
||||
bulk-me-now:
|
||||
QueryParameter:
|
||||
number: '2.0'
|
||||
@@ -7685,6 +7802,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/cashback-coupon-lite/public/css/cashback-coupon-lite-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/cashback-coupon-lite/public/js/cashback-coupon-lite-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
cashtomer:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/cashtomer/public/css/cashtomer-points-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/cashtomer/public/js/cashtomer-points-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
catch-breadcrumb:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -9424,6 +9549,14 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/codeprey-mi-video-popup/inc/placeholder.js?ver=1.0
|
||||
codexin-image-gallery:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/codexin-image-gallery/assets/vendor/styles/plugins.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/codexin-image-gallery/assets/styles/cdxn-ig.min.css?ver=1.0.1
|
||||
confidence: 20
|
||||
codistoconnect:
|
||||
ChangeLog:
|
||||
number: 1.3.25
|
||||
@@ -9515,6 +9648,13 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/combunity-forums/public/js/tinymce/tinymce.min.js?ver=2.1.1
|
||||
come-back:
|
||||
TranslationFile:
|
||||
number: 1.2.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/come-back/languages/come-back.pot, Match:
|
||||
''"Project-Id-Version: Come Back! 1.2.0'''
|
||||
comet-lite:
|
||||
TranslationFile:
|
||||
number: 2.6.0
|
||||
@@ -9535,6 +9675,27 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/coming-soon-by-supsystic/css/supsystic-for-all-admin.css?ver=1.3.9
|
||||
coming-soon-by-taspristudio:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/css/bootstrap.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/css/style.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/css/responsive.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/bootstrap.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/popper.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/parallax.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/jquery.countdown.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/csts-public.min.js?ver=1.0.0
|
||||
confidence: 80
|
||||
coming-soon-for-woocommerce:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/coming-soon-for-woocommerce/assets/js/coming-soon-wc.js?ver=1.0.0
|
||||
confidence: 10
|
||||
coming2live:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -9704,6 +9865,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/common-wish-and-bridal-lists/changelog.txt,
|
||||
Match: ''= 1.3.0'''
|
||||
commonsbooking:
|
||||
TranslationFile:
|
||||
number: 2.2.7
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/commonsbooking/languages/commonsbooking.pot,
|
||||
Match: ''"Project-Id-Version: CommonsBooking 2.2.7'''
|
||||
community-watch:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -9823,6 +9991,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/jBox.all.min.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/main.js?ver=1.0
|
||||
confidence: 40
|
||||
conditional-taxonomy-option:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/css/cto-acf-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/js/cto-acf-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
conekta-payment-gateway:
|
||||
ChangeLog:
|
||||
number: 3.0.5
|
||||
@@ -11609,6 +11785,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/dark-login-screen/langs/dark_login_screen-en_AU.po,
|
||||
Match: ''Project-Id-Version: Stronger Admin Bar v1.0'''
|
||||
darklup-lite-wp-dark-mode:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/darklup-lite-wp-dark-mode/assets/css/darkluplite-style.css?ver=1.0.0
|
||||
confidence: 10
|
||||
darkmode:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -12302,6 +12485,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/display-featured-image-genesis/languages/display-featured-image-genesis.pot,
|
||||
Match: ''ion: Display Featured Image for Genesis 2.6.3'''
|
||||
display-git-status:
|
||||
TranslationFile:
|
||||
number: 1.0.1
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/display-git-status/languages/display-git-status.pot,
|
||||
Match: ''-Id-Version: Display Display Git Status 1.0.1'''
|
||||
display-post-types:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -12784,6 +12974,13 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/duplicate-page-and-post/admin/css/duplicate-page-and-post-admin.min.css?ver=2.1.1
|
||||
duplicate-term:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/duplicate-term/languages/duplicate-term.pot,
|
||||
Match: ''"Project-Id-Version: Duplicate Term 1.0.0'''
|
||||
duracelltomi-google-tag-manager:
|
||||
QueryParameter:
|
||||
number: 1.7.2
|
||||
@@ -13419,6 +13616,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/easy-static-maps/lang/easy-static-maps-it_IT.po,
|
||||
Match: ''"Project-Id-Version: Easy Static Maps 1.0'''
|
||||
easy-store-vacation:
|
||||
QueryParameter:
|
||||
number: 1.1.5
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/easy-store-vacation/public/css/easy_store_vacation-public.css?ver=1.1.5
|
||||
- http://wp.lab/wp-content/plugins/easy-store-vacation/public/js/easy_store_vacation-public.js?ver=1.1.5
|
||||
confidence: 20
|
||||
easy-support-videos:
|
||||
TranslationFile:
|
||||
number: 1.0.4
|
||||
@@ -13573,7 +13778,8 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/easyappointments/public/css/easyappointments-public.css?ver=1.3.0
|
||||
- http://wp.lab/wp-content/plugins/easyappointments/public/js/easyappointments-public.js?ver=1.3.0
|
||||
confidence: 20
|
||||
- http://wp.lab/wp-content/plugins/easyappointments/public/js/easyappointments-iframe.js?ver=1.3.0
|
||||
confidence: 30
|
||||
easycoder:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -14294,6 +14500,12 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/email-template-customizer-for-woo/CHANGELOG.txt,
|
||||
Match: ''1.0.1.2'''
|
||||
email-test:
|
||||
ChangeLog:
|
||||
number: 0.1.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/email-test/CHANGELOG.md, Match: ''## 0.1.0'''
|
||||
email-tracking-notification-for-woocommerce:
|
||||
TranslationFile:
|
||||
number: 1.3.0
|
||||
@@ -14551,6 +14763,18 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/envator/assets/js/modernizr.custom.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/envator/assets/js/classie.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/envator/assets/js/cssParser.js?ver=1.0
|
||||
envychimp:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/envychimp/public/css/envy-chimp-font-family.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envychimp/public/css/font-awesome.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envychimp/public/css/envy-chimp-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envychimp/public/css/envy-chimp-responsive.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envychimp/public/js/envy-chimp-public.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envychimp/public/js/ajaxChimp.min.js?ver=1.0.0
|
||||
confidence: 60
|
||||
envynotifs:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -14576,6 +14800,15 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/envypopup/public/js/envy-popup-countdown.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envypopup/public/js/jquery.cookie.js?ver=1.0.0
|
||||
confidence: 50
|
||||
envypreloader:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/envypreloader/public/css/envy-preloader-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envypreloader/public/js/jquery.cookie.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envypreloader/public/js/envy-preloader-public.js?ver=1.0.0
|
||||
confidence: 30
|
||||
eorzea-time:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -16024,6 +16257,14 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/feedzy-rss-feeds/css/feedzy-rss-feeds.css?ver=3.2.6
|
||||
feename:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/feename/public/css/fee-management-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/feename/public/js/fee-management-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
fibotalk-live-chat:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -16818,7 +17059,10 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/world-flags-sprite/stylesheets/flags16.css?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/js/anwpfl-public.min.js?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles-compatible.css?ver=0.4.2
|
||||
confidence: 50
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles.min.css?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.css?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.js?ver=0.4.2
|
||||
confidence: 80
|
||||
ChangeLog:
|
||||
number: 0.10.4
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
@@ -17461,6 +17705,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/game-users-share-buttons/package.json, Match:
|
||||
''1.2.0'''
|
||||
gamification-email-collector-mikehit:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/gamification-email-collector-mikehit/public/css/mikehit-plugin-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/gamification-email-collector-mikehit/public/js/mikehit-plugin-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
gaming-delivery-network:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -20124,6 +20376,15 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/hotmart-wp/languages/hotmart-wp-pt_BR.po,
|
||||
Match: ''"Project-Id-Version: Hotmart WP 0.3.3'''
|
||||
hotspot:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/hotspot/assets/frontend/css/xolo-hotspot-public.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/jquery.powertip.min.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/xolo-hotspot-public.js?ver=1.0
|
||||
confidence: 30
|
||||
hover-effects:
|
||||
QueryParameter:
|
||||
number: '2.1'
|
||||
@@ -20928,6 +21189,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/import-spreadsheets-from-microsoft-excel/changelog.txt,
|
||||
Match: ''= 10.1'''
|
||||
import-vk-comments:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/import-vk-comments/public/css/import-vk-comments-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/import-vk-comments/public/js/import-vk-comments-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
impressive-sliders-for-elementor-page-builder:
|
||||
ChangeLog:
|
||||
number: '1.0'
|
||||
@@ -22442,6 +22711,24 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/kanzu-support-desk/assets/css/ksd-public.css?ver=2.4.5
|
||||
- http://wp.lab/wp-content/plugins/kanzu-support-desk/assets/js/ksd-public.js?ver=2.4.5
|
||||
confidence: 20
|
||||
kassa-at-for-woocommerce:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/kassa-at-for-woocommerce/languages/kassa-at-for-woocommerce-de_DE_formal.po,
|
||||
Match: ''ct-Id-Version: KASSA.AT For WooCommerce 1.0.0'''
|
||||
kata-plus:
|
||||
QueryParameter:
|
||||
number: 1.0.3
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/libraries/grid.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/theme-styles.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/sticky-box.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/sticky-box.js?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/kata-plus-inline.js?ver=1.0.3
|
||||
confidence: 50
|
||||
katalyst-video-plus:
|
||||
QueryParameter:
|
||||
number: 3.2.1
|
||||
@@ -24106,6 +24393,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/livetwitch/public/css/twitch-public.css?ver=0.0.2
|
||||
- http://wp.lab/wp-content/plugins/livetwitch/public/js/twitch-public.js?ver=0.0.2
|
||||
confidence: 20
|
||||
llc-tax:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/llc-tax/assets/css/llc_main.css?ver=1.1
|
||||
- http://wp.lab/wp-content/plugins/llc-tax/assets/js/llc_main.js?ver=1.1
|
||||
confidence: 20
|
||||
lnd-for-wp:
|
||||
QueryParameter:
|
||||
number: 0.1.0
|
||||
@@ -25217,6 +25512,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/mana-gateway/inc/frontend/css/mana-gateway-frontend.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/mana-gateway/inc/frontend/js/mana-gateway-frontend.js?ver=1.0.0
|
||||
confidence: 20
|
||||
manage-admin-columns:
|
||||
TranslationFile:
|
||||
number: 1.4.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/manage-admin-columns/languages/manage-admin-columns.pot,
|
||||
Match: ''roject-Id-Version: Manage Admin Columns 1.4.0'''
|
||||
manage-inactive-subsites:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -27532,6 +27834,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/my-eyes-are-up-here/package.json, Match:
|
||||
''1.1.9'''
|
||||
my-fastapp:
|
||||
TranslationFile:
|
||||
number: 1.0.1
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/my-fastapp/languages/my-fastapp.pot, Match:
|
||||
''"Project-Id-Version: MyFastApp (DEV) 1.0.1'''
|
||||
my-faves:
|
||||
QueryParameter:
|
||||
number: 1.1.1
|
||||
@@ -27787,6 +28096,12 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/naked-social-share/assets/js/naked-social-share.min.js?ver=1.4.2
|
||||
confidence: 10
|
||||
nalp-ch:
|
||||
ComposerFile:
|
||||
number: 0.1.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/nalp-ch/package.json, Match: ''0.1.0'''
|
||||
namaste-lms:
|
||||
TranslationFile:
|
||||
number: 2.1.5
|
||||
@@ -31232,6 +31547,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/popup-scroll/public/assets/js/jquery-cookie/jquery.cookie.js?ver=2.0.2
|
||||
- http://wp.lab/wp-content/plugins/popup-scroll/public/assets/js/public.js?ver=2.0.2
|
||||
confidence: 40
|
||||
popup-tb:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/popup-tb/css/popuptb-style.css?ver=1.1
|
||||
- http://wp.lab/wp-content/plugins/popup-tb/js/popuptb-js.js?ver=1.1
|
||||
confidence: 20
|
||||
popup4phone:
|
||||
QueryParameter:
|
||||
number: 1.2.4
|
||||
@@ -31599,6 +31922,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/post-sliders/js/owl.carousel.js?ver=1.0
|
||||
confidence: 10
|
||||
post-status-indicator:
|
||||
ComposerFile:
|
||||
number: 1.0.1
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/post-status-indicator/package.json, Match:
|
||||
''1.0.1'''
|
||||
post-theming:
|
||||
TranslationFile:
|
||||
number: '0.3'
|
||||
@@ -32181,6 +32511,15 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/pretty-link/i18n/pretty-link.pot, Match:
|
||||
''"Project-Id-Version: Pretty Links 2.1.2'''
|
||||
pretty-opt-in-lite:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/pretty-opt-in-lite/assets/css/front.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/pretty-opt-in-lite//assets/js/library/ionicons.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/pretty-opt-in-lite/assets/js/locker-front.js?ver=1.0.0
|
||||
confidence: 30
|
||||
pretty-portfolio:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -32981,6 +33320,14 @@ plugins:
|
||||
q-and-a:
|
||||
Comment:
|
||||
found_by: Comment (Passive Detection)
|
||||
q-events-light:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/q-events-light/public/css/events-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/q-events-light/public/js/events-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
q2w3-fixed-widget:
|
||||
QueryParameter:
|
||||
number: 5.0.4
|
||||
@@ -34142,6 +34489,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/remoji/lang/remoji.pot, Match: ''emoji -
|
||||
Comment Reaction and Management 1.2'''
|
||||
remote-cache-purger:
|
||||
ChangeLog:
|
||||
number: 1.0.4.1
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/remote-cache-purger/changelog.txt, Match:
|
||||
''= 1.0.4.1'''
|
||||
remote-medias-lite:
|
||||
TranslationFile:
|
||||
number: 1.5.1
|
||||
@@ -35426,6 +35780,13 @@ plugins:
|
||||
found_by: Comment (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''S-ButtonZ 1.1.5'''
|
||||
s2-wishlist-for-woocommerce:
|
||||
ChangeLog:
|
||||
number: 1.0.4
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/s2-wishlist-for-woocommerce/changelog.txt,
|
||||
Match: ''= 1.0.4'''
|
||||
s2member:
|
||||
QueryParameter:
|
||||
number: '170722'
|
||||
@@ -36085,6 +36446,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/seatgeek-affiliate-tickets/public/css/seatgeek-affiliate-tickets-public.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/seatgeek-affiliate-tickets/public/js/seatgeek-affiliate-tickets-public.js?ver=1.0.1
|
||||
confidence: 30
|
||||
sebastian:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/sebastian/public/css/sebastian-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/sebastian/public/js/sebastian-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
section-block:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -36861,6 +37230,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/shinystat-analytics/languages/shinystat-analytics-it_IT.po,
|
||||
Match: ''"Project-Id-Version: ShinyStat 1.0.0'''
|
||||
ship-to-multiple-addresses:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/ship-to-multiple-addresses/public/css/ship_to_multiple_addresses-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/ship-to-multiple-addresses/public/js/ship_to_multiple_addresses-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
shipping-by-city-for-woocommerce:
|
||||
ChangeLog:
|
||||
number: '1.0'
|
||||
@@ -37102,6 +37479,16 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/show-posts/atw-posts-style.min.css?ver=1.3.9
|
||||
confidence: 10
|
||||
show-product-variations-for-woocommerce:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/wsv-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/datatables.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/datatables.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/wsv-public.js?ver=1.0.0
|
||||
confidence: 40
|
||||
show-remote-ip:
|
||||
QueryParameter:
|
||||
number: 0.0.1
|
||||
@@ -37959,6 +38346,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/simple-stopwatch/public/css/simple-stopwatch-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/simple-stopwatch/public/js/simple-stopwatch-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
simple-stripe-checkout:
|
||||
TranslationFile:
|
||||
number: 1.1.8
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/simple-stripe-checkout/languages/simple-stripe-checkout.pot,
|
||||
Match: ''ject-Id-Version: Simple stripe checkout 1.1.8'''
|
||||
simple-student-result:
|
||||
QueryParameter:
|
||||
number: 1.6.4
|
||||
@@ -40067,6 +40461,15 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/sticky-social-icons/public/assets/build/css/sticky-social-icons-public.css?ver=1.0.0
|
||||
confidence: 10
|
||||
sticky-social-media-icons:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/sticky-social-media-icons/public/css/sticky-social-media-icons-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/sticky-social-media-icons/public/js/sticky-social-media-icons-public.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/sticky-social-media-icons/assets/sticky-icons-display.css?ver=1.0.0
|
||||
confidence: 30
|
||||
sticky-tax:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -40661,6 +41064,13 @@ plugins:
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/survais/package.json, Match: ''1.0.0'''
|
||||
survey-maker:
|
||||
QueryParameter:
|
||||
number: 1.0.2
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/survey-maker/public/css/survey-maker-public.css?ver=1.0.2
|
||||
confidence: 10
|
||||
survey-popup:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -41686,6 +42096,20 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/the-post-grid/assets/css/thepostgrid.css?ver=2.2.2
|
||||
confidence: 10
|
||||
the-publisher-desk-ads:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/the-publisher-desk-ads/package.json, Match:
|
||||
''1.0.0'''
|
||||
the-publisher-desk-read-more:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/the-publisher-desk-read-more/package.json,
|
||||
Match: ''1.0.0'''
|
||||
the-seo-framework-extension-manager:
|
||||
TranslationFile:
|
||||
number: 1.4.0
|
||||
@@ -41887,7 +42311,9 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/themify-builder/themify/js/main.min.js?ver=4.1.3
|
||||
- http://wp.lab/wp-content/plugins/themify-builder/css/themify-builder-style.min.css?ver=4.1.3
|
||||
- http://wp.lab/wp-content/plugins/themify-builder/themify/css/themify.common.min.css?ver=4.1.3
|
||||
confidence: 30
|
||||
- http://wp.lab/wp-content/plugins/themify-builder/themify/css/base.min.css?ver=4.1.3
|
||||
- http://wp.lab/wp-content/plugins/themify-builder/css/modules/parallax.min.css?ver=4.1.3
|
||||
confidence: 50
|
||||
MetaTag:
|
||||
number: 4.5.2
|
||||
found_by: Meta Tag (Passive Detection)
|
||||
@@ -42315,6 +42741,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/tokenpile-client/public/css/tokenpile_client-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/tokenpile-client/public/js/tokenpile_client-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
tolktalkcx-contact-widget:
|
||||
ChangeLog:
|
||||
number: 1.0.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/tolktalkcx-contact-widget/changelog.txt,
|
||||
Match: ''## 1.0.0 - 2020-12-04'''
|
||||
toms-guide-download:
|
||||
TranslationFile:
|
||||
number: 1.0.5
|
||||
@@ -42944,6 +43377,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/turitop-booking-system/languages/turitop-booking-system.pot,
|
||||
Match: ''ject-Id-Version: Turitop Booking System 1.0.0'''
|
||||
turn-rank-math-faq-block-to-accordion:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/turn-rank-math-faq-block-to-accordion/assets/css/style.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/turn-rank-math-faq-block-to-accordion/assets/js/RMFA-JS.min.js?ver=1.0.0
|
||||
confidence: 20
|
||||
tutorial-blocks-gutenberg-blocks-collection:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -45791,6 +46232,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wc-stock-amount-report/changelog.txt, Match:
|
||||
''version 0.0.11'''
|
||||
wc-tracktum:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wc-tracktum/languages/tracktum.pot, Match:
|
||||
''"Project-Id-Version: Tracktum 1.0'''
|
||||
wc-trinicargo-shipping:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -47127,6 +47575,19 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/woo-braintree-payment/public/css/woo-braintree-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-braintree-payment/public/js/woo-braintree-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
woo-bulk-edit-products:
|
||||
ComposerFile:
|
||||
number: 1.6.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-bulk-edit-products/package.json, Match:
|
||||
''1.6.0'''
|
||||
TranslationFile:
|
||||
number: 1.6.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-bulk-edit-products/lang/woo-bulk-edit-products.pot,
|
||||
Match: ''WP Sheet Editor - WooCommerce Products 1.6.0'''
|
||||
woo-bulkbuy:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -47235,6 +47696,19 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/woo-coupon-url/public/css/woo-coupon-url-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-coupon-url/public/js/woo-coupon-url-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
woo-coupons-bulk-editor:
|
||||
ComposerFile:
|
||||
number: 1.3.14
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-coupons-bulk-editor/package.json, Match:
|
||||
''1.3.14'''
|
||||
TranslationFile:
|
||||
number: 1.3.14
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-coupons-bulk-editor/lang/woo-coupons-bulk-editor.pot,
|
||||
Match: '': WP Sheet Editor - WooCommerce Coupons 1.3.14'''
|
||||
woo-csv-price:
|
||||
TranslationFile:
|
||||
number: '0.4'
|
||||
@@ -47814,6 +48288,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/woo-products-coming-soon/assets/css/style.css?ver=1.0
|
||||
confidence: 10
|
||||
woo-products-widgets-for-elementor:
|
||||
ChangeLog:
|
||||
number: 1.0.4
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-products-widgets-for-elementor/changelog.txt,
|
||||
Match: ''= 1.0.4'''
|
||||
woo-quickview:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -52315,6 +52796,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/wp-player/assets/js/libs/soundmanager/soundmanager2.js?ver=2.6.1
|
||||
- http://wp.lab/wp-content/plugins/wp-player/assets/js/wp-player.js?ver=2.6.1
|
||||
confidence: 30
|
||||
wp-podcasts-manager:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-podcasts-manager/assets/js/zl_pdm_script.js?ver=1.0
|
||||
confidence: 10
|
||||
wp-politic:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -53156,6 +53644,25 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages/modules/wp-sheet-editor/lang/vg_sheet_editor.pot,
|
||||
Match: ''"Project-Id-Version: WP Sheet Editor 2.10.0'''
|
||||
ComposerFile:
|
||||
number: 2.23.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages/package.json,
|
||||
Match: ''2.23.0'''
|
||||
wp-sheet-editor-edd-downloads:
|
||||
ComposerFile:
|
||||
number: 1.0.35
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-sheet-editor-edd-downloads/package.json,
|
||||
Match: ''1.0.35'''
|
||||
TranslationFile:
|
||||
number: 1.0.35
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-sheet-editor-edd-downloads/lang/bulk-edit-edd-downloads.pot,
|
||||
Match: ''ersion: WP Sheet Editor - EDD Downloads 1.0.35'''
|
||||
wp-shoutbox-live-chat:
|
||||
QueryParameter:
|
||||
number: 1.4.2
|
||||
@@ -53191,6 +53698,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-simple-anchors-links/css/styles.css?ver=1.0.0
|
||||
confidence: 10
|
||||
wp-simple-menu-icons:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-simple-menu-icons/languages/wp-simple-menu-icons.pot,
|
||||
Match: ''roject-Id-Version: WP Simple Menu Icons 1.0.0'''
|
||||
wp-simple-seo:
|
||||
TranslationFile:
|
||||
number: 1.0.7
|
||||
@@ -56482,6 +56996,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/pandemic-covid19-ajax.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/datatable/jquery.dataTables.js?ver=1.0.0
|
||||
confidence: 60
|
||||
zoom-img:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/zoom-img/css/zoomimg-mBox.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/zoom-img/js/zoomimg-mBox.js?ver=1.0
|
||||
confidence: 20
|
||||
zoorvy-social-share:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
|
||||
@@ -0,0 +1,495 @@
|
||||
# Copyright (C) 2020 ZealousWeb
|
||||
# This file is distributed under the same license as the Accept SagePay Payments Using Contact Form 7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Accept SagePay Payments Using Contact Form 7 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accept-sagepay-payments-using-contact-form-7\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-11-27T08:04:48+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: accept-sagepay-payments-using-contact-form-7\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Accept SagePay Payments Using Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin will integrate Sagepay payment gateway for making your payments through Contact Form 7."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ZealousWeb"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zealousweb.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.action.php:81
|
||||
msgid "From Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.action.php:82
|
||||
#: inc/admin/class.cfspzw.admin.action.php:344
|
||||
msgid "Do you need help for configuration?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.action.php:347
|
||||
msgid "Refer the document."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.action.php:349
|
||||
msgid "Support Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:55
|
||||
msgid "SagePay"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:104
|
||||
#: inc/admin/template/cfspzw.template.php:140
|
||||
msgid "Document Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:139
|
||||
msgid "User Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:140
|
||||
msgid "Invoice ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:141
|
||||
msgid "Transaction Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:142
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:143
|
||||
msgid "Submitted Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:68
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:69
|
||||
msgid "Live"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:73
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:74
|
||||
msgid "Deferred"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:75
|
||||
msgid "Authenticate"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:79
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:80
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:139
|
||||
msgid "To use SagePay option, first you need to create and save form tags."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:149
|
||||
msgid "Sagepay Enable"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:159
|
||||
msgid "Enable Debug Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:169
|
||||
msgid "Payment Mode "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:186
|
||||
msgid "Sandbox Vendor Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:197
|
||||
msgid "Sandbox Encryption Password "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:209
|
||||
msgid "Live Vendor Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:220
|
||||
msgid "Live Encryption Password "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:232
|
||||
msgid "Amount Field Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:238
|
||||
msgid "Select field name for amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:251
|
||||
msgid "Customer Email "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:257
|
||||
msgid "Select field name for customer email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:270
|
||||
msgid "Quantity Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:276
|
||||
msgid "Select field name for quantity"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:290
|
||||
msgid "Transaction type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:308
|
||||
msgid "Apply 3D Secure"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:326
|
||||
msgid "Select Currency"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:345
|
||||
msgid "VendorTXCode Prefix (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:356
|
||||
msgid "Success Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:362
|
||||
#: inc/admin/template/cfspzw.template.php:382
|
||||
msgid "Select page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:376
|
||||
msgid "Cancel Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:400
|
||||
msgid "Customer Billing Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:409
|
||||
msgid "Billing First Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:415
|
||||
msgid "Select field name for billing first name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:428
|
||||
msgid "Billing Last Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:434
|
||||
msgid "Select field name for billing last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:447
|
||||
msgid "Billing Address "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:453
|
||||
msgid "Select field name for billing address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:466
|
||||
msgid "Billing City "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:472
|
||||
msgid "Select field name for billing city"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:485
|
||||
msgid "Billing State "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:491
|
||||
msgid "Select field name for billing state"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:504
|
||||
msgid "Select Billing Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:510
|
||||
msgid "Select field name for billing country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:523
|
||||
msgid "Billing Zipcode "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:529
|
||||
msgid "Select field name for billing zipcode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:546
|
||||
msgid "Customer Shipping Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:555
|
||||
msgid "Shipping First Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:561
|
||||
msgid "Select field name for shipping first name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:574
|
||||
msgid "Shipping Last Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:580
|
||||
msgid "Select field name for shipping last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:593
|
||||
msgid "Shipping Address "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:599
|
||||
msgid "Select field name for shipping address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:612
|
||||
msgid "Shipping City "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:618
|
||||
msgid "Select field name for shipping city"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:631
|
||||
msgid "Shipping State "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:637
|
||||
msgid "Select field name for shipping state"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:650
|
||||
msgid "Select Shipping Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:656
|
||||
msgid "Select field name for shipping country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:669
|
||||
msgid "Shipping Zipcode "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:675
|
||||
msgid "Select field name for shipping zipcode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:709
|
||||
msgid "<h3>Vendor Name </h3><p>Get Vendor Name from <a href=\"#\" target=\"_blank\">here</a></p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:713
|
||||
msgid "<h3>Encryption Password</h3><p>Get Encryption Password from <a href=\"#\" target=\"_blank\">here</a></p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:717
|
||||
msgid "<h3>Select Currency</h3><p>Select the currency.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:721
|
||||
msgid "<h3>Amount Field</h3><p>Select field from where amount value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:725
|
||||
msgid "<h3>Quantity Field</h3><p>Select field from where quantity value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:729
|
||||
msgid "<h3>Customer Email Field</h3><p>Select field from where customer email value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:733
|
||||
msgid "<h3>VendorTXCode Prefix Field</h3><p>Please enter unique prefix name which display in invoice order.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:737
|
||||
msgid "<h3>Success Return URL Field </h3><p>Select page and redirect customer after succesfully payment done.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:741
|
||||
msgid "<h3>Cancel Return URL Field </h3><p>Select page and redirect customer after cancel payment process or payment not done.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:745
|
||||
msgid "<h3>Billing First Name Field</h3><p>Select field from where billing first name value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:749
|
||||
msgid "<h3>Billing Last Name Field</h3><p>Select field from where billing last name value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:753
|
||||
msgid "<h3>Billing Address Field</h3><p>Select field from where billing address value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:757
|
||||
msgid "<h3>Billing City Field</h3><p>Select field from where billing city value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:761
|
||||
msgid "<h3>Billing State Field</h3><p>Select field from where billing state value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:765
|
||||
msgid "<h3>Billing Country Field</h3><p>Select field from where billing country value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:769
|
||||
msgid "<h3>Billing ZipCode Field</h3><p>Select field from where billing zipcode value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:773
|
||||
msgid "<h3>Shipping First Name Field</h3><p>Select field from where shipping first name value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:777
|
||||
msgid "<h3>Shipping Last Name Field</h3><p>Select field from where shipping last name value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:781
|
||||
msgid "<h3>Shipping Address Field</h3><p>Select field from where shipping address value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:785
|
||||
msgid "<h3>Shipping City Field</h3><p>Select field from where shipping city value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:789
|
||||
msgid "<h3>Shipping State Field</h3><p>Select field from where shipping state value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:793
|
||||
msgid "<h3>Shipping Country Field</h3><p>Select field from where shipping country value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:797
|
||||
msgid "<h3>Shipping ZipCode Field</h3><p>Select field from where shipping zipcode value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:112
|
||||
#: inc/class.cfspzw.php:113
|
||||
#: inc/class.cfspzw.php:118
|
||||
msgid "Sagepay Payment Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:114
|
||||
msgid "Transaction Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:158
|
||||
msgid "<strong><a href=\"https://wordpress.org/plugins/contact-form-7/\" target=\"_blank\">Contact Form 7</a></strong> is required to use <strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:177
|
||||
msgid "Sagepay Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:280
|
||||
msgid "Generate a form-tag for to display Sagepay Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:289
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:304
|
||||
msgid "Insert Tag"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:311
|
||||
msgid "To use the value input through this field in a mail field, you need to insert the corresponding mail-tag (%s) into the field on the Mail tab."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:213
|
||||
msgid "SagePay Payment Notification"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:427
|
||||
#: inc/lib/class.cfspzw.lib.php:437
|
||||
msgid "Sagepay Response Details:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:568
|
||||
msgid "Payment Page not Configured Properly. Please Conatct Admin. "
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:631
|
||||
#: inc/lib/class.cfspzw.lib.php:640
|
||||
#: inc/lib/class.cfspzw.lib.php:967
|
||||
msgid "Please Enter Amount value or Value in Numeric."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:732
|
||||
msgid "Order #%s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:846
|
||||
msgid "Something goes wrong! Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:866
|
||||
msgid "Transaction Amount :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:870
|
||||
msgid "Payment Status :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:874
|
||||
msgid "Transaction Id :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:878
|
||||
msgid "Invoice ID :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:886
|
||||
msgid "Response :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:934
|
||||
msgid "Please wait you are redirecting to sagepay..!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:969
|
||||
msgid "The field is required."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:993
|
||||
msgid "One or more fields have an error. Please check and try again."
|
||||
msgstr ""
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/affiliatebooster-blocks/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/affiliatebooster-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "my-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/compose": "^3.19.1",
|
||||
"@wordpress/icons": "^2.4.0",
|
||||
"cgb-scripts": "1.23.1",
|
||||
"classnames": "^2.2.6",
|
||||
"memize": "^1.1.0",
|
||||
"npm-upgrade": "^2.0.3",
|
||||
"react-select": "^3.1.0",
|
||||
"striptags": "^2.2.1",
|
||||
"uglify-js": "^3.10.0",
|
||||
"uglifyjs-webpack-plugin": "^2.2.0",
|
||||
"update": "^0.7.4",
|
||||
"webfontloader": "^1.6.28"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,220 @@
|
||||
# Agy is a powerful solution to add any kind of verification restriction on your website. Easy to setup, optimized for all devices, and modern design option to match your
|
||||
# Copyright (C) YEAR Marko Radulovic
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <upss070288@gmail.com>, 2021.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Agy Verification 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-05 19:48+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: agy-verification.php:69
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: agy-verification.php:83
|
||||
msgid "Docs & FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: agy-verification.php:88
|
||||
msgid "GitHub"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:24
|
||||
msgid "You have successfully saved your settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:93
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\" target=\"%s\" class=\"%s\">"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:145
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\" target=\"%s\"><img src=\"%s\" class=\"%s\"></a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:159
|
||||
msgid "_blank"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:161
|
||||
msgid "agy-logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:176 includes/Agy_Dashboard.php:262
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:177 includes/Agy_Dashboard.php:267
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:179 includes/Agy_Dashboard.php:272
|
||||
msgid "Design"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:186
|
||||
msgid "Agy Verification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:222
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:244
|
||||
msgid "Set your General settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:249
|
||||
msgid "Set all of the text for your modal verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:254
|
||||
msgid "Set the desirable design for the modal verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:278
|
||||
msgid "Enable / Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:283
|
||||
msgid "Show for unregistered users only"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:288
|
||||
msgid "Activate Debug mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:293
|
||||
msgid "Exit URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:299
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:304
|
||||
msgid "Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:309
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:314
|
||||
msgid "Enter Button Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:319
|
||||
msgid "Exit Button Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:324
|
||||
msgid "Separator Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:329
|
||||
msgid "Slogan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:335
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:340
|
||||
msgid "Z-Index ( Overlay )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:345
|
||||
msgid "Content Box width ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:350
|
||||
msgid "Headline Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:355
|
||||
msgid "Headline Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:360
|
||||
msgid "Subtitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:365
|
||||
msgid "Subtitle Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:370
|
||||
msgid "Message Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:375
|
||||
msgid "Message Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:380
|
||||
msgid "Enter Button background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:385
|
||||
msgid "Enter Button font color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:390
|
||||
msgid "Enter Button border style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:395
|
||||
msgid "Enter Button border color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:400
|
||||
msgid "Enter Button font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:405
|
||||
msgid "Exit Button background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:410
|
||||
msgid "Exit Button font color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:415
|
||||
msgid "Exit Button border style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:420
|
||||
msgid "Exit Button border color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:425
|
||||
msgid "Exit Button font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:430
|
||||
msgid "Separator Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:435
|
||||
msgid "Separator Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:440
|
||||
msgid "Slogan Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:445
|
||||
msgid "Slogan Font size ( in px )"
|
||||
msgstr ""
|
||||
30
spec/fixtures/dynamic_finders/plugin_version/asura-connector/composer_file/package.json
vendored
Normal file
30
spec/fixtures/dynamic_finders/plugin_version/asura-connector/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "asura-connector",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"development": "mix",
|
||||
"watch": "mix watch",
|
||||
"watch-poll": "mix watch -- --watch-options-poll=1000",
|
||||
"hot": "mix watch --hot",
|
||||
"production": "mix --production"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/thelostasura/asura-connector.git"
|
||||
},
|
||||
"author": "thelostasura <mail@thelostasura.com>",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/thelostasura/asura-connector/issues"
|
||||
},
|
||||
"homepage": "https://github.com/thelostasura/asura-connector",
|
||||
"devDependencies": {
|
||||
"@vue/compiler-sfc": "^3.0.4",
|
||||
"axios": "^0.21.0",
|
||||
"laravel-mix": "^6.0.0",
|
||||
"lodash": "^4.17.20",
|
||||
"vue": "^3.0.4",
|
||||
"vue-loader": "^16.1.2",
|
||||
"vue-router": "4"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,159 @@
|
||||
# Copyright (C) 2020 Chris Bibby
|
||||
# This file is distributed under the same license as the Automizy Gravity Forms package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Automizy Gravity Forms 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/automizy-gravity-forms\n"
|
||||
"POT-Creation-Date: 2020-12-29 02:55:07+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.5.4\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"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#: automizy-gravity-forms.php:100 trunk/automizy-gravity-forms.php:47
|
||||
msgid "Automizy Gravity Forms requires Gravity Forms to be active."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:36 trunk/inc/class-gf-automizy.php:36
|
||||
msgid "Subscribe contact to Automizy only when payment is received."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:71 trunk/inc/class-gf-automizy.php:71
|
||||
msgid "Automizy Account Information"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:75 trunk/inc/class-gf-automizy.php:75
|
||||
msgid ""
|
||||
"Automizy is Email Marketing Software\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t that is designed to increase your open rates. If "
|
||||
"you don't have an Automizy account, you can %1$ssign up for one here.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:84 trunk/inc/class-gf-automizy.php:84
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:90 trunk/inc/class-gf-automizy.php:90
|
||||
msgid "You can find your API key <a href=\"%s\" target=\"_blank\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:114 trunk/inc/class-gf-automizy.php:114
|
||||
msgid "Automizy Feed Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:117 trunk/inc/class-gf-automizy.php:117
|
||||
msgid "Feed name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:120 trunk/inc/class-gf-automizy.php:120
|
||||
msgid "Give the feed a name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:124 inc/class-gf-automizy.php:196
|
||||
#: trunk/inc/class-gf-automizy.php:124 trunk/inc/class-gf-automizy.php:196
|
||||
msgid "Feed Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:127 trunk/inc/class-gf-automizy.php:127
|
||||
msgid "Enter a description for this feed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:132 inc/class-gf-automizy.php:140
|
||||
#: inc/class-gf-automizy.php:195 trunk/inc/class-gf-automizy.php:132
|
||||
#: trunk/inc/class-gf-automizy.php:140 trunk/inc/class-gf-automizy.php:195
|
||||
msgid "Contact List"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:137 trunk/inc/class-gf-automizy.php:137
|
||||
msgid "No lists found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:141 trunk/inc/class-gf-automizy.php:141
|
||||
msgid "Select your list you want to add your contacts to"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:146 trunk/inc/class-gf-automizy.php:146
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:151 trunk/inc/class-gf-automizy.php:151
|
||||
msgid "No tags found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:154 trunk/inc/class-gf-automizy.php:154
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:155 trunk/inc/class-gf-automizy.php:155
|
||||
msgid "Tag this contact"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:160 inc/class-gf-automizy.php:165
|
||||
#: trunk/inc/class-gf-automizy.php:160 trunk/inc/class-gf-automizy.php:165
|
||||
msgid "Map Fields"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:166 trunk/inc/class-gf-automizy.php:166
|
||||
msgid ""
|
||||
"Map your Automizy fields to the appropriate Gravity Form fields by "
|
||||
"selecting the appropriate form field from the list."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:171 trunk/inc/class-gf-automizy.php:171
|
||||
msgid "Condition"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:173 trunk/inc/class-gf-automizy.php:173
|
||||
msgid "Enable Condition"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:174 trunk/inc/class-gf-automizy.php:174
|
||||
msgid "Process this simple feed if"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:194 trunk/inc/class-gf-automizy.php:194
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:252 trunk/inc/class-gf-automizy.php:252
|
||||
msgid "Select a list"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:283 trunk/inc/class-gf-automizy.php:283
|
||||
msgid "Select a tag"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:318 trunk/inc/class-gf-automizy.php:318
|
||||
msgid "Couldn't add to list because we couldn't fire up the API"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Automizy Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Automizy connector for Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Chris Bibby"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://chrisbibby.com.au"
|
||||
msgstr ""
|
||||
327
spec/fixtures/dynamic_finders/plugin_version/bip-pages/translation_file/languages/bip-pages.pot
vendored
Normal file
327
spec/fixtures/dynamic_finders/plugin_version/bip-pages/translation_file/languages/bip-pages.pot
vendored
Normal file
@@ -0,0 +1,327 @@
|
||||
# Copyright (C) 2020 Łukasz Garczewski
|
||||
# This file is distributed under the same license as the BIP for WordPress plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BIP for WordPress 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bip-for-wordpress\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-16T02:01:58+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: bip-pages\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BIP for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://klucznicy.org.pl/open-source/bip-for-wordpress/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A plugin adding BIP (Biuletyn Informacji Publicznej) functionality to WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Łukasz Garczewski"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://klucznicy.org.pl/open-source/"
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:21
|
||||
msgid "BIP Logo Widget"
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:34
|
||||
msgid "Our organization's BIP"
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:51
|
||||
msgid "This widget displays the BIP logo with a link to your BIP main page."
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:57
|
||||
msgid "Variant"
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:72
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:87
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-activation.php:46
|
||||
#: bip-pages-settings.php:75
|
||||
#: bip-pages-styling.php:27
|
||||
msgid "BIP Main Page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-activation.php:56
|
||||
msgid "BIP usage manual"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-activation.php:110
|
||||
msgid "BIP Pages plugin has been activated. Use the settings page below to configure your main page."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-activation.php:115
|
||||
msgid "BIP Pages: your main page and BIP instructions page have been created automatically."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-deactivation.php:56
|
||||
msgid "BIP Pages plugin has been deactivated. Your BIP pages have been converted to standard pages (or drafts in case of a conflicting page title)"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-main-page.php:23
|
||||
#: js/editor_notices.js:2
|
||||
msgid "You are editing the BIP main page."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-main-page.php:24
|
||||
#: js/editor_notices.js:3
|
||||
msgid "Parts of this page are automatically generated. The text you enter below will be displayed between the automatic BIP header and footer."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-meta-boxes.php:8
|
||||
msgid "Content prepared by"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-meta-boxes.php:39
|
||||
msgid "Enter name and surname of content author"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:10
|
||||
#: bip-pages-settings.php:11
|
||||
#: templates/bip-page-settings-template.php:4
|
||||
msgid "BIP Pages Settings"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:30
|
||||
msgid "Settings saved successfully."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:68
|
||||
msgid "BIP Main Page settings"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:83
|
||||
msgid "Organization Address"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:91
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:99
|
||||
msgid "Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:107
|
||||
msgid "Name of representative"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:115
|
||||
msgid "BIP instruction page settings"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:122
|
||||
msgid "Usage instruction page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:130
|
||||
msgid "BIP access settings"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:137
|
||||
msgid "Who can edit BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:145
|
||||
msgid "Who can publish BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:153
|
||||
msgid "Who can delete BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is internal option identifired, either "id" or "instruction_id"
|
||||
#: bip-pages-settings.php:178
|
||||
msgid "Invalid page ID given for %s"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:202
|
||||
msgid "Invalid phone number given."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:219
|
||||
#: bip-pages-settings.php:241
|
||||
msgid "Not selected"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:230
|
||||
msgid "Edit BIP main page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:252
|
||||
msgid "Edit BIP instruction page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:266
|
||||
msgid "The address of your organization"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:278
|
||||
msgid "Full name of a BIP editor"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:284
|
||||
msgid "Email to a BIP editor"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:292
|
||||
msgid "Phone number to your organization"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:313
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-styling.php:30
|
||||
msgid "BIP Instruction Page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:79
|
||||
msgctxt "Post type general name"
|
||||
msgid "BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:80
|
||||
msgctxt "Post type singular name"
|
||||
msgid "BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:81
|
||||
msgctxt "Admin Menu text"
|
||||
msgid "BIP Pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:82
|
||||
msgctxt "Add New on Toolbar"
|
||||
msgid "BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:83
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:84
|
||||
msgid "Add New BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:85
|
||||
msgid "New BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:86
|
||||
msgid "Edit BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:87
|
||||
msgid "View BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:88
|
||||
msgid "All BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:89
|
||||
msgid "Search BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:90
|
||||
msgid "Parent BIP pages:"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:91
|
||||
msgid "No BIP pages found."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:92
|
||||
msgid "No BIP pages found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:3
|
||||
msgid "Biuletyn Informacji Publicznej"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is substituted with blog name
|
||||
#: templates/bip-main-template.php:8
|
||||
msgid "%s: Biuletyn Informacji Publicznej"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:15
|
||||
msgid "Address:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:19
|
||||
msgid "Editor:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:25
|
||||
msgid "E-mail address:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:31
|
||||
msgid "Phone number:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:44
|
||||
msgid "Recently updated BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:56
|
||||
msgid "BIP pages usage manual"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the name of the original author of page contents
|
||||
#: templates/bip-page-footer-template.php:5
|
||||
msgid "Information prepared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the name of the user who published the page (may be a link)
|
||||
#: templates/bip-page-footer-template.php:11
|
||||
msgid "Published by: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the date and time of page creation
|
||||
#: templates/bip-page-footer-template.php:17
|
||||
msgid "Page created: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the date and time of last page modification
|
||||
#: templates/bip-page-footer-template.php:23
|
||||
msgid "Last updated: %s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-search-form.php:4
|
||||
msgctxt "label"
|
||||
msgid "Search for BIP pages:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-search-form.php:7
|
||||
msgctxt "placeholder"
|
||||
msgid "Search BIP pages…"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-search-form.php:10
|
||||
msgctxt "submit button"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-taxonomy-terms","version":"1.5.9","vgDistName":"bulk-edit-categories-tags","vgPreviousVersion":"1.5.8.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","columns-visibility","filters","wp-sheet-editor","user-path"],"pro":["acf","advanced-filters","columns-renaming","formulas","custom-columns","universal-sheet","yoast-seo","wpml","columns-manager"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/taxonomy-terms\/package.json","vgEditorKeys":["category","post_tag","product_cat","product_tag"]}
|
||||
@@ -0,0 +1,259 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - Taxonomy Terms plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - Taxonomy Terms 1.5.9\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/taxonomy-terms\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-19T01:16:41+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - Taxonomy Terms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/go/taxonomy-terms-addon?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=taxonomy-terms"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Edit categories and tags in a spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=taxonomy-terms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:21
|
||||
msgid "Edit categories, tags, attributes, taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:45
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:20
|
||||
msgid "Edit in a Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:57
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:32
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:69
|
||||
msgid "Hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:81
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:50
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:57
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:74
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:89
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:98
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:113
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:95
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:136
|
||||
msgid "Count"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:146
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:160
|
||||
msgid "Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:169
|
||||
msgid "Display type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:176
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:177
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:178
|
||||
msgid "Subcategories"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:179
|
||||
msgid "Both"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:184
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:197
|
||||
msgid "Full hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:206
|
||||
msgid "Old Platform ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:44
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:68
|
||||
msgid "Default sort order"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:73
|
||||
msgid "Custom ordering"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:75
|
||||
msgid "Name (numeric)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:76
|
||||
msgid "Term ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:83
|
||||
msgid "Enable Archives"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:113
|
||||
msgid "Manage terms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes.php:70
|
||||
#: inc/integrations/wc-attributes.php:122
|
||||
msgid "WooCommerce Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/providers/term.php:399
|
||||
msgid "The item id does not exist. Error #89827j"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:160
|
||||
msgid "Request not allowed. Try again later."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:163
|
||||
msgid "Please select the term that you want to keep."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:180
|
||||
msgid "Please select the terms to remove."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:212
|
||||
#: inc/sheet.php:251
|
||||
msgid "%s terms merged."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:244
|
||||
msgid "Terms to remove not found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:293
|
||||
#: views/merge-terms-modal.php:5
|
||||
msgid "Merge terms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:295
|
||||
msgid "Combine terms into one and automatically reassign the posts to use the final term."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:380
|
||||
msgid "Parent keyword"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:380
|
||||
msgid "We will display all the categories below parent that contains this keyword"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:411
|
||||
msgid "We find items that have the same SLUG in the CSV and the WP Field.<br>Please select the CSV column that contains the slug.<br>You must import the slug column if you want to update existing categories, items without slug will be created as new."
|
||||
msgstr ""
|
||||
|
||||
#: taxonomy-terms.php:81
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:8
|
||||
msgid "Replace these terms"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:8
|
||||
msgid "Select the categories that will be removed."
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:11
|
||||
msgid "Select individual items"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:12
|
||||
msgid "Select all the items from a search"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:13
|
||||
msgid "Merge all the duplicates with same name and hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:17
|
||||
msgid "Enter name..."
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:22
|
||||
msgid "with this term"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:22
|
||||
msgid "This term will remain saved."
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:23
|
||||
msgid "Enter a name..."
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:28
|
||||
msgid "I understand it will remove all the terms from my search and keep the term selected above."
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:28
|
||||
msgid "For example, if you searched for categories with keyword Car, it will combine all the found categories into one"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:38
|
||||
msgid "Execute"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:39
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:4
|
||||
msgid "Thank you for installing our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:33
|
||||
msgid "You can open the Bulk Editor Now: %s"
|
||||
msgstr ""
|
||||
1
spec/fixtures/dynamic_finders/plugin_version/bulk-edit-events/composer_file/package.json
vendored
Normal file
1
spec/fixtures/dynamic_finders/plugin_version/bulk-edit-events/composer_file/package.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-events","version":"1.0.37","vgDistName":"bulk-edit-events","vgPreviousVersion":"1.0.36.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","columns-visibility","filters","wp-sheet-editor","user-path"],"pro":["advanced-filters","columns-renaming","formulas","custom-columns","spreadsheet-setup","yoast-seo","wpml","posts-templates","acf","universal-sheet","columns-manager"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/events\/package.json","vgEditorKeys":["tribe_events","tribe_organizer","tribe_venue"]}
|
||||
@@ -0,0 +1,139 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - Events plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - Events 1.0.37\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/events\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-19T01:15:49+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - Events"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/go/events-addon?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=events"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Edit events in spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=events"
|
||||
msgstr ""
|
||||
|
||||
#: events.php:79
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:99
|
||||
#: integrations/the-events-calendar-organizers.php:37
|
||||
#: integrations/the-events-calendar-venues.php:40
|
||||
msgid "Open spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:100
|
||||
#: integrations/the-events-calendar-organizers.php:38
|
||||
#: integrations/the-events-calendar-venues.php:41
|
||||
msgid "Edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:234
|
||||
msgid "Start date"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:239
|
||||
msgid "Start time (H:i:s)"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:243
|
||||
msgid "End date"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:248
|
||||
msgid "End time (H:i:s)"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:254
|
||||
#: integrations/the-events-calendar-venues.php:66
|
||||
msgid "Origin"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:258
|
||||
#: integrations/the-events-calendar-venues.php:70
|
||||
msgid "WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:259
|
||||
#: integrations/the-events-calendar-venues.php:71
|
||||
msgid "Percentage discount"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:266
|
||||
msgid "Venue"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:276
|
||||
msgid "Organizer 1"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:281
|
||||
msgid "Organizer 2"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:286
|
||||
msgid "Organizer 3"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:291
|
||||
msgid "Currency position"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:295
|
||||
msgid "Before cost"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:296
|
||||
msgid "After cost"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:303
|
||||
msgid "Is featured"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:314
|
||||
#: integrations/the-events-calendar-venues.php:78
|
||||
msgid "Show map link"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:325
|
||||
#: integrations/the-events-calendar-venues.php:87
|
||||
msgid "Show map"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-venues.php:57
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:4
|
||||
msgid "Thank you for installing our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:9
|
||||
msgid "This plugin lets you edit events in the spreadsheet and it supports these event plugins: The Events Calendar by ModernTribe (we will add support for more plugins in the next update). This plugin requires one of those plugins."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:10
|
||||
msgid "In the left menu, go to \"WP Sheet Editor > Edit events\""
|
||||
msgstr ""
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-frontend-editor","version":"2.4.1","vgDistName":"bulk-edit-posts-on-frontend","vgPreviousVersion":"2.4.0.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","filters","wp-sheet-editor","user-path","columns-renaming","columns-visibility"],"pro":["acf","advanced-filters","formulas","custom-columns","custom-post-types","woocommerce","universal-sheet","yoast-seo","wpml","posts-templates"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/frontend-sheet\/package.json","vgEditorKeys":["post","page","product"]}
|
||||
@@ -0,0 +1,408 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - Editable Frontend Tables plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - Editable Frontend Tables 2.4.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/frontend-sheet\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-19T01:15:59+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - Editable Frontend Tables"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/extensions/frontend-spreadsheet-editor/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=frontend"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Display spreadsheet editor on the frontend or custom admin pages, create custom spreadsheets as dashboards for apps."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=frontend"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:92
|
||||
msgid "Edit posts"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:122
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:145
|
||||
msgid "Try premium plugin for FREE"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:295
|
||||
msgid "Frontend Spreadsheets"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:300
|
||||
msgid "Login message"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:301
|
||||
msgid "You need to login to view this page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:302
|
||||
msgid "This will be displayed when the current user is not logged in and tries to see a spreadsheet page. We will display a login form after your message."
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:307
|
||||
msgid "Hide admin bar on the frontend"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:308
|
||||
msgid "By default WordPress shows a black bar at the top of the page when a logged in user views a frontend page. The bar lets you access the wp-admin, log out, edit the current page, etc. If you enable this option we will hide that bar and you can use the shortcode: [vg_display_logout_link] to display the logout link."
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:315
|
||||
msgid "Logo"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:316
|
||||
msgid "This logo will be displayed above the spreadsheet in the frontend"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:321
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:322
|
||||
msgid "This menu will be displayed at the top right section above the spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:328
|
||||
msgid "Main Color"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:329
|
||||
msgid "This color will be used as background for the header and footer."
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:336
|
||||
msgid "Links Color"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:337
|
||||
msgid "This color will be used for the menu links, it should be the opposite of the background color. i.e. dark background with light text, or light background with dark text"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:351
|
||||
msgid "All spreadsheets"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:354
|
||||
msgid "Custom columns"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:440
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:441
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:479
|
||||
msgid "Quick settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:586
|
||||
#: views/backend/metabox.php:47
|
||||
msgid " <small>(Premium. <a href=\"%s\" target=\"_blank\">Try for Free for 7 Days</a>)</small>"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:744
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Spreadsheets"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:745
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:747
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:748
|
||||
msgid "Spreadsheet Archives"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:749
|
||||
msgid "Spreadsheet Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:750
|
||||
msgid "Parent Spreadsheet:"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:751
|
||||
msgid "All Spreadsheets"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:752
|
||||
msgid "Add New Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:753
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:754
|
||||
msgid "New Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:755
|
||||
msgid "Edit settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:756
|
||||
msgid "Update settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:757
|
||||
msgid "View Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:758
|
||||
msgid "View Spreadsheets"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:759
|
||||
msgid "Search Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:760
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:761
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:762
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:763
|
||||
msgid "Set featured image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:764
|
||||
msgid "Remove featured image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:765
|
||||
msgid "Use as featured image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:766
|
||||
msgid "Insert into item"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:767
|
||||
msgid "Uploaded to this item"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:768
|
||||
msgid "Spreadsheets list"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:769
|
||||
msgid "Spreadsheets list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:770
|
||||
msgid "Filter items list"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:3
|
||||
msgid "Dokan"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:6
|
||||
msgid "If you fill the options below, we will add a link in the Dokan dashboard, so the vendors can open the spreadsheet from that menu."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:9
|
||||
#: integrations/wcfm/views/metabox.php:9
|
||||
#: integrations/wcmp/views/metabox.php:9
|
||||
msgid "Menu title"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:13
|
||||
msgid "Menu position"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:17
|
||||
msgid "Menu icon"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:18
|
||||
msgid "Enter the name of a fontawesome icon. You can view the <a href=\"https://fontawesome.com/cheatsheet\" target=\"_blank\">icons list here</a>. Example: edit"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wcfm/views/metabox.php:3
|
||||
msgid "WCFM Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wcfm/views/metabox.php:6
|
||||
#: integrations/wcmp/views/metabox.php:6
|
||||
msgid "If you fill the options below, we will add a link in the WCMP dashboard, so the vendors can open the spreadsheet from that menu."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wcmp/views/metabox.php:3
|
||||
msgid "WCMP Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:5
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:6
|
||||
msgid "Watch tutorial"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:8
|
||||
msgid "My account and license"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:13
|
||||
msgid "1. What information do you want to edit on the frontend?"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:31
|
||||
#: views/backend/metabox.php:93
|
||||
#: views/backend/metabox.php:128
|
||||
#: views/backend/metabox.php:167
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:37
|
||||
msgid "Please select the post type and save changes. After you save changes you will be able to see the rest of the settings and instructions."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:51
|
||||
msgid "2. Setup page in the frontend"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:53
|
||||
msgid "You need to set a logo in the settings page. Optionally you can change the background color, links color, and set a header menu."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:55
|
||||
msgid "Open Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:55
|
||||
msgid "Preview Frontend Editor"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:57
|
||||
msgid "When you finish this step you can start using the frontend editor. You can add the frontend page to a menu or share the link with your users."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:61
|
||||
msgid "Add this shortcode to a full-width page: %s"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:63
|
||||
msgid "Page detected: This page contains the shortcode: <b>%s</b> (<a href=\"%s\" target=\"_blank\">Preview</a> - <a href=\"%s\" target=\"_blank\">Edit</a>)"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:67
|
||||
msgid "3. Available tools (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:95
|
||||
msgid "4. Columns visibility and Custom Fields (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:132
|
||||
msgid "5. Filter rows (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:134
|
||||
msgid "You can use this search form to select what rows should appear in the spreadsheet table. You can use {user_id} and we will automatically replace it with the ID of the current user."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:164
|
||||
msgid "Add new"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:172
|
||||
msgid "Learn more about security and user roles (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:175
|
||||
msgid "The editor is available only for logged in users. Unknown users will see a login form automatically."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:177
|
||||
msgid "User roles"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:180
|
||||
msgid "Subscriber role is not allowed to use the editor."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:181
|
||||
msgid "Contributor role can view and edit their own posts only, but they can´t upload images."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:182
|
||||
msgid "Author role can view and edit their own posts only, they can upload images."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:183
|
||||
msgid "Editor role can view and edit all posts and pages."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:188
|
||||
msgid "<li>Shop manager role can view and edit WooCommerce products.</li>"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:193
|
||||
msgid "Administrator role can view and edit everything."
|
||||
msgstr ""
|
||||
|
||||
#: views/frontend/page-template.php:64
|
||||
msgid "Primary Menu"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: views/frontend/page-template.php:112
|
||||
msgid "Edit<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:16
|
||||
msgid "Thank you for installing our plugin. You can start using it in 5 minutes. Please follow these steps:"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:28
|
||||
msgid "Add this shortcode to a full-width page: [vg_sheet_editor editor_id=\"%s\"] and it works automatically."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:29
|
||||
msgid "<a href=\"%s\" target=\"_blank\" class=\"button quick-settings-button\">Quick Settings</a>"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:31
|
||||
msgid "Fill the settings. <a href=\"%s\" target=\"_blank\" class=\"button\">Click here</a>"
|
||||
msgstr ""
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-users","version":"1.4.1","vgDistName":"bulk-edit-user-profiles-in-spreadsheet","vgPreviousVersion":"1.4.0.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","columns-visibility","filters","wp-sheet-editor","user-path"],"pro":["acf","advanced-filters","columns-renaming","formulas","custom-columns","spreadsheet-setup","universal-sheet","columns-manager"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/users-sheet\/package.json","vgEditorKeys":["user"]}
|
||||
@@ -0,0 +1,400 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - Users plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - Users 1.4.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/users-sheet\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-19T01:16:52+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - Users"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/extensions/edit-users-spreadsheet/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=users"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Edit users in spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=users"
|
||||
msgstr ""
|
||||
|
||||
#: inc/buddypress.php:43
|
||||
msgid "BP: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:24
|
||||
msgid "Subscriber"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:39
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:40
|
||||
msgid "Shop manager"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/edd.php:45
|
||||
msgid "Licenses count"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:37
|
||||
msgid "Show WooCommerce Membership columns grouped by plan?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:38
|
||||
msgid "By default, we show membership columns by the assignment order (membership 1 appears first, etc.). Activate this option to show columns for each membership plan by name."
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:74
|
||||
msgid "Active membership plan"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:76
|
||||
msgid "Any"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:119
|
||||
msgid "Membership : %s : Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:133
|
||||
msgid "Membership : %s : Start date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:147
|
||||
msgid "Membership : %s : End date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:164
|
||||
msgid "Membership %d : Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:179
|
||||
msgid "Membership %d : Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:193
|
||||
msgid "Membership %d : Start date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:207
|
||||
msgid "Membership %d : End date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:100
|
||||
msgid "WC Customers: Flush the cache"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:152
|
||||
msgid "Billing first name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:164
|
||||
msgid "Billing last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:176
|
||||
msgid "Billing company"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:188
|
||||
msgid "Billing address 1"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:200
|
||||
msgid "Billing address 2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:212
|
||||
msgid "Billing city"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:224
|
||||
msgid "Billing post code"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:236
|
||||
msgid "Billing country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:248
|
||||
msgid "Billing state"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:260
|
||||
msgid "Billing phone"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:272
|
||||
msgid "Billing email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:285
|
||||
msgid "Shipping first name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:297
|
||||
msgid "Shipping last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:309
|
||||
msgid "Shipping company"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:321
|
||||
msgid "Shipping address 1"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:333
|
||||
msgid "Shipping address 2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:345
|
||||
msgid "Shipping city"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:357
|
||||
msgid "Shipping post code"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:369
|
||||
msgid "Shipping country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:381
|
||||
msgid "Shipping state"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:393
|
||||
msgid "Shipping phone"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:405
|
||||
msgid "Shipping email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:417
|
||||
msgid "Last purchase date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:430
|
||||
msgid "Total spent"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:442
|
||||
msgid "Average order value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:24
|
||||
msgid "Edit in a Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:43
|
||||
msgid "Edit Users"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:49
|
||||
msgid "Bulk Editor"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:70
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:82
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:94
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:106
|
||||
#: users.php:420
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:124
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:140
|
||||
msgid "First name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:152
|
||||
msgid "Last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:164
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:175
|
||||
msgid "Registration date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:188
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:200
|
||||
msgid "Nicename"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:212
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:224
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:236
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:248
|
||||
msgid "Rich editing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:266
|
||||
msgid "Comment shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:283
|
||||
msgid "Color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:304
|
||||
msgid "Show admin bar on frontend"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:329
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:85
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: users.php:132
|
||||
msgid "My license"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:212
|
||||
msgid "Users sheet"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:217
|
||||
msgid "Hide administrators on the spreadsheet?"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:218
|
||||
msgid "We will not show administrator users in the spreadsheet, so no one can see or edit them, even administrators wont be able to see other administrators."
|
||||
msgstr ""
|
||||
|
||||
#: users.php:224
|
||||
msgid "Which user roles will be displayed and edited in the spreadsheet?"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:225
|
||||
msgid "Enter the list of role keys separated by commas. For example, if you only want to edit and see customers on the spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:237
|
||||
msgid "3. Install the free plugin: <a href='https://wordpress.org/plugins/disable-emails/' target='_blank'>Disable emails</a> temporarily before the import, if you don't want WordPress to send any notifications during the import (like email changed, password changed, etc) and don't forget to activate the emails again when you finish importing."
|
||||
msgstr ""
|
||||
|
||||
#: users.php:347
|
||||
#: users.php:563
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:421
|
||||
msgid "Select..."
|
||||
msgstr ""
|
||||
|
||||
#: users.php:422
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:434
|
||||
msgid "Search in user email, login, nicename, display name"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:513
|
||||
msgid "Send welcome email when a new user is imported?"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:521
|
||||
msgid ". <b>Lite version</b> listing \"subscriber\" users. <b>Go pro:</b> edit all the roles (%s), custom fields, export, import, and more"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:544
|
||||
msgid "We find users that have the same ID, email, or username in the CSV and the WP Profile.<br>Please select the CSV column that contains one of those fields.<br>You must import the selected column if you want to update existing users, rows without the value will be created as new."
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:6
|
||||
msgid "Go premium"
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:8
|
||||
msgid "Edit Customers billing and shipping info."
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:9
|
||||
msgid "Update hundreds of user profiles using formulas"
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:10
|
||||
msgid "Advanced search. Find user profiles quickly."
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:11
|
||||
msgid "Create a lot of users quickly."
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:12
|
||||
msgid "Edit custom fields from user profiles, including passwords"
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:13
|
||||
msgid "Edit users with any role, including %s."
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:14
|
||||
msgid "Hide and rename columns in the spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:22
|
||||
msgid "<p><b>Money back guarantee.</b> We´ll give you a refund if the plugin doesn´t work.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:4
|
||||
msgid "Thank you for installing our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:10
|
||||
msgid "<p>Note. You are using the free version and you can edit only users with \"%s\" role.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:15
|
||||
msgid "You can open the Users Bulk Editor Now: <a href=\"%s\" class=\"button\">Click here</a>"
|
||||
msgstr ""
|
||||
762
spec/fixtures/dynamic_finders/plugin_version/come-back/translation_file/languages/come-back.pot
vendored
Normal file
762
spec/fixtures/dynamic_finders/plugin_version/come-back/translation_file/languages/come-back.pot
vendored
Normal file
@@ -0,0 +1,762 @@
|
||||
# Copyright (C) 2020 Sanjeev Aryal
|
||||
# This file is distributed under the same license as the Come Back! package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Come Back! 1.2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-12-18 04:47:51+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Come Back!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:77
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:82
|
||||
msgid "Send email to user after inactive days:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:89
|
||||
msgid "Email Subject:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:96
|
||||
msgid "Email Message:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:111
|
||||
msgid "Pro Tip:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:112
|
||||
msgid ""
|
||||
"There are helpful %1s that you can use on the email subject and email "
|
||||
"message."
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:202
|
||||
#. translators: %1$s - WP.org link; %2$s - same WP.org link.
|
||||
msgid ""
|
||||
"Please rate <strong>Come Back</strong> <a href=\"%1$s\" target=\"_blank\" "
|
||||
"rel=\"noopener noreferrer\">★★★★★</a> on <a "
|
||||
"href=\"%2$s\" target=\"_blank\" rel=\"noopener "
|
||||
"noreferrer\">WordPress.org</a> to help us spread the word. Thank you from "
|
||||
"the Come Back team!"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ActionFactory.php:161
|
||||
msgid "Invalid action - must be a recurring action."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:60
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:75
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:76
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:89
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:19
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:30
|
||||
msgid "Scheduled Actions"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:127
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:129
|
||||
msgid "About Action Scheduler %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:131
|
||||
msgid ""
|
||||
"Action Scheduler is a scalable, traceable job queue for background "
|
||||
"processing large sets of actions. Action Scheduler works by triggering an "
|
||||
"action hook to run at some time in the future. Scheduled actions can also "
|
||||
"be scheduled to run on a recurring schedule."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:139
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:141
|
||||
msgid "Scheduled Action Columns"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:143
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:96
|
||||
msgid "Hook"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:143
|
||||
msgid "Name of the action hook that will be triggered."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:144
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:97
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:144
|
||||
msgid "Action statuses are Pending, Complete, Canceled, Failed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:145
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:98
|
||||
msgid "Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:145
|
||||
msgid "Optional data array passed to the action hook."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:146
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:99
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:146
|
||||
msgid "Optional action group."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:147
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:100
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:147
|
||||
msgid "The action's schedule frequency."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:148
|
||||
msgid "Scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:148
|
||||
msgid "The date/time the action is/was scheduled to run."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:149
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:102
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:149
|
||||
msgid "Activity log for the action."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_DataController.php:133
|
||||
#. translators: %d: amount of time
|
||||
msgid "Stopped the insanity for %d second"
|
||||
msgid_plural "Stopped the insanity for %d seconds"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_DataController.php:137
|
||||
msgid "Attempting to reduce used memory..."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_InvalidActionException.php:21
|
||||
#. translators: 1: action ID 2: schedule
|
||||
msgid "Action [%1$s] has an invalid schedule: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_InvalidActionException.php:40
|
||||
#. translators: 1: action ID 2: arguments
|
||||
msgid ""
|
||||
"Action [%1$s] has invalid arguments. It cannot be JSON decoded to an array. "
|
||||
"$args = %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:92
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:101
|
||||
msgid "Scheduled Date"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:122
|
||||
msgid "Claim ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:129
|
||||
msgid "Run"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:130
|
||||
msgid "Process the action now as if it were run as part of a queue"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:133
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:134
|
||||
msgid "Cancel the action now to avoid it being run in future"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:144
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s year"
|
||||
msgid_plural "%s years"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:149
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s month"
|
||||
msgid_plural "%s months"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:154
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s week"
|
||||
msgid_plural "%s weeks"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:159
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s day"
|
||||
msgid_plural "%s days"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:164
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s hour"
|
||||
msgid_plural "%s hours"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:169
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s minute"
|
||||
msgid_plural "%s minutes"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:174
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s second"
|
||||
msgid_plural "%s seconds"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:201
|
||||
msgid "Now!"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:237
|
||||
#. translators: %s: time interval
|
||||
msgid "Every %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:243
|
||||
msgid "Non-repeating"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:341
|
||||
msgid ""
|
||||
"It appears one or more database tables were missing. Attempting to "
|
||||
"re-create the missing table(s)."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:357
|
||||
#. translators: %s: amount of claims
|
||||
msgid ""
|
||||
"Maximum simultaneous queues already in progress (%s queue). No additional "
|
||||
"queues will begin processing until the current queues are complete."
|
||||
msgid_plural ""
|
||||
"Maximum simultaneous queues already in progress (%s queues). No additional "
|
||||
"queues will begin processing until the current queues are complete."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:374
|
||||
#. translators: %s: process URL
|
||||
msgid ""
|
||||
"A new queue has begun processing. <a href=\"%s\">View actions in-progress "
|
||||
"»</a>"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:377
|
||||
#. translators: %d: seconds
|
||||
msgid "The next queue will begin processing in approximately %d seconds."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:398
|
||||
#. translators: %s: action HTML
|
||||
msgid "Successfully executed action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:402
|
||||
#. translators: %s: action HTML
|
||||
msgid "Successfully canceled action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:406
|
||||
#. translators: %s: action HTML
|
||||
msgid "Successfully processed change for action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:412
|
||||
#. translators: 1: action HTML 2: action ID 3: error message
|
||||
msgid "Could not process change for action: \"%1$s\" (ID: %2$d). Error: %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:458
|
||||
#. translators: %s: date interval
|
||||
msgid " (%s ago)"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:461
|
||||
#. translators: %s: date interval
|
||||
msgid " (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:610
|
||||
msgid "Search hook, args and claim ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_QueueRunner.php:192
|
||||
msgid "Every minute"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_WPCommentCleaner.php:103
|
||||
#. translators: %s: date interval
|
||||
msgid "This data will be deleted in %s."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_WPCommentCleaner.php:108
|
||||
#. translators: 1: next cleanup message 2: github issue URL
|
||||
msgid ""
|
||||
"Action Scheduler has migrated data to custom tables; however, orphaned log "
|
||||
"entries exist in the WordPress Comments table. %1$s <a href=\"%2$s\">Learn "
|
||||
"more »</a>"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:101
|
||||
msgid "Action Scheduler"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:101
|
||||
msgid "This section shows scheduled action counts."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:104
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:108
|
||||
msgid "Action Status"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:110
|
||||
msgid "Count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:111
|
||||
msgid "Oldest Scheduled Date"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:112
|
||||
msgid "Newest Scheduled Date"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:33
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ProgressBar.php:47
|
||||
#. translators: %s php class name
|
||||
msgid "The %s class can only be run within WP CLI."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:59
|
||||
msgid "There are too many concurrent batches, but the run is forced to continue."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:61
|
||||
msgid "There are too many concurrent batches."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:93
|
||||
#. translators: %d: amount of actions
|
||||
msgid "Running %d action"
|
||||
msgid_plural "Running %d actions"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:113
|
||||
msgid "The claim has been lost. Aborting current batch."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:138
|
||||
#. translators: %s refers to the action ID
|
||||
msgid "Started processing action %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:155
|
||||
#. translators: 1: action ID 2: hook name
|
||||
msgid "Completed processing action %1$s with hook: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:170
|
||||
#. translators: 1: action ID 2: exception message
|
||||
msgid "Error processing action %1$s: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php:100
|
||||
#. translators: %d refers to how many scheduled taks were found to run
|
||||
msgid "Found %d scheduled task"
|
||||
msgid_plural "Found %d scheduled tasks"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php:117
|
||||
#. translators: %d refers to the total number of batches executed
|
||||
msgid "%d batch executed."
|
||||
msgid_plural "%d batches executed."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php:136
|
||||
#. translators: %s refers to the exception error message
|
||||
msgid "There was an error running the action scheduler: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php:153
|
||||
#. translators: %d refers to the total number of taskes completed
|
||||
msgid "%d scheduled task completed."
|
||||
msgid_plural "%d scheduled tasks completed."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler.php:195
|
||||
msgid "%s() was called before the Action Scheduler data store was initialized"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php:467
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php:567
|
||||
#. translators: %s: search query
|
||||
msgid "Search results for \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php:672
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:72
|
||||
msgid "action created"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:76
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBLogger.php:134
|
||||
msgid "action canceled"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:82
|
||||
#. translators: %s: context
|
||||
msgid "action started via %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:84
|
||||
msgid "action started"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:92
|
||||
#. translators: %s: context
|
||||
msgid "action complete via %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:94
|
||||
msgid "action complete"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:102
|
||||
#. translators: 1: context 2: exception message
|
||||
msgid "action failed via %1$s: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:105
|
||||
#. translators: %s: exception message
|
||||
msgid "action failed: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:112
|
||||
#. translators: %s: amount of time
|
||||
msgid "action timed out after %s seconds"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:118
|
||||
#. translators: 1: error message 2: filename 3: line
|
||||
msgid "unexpected shutdown: PHP Fatal error %1$s in %2$s on line %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:123
|
||||
msgid "action reset"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:129
|
||||
#. translators: %s: context
|
||||
msgid "action ignored via %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:131
|
||||
msgid "action ignored"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:146
|
||||
#. translators: %s: exception message
|
||||
msgid "There was a failure fetching this action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:148
|
||||
msgid "There was a failure fetching this action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:156
|
||||
#. translators: %s: exception message
|
||||
msgid "There was a failure scheduling the next instance of this action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:227
|
||||
msgid ""
|
||||
"ActionScheduler_Action::$args too long. To ensure the args column can be "
|
||||
"indexed, action args should not be more than %d characters when encoded as "
|
||||
"JSON."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:301
|
||||
msgid "Complete"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:302
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:303
|
||||
msgid "In-progress"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:304
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:305
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:67
|
||||
msgid "Database error."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:75
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:25
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php:44
|
||||
#. translators: %s: error message
|
||||
msgid "Error saving action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:268
|
||||
msgid "Invalid value for select or count parameter. Cannot query actions."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:458
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:548
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:580
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:777
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:819
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:457
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:468
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:495
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:773
|
||||
#. translators: %s: action ID
|
||||
msgid "Unidentified action %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:661
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:627
|
||||
#. translators: %s: group name
|
||||
msgid "The group \"%s\" does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:675
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:607
|
||||
msgid "Unable to claim actions. Database error."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:838
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:740
|
||||
msgid "Invalid action ID. No status found."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:840
|
||||
msgid "Unknown status found for action."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:62
|
||||
msgid "Unable to save action."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:283
|
||||
msgid "Invalid schedule. Cannot save action."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:689
|
||||
#. translators: %s: claim ID
|
||||
msgid "Unable to unlock claim %s. Database error."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:704
|
||||
#. translators: %s: action ID
|
||||
msgid "Unable to unlock claim on action %s. Database error."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:716
|
||||
#. translators: %s: action ID
|
||||
msgid "Unable to mark failure on action %s. Database error."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:840
|
||||
msgid "%s Support for strings longer than this will be removed in a future version."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php:38
|
||||
#. translators: %s: count
|
||||
msgid "Failed <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "Failed <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php:53
|
||||
#. translators: %s: count
|
||||
msgid "In-Progress <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "In-Progress <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:20
|
||||
msgid "Scheduled actions are hooks triggered on a cetain date and time."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:31
|
||||
msgid "Scheduled Action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:33
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:34
|
||||
msgid "Add New Scheduled Action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:35
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:36
|
||||
msgid "Edit Scheduled Action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:37
|
||||
msgid "New Scheduled Action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:38
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:39
|
||||
msgid "View Action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:40
|
||||
msgid "Search Scheduled Actions"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:41
|
||||
msgid "No actions found"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:42
|
||||
msgid "No actions found in trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php:14
|
||||
msgid "Action Group"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/ActionMigrator.php:95
|
||||
msgid "Unable to remove source migrated action %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Config.php:52
|
||||
msgid "Source store must be configured before running a migration"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Config.php:74
|
||||
msgid "Source logger must be configured before running a migration"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Config.php:96
|
||||
msgid "Destination store must be configured before running a migration"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Config.php:118
|
||||
msgid "Destination logger must be configured before running a migration"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Controller.php:142
|
||||
msgid ""
|
||||
"Action Scheduler migration in progress. The list of scheduled actions may "
|
||||
"be incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Runner.php:82
|
||||
#. translators: %d: amount of actions
|
||||
msgid "Migrating %d action"
|
||||
msgid_plural "Migrating %d actions"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Runner.php:107
|
||||
#. translators: 1: source action ID 2: source store class 3: destination action
|
||||
#. ID 4: destination store class
|
||||
msgid "Migrated action with ID %1$d in %2$s to ID %3$d in %4$s"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Sends email notification to inactive customers."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sanjeev Aryal"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.sanjeebaryal.com.np"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php:36
|
||||
msgctxt "post"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php:51
|
||||
msgctxt "post"
|
||||
msgid "In-Progress"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:32
|
||||
msgctxt "Admin menu name"
|
||||
msgid "Scheduled Actions"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,227 @@
|
||||
# Copyright (C) 2020 WP Git Updater
|
||||
# This file is distributed under the GPLv2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Display Display Git Status 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/display-git-status\n"
|
||||
"POT-Creation-Date: 2020-12-22 16:38:51+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.5.4\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"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#: display-git-status.php:86 display-git-status.php:436
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:209
|
||||
#. translators: Asserting the current git branch
|
||||
msgid "You are currently on the %s branch"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:217
|
||||
#. translators: Asserting the current git branch
|
||||
msgid "You are currently on the %s branch, but there are uncommitted changes!"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:227 display-git-status.php:296
|
||||
msgid "Git Icon"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:242 display-git-status.php:297
|
||||
msgid "Display Git Status"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:251
|
||||
msgid ""
|
||||
"The function shell_exec is unavailable. The plugin cannot function "
|
||||
"correctly without it!"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:254
|
||||
msgid ""
|
||||
"The saved location is not a git repository! The git status menu item will "
|
||||
"be hidden from view."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:305
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:316
|
||||
#. translators: Author credit
|
||||
msgid "Git status is brought to you by "
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:320
|
||||
#. translators: Author credit tagline
|
||||
msgid "Automated Source Controlled WordPress Updates."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:352
|
||||
msgid "Git Settings"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:353
|
||||
msgid "Git Repository Location"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:355
|
||||
msgid "Git Status"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:356
|
||||
msgid "Repository Status"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:357
|
||||
msgid "Last Commit"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:369
|
||||
msgid "Settings Saved"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:417
|
||||
msgid "Introduction"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:418
|
||||
msgid ""
|
||||
"Display Git Status is a pretty simple plugin, all it needs is access to the "
|
||||
"shell_exec function and to be pointed at a git repository."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:419
|
||||
msgid ""
|
||||
"The plugin will not perform any state altering operations, it will access "
|
||||
"the repository using read only methods to fetch information like branch "
|
||||
"name, last commit and status."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:426
|
||||
msgid "Admin Bar Item"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:427
|
||||
msgid ""
|
||||
"When directed to a git repository via the \"Git Repository Location\" "
|
||||
"setting the plugin will add a new admin bar item with the git icon."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:428
|
||||
msgid "Next to the icon you can see the branch name currently checked out."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:429
|
||||
msgid ""
|
||||
"Take note of the background color of this item. When the background is red "
|
||||
"it means your local repository is out of sync with git."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:437
|
||||
msgid "The plugin only has one setting, and that's the repository location."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:438
|
||||
msgid "From this its able to perform all of its other functions."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:439
|
||||
msgid ""
|
||||
"The repository location is most likely to be your wp-content folder, or the "
|
||||
"root folder of the install."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:442
|
||||
#. translators: Blog post link
|
||||
msgid "Checkout our blog on %s for some of the common approaches."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:443
|
||||
msgid "WordPress Source Control Strategies"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:446
|
||||
msgid ""
|
||||
"However it can be anything suitable for your use case. It doesn't even have "
|
||||
"to be WordPress, you could use it to be aware of any git repository on the "
|
||||
"local filesystem (that the php process user as access to)."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:453
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:455
|
||||
msgid ""
|
||||
"Display Git Status is a complimentary plugin for Git Source Controlled "
|
||||
"websites, provided by WP Git Updater."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:456
|
||||
msgid ""
|
||||
"WP Git Updater provides an automated plugin and theme update service for "
|
||||
"git source controlled WordPress sites."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:457
|
||||
msgid ""
|
||||
"Use of Git status does not require an active subscription to the WP Git "
|
||||
"Updater service. However we would super greatful if you tried out our 10 "
|
||||
"day free trial."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:460
|
||||
#. translators: About us link
|
||||
msgid "Visit %s for more information."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WP Git Updater"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:468
|
||||
msgid "For more information:"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:470
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:471
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Display Display Git Status"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpgitupdater.dev/docs/latest/plugins#display-display-git-status"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A simple WordPress plugin to display your current git branch and status in "
|
||||
"the admin area."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpgitupdater.dev"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,39 @@
|
||||
# Copyright (C) 2020 Sebastian Pisula
|
||||
# This file is distributed under the same license as the Duplicate Term plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Duplicate Term 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicate-term\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-19T21:27:24+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: duplicate-term\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Duplicate Term"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Duplicate terms."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Sebastian Pisula"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/sebastianpisula/"
|
||||
msgstr ""
|
||||
|
||||
#: duplicate-term.php:77
|
||||
msgid "Clone"
|
||||
msgstr ""
|
||||
|
||||
#: duplicate-term.php:106
|
||||
msgid "%s (Clone %d)"
|
||||
msgstr ""
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/email-test/change_log/CHANGELOG.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/email-test/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Email Test's Changelog
|
||||
|
||||
## 0.1.0 (December 14, 2020)
|
||||
|
||||
* Initial release
|
||||
@@ -0,0 +1,159 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: KASSA.AT For WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2020-12-29 09:28+0100\n"
|
||||
"PO-Revision-Date: 2020-12-29 09:28+0100\n"
|
||||
"Last-Translator: manuelschultz\n"
|
||||
"Language-Team: KASSA.AT\n"
|
||||
"Language: de_DE@formal\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;esc_attr_e;esc_html__\n"
|
||||
"X-Poedit-SearchPath-0: api-connection.php\n"
|
||||
"X-Poedit-SearchPath-1: create-menus.php\n"
|
||||
"X-Poedit-SearchPath-2: kassa-at-for-woocommerce.php\n"
|
||||
"X-Poedit-SearchPath-3: stock-syncro.php\n"
|
||||
|
||||
#: create-menus.php:33
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
"Sie haben nicht die nötigen Berechtigungen um auf die Seite zuzugreifen."
|
||||
|
||||
#: create-menus.php:152
|
||||
msgid "KASSA.AT connection:"
|
||||
msgstr "Verbindung zu KASSA.AT:"
|
||||
|
||||
#: create-menus.php:155
|
||||
msgid "You are already connected to a KASSA.AT account."
|
||||
msgstr "Sie sind bereits mit einer KASSA.AT-Konto. verbunden."
|
||||
|
||||
#: create-menus.php:158
|
||||
msgid "Remove connection to KASSA.AT."
|
||||
msgstr "Entfernen Sie die Verbindung zu KASSA.AT."
|
||||
|
||||
#: create-menus.php:166
|
||||
msgid "Connect with KASSA.AT account"
|
||||
msgstr "Mit KASSA.AT Verbinden"
|
||||
|
||||
#: create-menus.php:171
|
||||
msgid "Dont have a KASSA.AT account? Create one!"
|
||||
msgstr "Haben Sie kein KASSA.AT-Konto? Erstellen Sie eines!"
|
||||
|
||||
#: create-menus.php:177
|
||||
msgid "Synchronize Stocks:"
|
||||
msgstr "Synchronisieren Sie den Lagerstand:"
|
||||
|
||||
#: create-menus.php:178
|
||||
msgid "Choose warehouse:"
|
||||
msgstr "Wählen Sie ein Lager:"
|
||||
|
||||
#: create-menus.php:188
|
||||
msgid "Save changes!"
|
||||
msgstr "Änderungen speichern!"
|
||||
|
||||
#: create-menus.php:195
|
||||
msgid "Synchronize stocks with KASSA.AT."
|
||||
msgstr "Lagerstände mit KASSA.AT synchronisieren."
|
||||
|
||||
#: create-menus.php:196
|
||||
msgid "Use KASSA.AT-data"
|
||||
msgstr "KASSA.AT-Daten als Master verwenden"
|
||||
|
||||
#: create-menus.php:203
|
||||
msgid "Synchronize!"
|
||||
msgstr "Synchronisieren!"
|
||||
|
||||
#: kassa-at-for-woocommerce.php:167
|
||||
msgid "Please follow these instructions to use the plugin:"
|
||||
msgstr "Bitte folgen Sie den Anweisungen, um das Plugin einzurichten:"
|
||||
|
||||
#: kassa-at-for-woocommerce.php:171
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you don't have a KASSA.AT account please create one <a href=\"%s\">here</"
|
||||
"a>."
|
||||
msgstr ""
|
||||
"Wenn Sie kein KASSA.AT Konto haben erstellen Sie eines <a href=\"%s\">hier</"
|
||||
"a>."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:172
|
||||
msgid ""
|
||||
"Use the Button \"Connect with KASSA.AT account\" to connect to the register-"
|
||||
"service."
|
||||
msgstr ""
|
||||
"Klicken Sie den Knopf \"Mit KASSA.AT Verbinden\" um die Verbindung "
|
||||
"herzustellen."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:176
|
||||
msgid ""
|
||||
"Login the KASSA.AT site and create your articles. Note that in order to have "
|
||||
"connect the WP-site and the KASSA.AT-account, you need to fill in the "
|
||||
"\"Artikelnummer\"-field with your article numbers."
|
||||
msgstr ""
|
||||
"Loggen Sie sich in Ihr KASSA.AT Konto ein und legen Sie Ihre Artikel an. "
|
||||
"Beachten Sie, dass Sie das Feld \"Artikelnummer\" ausfüllen (Dies wird "
|
||||
"später noch wichtig)."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:177
|
||||
msgid ""
|
||||
"In your KASSA.AT account, create a warehouse and assign the articles to it."
|
||||
msgstr ""
|
||||
"Legen Sie dann ein Lager in Ihrem KASSA.AT Konto an und befüllen Sie dieses "
|
||||
"mit Ihren Artikeln."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:178
|
||||
msgid ""
|
||||
"Go back to your WordPress page, choose your register-warehouse from your "
|
||||
"KASSA.AT's warehouses."
|
||||
msgstr ""
|
||||
"Gehen Sie nun zurück zu Ihrer WordPress Seite und wählen Sie das Lager aus, "
|
||||
"das Sie eben befüllt haben."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:179
|
||||
msgid ""
|
||||
"Go to your woocommerce-article section and create or edit your articles, use "
|
||||
"the article-number from your KASSA.AT-articles in the \"SKU\"-field and "
|
||||
"activate stock-management."
|
||||
msgstr ""
|
||||
"Gehen Sie zu der Artikelübersicht von Woocommerce und erstellen Sie hier "
|
||||
"Ihre Artikel oder bearbeiten Sie diese. Achten Sie bitte darauf, dass Sie "
|
||||
"die Artikelnummer Ihrer KASSA.AT Artikel in das \"Artikelnummer\"-Feld "
|
||||
"eintragen und aktivieren Sie \"Lagerbestand verwalten\"."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:180
|
||||
msgid ""
|
||||
"Go to the KASSA.AT-menu in your wordpress-site and press the \"Synchronize!"
|
||||
"\" Button."
|
||||
msgstr ""
|
||||
"Gehen Sie auf Ihrer WordPress-Seite in das KASSA.AT Menü zurück und drücken "
|
||||
"Sie auf den \"Synchronisieren!\"-Knopf."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:182
|
||||
msgid ""
|
||||
"And here we go. Whenever a customer buys anything in your local store or a "
|
||||
"customer orders something in your online-store, your KASSA.AT-service will "
|
||||
"have trace of that and will always check, that the onlineshop displays the "
|
||||
"correct amount of items in stock."
|
||||
msgstr ""
|
||||
"Und schon sind wir fertig. Wann immer ein Kunde etwas in Ihrem Geschäft "
|
||||
"kauft, oder etwas in Ihrem Onlineshop bestellt Werden die Lagerstände von "
|
||||
"beiden Systemen angepasst, sodass Sie immer den korrekten Lagerstand im "
|
||||
"Blick haben können."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:188
|
||||
#, php-format
|
||||
msgid "If you have any questions with the setting up, feel free to %s."
|
||||
msgstr "Wenn Sie irgendwelche Fragen haben, %s."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:192
|
||||
msgid "contact us"
|
||||
msgstr "kontaktieren Sie uns"
|
||||
|
||||
#: stock-syncro.php:96
|
||||
#, php-format
|
||||
msgid "Woocommerce Invoice: %s"
|
||||
msgstr "Woocommerce-Rechnung: %s"
|
||||
@@ -0,0 +1,101 @@
|
||||
# Copyright (C) 2021 Santiago Becerra
|
||||
# This file is distributed under the same license as the Manage Admin Columns plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Manage Admin Columns 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/manage-admin-columns\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-01-04T01:22:42+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: manage-admin-columns\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Manage Admin Columns"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/sanbec/manage-admin-columns"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin adds a featured image column to the WordPress admin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Santiago Becerra"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpcombo.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:83
|
||||
#: includes/class-firstcolumnfeaturedimage.php:97
|
||||
msgid "Manage Admin Columns Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:98
|
||||
msgid "Featured Image Column"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:116
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:123
|
||||
msgid "Choose the size and shape of the featured image at the list table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:134
|
||||
msgid "Featured Image Size:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:163
|
||||
msgid "Shape:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:174
|
||||
msgid "Circle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:177
|
||||
msgid "Square"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:188
|
||||
msgid "Lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:199
|
||||
msgid "Open lightbox on image click"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:209
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:220
|
||||
msgid "Show border on hover"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:225
|
||||
msgid "Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:233
|
||||
msgid "Select the post types where you want the featured image column to be displayed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:307
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:363
|
||||
#: includes/class-firstcolumnfeaturedimage.php:364
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,52 @@
|
||||
# Copyright (C) 2020 Teamonair s.r.l.
|
||||
# This file is distributed under the same license as the My FastAPP plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MyFastApp (DEV) 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/my-fastapp\n"
|
||||
"Last-Translator: Francesco Colombo <francesco@teamonair.com>\n"
|
||||
"Language-Team: Francesco Colombo <francesco@teamonair.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-07T19:25:08+01:00\n"
|
||||
"PO-Revision-Date: 2020-12-07 10:10+02\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: my-fastapp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "MyFastApp"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.myfastapp.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin allows you to use your WordPress site as a backend to create your mobile application for iOS and Android. Configure and build your mobile applications directly from the WordPress site."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Teamonair s.r.l."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://myfastapp.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:29
|
||||
#: includes/class-admin.php:30
|
||||
msgid "My FastAPP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:38
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:39
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:40
|
||||
msgid "Download Builds"
|
||||
msgstr ""
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/nalp-ch/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/nalp-ch/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "Nalp.ch",
|
||||
"version": "0.1.0",
|
||||
"description": "Nalp.ch Plugin for easy booking integration",
|
||||
"author": "Nalp.ch - Martin Eigenmann",
|
||||
"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"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.6.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.21.0",
|
||||
"iframe-resizer": "^4.2.11",
|
||||
"react-iframe-resizer-super": "^0.2.2"
|
||||
}
|
||||
}
|
||||
51
spec/fixtures/dynamic_finders/plugin_version/post-status-indicator/composer_file/package.json
vendored
Normal file
51
spec/fixtures/dynamic_finders/plugin_version/post-status-indicator/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "psi-react-app",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@wordpress/components": "^11.1.3",
|
||||
"react": "^16.14.0",
|
||||
"react-dom": "^16.14.0",
|
||||
"react-router-dom": "^5.1.2",
|
||||
"use-debounce": "^5.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "webpack --watch",
|
||||
"build": "cross-env NODE_ENV=production node_modules/.bin/webpack"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.9.0",
|
||||
"@babel/preset-env": "^7.9.0",
|
||||
"@babel/preset-react": "^7.9.4",
|
||||
"babel-loader": "^8.1.0",
|
||||
"browser-sync": "^2.26.7",
|
||||
"browser-sync-webpack-plugin": "^2.2.2",
|
||||
"cross-env": "^7.0.2",
|
||||
"css-loader": "^3.4.2",
|
||||
"file-loader": "^6.0.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.13.1",
|
||||
"sass-loader": "^8.0.2",
|
||||
"webpack": "^4.42.1",
|
||||
"webpack-cli": "^3.3.11"
|
||||
},
|
||||
"description": "Post Status Indicator WordPress plugin React dashboard",
|
||||
"main": "webpack.config.js",
|
||||
"author": "Sean Hayes",
|
||||
"license": "GPL-2.0+"
|
||||
}
|
||||
@@ -572,6 +572,8 @@
|
||||
|
||||
<!-- advanced-sermons -->
|
||||
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/asp-frontend.css?ver=1.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/css/asp-frontend.css?ver=1.8" media="all">
|
||||
<link rel="stylesheet" id="asp-media-player-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/media-player/asp-media-player.css?ver=1.8" media="all">
|
||||
|
||||
|
||||
<!-- advanced-spoiler -->
|
||||
@@ -614,6 +616,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advert/js/advertfe.min.js?ver=1.0.5"></script>
|
||||
|
||||
|
||||
<!-- advertisement-space -->
|
||||
<link rel="stylesheet" id="advertisement-space-css" href="http://wp.lab/wp-content/plugins/advertisement-space/public/css/advertisement-space-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/advertisement-space/public/js/advertisement-space-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- advice-box -->
|
||||
<link rel="stylesheet" id="advice-box-css" href="http://wp.lab/wp-content/plugins/advice-box/public/css/advice-box-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advice-box/public/js/advice-box-public.js?ver=1.0.2"></script>
|
||||
@@ -1197,6 +1204,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/aspen-to-weaver-xtreme/js/aspen2wx_jslib.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- assistant7 -->
|
||||
<link rel="stylesheet" id="assistant7-css" href="http://wp.lab/wp-content/plugins/assistant7/public/css/assistant7-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/assistant7/public/js/assistant7-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- astra-widgets -->
|
||||
<link rel="stylesheet" id="astra-widgets-style-css" href="http://wp.lab/wp-content/plugins/astra-widgets/assets/css/unminified/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -2761,6 +2773,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/cashback-coupon-lite/public/js/cashback-coupon-lite-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cashtomer -->
|
||||
<link rel="stylesheet" id="cashtomer-css" href="http://wp.lab/wp-content/plugins/cashtomer/public/css/cashtomer-points-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/cashtomer/public/js/cashtomer-points-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- catch-breadcrumb -->
|
||||
<link rel="stylesheet" id="catch-breadcrumb-css" href="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/css/catch-breadcrumb-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/js/catch-breadcrumb-public.js?ver=1.0.0"></script>
|
||||
@@ -3429,6 +3446,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/codeprey-mi-video-popup/inc/placeholder.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- codexin-image-gallery -->
|
||||
<link rel="stylesheet" id="cdxn-ig-vendorcss-css" href="http://wp.lab/wp-content/plugins/codexin-image-gallery/assets/vendor/styles/plugins.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="codexin-image-gallery-css" href="http://wp.lab/wp-content/plugins/codexin-image-gallery/assets/styles/cdxn-ig.min.css?ver=1.0.1" media="all">
|
||||
|
||||
|
||||
<!-- codup-woocommerce-custom-fields -->
|
||||
<link rel="stylesheet" id="Codup Woocommerce Custom Fields- codupads-styles-css" href="http://wp.lab/wp-content/plugins/codup-woocommerce-custom-fields/lib/codupads/styles/style.css?ver=1.1.1.7" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/codup-woocommerce-custom-fields/lib/codupads/scripts/adscript.js?ver=1.1.1.7"></script>
|
||||
@@ -3458,6 +3480,21 @@
|
||||
<link rel="stylesheet" id="supsystic-for-all-admin-scs-css" href="http://wp.lab/wp-content/plugins/coming-soon-by-supsystic/css/supsystic-for-all-admin.css?ver=1.3.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- coming-soon-by-taspristudio -->
|
||||
<link rel="stylesheet" id="csts-bootstrap-css" href="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="csts-style-css" href="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/css/style.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="csts-responsive-css" href="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/css/responsive.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/popper.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/parallax.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/jquery.countdown.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/csts-public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- coming-soon-for-woocommerce -->
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-for-woocommerce/assets/js/coming-soon-wc.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- comma-diacritics -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/comma-diacritics/js/commadias.plugin.js?ver=0.3"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/comma-diacritics/js/comma_dias_check.js?ver=0.3"></script>
|
||||
@@ -3544,6 +3581,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- conditional-taxonomy-option -->
|
||||
<link rel="stylesheet" id="cto-acf-css" href="http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/css/cto-acf-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/js/cto-acf-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- conformis-cookie-banner -->
|
||||
<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">
|
||||
@@ -4192,6 +4234,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dakpion/public/js/dakpion-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- darklup-lite-wp-dark-mode -->
|
||||
<link rel="stylesheet" id="darkluplite-style-css" href="http://wp.lab/wp-content/plugins/darklup-lite-wp-dark-mode/assets/css/darkluplite-style.css?ver=1.0.0" media="">
|
||||
|
||||
|
||||
<!-- darkmode -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/darkmode/js/darkmode.min.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -4699,6 +4745,11 @@
|
||||
<script type="text/javascript" src="//wp.lab/wp-content/plugins/easy-social-sharing/assets/js/frontend/easy-social-sharing.min.js?ver=1.3.0"></script>
|
||||
|
||||
|
||||
<!-- easy-store-vacation -->
|
||||
<link rel="stylesheet" id="easy_store_vacation-css" href="http://wp.lab/wp-content/plugins/easy-store-vacation/public/css/easy_store_vacation-public.css?ver=1.1.5" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-store-vacation/public/js/easy_store_vacation-public.js?ver=1.1.5"></script>
|
||||
|
||||
|
||||
<!-- easy-swipebox -->
|
||||
<link rel="stylesheet" id="easy-swipebox-css" href="http://wp.lab/wp-content/plugins/easy-swipebox/public/css/swipebox.min.css?ver=1.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-swipebox/public/js/jquery.swipebox.min.js?ver=1.1.0"></script>
|
||||
@@ -4754,6 +4805,7 @@
|
||||
<!-- easyappointments -->
|
||||
<link rel="stylesheet" id="easyappointments-css" href="http://wp.lab/wp-content/plugins/easyappointments/public/css/easyappointments-public.css?ver=1.3.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/easyappointments/public/js/easyappointments-public.js?ver=1.3.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/easyappointments/public/js/easyappointments-iframe.js?ver=1.3.0"></script>
|
||||
|
||||
|
||||
<!-- easycoder -->
|
||||
@@ -5051,6 +5103,15 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/envator/assets/js/cssParser.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- envychimp -->
|
||||
<link rel="stylesheet" id="envy-chimp-font-family-css" href="http://wp.lab/wp-content/plugins/envychimp/public/css/envy-chimp-font-family.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-chimp-font-awesome-css" href="http://wp.lab/wp-content/plugins/envychimp/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-chimp-main-css" href="http://wp.lab/wp-content/plugins/envychimp/public/css/envy-chimp-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-chimp-responsive-css" href="http://wp.lab/wp-content/plugins/envychimp/public/css/envy-chimp-responsive.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/envychimp/public/js/envy-chimp-public.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/envychimp/public/js/ajaxChimp.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- envynotifs -->
|
||||
<link rel="stylesheet" id="envy-notifs-font-awesome-css" href="http://wp.lab/wp-content/plugins/envynotifs/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-notifs-bootstrap-css" href="http://wp.lab/wp-content/plugins/envynotifs/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
@@ -5070,6 +5131,12 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/envypopup/public/js/jquery.cookie.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- envypreloader -->
|
||||
<link rel="stylesheet" id="envy-preloader-main-css" href="http://wp.lab/wp-content/plugins/envypreloader/public/css/envy-preloader-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/envypreloader/public/js/jquery.cookie.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/envypreloader/public/js/envy-preloader-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- eorzea-time -->
|
||||
<link rel="stylesheet" id="eorzea-time-css" href="http://wp.lab/wp-content/plugins/eorzea-time/css/eorzea.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/eorzea-time/js/eorzea.js?ver=1.0.0"></script>
|
||||
@@ -5619,6 +5686,11 @@
|
||||
<link rel="stylesheet" id="feedzy-rss-feeds-css" href="http://wp.lab/wp-content/plugins/feedzy-rss-feeds/css/feedzy-rss-feeds.css?ver=3.2.6" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- feename -->
|
||||
<link rel="stylesheet" id="fee-management-css" href="http://wp.lab/wp-content/plugins/feename/public/css/fee-management-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/feename/public/js/fee-management-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- fibotalk-live-chat -->
|
||||
<link rel="stylesheet" id="fibotalk-live-chat-css" href="http://wp.lab/wp-content/plugins/fibotalk-live-chat/public/css/fibotalk-live-chat-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fibotalk-live-chat/public/js/fibotalk-live-chat-public.js?ver=1.0.0"></script>
|
||||
@@ -5951,6 +6023,9 @@
|
||||
<link rel="stylesheet" id="anwpfl_flags_16-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/world-flags-sprite/stylesheets/flags16.css?ver=0.4.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/js/anwpfl-public.min.js?ver=0.4.2"></script>
|
||||
<link rel="stylesheet" id="anwpfl_styles-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles-compatible.css?ver=0.4.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="anwpfl_styles-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles.min.css?ver=0.4.2" media="all">
|
||||
<link rel="stylesheet" id="modaal-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.css?ver=0.4.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.js?ver=0.4.2"></script>
|
||||
|
||||
|
||||
<!-- football-match-tracker -->
|
||||
@@ -6225,6 +6300,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/game-showcase/public/js/game-showcase-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- gamification-email-collector-mikehit -->
|
||||
<link rel="stylesheet" id="mikehit-plugin-css" href="http://wp.lab/wp-content/plugins/gamification-email-collector-mikehit/public/css/mikehit-plugin-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/gamification-email-collector-mikehit/public/js/mikehit-plugin-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- gaming-delivery-network -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gaming-delivery-network/gdninit.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -7176,6 +7256,12 @@
|
||||
<link rel="stylesheet" id="hpr-style-css" href="http://wp.lab/wp-content/plugins/hotline-phone-ring/assets/css/app.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- hotspot -->
|
||||
<link rel="stylesheet" id="xolo-hotspot-public-css" href="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/css/xolo-hotspot-public.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/jquery.powertip.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/xolo-hotspot-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- hover-effects -->
|
||||
<link rel="stylesheet" id="hover-effects-css" href="http://wp.lab/wp-content/plugins/hover-effects/asset/css/hover.css?ver=2.1" type="text/css" media="all">
|
||||
|
||||
@@ -7452,6 +7538,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/immonex-kickstart-team/skins/default/js/index.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- import-vk-comments -->
|
||||
<link rel="stylesheet" id="import-vk-comments-css" href="http://wp.lab/wp-content/plugins/import-vk-comments/public/css/import-vk-comments-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/import-vk-comments/public/js/import-vk-comments-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- improved-let-it-snow -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/improved-let-it-snow/script/snowstorm-min.js?ver=3.5"></script>
|
||||
|
||||
@@ -8010,6 +8101,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kanzu-support-desk/assets/js/ksd-public.js?ver=2.4.5"></script>
|
||||
|
||||
|
||||
<!-- kata-plus -->
|
||||
<link rel="stylesheet" id="grid-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/libraries/grid.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="kata-plus-theme-styles-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/theme-styles.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="kata-plus-sticky-box-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/sticky-box.css?ver=1.0.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/sticky-box.js?ver=1.0.3"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/kata-plus-inline.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- katalyst-video-plus -->
|
||||
<link rel="stylesheet" id="katalyst-video-plus-css" href="http://wp.lab/wp-content/plugins/katalyst-video-plus/assets/css/kvp.css?ver=3.2.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/katalyst-video-plus/assets/js/kvp.js?ver=3.2.1"></script>
|
||||
@@ -8635,6 +8734,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/livetwitch/public/js/twitch-public.js?ver=0.0.2"></script>
|
||||
|
||||
|
||||
<!-- llc-tax -->
|
||||
<link rel="stylesheet" id="llc_main-css" href="http://wp.lab/wp-content/plugins/llc-tax/assets/css/llc_main.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/llc-tax/assets/js/llc_main.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- lnd-for-wp -->
|
||||
<link rel="stylesheet" id="lnd-for-wp-css" href="http://wp.lab/wp-content/plugins/lnd-for-wp/public/css/lnd-for-wp-public.css?ver=0.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lnd-for-wp/public/js/lnd-for-wp-public.js?ver=0.1.0"></script>
|
||||
@@ -11379,6 +11483,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/popup-scroll/public/assets/js/public.js?ver=2.0.2"></script>
|
||||
|
||||
|
||||
<!-- popup-tb -->
|
||||
<link rel="stylesheet" id="popuptb-css-css" href="http://wp.lab/wp-content/plugins/popup-tb/css/popuptb-style.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/popup-tb/js/popuptb-js.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- popup4phone -->
|
||||
<link rel="stylesheet" id="popup4phone-popup-css" href="http://wp.lab/wp-content/plugins/popup4phone/css/popup4phone.css?ver=1.2.4" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="popup4phone-popup_bootstrap-partial-css" href="http://wp.lab/wp-content/plugins/popup4phone/vendor/bootstrap-partial/bootstrap-partial.css?ver=1.2.4" type="text/css" media="all">
|
||||
@@ -11739,6 +11848,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-search/assets/js/frontend.js?ver=0.0.2"></script>
|
||||
|
||||
|
||||
<!-- pretty-opt-in-lite -->
|
||||
<link rel="stylesheet" id="pretty-front-style-css" href="http://wp.lab/wp-content/plugins/pretty-opt-in-lite/assets/css/front.css?ver=1.0.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/pretty-opt-in-lite//assets/js/library/ionicons.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pretty-opt-in-lite/assets/js/locker-front.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- pretty-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/charming.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/TweenMax.min.js?ver=1.0.0"></script>
|
||||
@@ -12034,6 +12149,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/pyxis-mobile-menu/assets/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- q-events-light -->
|
||||
<link rel="stylesheet" id="events-css" href="http://wp.lab/wp-content/plugins/q-events-light/public/css/events-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/q-events-light/public/js/events-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- q2w3-fixed-widget -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/q2w3-fixed-widget/js/q2w3-fixed-widget.min.js?ver=5.0.4"></script>
|
||||
|
||||
@@ -13176,6 +13296,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seatgeek-affiliate-tickets/public/js/seatgeek-affiliate-tickets-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- sebastian -->
|
||||
<link rel="stylesheet" id="sebastian-css" href="http://wp.lab/wp-content/plugins/sebastian/public/css/sebastian-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sebastian/public/js/sebastian-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- section-block -->
|
||||
<link rel="stylesheet" id="wdp/section-block-css" href="http://wp.lab/wp-content/plugins/section-block/build/block.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/section-block/build/background-position-events.min.js?ver=1.0.0"></script>
|
||||
@@ -13468,6 +13593,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shiftnav-responsive-mobile-menu/assets/js/shiftnav.min.js?ver=1.6.1.2"></script>
|
||||
|
||||
|
||||
<!-- ship-to-multiple-addresses -->
|
||||
<link rel="stylesheet" id="ship_to_multiple_addresses-css" href="http://wp.lab/wp-content/plugins/ship-to-multiple-addresses/public/css/ship_to_multiple_addresses-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/ship-to-multiple-addresses/public/js/ship_to_multiple_addresses-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- shlwhenneed -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shlwhenneed/shlwhenneed.js?ver=1.0.5"></script>
|
||||
|
||||
@@ -13557,6 +13687,13 @@
|
||||
<link rel="stylesheet" id="atw-posts-style-sheet-css" href="http://wp.lab/wp-content/plugins/show-posts/atw-posts-style.min.css?ver=1.3.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- show-product-variations-for-woocommerce -->
|
||||
<link rel="stylesheet" id="wsv-css" href="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/wsv-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wsv-dataTables-min-css" href="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/datatables.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/datatables.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/wsv-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- show-remote-ip -->
|
||||
<link rel="stylesheet" id="show-remote-ip-css" href="http://wp.lab/wp-content/plugins/show-remote-ip/public/css/show-remote-ip-public.css?ver=0.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/show-remote-ip/public/js/show-remote-ip-public.js?ver=0.0.1"></script>
|
||||
@@ -14768,6 +14905,12 @@
|
||||
<link rel="stylesheet" id="sticky-social-icons-css" href="http://wp.lab/wp-content/plugins/sticky-social-icons/public/assets/build/css/sticky-social-icons-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- sticky-social-media-icons -->
|
||||
<link rel="stylesheet" id="sticky-social-media-icons-css" href="http://wp.lab/wp-content/plugins/sticky-social-media-icons/public/css/sticky-social-media-icons-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sticky-social-media-icons/public/js/sticky-social-media-icons-public.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="sticky-icons-display.css-css" href="http://wp.lab/wp-content/plugins/sticky-social-media-icons/assets/sticky-icons-display.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- stickyadmin -->
|
||||
<link rel="stylesheet" id="sticky-fonts-css" href="http://wp.lab/wp-content/plugins/stickyadmin/lib/css/sticky-fonts.css?ver=1.0.6" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="sticky-adminbar-css" href="http://wp.lab/wp-content/plugins/stickyadmin/lib/css/sticky-adminbar.css?ver=1.0.6" type="text/css" media="all">
|
||||
@@ -14991,6 +15134,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/surplus-essentials/public/js/surplus-essentials-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- survey-maker -->
|
||||
<link rel="stylesheet" id="survey-maker-css" href="http://wp.lab/wp-content/plugins/survey-maker/public/css/survey-maker-public.css?ver=1.0.2" media="all">
|
||||
|
||||
|
||||
<!-- survey-popup -->
|
||||
<link rel="stylesheet" id="survey-popupfont-awesome-css" href="http://wp.lab/wp-content/plugins/survey-popup/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="survey-popup-css" href="http://wp.lab/wp-content/plugins/survey-popup/public/css/survey-popup-public.css?ver=1.0.0" media="all">
|
||||
@@ -15455,6 +15602,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themify-builder/themify/js/main.min.js?ver=4.1.3"></script>
|
||||
<link rel="preload" href="http://wp.lab/wp-content/plugins/themify-builder/css/themify-builder-style.min.css?ver=4.1.3" as="style">
|
||||
<link rel="stylesheet" id="themify-common-css" href="http://wp.lab/wp-content/plugins/themify-builder/themify/css/themify.common.min.css?ver=4.1.3" type="text/css" media="all">
|
||||
<link rel="preload" href="http://wp.lab/wp-content/plugins/themify-builder/themify/css/base.min.css?ver=4.1.3" as="style">
|
||||
<link rel="preload" href="http://wp.lab/wp-content/plugins/themify-builder/css/modules/parallax.min.css?ver=4.1.3" as="style">
|
||||
|
||||
|
||||
<!-- themify-builder-lite -->
|
||||
@@ -15858,6 +16007,11 @@
|
||||
<link rel="stylesheet" id="turbocharged-testimonial-block-style-css" href="http://wp.lab/wp-content/plugins/turbocharged-testimonial-block/build/style.build.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- turn-rank-math-faq-block-to-accordion -->
|
||||
<link rel="stylesheet" id="RMFA-css" href="http://wp.lab/wp-content/plugins/turn-rank-math-faq-block-to-accordion/assets/css/style.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/turn-rank-math-faq-block-to-accordion/assets/js/RMFA-JS.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- tutorial-blocks-gutenberg-blocks-collection -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tutorial-blocks-gutenberg-blocks-collection/vendor/codemirror/addon/mode/loadmode.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -19236,6 +19390,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-player/assets/js/wp-player.js?ver=2.6.1"></script>
|
||||
|
||||
|
||||
<!-- wp-podcasts-manager -->
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-podcasts-manager/assets/js/zl_pdm_script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-politic -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-politic/assets/js/popper.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-politic/assets/js/jquery.magnific-popup.min.js?ver=1.0.0"></script>
|
||||
@@ -20816,6 +20974,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/datatable/jquery.dataTables.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- zoom-img -->
|
||||
<link rel="stylesheet" id="zoomimg-css-css" href="http://wp.lab/wp-content/plugins/zoom-img/css/zoomimg-mBox.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/zoom-img/js/zoomimg-mBox.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- zoorvy-social-share -->
|
||||
<link rel="stylesheet" id="zoorvy-social-share-css" href="http://wp.lab/wp-content/plugins/zoorvy-social-share/public/css/zoorvy-social-share-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zoorvy-social-share/public/js/zoorvy-social-share-public.js?ver=1.0.0"></script>
|
||||
|
||||
31
spec/fixtures/dynamic_finders/plugin_version/remote-cache-purger/change_log/changelog.txt
vendored
Normal file
31
spec/fixtures/dynamic_finders/plugin_version/remote-cache-purger/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
## CHANGELOG
|
||||
|
||||
= 1.0.4.1 - 2020/12 =
|
||||
* UPDATE: Display number of purged files
|
||||
|
||||
= 1.0.4 - 2020/12 =
|
||||
|
||||
* FIX: HTTP method - show response
|
||||
|
||||
= 1.0.3 - 2020/12 =
|
||||
|
||||
* ADDED: truncate admin notice
|
||||
* ADDED: additional domains
|
||||
* ADDED: enable/disable purge
|
||||
* ADDED: Response Count Header
|
||||
* UPDATE: Only if Response Count Header is set, number of purged items will be shown
|
||||
* FIX: Add query to url
|
||||
|
||||
= 1.0.2 - 2020/12 =
|
||||
|
||||
* Debug
|
||||
|
||||
= 1.0.1 - 2020/12 =
|
||||
|
||||
* Cleaning Up
|
||||
* Added Ajax requests
|
||||
* Added logging to Wordpress error log
|
||||
|
||||
= 1.0.0 - 2020/12 =
|
||||
|
||||
* Init
|
||||
@@ -0,0 +1,18 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.4 - 2020-12-30 =
|
||||
* Fix: Link fixes of product in wishlist report
|
||||
|
||||
= 1.0.3 - 2020-12-30 =
|
||||
* New: Wishlist report to show product with wishlisted count
|
||||
|
||||
= 1.0.2 - 2020-12-28 =
|
||||
* Fix: Css fixes and improvement
|
||||
|
||||
= 1.0.1 - 2020-12-26 =
|
||||
* New: Support for WordPress 5.6
|
||||
* New: Support for WooCommerce 4.8.0
|
||||
|
||||
= 1.0.0 - 2020-12-26 =
|
||||
* Initial Release
|
||||
|
||||
@@ -0,0 +1,610 @@
|
||||
# Copyright (C) 2020 Growniche Inc.
|
||||
# This file is distributed under the same license as the Simple stripe checkout plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simple stripe checkout 1.1.8\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-stripe-checkout\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-30T13:00:00+09:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: simple-stripe-checkout\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Simple Stripe Checkout"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://s-page.biz/ssc/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "It is a plug-in that can install the payment button of the payment platform \"Stripe\"."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Growniche Inc."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.growniche.co.jp/"
|
||||
msgstr ""
|
||||
|
||||
#. 初期設定
|
||||
msgid "Initial setting"
|
||||
msgstr ""
|
||||
|
||||
#. 商品一覧
|
||||
msgid "Product list"
|
||||
msgstr ""
|
||||
|
||||
#. 新規登録
|
||||
msgid "Product registration"
|
||||
msgstr ""
|
||||
|
||||
#. 変更
|
||||
msgid "Product edit"
|
||||
msgstr ""
|
||||
|
||||
#. メール設定
|
||||
msgid "Mail setting"
|
||||
msgstr ""
|
||||
|
||||
#. 保存
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#. 登録
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
#. 検索
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. 削除
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#. 決済完了
|
||||
msgid "Payment completed"
|
||||
msgstr ""
|
||||
|
||||
#. キャンセル完了
|
||||
msgid "Cancellation completed"
|
||||
msgstr ""
|
||||
|
||||
#. 公開キー
|
||||
msgid "Public key"
|
||||
msgstr ""
|
||||
|
||||
#. シークレットキー
|
||||
msgid "Secret key"
|
||||
msgstr ""
|
||||
|
||||
#. チェックボックス
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#. 商品名
|
||||
msgid "Product name"
|
||||
msgstr ""
|
||||
|
||||
#. 商品コード
|
||||
msgid "Product code"
|
||||
msgstr ""
|
||||
|
||||
#. ショートコード
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#. 一括
|
||||
msgid "Lump sum"
|
||||
msgstr ""
|
||||
|
||||
#. 定期
|
||||
msgid "Subscription"
|
||||
msgstr ""
|
||||
|
||||
#. 販売者向けメール設定
|
||||
msgid "Email settings for seller"
|
||||
msgstr ""
|
||||
|
||||
#. 受信メールアドレス
|
||||
msgid "Received email address"
|
||||
msgstr ""
|
||||
|
||||
#. 送信元メールアドレス
|
||||
msgid "Sender email address"
|
||||
msgstr ""
|
||||
|
||||
#. 購入者向けメール設定
|
||||
msgid "Email settings for buyer"
|
||||
msgstr ""
|
||||
|
||||
#. 即時決済をしますか?
|
||||
msgid "Do you want to make an immediate payment?"
|
||||
msgstr ""
|
||||
|
||||
#. 提供者
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. 価格
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#. 通貨
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. StripのプランID/価格ID
|
||||
msgid "Strip Plan ID / Price ID"
|
||||
msgstr ""
|
||||
|
||||
#. 内容
|
||||
msgid "Contents"
|
||||
msgstr ""
|
||||
|
||||
#. お申込み内容
|
||||
msgid "Application details"
|
||||
msgstr ""
|
||||
|
||||
#. お支払いに使われたカード下四桁
|
||||
msgid "Last 4 digits of the card used for payment"
|
||||
msgstr ""
|
||||
|
||||
#. お支払いに使われるカード下四桁
|
||||
msgid "Last 4 digits of the card to be used for payment"
|
||||
msgstr ""
|
||||
|
||||
#. 初回引落予定日
|
||||
msgid "First scheduled withdrawal date"
|
||||
msgstr ""
|
||||
|
||||
#. 今すぐ購入
|
||||
msgid "Buy now"
|
||||
msgstr ""
|
||||
|
||||
#. ボタン名
|
||||
msgid "Button label"
|
||||
msgstr ""
|
||||
|
||||
#. 継続
|
||||
msgid "Continuation"
|
||||
msgstr ""
|
||||
|
||||
#. 月次
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#. 年次
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#. 購入者様Eメール
|
||||
msgid "Buyer email"
|
||||
msgstr ""
|
||||
|
||||
#. お支払いのキャンセルについて
|
||||
msgid "Cancellation of payment"
|
||||
msgstr ""
|
||||
|
||||
#. 定期支払のキャンセル
|
||||
msgid "Cancellation of subscription"
|
||||
msgstr ""
|
||||
|
||||
#. お支払いに関するお問い合わせ先
|
||||
msgid "Contact for payment"
|
||||
msgstr ""
|
||||
|
||||
#. 次回引落予定日
|
||||
msgid "Next scheduled withdrawal date"
|
||||
msgstr ""
|
||||
|
||||
#. 様
|
||||
msgid "Mr/Ms"
|
||||
msgstr ""
|
||||
|
||||
#. 請求間隔
|
||||
msgid "Billing frequency"
|
||||
msgstr ""
|
||||
|
||||
#. Webhook設定
|
||||
msgid "Webhook setting"
|
||||
msgstr ""
|
||||
|
||||
#. 無料トライアル
|
||||
msgid "Free trial"
|
||||
msgstr ""
|
||||
|
||||
#. 請求タイミング
|
||||
msgid "Billing timing"
|
||||
msgstr ""
|
||||
|
||||
#. この商品のショートコード
|
||||
msgid "Short code for this product"
|
||||
msgstr ""
|
||||
|
||||
#. キャンセルされたお支払い
|
||||
msgid "Canceled payment"
|
||||
msgstr ""
|
||||
|
||||
#. 以上
|
||||
msgid "or more"
|
||||
msgstr ""
|
||||
|
||||
#. 複製
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#. 編集
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#. 複数ある場合はカンマで区切ってください。
|
||||
msgid "If there are more than one, separate them with commas."
|
||||
msgstr ""
|
||||
|
||||
#. Stripeの公開キーが正しくありません。
|
||||
msgid "Stripe's public key is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. Stripeのシークレットキーが正しくありません。
|
||||
msgid "Stripe's secret key is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 初期設定の保存が完了しました。
|
||||
msgid "The initial settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#. 定期支払キャンセル完了
|
||||
msgid "Recurring payment cancellation completed"
|
||||
msgstr ""
|
||||
|
||||
#. メールを送信しました。
|
||||
msgid "Mail has send."
|
||||
msgstr ""
|
||||
|
||||
#. 購入者宛メールを送信しました。
|
||||
msgid "Completed sending email to purchaser."
|
||||
msgstr ""
|
||||
|
||||
#. 販売者宛メールを送信しました。
|
||||
msgid "Completed sending email to seller."
|
||||
msgstr ""
|
||||
|
||||
#. メールの送信に失敗しました。
|
||||
msgid "Failed to send the email."
|
||||
msgstr ""
|
||||
|
||||
#.購入者宛メールの送信に失敗しました。
|
||||
msgid "Failed to send the email to the purchaser."
|
||||
msgstr ""
|
||||
|
||||
#. 販売者宛メールの送信に失敗しました。
|
||||
msgid "Failed to send the email to the seller."
|
||||
msgstr ""
|
||||
|
||||
#. 販売者向け受信メールアドレスが正しくありません。
|
||||
msgid "The received email address for the seller is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 販売者向け送信元メルアドが正しくありません。
|
||||
msgid "The sender email address for the seller is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 購入者向け送信元メルアドが正しくありません。
|
||||
msgid "The sender email address for the purchaser is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 即時決済のON/OFFが正しくありません。
|
||||
msgid "The ON / OFF of immediate payment is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. メール設定の保存が完了しました。
|
||||
msgid "Your email settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#. StripeのWebhook情報を取得できません。
|
||||
msgid "Unable to get Stripe webhook information."
|
||||
msgstr ""
|
||||
|
||||
#. StripeにWebhookを登録できません。
|
||||
msgid "Unable to register Webhook with Stripe."
|
||||
msgstr ""
|
||||
|
||||
#. StripeにWebhookを登録しました。
|
||||
msgid "Completed registering Webhook on Stripe."
|
||||
msgstr ""
|
||||
|
||||
#. ショートコードをコピーしました
|
||||
msgid "The shortcode was copied."
|
||||
msgstr ""
|
||||
|
||||
#. クリックしてコピーする。
|
||||
msgid "Click to copy."
|
||||
msgstr ""
|
||||
|
||||
#. OFFの場合は、24時間後に決済確定となるメールが配信されますが、実際は、決済確定の為のリンクが送られ、手動で確定する必要があります。迷惑メールなどでメールが届かない場合は、定期的にStripe管理画面での確認が必要です。
|
||||
msgid "If it is OFF, an email will be sent to confirm the payment after 24 hours, but in reality, a link to confirm the payment will be sent and you will need to confirm it manually. If you do not receive the e-mail due to unsolicited e-mail, you need to check it regularly on the Stripe management screen."
|
||||
msgstr ""
|
||||
|
||||
#. お支払いが完了しました。
|
||||
msgid "Payment is complete."
|
||||
msgstr ""
|
||||
|
||||
#. ありがとうございます。
|
||||
msgid "Thank you very much."
|
||||
msgstr ""
|
||||
|
||||
#. 引き続きよろしくお願いいたします。
|
||||
msgid "Thank you for your continued support."
|
||||
msgstr ""
|
||||
|
||||
#. またの機会がありましたらよろしくお願いいたします。
|
||||
msgid "If you have another chance, thank you."
|
||||
msgstr ""
|
||||
|
||||
#. お支払いのキャンセルを承りました。
|
||||
msgid "We have accepted the cancellation of payment."
|
||||
msgstr ""
|
||||
|
||||
#. 決済確定完了
|
||||
msgid "Settlement confirmed"
|
||||
msgstr ""
|
||||
|
||||
#. 決済が確定し、お支払いが完了しました。
|
||||
msgid "The payment is confirmed and the payment is completed."
|
||||
msgstr ""
|
||||
|
||||
#. ご登録いただいていた定期支払いをキャンセルしました。
|
||||
msgid "I canceled the registered regular payment."
|
||||
msgstr ""
|
||||
|
||||
#. ご利用ありがとうございました。
|
||||
msgid "Thank you for using."
|
||||
msgstr ""
|
||||
|
||||
#. 商品価格が正しくありません。
|
||||
msgid "The item price is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 商品提供者名が正しくありません。
|
||||
msgid "The product provider name is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 商品名が正しくありません。
|
||||
msgid "The product name is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 商品通貨が正しくありません。
|
||||
msgid "The product currency is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 商品ボタン名が正しくありません。
|
||||
msgid "The product button name is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 商品請求タイミングが正しくありません。
|
||||
msgid "The product billing timing is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 商品請求間隔が正しくありません。
|
||||
msgid "The product billing interval is incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. 商品無料トライアル日数が正しくありません。
|
||||
msgid "The product free trial days are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#. Stripeへの商品登録に失敗しました。
|
||||
msgid "Failed to register the product on Stripe."
|
||||
msgstr ""
|
||||
|
||||
#. 商品情報の保存が完了しました。
|
||||
msgid "The product information has been saved."
|
||||
msgstr ""
|
||||
|
||||
#. StripeのPlanの削除に失敗しました。
|
||||
msgid "Failed to delete Stripe Plan."
|
||||
msgstr ""
|
||||
|
||||
#. Stripeの商品の取得に失敗しました。
|
||||
msgid "Failed to get Stripe products."
|
||||
msgstr ""
|
||||
|
||||
#. Stripeの商品の削除に失敗しました。
|
||||
msgid "Failed to delete Stripe products."
|
||||
msgstr ""
|
||||
|
||||
#. の支払いが行われました。
|
||||
msgid ": Payment was made."
|
||||
msgstr ""
|
||||
|
||||
#. がキャンセルされました。
|
||||
msgid "It was cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. への定期払登録ありがとうございます。
|
||||
msgid ": Thank you for registering for regular payment."
|
||||
msgstr ""
|
||||
|
||||
#. への定期払登録がありました。
|
||||
msgid ": There was a regular payment registration."
|
||||
msgstr ""
|
||||
|
||||
#. 決済は既にキャンセルされています。
|
||||
msgid "The payment has already been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. 決済は既に確定されています。
|
||||
msgid "The settlement has already been confirmed."
|
||||
msgstr ""
|
||||
|
||||
#. まだ24時間経過していません。
|
||||
msgid "24 hours have not passed yet."
|
||||
msgstr ""
|
||||
|
||||
#. 決済を確定するデータがないか、決済の確定に失敗しました。
|
||||
msgid "There is no data to confirm the payment, or the payment has failed to be confirmed."
|
||||
msgstr ""
|
||||
|
||||
#. 決済を確定しました。
|
||||
msgid "The settlement has been confirmed."
|
||||
msgstr ""
|
||||
|
||||
#. サブスクリプションが存在しません。
|
||||
msgid "The subscription does not exist."
|
||||
msgstr ""
|
||||
|
||||
#. サブスクリプションは既にキャンセルされています。
|
||||
msgid "Your subscription has already been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. 商品情報が存在しません。
|
||||
msgid "Product information does not exist."
|
||||
msgstr ""
|
||||
|
||||
#. 顧客情報が存在しません。
|
||||
msgid "Customer information does not exist."
|
||||
msgstr ""
|
||||
|
||||
#. サブスクリプションのキャンセルに失敗しました
|
||||
msgid "Subscription cancellation failed."
|
||||
msgstr ""
|
||||
|
||||
#. サブスクリプションをキャンセルしました。
|
||||
msgid "The subscription has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. 定期支払リサイクルではない。
|
||||
msgid "It is not a regular payment recycling."
|
||||
msgstr ""
|
||||
|
||||
#. サブスクリプションの支払完了メール送信処理に失敗しました
|
||||
msgid "Failed to send subscription payment completion email"
|
||||
msgstr ""
|
||||
|
||||
#. この度はありがとうございます。
|
||||
msgid "Thank you for this time."
|
||||
msgstr ""
|
||||
|
||||
#. 今後、以下の内容でお支払いが行われます。
|
||||
msgid "From now on, payment will be made with the following contents."
|
||||
msgstr ""
|
||||
|
||||
#. 以下の内容でお支払いが行われました。
|
||||
msgid "Payment was made with the following contents."
|
||||
msgstr ""
|
||||
|
||||
#. お支払い確認後、24時間以内であれば、以下をクリックするとキャンセル可能です。
|
||||
msgid "You can cancel within 24 hours after confirming payment by clicking below."
|
||||
msgstr ""
|
||||
|
||||
#. それ以降はキャンセル料が発生します。
|
||||
msgid "After that, a cancellation fee will be charged."
|
||||
msgstr ""
|
||||
|
||||
#. お客様にて、お支払いの確定がありましたので、
|
||||
msgid "Since the customer has confirmed the payment, the following payment has been made."
|
||||
msgstr ""
|
||||
|
||||
#. の支払いが行われましたので、ご連絡のメールとなります。
|
||||
msgid ": The payment has been made, so you will receive an email to contact you."
|
||||
msgstr ""
|
||||
|
||||
#. この度は、誠にありがとうございます。
|
||||
msgid "Thank you very much for this time."
|
||||
msgstr ""
|
||||
|
||||
#. キャンセルがありませんでしたので、以下の内容にて、お支払いが確定されました。
|
||||
msgid "Since there was no cancellation, payment was confirmed with the following contents."
|
||||
msgstr ""
|
||||
|
||||
#. 以下のお支払い登録がキャンセルされました。
|
||||
msgid "The following payment registration has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. 以下の内容についてキャンセルがされました。
|
||||
msgid "The following contents have been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. 再度お申込みの際は、再度お支払いが必要です。
|
||||
msgid "If you apply again, you will need to pay again."
|
||||
msgstr ""
|
||||
|
||||
#. キャンセルする場合は以下をクリックするとキャンセル可能です。
|
||||
msgid "If you want to cancel, click below to cancel."
|
||||
msgstr ""
|
||||
|
||||
#. お支払いの確定をしなければ回収できません!
|
||||
msgid "You will not be able to collect it unless you confirm your payment!"
|
||||
msgstr ""
|
||||
|
||||
#. 「24時間以内であればキャンセル可」と自動送信メールで伝えております。
|
||||
msgid "\"Cancellation is possible within 24 hours\" is sent by automatic email."
|
||||
msgstr ""
|
||||
|
||||
#. 以下をクリックすると確定できるので、24時間過ぎたらお願いいたします。
|
||||
msgid "Click below to confirm, so please wait 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#. 確定後にキャンセルがあった場合は、Stripeの手数料が掛かります。
|
||||
msgid "If you cancel after confirmation, you will be charged a Stripe fee."
|
||||
msgstr ""
|
||||
|
||||
#. すぐ開始の場合は0日で設定してください。
|
||||
msgid "If you want to start immediately, set it to 0 days."
|
||||
msgstr ""
|
||||
|
||||
#. 与信枠の確保をキャンセルしました。
|
||||
msgid "Canceled to secure credit line."
|
||||
msgstr ""
|
||||
|
||||
#. 与信枠を確保していたデータがないか、与信枠の確保のキャンセルに失敗しました。
|
||||
msgid "There is no data that has secured the credit line, or the cancellation of the credit line has failed."
|
||||
msgstr ""
|
||||
|
||||
#. 24時間を経過している為、キャンセルできません。
|
||||
msgid "It has been 24 hours and cannot be canceled."
|
||||
msgstr ""
|
||||
|
||||
#. サブスクリプションの登録に失敗しました。
|
||||
msgid "Subscription registration failed."
|
||||
msgstr ""
|
||||
|
||||
#. へのお支払いがありました。
|
||||
msgid ": There was payment."
|
||||
msgstr ""
|
||||
|
||||
#. へのお支払いありがとうございます。
|
||||
msgid ": Thank you for your payment."
|
||||
msgstr ""
|
||||
|
||||
#. 決済が完了しませんでした。
|
||||
msgid "Payment was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. 設定が不完全です。
|
||||
msgid "Incomplete settings."
|
||||
msgstr ""
|
||||
|
||||
#. 商品情報がありません。
|
||||
msgid "There is no product information."
|
||||
msgstr ""
|
||||
|
||||
#. を削除しますか?
|
||||
msgid ": Do you want to delete it?"
|
||||
msgstr ""
|
||||
|
||||
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/the-publisher-desk-ads/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/the-publisher-desk-ads/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "tpd-ads-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.21.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "tpd-read-more-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.22.0",
|
||||
"react-time-ago": "^5.0.7",
|
||||
"throttle-debounce": "^2.1.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
# Changelog
|
||||
All notable changes to the plugin will be documented in this file.
|
||||
|
||||
## 1.0.0 - 2020-12-04
|
||||
### Initial release
|
||||
129
spec/fixtures/dynamic_finders/plugin_version/wc-tracktum/translation_file/languages/tracktum.pot
vendored
Normal file
129
spec/fixtures/dynamic_finders/plugin_version/wc-tracktum/translation_file/languages/tracktum.pot
vendored
Normal file
@@ -0,0 +1,129 @@
|
||||
# Copyright (C) 2020 Md Kamrul islam
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Tracktum 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tracktum\n"
|
||||
"POT-Creation-Date: 2020-12-22 21:32:36+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Tracktum"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ajax.php:39
|
||||
msgid "Settings has been saved successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-facebook.php:9
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-facebook.php:18
|
||||
#: includes/integrations/class-integration-pinterest.php:17
|
||||
msgid "Pixel ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-facebook.php:21
|
||||
#: includes/integrations/class-integration-pinterest.php:20
|
||||
msgid "Find the Pixel ID from <a href=\"%s\" target=\"_blank\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-facebook.php:26
|
||||
#: includes/integrations/class-integration-google.php:26
|
||||
#: includes/integrations/class-integration-pinterest.php:25
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-facebook.php:29
|
||||
#: includes/integrations/class-integration-pinterest.php:28
|
||||
msgid "Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-facebook.php:30
|
||||
msgid "Initiate Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-facebook.php:31
|
||||
#: includes/integrations/class-integration-google.php:32
|
||||
msgid "Purchase"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-facebook.php:32
|
||||
msgid "Complete Registration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-google.php:9
|
||||
msgid "Google"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-google.php:17
|
||||
msgid "Account ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-google.php:39
|
||||
msgid "CompleteRegistration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-google.php:46
|
||||
msgid "AddToCart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-google.php:53
|
||||
msgid "purchase"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-pinterest.php:9
|
||||
msgid "Pinterest"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-pinterest.php:29
|
||||
msgid " Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/class-integration-pinterest.php:30
|
||||
msgid "Signup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/admin.php:4
|
||||
msgid "Tracktum Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/admin.php:105
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: tracktum.php:100
|
||||
msgid ""
|
||||
"<b>Tracktum</b> requires <a target=\"_blank\" "
|
||||
"href=\"https://wordpress.org/plugins/woocommerce/\">Woocommerce</a>"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Tracktum Woocommerce Conversion"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Md Kamrul islam"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://profiles.wordpress.org/rajib00002/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-woocommerce-products","version":"1.6.0","vgDistName":"woo-bulk-edit-products","vgPreviousVersion":"1.5.8.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","columns-visibility","filters","wp-sheet-editor","user-path"],"pro":["advanced-filters","columns-renaming","formulas","custom-columns","spreadsheet-setup","woocommerce","acf","posts-templates","universal-sheet","yoast-seo","wpml","columns-manager"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/woocommerce-products\/package.json","vgEditorKeys":["product"]}
|
||||
@@ -0,0 +1,54 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - WooCommerce Products plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - WooCommerce Products 1.6.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-products\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-19T01:17:39+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - WooCommerce Products"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/go/woocommerce-addon?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=products"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Edit WooCommerce products in spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=products"
|
||||
msgstr ""
|
||||
|
||||
#: products.php:78
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: products.php:163
|
||||
msgid "My license"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:4
|
||||
msgid "Thank you for installing our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:9
|
||||
msgid "Install the plugin: WooCommerce. <a href=\"%s\" target=\"_blank\" class=\"button install-plugin-trigger\">Click here</a>. This is a WooCommerce extension.<br/>Reload the page after you install the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:11
|
||||
msgid "You can open the Products Bulk Editor Now: <a href=\"%s\" class=\"button\">Click here</a>"
|
||||
msgstr ""
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-woocommerce-coupons","version":"1.3.14","vgDistName":"woo-coupons-bulk-editor","vgPreviousVersion":"1.3.13.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","columns-visibility","filters","wp-sheet-editor","user-path"],"pro":["advanced-filters","columns-renaming","formulas","custom-columns","posts-templates","spreadsheet-setup","universal-sheet","columns-manager"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/woocommerce-coupons\/package.json","vgEditorKeys":["shop_coupon"]}
|
||||
@@ -0,0 +1,174 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - WooCommerce Coupons plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - WooCommerce Coupons 1.3.14\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-coupons\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-19T01:17:05+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - WooCommerce Coupons"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/extensions/woocommerce-coupons-spreadsheet/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=coupons"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Edit WooCommerce Coupons in spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=coupons"
|
||||
msgstr ""
|
||||
|
||||
#: coupons.php:80
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: coupons.php:155
|
||||
msgid "My license"
|
||||
msgstr ""
|
||||
|
||||
#: coupons.php:249
|
||||
#: coupons.php:252
|
||||
#: coupons.php:271
|
||||
#: coupons.php:286
|
||||
msgid "Coupons"
|
||||
msgstr ""
|
||||
|
||||
#: coupons.php:279
|
||||
msgid "Bulk Edit coupons"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:128
|
||||
msgid "Prefix for the coupon codes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:138
|
||||
msgid "<p style=\"text-align: left;\">1. When you duplicate coupons, we will copy all the info of the coupon (including amount, restrictions, etc.) except the date and coupon code.<br>2. The new coupons will have the current date and a new coupon code.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:159
|
||||
msgid "Prefix used for new coupon codes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:160
|
||||
msgid "When you use the \"Add new\" tool in our spreadsheet, we create many coupons using \"NEW-<6 random characters>\". This option allows you to change the NEW- prefix to anything you want. It is mandatory to use a prefix, if you leave this option empty we will use the default NEW-"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:166
|
||||
msgid "Coupons sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:230
|
||||
msgid "Discount type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:236
|
||||
msgid "Fixed cart"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:237
|
||||
msgid "Percentage discount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:238
|
||||
msgid "Fixed product discount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:249
|
||||
msgid "Allowed emails"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:262
|
||||
msgid "Coupon amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:272
|
||||
msgid "Usage limit per coupon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:282
|
||||
msgid "Usage limit per user"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:292
|
||||
msgid "Limit usage to X items"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:302
|
||||
msgid "Coupon expiry date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:316
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:327
|
||||
msgid "Allow free shipping"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:344
|
||||
msgid "Individual use only"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:361
|
||||
msgid "Exclude sale items"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:376
|
||||
msgid "Usage"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:389
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:402
|
||||
msgid "Product categories"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:413
|
||||
msgid "Exclude categories"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:424
|
||||
msgid "Used by"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:436
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:442
|
||||
#: inc/columns.php:456
|
||||
msgid "Enter product/variation titles or skus separated by commas."
|
||||
msgstr ""
|
||||
|
||||
#: inc/columns.php:450
|
||||
msgid "Exclude products"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:6
|
||||
msgid "Thank you for installing our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:11
|
||||
msgid "Install the plugin: WooCommerce. <a href=\"%s\" target=\"_blank\" class=\"button install-plugin-trigger\">Click here</a>. This is a WooCommerce extension."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:13
|
||||
msgid "You can open the Coupons Bulk Editor Now: <a href=\"%s\" class=\"button\">Click here</a>"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,18 @@
|
||||
= 1.0.4 =
|
||||
* [Feature] Filter by title
|
||||
* [Feature] Short Description included at product list widget
|
||||
|
||||
= 1.0.3 =
|
||||
* [Feature] Integrate control to increase maximum product
|
||||
* [Feature] Integrate More Query Stock and Out of stock products
|
||||
* [Feature] Integrate Out of stock product hides
|
||||
* [Feature] Integrate Indicator of Stock and Out of stock product with sale badges.
|
||||
|
||||
* [Bug] Fix Carousel width issue
|
||||
|
||||
|
||||
= 1.0.2 =
|
||||
* Integrate premium version and include freemius for manage supports
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-pro","version":"2.23.0","vgDistName":"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages","vgPreviousVersion":"2.22.0.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","columns-visibility","filters","wp-sheet-editor","user-path"],"pro":["acf","advanced-filters","columns-renaming","custom-post-types","formulas","custom-columns","spreadsheet-setup","woocommerce","universal-sheet","yoast-seo","wpml","posts-templates","columns-manager"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/posts-pages-products-sheet\/package.json","vgEditorKeys":["post","page","product"]}
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-edd-downloads","version":"1.0.35","vgDistName":"bulk-edit-edd-downloads","vgPreviousVersion":"1.0.34.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","columns-visibility","filters","wp-sheet-editor","user-path"],"pro":["advanced-filters","columns-renaming","formulas","custom-columns","spreadsheet-setup","yoast-seo","wpml","acf","posts-templates","universal-sheet","columns-manager"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/edd-downloads\/package.json","vgEditorKeys":["download"]}
|
||||
@@ -0,0 +1,114 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - EDD Downloads plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - EDD Downloads 1.0.35\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/edd-downloads\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-19T01:15:37+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - EDD Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/go/edd-downloads-addon?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=edd"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Edit Easy Digital Downloads in spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=edd"
|
||||
msgstr ""
|
||||
|
||||
#: edd-downloads.php:79
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/edd-all-access.php:93
|
||||
msgid "EDD"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:127
|
||||
msgid "How many files do you add to the products?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:128
|
||||
msgid "We show 3 columns for every file so you can enter the file name, url, and required price. This is helpful to display only the necessary columns"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:139
|
||||
msgid "How many variable prices do you add to the products?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:140
|
||||
msgid "We show 2 columns for every variable price so you can enter the price name and amount. This is helpful to display only the necessary columns"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:147
|
||||
msgid "How many products do you add to the bundles?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:148
|
||||
msgid "We show 2 columns for every bundle product so you can enter the product name, and required price. This is helpful to display only the necessary columns"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:155
|
||||
msgid "EDD sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:167
|
||||
msgid "Required price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:282
|
||||
msgid "Variable pricing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:296
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:301
|
||||
msgid "Earnings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:315
|
||||
msgid "Variable Price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:332
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:345
|
||||
msgid "Bundle product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:356
|
||||
msgid "Bundle required price"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:4
|
||||
msgid "Thank you for installing our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:10
|
||||
msgid "This plugin requires the Easy Digital Downloads plugin. Please install it."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:12
|
||||
msgid "The plugin is ready. You can <a href=\"%s\">start editing</a> on the spreadsheet"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,195 @@
|
||||
# Copyright (C) 2020 Sematico LTD
|
||||
# This file is distributed under the same license as the WP Simple Menu Icons package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Simple Menu Icons 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/wp-simple-menu-icons\n"
|
||||
"POT-Creation-Date: 2020-07-02 10:42:11+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.3\n"
|
||||
|
||||
#: resources/views/media-template.php:33
|
||||
msgid "Close panel"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:39
|
||||
msgid "Menu icons"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:44
|
||||
msgid "Browse icons"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:51
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:58
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:61
|
||||
msgid "Search..."
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:75
|
||||
msgid "Deselect"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:84
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:88
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:100
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:101
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:128
|
||||
msgid "Hide Label"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:130
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:131
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:135
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:137
|
||||
msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:138
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:142
|
||||
msgid "Vertical Align"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:144
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:145
|
||||
msgid "Middle"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:146
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/media-template.php:150
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:74 src/Parser.php:77
|
||||
msgid "Parse FA Icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Parser.php:132
|
||||
msgid "Font file successfully generated."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:81 src/Plugin.php:93
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Selector.php:110
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: src/Selector.php:111
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/Selector.php:123
|
||||
msgid "Simple menu icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Selector.php:162
|
||||
msgid "Setup icon"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/10up/wp_mock/tests/FunctionMocksTest.php:65
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/10up/wp_mock/tests/FunctionMocksTest.php:75
|
||||
#: vendor/10up/wp_mock/tests/FunctionMocksTest.php:77
|
||||
msgid "Input"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/PHP.php:49
|
||||
#. Translators: 1. Required PHP version, 2. Used PHP version.
|
||||
msgid "Minimum required version of PHP is %1$s. Your version is %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/PHPExtensions.php:55
|
||||
#. Translators: PHP extensions.
|
||||
msgid "Missing PHP extension: %s"
|
||||
msgid_plural "Missing PHP extensions: %s"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/Plugins.php:70
|
||||
#. Translators: Plugin name.
|
||||
msgid "Required plugin: %s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/Plugins.php:78
|
||||
#. Translators: 1. Plugin name, 2. Required version, 3. Used version.
|
||||
msgid "Minimum required version of %1$s plugin is %2$s. Your version is %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/Theme.php:51
|
||||
msgid "Required theme: %s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/WordPress.php:48
|
||||
#. Translators: 1. Required WP version, 2. Current WP version.
|
||||
msgid "Minimum required version of WordPress is %1$s. Your version is %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Requirements.php:257
|
||||
msgid "<strong>%s</strong> cannot be activated."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WP Simple Menu Icons"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://pressmodo.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "An easy way to add icons to your navigation menus."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sematico LTD"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://sematico.com"
|
||||
msgstr ""
|
||||
44
spec/fixtures/finders/interesting_findings/php_disabled/version.php
vendored
Normal file
44
spec/fixtures/finders/interesting_findings/php_disabled/version.php
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
* WordPress Version
|
||||
*
|
||||
* Contains version information for the current WordPress release.
|
||||
*
|
||||
* @package WordPress
|
||||
* @since 1.1.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* The WordPress version string.
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
*
|
||||
* @global int $wp_db_version
|
||||
*/
|
||||
$wp_db_version = 49752;
|
||||
|
||||
/**
|
||||
* Holds the TinyMCE version.
|
||||
*
|
||||
* @global string $tinymce_version
|
||||
*/
|
||||
$tinymce_version = '49110-20201110';
|
||||
|
||||
/**
|
||||
* Holds the required PHP version.
|
||||
*
|
||||
* @global string $required_php_version
|
||||
*/
|
||||
$required_php_version = '5.6.20';
|
||||
|
||||
/**
|
||||
* Holds the required MySQL version.
|
||||
*
|
||||
* @global string $required_mysql_version
|
||||
*/
|
||||
$required_mysql_version = '5.0';
|
||||
@@ -21,17 +21,17 @@ Gem::Specification.new do |s|
|
||||
s.executables = ['wpscan']
|
||||
s.require_paths = ['lib']
|
||||
|
||||
s.add_dependency 'cms_scanner', '~> 0.12.1'
|
||||
s.add_dependency 'cms_scanner', '~> 0.13.0'
|
||||
|
||||
s.add_development_dependency 'bundler', '>= 1.6'
|
||||
s.add_development_dependency 'memory_profiler', '~> 1.0.0'
|
||||
s.add_development_dependency 'rake', '~> 13.0'
|
||||
s.add_development_dependency 'rspec', '~> 3.10.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.6.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.8.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.9.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.20.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.21.0'
|
||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
||||
s.add_development_dependency 'webmock', '~> 3.10.0'
|
||||
s.add_development_dependency 'webmock', '~> 3.11.0'
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user