Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b07d53077 | ||
|
|
8ee9b2bc31 | ||
|
|
c5989477a4 | ||
|
|
96d8a4e4f8 | ||
|
|
e865e11731 | ||
|
|
f0997bfe0d | ||
|
|
8b67dad456 | ||
|
|
53fdac1038 | ||
|
|
534a7602e6 | ||
|
|
30f329fe43 | ||
|
|
4ce39951a9 | ||
|
|
0e9eb34626 | ||
|
|
0ff299c425 | ||
|
|
6366258ce9 | ||
|
|
bca69a026e | ||
|
|
adc26ea42a | ||
|
|
b16e8d84d7 | ||
|
|
5ee405d5a0 | ||
|
|
a5b9470636 |
@@ -1,4 +1,4 @@
|
||||
FROM ruby:2.6.2-alpine3.9 AS builder
|
||||
FROM ruby:2.6.3-alpine AS builder
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
|
||||
ARG BUNDLER_ARGS="--jobs=8 --without test development"
|
||||
@@ -19,7 +19,7 @@ RUN rake install --trace
|
||||
RUN chmod -R a+r /usr/local/bundle
|
||||
|
||||
|
||||
FROM ruby:2.6.2-alpine3.9
|
||||
FROM ruby:2.6.3-alpine
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
|
||||
RUN adduser -h /wpscan -g WPScan -D wpscan
|
||||
|
||||
@@ -17,7 +17,6 @@
|
||||
<a href="https://badge.fury.io/rb/wpscan" target="_blank"><img src="https://badge.fury.io/rb/wpscan.svg"></a>
|
||||
<a href="https://travis-ci.org/wpscanteam/wpscan" target="_blank"><img src="https://travis-ci.org/wpscanteam/wpscan.svg?branch=master"></a>
|
||||
<a href="https://codeclimate.com/github/wpscanteam/wpscan" target="_blank"><img src="https://codeclimate.com/github/wpscanteam/wpscan/badges/gpa.svg"></a>
|
||||
<a href="https://www.patreon.com/wpscan" target="_blank"><img src="https://img.shields.io/badge/patreon-donate-green.svg"></a>
|
||||
</p>
|
||||
|
||||
# INSTALL
|
||||
|
||||
@@ -20,9 +20,9 @@ module WPScan
|
||||
|
||||
enumerate(potential_urls(opts), opts.merge(check_full_response: 200)) do |res|
|
||||
if res.effective_url.end_with?('.zip')
|
||||
next unless res.headers['Content-Type'] =~ %r{\Aapplication/zip}i
|
||||
next unless %r{\Aapplication/zip}i.match?(res.headers['Content-Type'])
|
||||
else
|
||||
next unless res.body =~ SQL_PATTERN
|
||||
next unless SQL_PATTERN.match?(res.body)
|
||||
end
|
||||
|
||||
found << Model::DbExport.new(res.request.url, found_by: DIRECT_ACCESS, confidence: 100)
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
def aggressive(_opts = {})
|
||||
path = 'installer-log.txt'
|
||||
|
||||
return unless target.head_and_get(path).body =~ /DUPLICATOR INSTALL-LOG/
|
||||
return unless /DUPLICATOR INSTALL-LOG/.match?(target.head_and_get(path).body)
|
||||
|
||||
Model::DuplicatorInstallerLog.new(
|
||||
target.url(path),
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
pattern = %r{#{target.content_dir}/mu\-plugins/}i
|
||||
|
||||
target.in_scope_uris(target.homepage_res) do |uri|
|
||||
next unless uri.path =~ pattern
|
||||
next unless uri.path&.match?(pattern)
|
||||
|
||||
url = target.url('wp-content/mu-plugins/')
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
path = 'wp-content/uploads/dump.sql'
|
||||
res = target.head_and_get(path, [200], get: { headers: { 'Range' => 'bytes=0-3000' } })
|
||||
|
||||
return unless res.body =~ SQL_PATTERN
|
||||
return unless SQL_PATTERN.match?(res.body)
|
||||
|
||||
Model::UploadSQLDump.new(
|
||||
target.url(path),
|
||||
|
||||
@@ -13,7 +13,7 @@ module WPScan
|
||||
|
||||
def valid_credentials?(response)
|
||||
response.code == 302 &&
|
||||
response.headers['Set-Cookie']&.any? { |cookie| cookie =~ /wordpress_logged_in_/i }
|
||||
[*response.headers['Set-Cookie']]&.any? { |cookie| cookie =~ /wordpress_logged_in_/i }
|
||||
end
|
||||
|
||||
def errored_response?(response)
|
||||
|
||||
@@ -52,7 +52,7 @@ module WPScan
|
||||
|
||||
number = Regexp.last_match[1]
|
||||
|
||||
number if number =~ /[0-9]+/
|
||||
number if /[0-9]+/.match?(number)
|
||||
end
|
||||
|
||||
# @param [ String ] body
|
||||
|
||||
@@ -15,7 +15,7 @@ module WPScan
|
||||
#
|
||||
# @return [ Plugin ] The detected plugin in the response, related to the config
|
||||
def process_response(opts, response, slug, klass, config)
|
||||
return unless response.body =~ config['pattern']
|
||||
return unless response.body&.match?(config['pattern'])
|
||||
|
||||
Model::Plugin.new(
|
||||
slug,
|
||||
|
||||
@@ -18,7 +18,7 @@ module WPScan
|
||||
response.html.xpath(config['xpath'] || '//comment()').each do |node|
|
||||
comment = node.text.to_s.strip
|
||||
|
||||
next unless comment =~ config['pattern']
|
||||
next unless comment&.match?(config['pattern'])
|
||||
|
||||
return Model::Plugin.new(
|
||||
slug,
|
||||
|
||||
@@ -22,7 +22,7 @@ module WPScan
|
||||
found = []
|
||||
|
||||
enumerate(target_urls(opts), opts.merge(check_full_response: 400)) do |res|
|
||||
next unless res.body =~ /no image specified/i
|
||||
next unless /no image specified/i.match?(res.body)
|
||||
|
||||
found << Model::Timthumb.new(res.request.url, opts.merge(found_by: found_by, confidence: 100))
|
||||
end
|
||||
|
||||
@@ -24,7 +24,7 @@ module WPScan
|
||||
|
||||
return found if error.empty? # Protection plugin / error disabled
|
||||
|
||||
next unless error =~ /The password you entered for the username|Incorrect Password/i
|
||||
next unless /The password you entered for the username|Incorrect Password/i.match?(error)
|
||||
|
||||
found << Model::User.new(username, found_by: found_by, confidence: 100)
|
||||
end
|
||||
|
||||
@@ -64,11 +64,12 @@ module WPScan
|
||||
# @return [ Hash ] The params for Typhoeus::Request
|
||||
# @note Those params can't be overriden by CLI options
|
||||
def request_params
|
||||
{
|
||||
@request_params ||= {
|
||||
timeout: 600,
|
||||
connecttimeout: 300,
|
||||
accept_encoding: 'gzip, deflate',
|
||||
cache_ttl: 0
|
||||
cache_ttl: 0,
|
||||
headers: { 'User-Agent' => Browser.instance.default_user_agent, 'Referer' => nil }
|
||||
}
|
||||
end
|
||||
|
||||
|
||||
@@ -6,13 +6,15 @@ rescue StandardError => e
|
||||
raise "JSON parsing error in #{file} #{e}"
|
||||
end
|
||||
|
||||
# @return [ Symbol ]
|
||||
# Sanitize and classify a slug
|
||||
# @note As a class can not start with a digit or underscore, a D_ is
|
||||
# put as a prefix in such case. Ugly but well :x
|
||||
# Not only used to classify slugs though, but Dynamic Finder names as well
|
||||
# put as a prefix in such case. Ugly but well :x
|
||||
# Not only used to classify slugs though, but Dynamic Finder names as well
|
||||
#
|
||||
# @return [ Symbol ]
|
||||
def classify_slug(slug)
|
||||
classified = slug.to_s.tr('-', '_').camelize.to_s
|
||||
classified = "D_#{classified}" if classified[0] =~ /\d/
|
||||
classified = slug.to_s.gsub(/[^a-z\d\-]/i, '-').gsub(/\-{1,}/, '_').camelize.to_s
|
||||
classified = "D_#{classified}" if /\d/.match?(classified[0])
|
||||
|
||||
classified.to_sym
|
||||
end
|
||||
|
||||
@@ -29,7 +29,7 @@ module WPScan
|
||||
end
|
||||
|
||||
homepage_res.html.css('meta[name="generator"]').each do |node|
|
||||
return true if node['content'] =~ /wordpress/i
|
||||
return true if /wordpress/i.match?(node['content'])
|
||||
end
|
||||
|
||||
return true unless comments_from_page(/wordpress/i, homepage_res).empty?
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.6.0'
|
||||
VERSION = '3.6.3'
|
||||
end
|
||||
|
||||
61
spec/app/finders/passwords/wp_login_spec.rb
Normal file
61
spec/app/finders/passwords/wp_login_spec.rb
Normal file
@@ -0,0 +1,61 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe WPScan::Finders::Passwords::WpLogin do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
|
||||
describe '#valid_credentials?' do
|
||||
context 'when a non 302' do
|
||||
it 'returns false' do
|
||||
expect(finder.valid_credentials?(Typhoeus::Response.new(code: 200, headers: {}))).to be_falsey
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a 302' do
|
||||
let(:response) { Typhoeus::Response.new(code: 302, headers: headers) }
|
||||
|
||||
context 'when no cookies set' do
|
||||
let(:headers) { {} }
|
||||
|
||||
it 'returns false' do
|
||||
expect(finder.valid_credentials?(response)).to be_falsey
|
||||
end
|
||||
end
|
||||
|
||||
context 'when no logged_in cookie set' do
|
||||
context 'when only one cookie set' do
|
||||
let(:headers) { 'Set-Cookie: wordpress_test_cookie=WP+Cookie+check; path=/' }
|
||||
|
||||
it 'returns false' do
|
||||
expect(finder.valid_credentials?(response)).to be_falsey
|
||||
end
|
||||
end
|
||||
|
||||
context 'when multiple cookies set' do
|
||||
let(:headers) do
|
||||
"Set-Cookie: wordpress_test_cookie=WP+Cookie+check; path=/\r\n" \
|
||||
'Set-Cookie: something=value; path=/'
|
||||
end
|
||||
|
||||
it 'returns false' do
|
||||
expect(finder.valid_credentials?(response)).to be_falsey
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when logged_in cookie set' do
|
||||
let(:headers) do
|
||||
"Set-Cookie: wordpress_test_cookie=WP+Cookie+check; path=/\r\r" \
|
||||
"Set-Cookie: wordpress_xxx=yyy; path=/wp-content/plugins; httponly\r\n" \
|
||||
"Set-Cookie: wordpress_xxx=yyy; path=/wp-admin; httponly\r\n" \
|
||||
'Set-Cookie: wordpress_logged_in_xxx=yyy; path=/; httponly'
|
||||
end
|
||||
|
||||
it 'returns false' do
|
||||
expect(finder.valid_credentials?(response)).to eql true
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
1980
spec/fixtures/db/dynamic_finders.yml
vendored
1980
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
495
spec/fixtures/dynamic_finders/expected.yml
vendored
495
spec/fixtures/dynamic_finders/expected.yml
vendored
@@ -1856,6 +1856,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/all-in-all-image-hover-effect/cu-framework/languages/zh_CN.po,
|
||||
Match: ''"Project-Id-Version: Codestar Framework 1.0.1'''
|
||||
all-in-one-analytics:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/all-in-one-analytics/public/js/analytics/analytics.min.js?ver=1.0.1
|
||||
confidence: 10
|
||||
all-in-one-event-calendar:
|
||||
QueryParameter:
|
||||
number: 2.5.28
|
||||
@@ -2671,6 +2678,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/ask-me-anything-anonymously/languages/ask-me-anything-anonymously.pot,
|
||||
Match: ''-Version: Ask Me Anything (Anonymously) 1.3.1'''
|
||||
asmember:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/asmember/languages/asmember-de_DE.po, Match:
|
||||
''"Project-Id-Version: asMember 1.0'''
|
||||
aspen-shortcodes-and-widgets:
|
||||
QueryParameter:
|
||||
number: 2.0.5
|
||||
@@ -3047,6 +3061,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/autoship-cloud/js/product-page.js?ver=1.0.10
|
||||
- http://wp.lab/wp-content/plugins/autoship-cloud/js/schedule-options.js?ver=1.0.10
|
||||
confidence: 100
|
||||
avaibook:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/avaibook/languages/avaibook-pt_PT.po, Match:
|
||||
''"Project-Id-Version: AvaiBook 1.0.0'''
|
||||
avangpress:
|
||||
ChangeLog:
|
||||
number: 1.0.1
|
||||
@@ -4070,6 +4091,14 @@ plugins:
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bigcommerce/CHANGELOG.md, Match: ''## [2.0.1]'''
|
||||
bigideas:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/bigideas/public/css/ideas-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/bigideas/public/js/ideas-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
bigly-dropship:
|
||||
ComposerFile:
|
||||
number: '1.0'
|
||||
@@ -5230,6 +5259,19 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/browser-theme-colors/public/css/browser-theme-colors-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/browser-theme-colors/public/js/browser-theme-colors-public.js?ver=1.0.0
|
||||
browser-title-bar-animation:
|
||||
TranslationFile:
|
||||
number: 1.2.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/browser-title-bar-animation/languages/wp-tbas.pot,
|
||||
Match: ''Id-Version: Browser Title Bar Animation 1.2.0'''
|
||||
ChangeLog:
|
||||
number: 1.2.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/browser-title-bar-animation/changelog.txt,
|
||||
Match: ''Version 1.2.0'''
|
||||
browser-window-stats:
|
||||
TranslationFile:
|
||||
number: '1.1'
|
||||
@@ -5768,6 +5810,15 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/caldera-forms/assets/build/css/caldera-forms-front.min.css,
|
||||
Match: ''caldera-forms - v1.5.9.1'''
|
||||
calendar-to-events:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/calendar-to-events/resources/css/eventCalendar.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/calendar-to-events/resources/css/eventCalendar_theme_responsive.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/calendar-to-events/resources/js/jquery.eventCalendar.js?ver=1.0.0
|
||||
confidence: 30
|
||||
calendarista-basic-edition:
|
||||
MetaTag:
|
||||
number: '1.0'
|
||||
@@ -6033,6 +6084,15 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/catch-scroll-progress-bar/public/css/catch-scroll-progress-bar-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/catch-scroll-progress-bar/public/js/catch-scroll-progress-bar-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
catch-social-share:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/catch-social-share/public/css/catch-social-share-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/catch-social-share/fonts/css/font-awesome.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/catch-social-share/public/js/catch-social-share-public.js?ver=1.0.0
|
||||
confidence: 30
|
||||
catch-under-construction:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -6259,6 +6319,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/cc-cookie-consent/assets/plugin-css/dark-bottom.css?ver=1.2.0
|
||||
- http://wp.lab/wp-content/plugins/cc-cookie-consent/assets/plugin-js/cookieconsent.latest.min.js?ver=1.2.0
|
||||
cc-custom-taxonmy:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/cc-custom-taxonmy/assets/js/script.js?ver=1.0.0
|
||||
confidence: 10
|
||||
cc-essentials:
|
||||
QueryParameter:
|
||||
number: 1.1.1
|
||||
@@ -7680,6 +7747,14 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/computer-repair-shop/css/style.css?ver=1.0
|
||||
conditional-fields-in-contact-form-7:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/conditional-fields-in-contact-form-7/css/style.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/conditional-fields-in-contact-form-7/js/scripts.js?ver=1.0.0
|
||||
confidence: 20
|
||||
conditional-lightbox:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -11045,6 +11120,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/enlighter/lang/Enlighter.pot, Match: ''"Project-Id-Version:
|
||||
Enlighter 3.5'''
|
||||
enter-title-here-changer:
|
||||
ChangeLog:
|
||||
number: 0.3.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/enter-title-here-changer/CHANGELOG.MD, Match:
|
||||
''## [0.3.0]'''
|
||||
entry-views:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -11210,8 +11292,8 @@ plugins:
|
||||
number: 3.1.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- "http://wp.lab/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/eael.min.css?ver=3.1.1"
|
||||
- "http://wp.lab/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/eael.min.js?ver=3.1.1"
|
||||
- http://wp.lab/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/eael.min.css?ver=3.1.1
|
||||
- http://wp.lab/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/eael.min.js?ver=3.1.1
|
||||
confidence: 20
|
||||
essential-hover-effects:
|
||||
TranslationFile:
|
||||
@@ -11254,6 +11336,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/ethereumico/ethereum-ico.css?ver=1.0.2
|
||||
- http://wp.lab/wp-content/plugins/ethereumico/ethereum-ico.js?ver=1.0.2
|
||||
confidence: 20
|
||||
ethiopian-calendar:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/ethiopian-calendar/public/css/ethiopian-calendar-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/ethiopian-calendar/public/js/ethiopian-calendar-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
etsy-shop:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
@@ -11726,6 +11816,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/extensive-vc-addon/languages/extensive-vc.pot,
|
||||
Match: ''"Project-Id-Version: Extensive VC 1.4.1'''
|
||||
external-links-advertisement-note:
|
||||
QueryParameter:
|
||||
number: 1.0.2
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/external-links-advertisement-note/public/css/bfelan-public.css?ver=1.0.2
|
||||
- http://wp.lab/wp-content/plugins/external-links-advertisement-note/public/js/bfelan-public.js?ver=1.0.2
|
||||
confidence: 20
|
||||
extra-blocks:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
@@ -13325,6 +13423,20 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/gdpr-compliance-by-supsystic/modules/gdpr/css/frontend.gdpr.css?ver=1.0.2
|
||||
- http://wp.lab/wp-content/plugins/gdpr-compliance-by-supsystic/modules/gdpr/js/frontend.gdpr.js?ver=1.0.2
|
||||
confidence: 20
|
||||
gdpr-cookie-banner:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/gdpr-cookie-banner/public/css/gdpr-cookie-banner-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/gdpr-cookie-banner/public/js/gdpr-cookie-banner-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/gdpr-cookie-banner/languages/gdpr-cookie-banner.pot,
|
||||
Match: ''"Project-Id-Version: GDPR Cookie Banner 1.0.0'''
|
||||
gdpr-cookie-compliance:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
@@ -13333,6 +13445,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/gdpr-cookie-compliance/dist/scripts/main.js?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/gdpr-cookie-compliance/dist/styles/gdpr-main.css?ver=1.0.1
|
||||
confidence: 20
|
||||
gdpr-cookie-consent:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/gdpr-cookie-consent/public/css/gdpr-cookie-consent-public.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/gdpr-cookie-consent/public/js/gdpr-cookie-consent-public.js?ver=1.0
|
||||
confidence: 20
|
||||
gdpr-formidable-forms:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
@@ -13714,6 +13834,13 @@ plugins:
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/gf-heidelpay/changelog.md, Match: ''## 1.2.0'''
|
||||
ghostbirdwp:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/ghostbirdwp/languages/ghostbirdwp.pot, Match:
|
||||
''gstr "Project-Id-Version: Ghostbird WP 1.0.0'''
|
||||
gif2html5:
|
||||
QueryParameter:
|
||||
number: 0.1.0
|
||||
@@ -16109,6 +16236,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/index-press/lang/index-press.pot, Match:
|
||||
''ion of the WordPress plugin Index Press 1.0'''
|
||||
indianwebs-pideme-cambios:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/indianwebs-pideme-cambios/public/css/pideme_cambios-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/indianwebs-pideme-cambios/public/js/pideme_cambios-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
indianwebs-whatsapp-submit:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -16293,6 +16428,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/insert-headers-and-footers/languages/insert-headers-and-footers.pot,
|
||||
Match: ''-Id-Version: Insert Headers and Footers 1.4.4'''
|
||||
insert-image-alt-text:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/insert-image-alt-text/public/css/insert-image-alt-text-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/insert-image-alt-text/public/js/insert-image-alt-text-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
insert-post-from-front-end-with-featured-image:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -16412,6 +16555,12 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/instashare/public/css/instashare-public.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/instashare/public/js/instashare-public.js?ver=1.0.1
|
||||
confidence: 20
|
||||
instashop:
|
||||
ComposerFile:
|
||||
number: 1.4.1
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/instashop/package.json, Match: ''1.4.1'''
|
||||
instashow-lite:
|
||||
QueryParameter:
|
||||
number: 1.4.0
|
||||
@@ -17931,6 +18080,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/lazy-load-optimizer/assets/frontend/js/lazysizes.min.js?ver=1.0.4
|
||||
confidence: 10
|
||||
lazy-load-videos-and-sticky-control:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/lazy-load-videos-and-sticky-control/assets/css/llvasc-public.min.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/lazy-load-videos-and-sticky-control/assets/js/llvasc-public.min.js?ver=1.0.1
|
||||
confidence: 20
|
||||
lazy-widget-loader:
|
||||
QueryParameter:
|
||||
number: 1.2.8
|
||||
@@ -18682,6 +18839,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/login-and-logout-redirect/CHANGELOG.md,
|
||||
Match: ''## 1.0.5'''
|
||||
login-as-user:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/login-as-user/public/css/public.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/login-as-user/public/js/public.min.js?ver=1.0.0
|
||||
confidence: 20
|
||||
login-customizer:
|
||||
ChangeLog:
|
||||
number: 1.2.1
|
||||
@@ -19996,6 +20161,20 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/media-select-bulk-downloader/public/css/wp-msbd-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/media-select-bulk-downloader/public/js/wp-msbd-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
media-with-ftp:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/media-with-ftp/public/css/media-with-ftp-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/media-with-ftp/public/js/media-with-ftp-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/media-with-ftp/languages/media-with-ftp.pot,
|
||||
Match: ''"Project-Id-Version: Media with FTP 1.0.0'''
|
||||
media2post:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
@@ -20114,6 +20293,23 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/melonpan-block-images/build/melonpan-block-images-front.css?ver=1.0.0
|
||||
confidence: 10
|
||||
member-chimp:
|
||||
QueryParameter:
|
||||
number: 1.0.13
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp-layout.css?ver=1.0.13
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp-style.css?ver=1.0.13
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp.css?ver=1.0.13
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp-media.css?ver=1.0.13
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-tiptip/jquery-tiptip.js?ver=1.0.13
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-toggles/jquery-toggles.js?ver=1.0.13
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-modal/jquery-modal.js?ver=1.0.13
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-selectize/jquery-selectize.js?ver=1.0.13
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-raty/jquery-raty.js?ver=1.0.13
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-mcp/jquery-mcp.js?ver=1.0.13
|
||||
- http://wp.lab/wp-content/plugins/member-chimp/assets/js/frontend/memberchimp.js?ver=1.0.13
|
||||
confidence: 100
|
||||
memberlite-elements:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -20185,6 +20381,14 @@ plugins:
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/menu-icons/CHANGELOG.md, Match: ''## v0.11.4'''
|
||||
menu-import-export:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/menu-import-export/public/css/menu-import-export-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/menu-import-export/public/js/menu-import-export-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
menu-item-duplicator:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -21129,6 +21333,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/multisite-admin-notices/languages/multisite-admin-notices.pot,
|
||||
Match: ''ect-Id-Version: multisite-admin-notices 0.1.2'''
|
||||
multisite-blog-alias:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/multisite-blog-alias/languages/multisite-blog-alias.pot,
|
||||
Match: ''roject-Id-Version: Multisite Blog Alias 1.0.0'''
|
||||
multisite-directory:
|
||||
TranslationFile:
|
||||
number: 0.2.3
|
||||
@@ -23608,6 +23819,19 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/photonic/languages/photonic.po, Match: ''SmugMug,
|
||||
500px, Zenfolio and Instagram 1.64'''
|
||||
php-console-log:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/php-console-log/js/php-console-log.js?ver=1.0.0
|
||||
confidence: 10
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/php-console-log/languages/php-console-log.pot,
|
||||
Match: ''"Project-Id-Version: PHP Console Log 1.0.0'''
|
||||
phphtmllib:
|
||||
VersionFile:
|
||||
number: 2.6.8.3578
|
||||
@@ -24006,6 +24230,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/polldirectory/css/user.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/polldirectory/js/admin.js?ver=1.0.0
|
||||
confidence: 30
|
||||
pollen:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/pollen/assets/css/pollen.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/pollen/assets/js/pollen.js?ver=1.0.0
|
||||
confidence: 20
|
||||
poor-mans-wp-seo:
|
||||
Comment:
|
||||
number: 1.0.4
|
||||
@@ -26207,6 +26439,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/recurly-subscription/public/js/rs-jquery-validate.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/recurly-subscription/public/js/rs-additional-methods.js?ver=1.0.0
|
||||
confidence: 40
|
||||
redirect-pagespost-with-shortcode:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/redirect-pagespost-with-shortcode/public/css/pi_redirect_shortcode-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/redirect-pagespost-with-shortcode/public/js/pi_redirect_shortcode-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
redirect-unattached-images:
|
||||
ChangeLog:
|
||||
number: 0.1.2
|
||||
@@ -26931,6 +27171,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/reviewpress/assets/css/front.css?ver=1.0.5
|
||||
- http://wp.lab/wp-content/plugins/reviewpress/assets/js/front-main.js?ver=1.0.5
|
||||
confidence: 20
|
||||
reviews-from-google:
|
||||
ChangeLog:
|
||||
number: '1.1'
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/reviews-from-google/changelog.txt, Match:
|
||||
''Version 1.1'''
|
||||
revised-publishing-status:
|
||||
ComposerFile:
|
||||
number: 0.8.6
|
||||
@@ -28114,6 +28361,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/sendbox-email-marketing-newsletter/changelog.txt,
|
||||
Match: ''= 1.0.0'''
|
||||
sendbox-shipping:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/sendbox-shipping/public/css/wooss-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/sendbox-shipping/public/js/wooss-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
sendpulse-email-marketing-newsletter:
|
||||
ComposerFile:
|
||||
number: 2.1.0
|
||||
@@ -28361,6 +28616,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/share-this-image/assets/css/sti.css?ver=1.04
|
||||
- http://wp.lab/wp-content/plugins/share-this-image/assets/js/sti.js?ver=1.04
|
||||
confidence: 20
|
||||
share-to-microsoft-teams:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/share-to-microsoft-teams/css/ms-teams-share.css?ver=1.0.0
|
||||
confidence: 10
|
||||
share-to-social-bookmarking:
|
||||
QueryParameter:
|
||||
number: '1.6'
|
||||
@@ -29076,6 +29338,18 @@ plugins:
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/simple-history/composer.json, Match: ''2.28.1'''
|
||||
simple-iframe:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/simple-iframe/languages/simple-iframe-es_ES.po,
|
||||
Match: ''"Project-Id-Version: Simple Iframe 1.0.0'''
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/simple-iframe/package.json, Match: ''1.0.0'''
|
||||
simple-iframe-buster:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
@@ -32219,6 +32493,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/thank-you-page-viewer-for-woocommerce/lang/jnViewThankyouPage-pt.po,
|
||||
Match: ''ommerce Thank you page viewer by JEVNET 1.0'''
|
||||
thank-you-reader:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/thank-you-reader/public/css/thank-you-reader-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/thank-you-reader/public/js/thank-you-reader-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
that-was-helpful:
|
||||
TranslationFile:
|
||||
number: 1.1.0
|
||||
@@ -32882,6 +33164,15 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/total-team-lite/assets/js/jquery.mCustomScrollbar.concat.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/total-team-lite/assets/js/jquery.colorbox.js?ver=1.0.0
|
||||
confidence: 100
|
||||
tour-booking:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/tour-booking/front/css/style.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/tour-booking/front/css/responsive.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/tour-booking/front/js/script.js?ver=1.0
|
||||
confidence: 30
|
||||
tour-operator-activities:
|
||||
ComposerFile:
|
||||
number: 1.1.0
|
||||
@@ -34652,6 +34943,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/very-simple-website-closed/changelog.txt,
|
||||
Match: ''Version 1.3'''
|
||||
very-simple-wp-popup:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/very-simple-wp-popup/public/js/script.js?ver=1.0.0
|
||||
confidence: 10
|
||||
vessel:
|
||||
QueryParameter:
|
||||
number: 0.7.1
|
||||
@@ -35112,6 +35410,27 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/waving-portfolio/assets/js/modalEffects.js?ver=1.2.4.5
|
||||
- http://wp.lab/wp-content/plugins/waving-portfolio/assets/js/custom.js?ver=1.2.4.5
|
||||
confidence: 50
|
||||
waymark:
|
||||
QueryParameter:
|
||||
number: 0.9.2
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet/leaflet.min.css?ver=0.9.2
|
||||
- http://wp.lab/wp-content/plugins/waymark/assets/dist/ionicons/css/ionicons.min.css?ver=0.9.2
|
||||
- http://wp.lab/wp-content/plugins/waymark/assets/dist/awesome-markers/leaflet.awesome-markers.min.css?ver=0.9.2
|
||||
- http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet-fullscreen/dist/leaflet.fullscreen.min.css?ver=0.9.2
|
||||
- http://wp.lab/wp-content/plugins/waymark/assets/shared/css/Waymark_Map.css?ver=0.9.2
|
||||
- http://wp.lab/wp-content/plugins/waymark/assets/front/css/Waymark_Map_Viewer.css?ver=0.9.2
|
||||
- http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet/leaflet.min.js?ver=0.9.2
|
||||
- http://wp.lab/wp-content/plugins/waymark/assets/dist/awesome-markers/leaflet.awesome-markers.min.js?ver=0.9.2
|
||||
- http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet-fullscreen/dist/leaflet.fullscreen.min.js?ver=0.9.2
|
||||
- http://wp.lab/wp-content/plugins/waymark/assets/dist/Leaflet.Sleep/Leaflet.Sleep.js?ver=0.9.2
|
||||
confidence: 100
|
||||
MetaTag:
|
||||
number: 0.9.2
|
||||
found_by: Meta Tag (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''0.9.2'''
|
||||
waypanel-heatmap-analysis:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -35229,6 +35548,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/wc-expire-products/public/css/wc-expired-products-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wc-expire-products/public/js/wc-expired-products-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wc-frequently-bought-together:
|
||||
ChangeLog:
|
||||
number: 1.0.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wc-frequently-bought-together/changelog.txt,
|
||||
Match: ''Version 1.0.0'''
|
||||
wc-gallery:
|
||||
QueryParameter:
|
||||
number: '1.65'
|
||||
@@ -35236,6 +35562,13 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wc-gallery/includes/css/style.css?ver=1.65
|
||||
wc-getloy-gateway:
|
||||
TranslationFile:
|
||||
number: 1.1.1
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wc-getloy-gateway/lang/wc-getloy-gateway.pot,
|
||||
Match: ''ce (supports iPay88, PayWay and Pi Pay) 1.1.1'''
|
||||
wc-guest-checkout-single-product:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -35478,6 +35811,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wds-themes-manager/languages/wds-themes-manager.pot,
|
||||
Match: ''"Project-Id-Version: wds-theme-manager 1.0.0'''
|
||||
wdv-add-services-and-events:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wdv-add-services-and-events/public/css/wdv-add-services-and-events-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wdv-add-services-and-events/public/js/wdv-add-services-and-events-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wdv-mailchimp-ajax:
|
||||
TranslationFile:
|
||||
number: 1.0.1
|
||||
@@ -35620,6 +35961,16 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/webcamconsult/public/css/webcamconsult-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/webcamconsult/public/js/webcamconsult-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
webhotelier:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/webhotelier/public/css/flatpickr.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/webhotelier/public/css/wp-webhotelier-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/webhotelier/public/js/flatpickr.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/webhotelier/public/js/wp-webhotelier-public.js?ver=1.0.0
|
||||
confidence: 40
|
||||
webiots-teamshowcase:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -35711,6 +36062,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/website-importer/languages/plugin-name.pot,
|
||||
Match: ''"Project-Id-Version: TODO 1.0.0'''
|
||||
website-password-protection:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/website-password-protection/public/css/website-password-protection-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/website-password-protection/public/js/website-password-protection-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
webtexttool:
|
||||
Comment:
|
||||
number: 1.6.0
|
||||
@@ -36288,8 +36647,7 @@ plugins:
|
||||
number: 2.1.5
|
||||
found_by: Comment (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''Google+ and Twitter Card Tags
|
||||
2.1.5'''
|
||||
- 'http://wp.lab/, Match: ''Google+ and Twitter Card Tags 2.1.5'''
|
||||
wonderplugin-slider-lite:
|
||||
QueryParameter:
|
||||
number: '6.2'
|
||||
@@ -36416,6 +36774,21 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/woo-authorize-net/public/css/woo-authorizenet-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-authorize-net/public/js/woo-authorizenet-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
woo-badge-designer-lite:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//font-awesome.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fontawesome.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fa-brands.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fa-regular.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fa-solid.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//elegant-icons.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//linear-style.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css/wobd-frontend.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/woo-badge-designer-lite/js/wobd-frontend.js?ver=1.0.0
|
||||
confidence: 90
|
||||
woo-best-selling-products:
|
||||
QueryParameter:
|
||||
number: 1.1.0
|
||||
@@ -36617,6 +36990,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-eftsecure-gateway/changelog.txt, Match:
|
||||
''= 1.0.3'''
|
||||
woo-elite-licenser-addon:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/woo-elite-licenser-addon/css/elite-woo-license.css?ver=1.0.0
|
||||
confidence: 10
|
||||
woo-estimated-shipping-date:
|
||||
TranslationFile:
|
||||
number: 3.0.2
|
||||
@@ -36802,6 +37182,13 @@ plugins:
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-notification/CHANGELOG.txt, Match: ''1.2.2.3'''
|
||||
woo-oc-product-filter:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/woo-oc-product-filter/includes/js/ocpf_front.js?ver=1.0
|
||||
confidence: 10
|
||||
woo-one-click-upsell-funnel:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -36880,6 +37267,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-payumoney/changelog.txt, Match: ''version
|
||||
1.0'''
|
||||
woo-phone-validator:
|
||||
ChangeLog:
|
||||
number: 1.0.1
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-phone-validator/changelog.txt, Match:
|
||||
''= 1.0.1'''
|
||||
woo-photo-reviews:
|
||||
ChangeLog:
|
||||
number: 1.1.2.1
|
||||
@@ -37175,6 +37569,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-subscription-extras/i18n/languages/woo-subscription-extras.pot,
|
||||
Match: ''ersion: WooCommerce Subscription Extras 1.0.3'''
|
||||
woo-suggestion-engine:
|
||||
ChangeLog:
|
||||
number: 1.0.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-suggestion-engine/CHANGELOG.txt, Match:
|
||||
''version 1.0.0'''
|
||||
woo-super-product-box:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -38735,6 +39136,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-call-to-action-widget/changelog.txt,
|
||||
Match: ''Version 1.0'''
|
||||
wp-campaigns:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-campaigns/public/css/wpex-campaigns-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-campaigns/public/js/wpex-campaigns-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wp-car-manager:
|
||||
QueryParameter:
|
||||
number: 1.3.5
|
||||
@@ -39698,6 +40107,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-font-awesome/font-awesome/css/font-awesome.min.css?ver=1.5
|
||||
confidence: 10
|
||||
wp-food:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-food/js/ex_s_lick/ex_s_lick.js?ver=1.0
|
||||
confidence: 10
|
||||
wp-force-logout:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -40359,6 +40775,16 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-login-flow/languages/wp-login-flow.pot,
|
||||
Match: ''"Project-Id-Version: WP Login Flow 1.0.0'''
|
||||
wp-login-register-flow:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-login-register-flow/public/css/toastr.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-login-register-flow/public/css/wp-login-register-flow-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-login-register-flow/public/js/toastr.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-login-register-flow/public/js/wp-login-register-flow-public.js?ver=1.0.0
|
||||
confidence: 40
|
||||
wp-logo-showcase:
|
||||
QueryParameter:
|
||||
number: 1.3.1
|
||||
@@ -41125,7 +41551,9 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-radio/assets/frontend.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-radio/assets/frontend.min.js?ver=1.0.0
|
||||
confidence: 20
|
||||
- http://wp.lab/wp-content/plugins/wp-radio/assets/css/frontend.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-radio/assets/js/frontend.min.js?ver=1.0.0
|
||||
confidence: 40
|
||||
wp-ragadjust:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -41459,6 +41887,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/wp-scroll//css/style.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/wp-scroll//js/scroll.js?ver=1.0
|
||||
confidence: 20
|
||||
wp-scroll-to-post:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-scroll-to-post/assets/css/wsp-front-style.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/wp-scroll-to-post/assets/js/wsp-front-script.js?ver=1.0
|
||||
confidence: 20
|
||||
wp-scroll-up:
|
||||
QueryParameter:
|
||||
number: 0.5.1
|
||||
@@ -41955,6 +42391,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-tab-anchors/wp-tab-anchors.js?ver=1.3.0
|
||||
confidence: 10
|
||||
wp-table-builder:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-table-builder/inc/frontend/css/wp-table-builder-frontend.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-table-builder/inc/frontend/js/wp-table-builder-frontend.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wp-table-reloaded:
|
||||
TranslationFile:
|
||||
number: 1.9.4
|
||||
@@ -42551,6 +42995,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/js/wprev-public.js?ver=1.1
|
||||
- http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/js/wprs-unslider-min.js?ver=1.1
|
||||
confidence: 50
|
||||
wp24-domain-check:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp24-domain-check/languages/wp24-domaincheck-de_DE.po,
|
||||
Match: ''"Project-Id-Version: WP24 Domain Check 1.0.0'''
|
||||
wp247-extension-notification-client:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
@@ -42893,6 +43344,20 @@ plugins:
|
||||
found_by: Meta Tag (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''wpGraphicStudio v6.4.7'''
|
||||
wphobby-woocommerce-mini-cart:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wphobby-woocommerce-mini-cart/languages/wphobby-woo-mini-cart.pot,
|
||||
Match: ''-Version: WPHobby WooCommerce Mini Cart 1.0.0'''
|
||||
wphobby-woocommerce-product-filter:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wphobby-woocommerce-product-filter/languages/wphobby-woocommerce-product-filter.pot,
|
||||
Match: ''ion: WPHobby WooCommerce Product Filter 1.0.0'''
|
||||
wpi-designer-button-shortcode:
|
||||
QueryParameter:
|
||||
number: 2.5.9
|
||||
@@ -42953,6 +43418,13 @@ plugins:
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wplms-badgeos/changelog.txt, Match: ''1.3.1'''
|
||||
wplyr-media-block:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wplyr-media-block/assets/js/wplyr.js?ver=1.0.0
|
||||
confidence: 10
|
||||
wpm-email:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -43020,6 +43492,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wpnextpreviouslink/public/css/wpnextpreviouslink-public.css?ver=2.4
|
||||
confidence: 10
|
||||
wpo365-login:
|
||||
QueryParameter:
|
||||
number: '8.6'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wpo365-login//apps/dist/pintra-redirect.js?ver=8.6
|
||||
confidence: 10
|
||||
wponion:
|
||||
ChangeLog:
|
||||
number: 0.0.8
|
||||
@@ -44061,6 +44540,12 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/zigaform-calculator-cost-estimation-form-builder-lite/change_log.txt,
|
||||
Match: ''Version 3.9.8.5'''
|
||||
QueryParameter:
|
||||
number: 3.9.9.6.8
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/zigaform-calculator-cost-estimation-form-builder-lite/assets/frontend/js/iframe/4.1.1/iframeResizer.min.js?ver=3.9.9.6.8
|
||||
confidence: 10
|
||||
zigaform-form-builder-lite:
|
||||
LinkInHomepage:
|
||||
number: 3.7.8
|
||||
|
||||
336
spec/fixtures/dynamic_finders/plugin_version/asmember/translation_file/languages/asmember-de_DE.po
vendored
Normal file
336
spec/fixtures/dynamic_finders/plugin_version/asmember/translation_file/languages/asmember-de_DE.po
vendored
Normal file
@@ -0,0 +1,336 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: asMember 1.0\n"
|
||||
"POT-Creation-Date: 2019-06-25 12:18+0200\n"
|
||||
"PO-Revision-Date: 2019-06-25 12:46+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/admin.php:62
|
||||
msgid "Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:64
|
||||
msgid "public"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:65
|
||||
msgid "Only Members"
|
||||
msgstr "Nur für Mitglieder"
|
||||
|
||||
#: admin/admin.php:95
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:111 admin/admin.php:112
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:143
|
||||
msgid "Seite wählen"
|
||||
msgstr ""
|
||||
|
||||
#: public/members.php:119 public/user-account.php:226
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: public/members.php:126 public/members.php:248
|
||||
msgid "Interests"
|
||||
msgstr "Interessen"
|
||||
|
||||
#: public/members.php:133
|
||||
msgid "Ads"
|
||||
msgstr ""
|
||||
|
||||
#: public/members.php:153 public/user-account.php:194
|
||||
#: public/user-account.php:319
|
||||
msgid "About me"
|
||||
msgstr "Über mich"
|
||||
|
||||
#: public/members.php:163
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: public/members.php:198 public/user-account.php:377
|
||||
msgid "I search"
|
||||
msgstr "Ich suche"
|
||||
|
||||
#: public/members.php:208 public/user-account.php:372
|
||||
msgid "I offer"
|
||||
msgstr "Ich biete"
|
||||
|
||||
#: public/members.php:256 public/user-account.php:335
|
||||
msgid "favorite quote"
|
||||
msgstr ""
|
||||
|
||||
#: public/members.php:270 public/user-account.php:345
|
||||
msgid "favorite music"
|
||||
msgstr ""
|
||||
|
||||
#: public/members.php:280 public/user-account.php:355
|
||||
msgid "favorite film"
|
||||
msgstr "Lieblingsfilm"
|
||||
|
||||
#: public/members.php:291 public/user-account.php:350
|
||||
msgid "favorite book"
|
||||
msgstr "Lieblingsbuch"
|
||||
|
||||
#: public/user-account.php:131 public/user-account.php:256
|
||||
msgid "Address"
|
||||
msgstr "Anrede"
|
||||
|
||||
#: public/user-account.php:133 public/user-account.php:258
|
||||
#: public/user-register.php:604
|
||||
msgid "Sir"
|
||||
msgstr "Herr"
|
||||
|
||||
#: public/user-account.php:134 public/user-account.php:259
|
||||
#: public/user-register.php:603
|
||||
msgid "Madame"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-account.php:139 public/user-account.php:140
|
||||
#: public/user-account.php:264 public/user-account.php:265
|
||||
#: public/user-register.php:609
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-account.php:144 public/user-account.php:145
|
||||
#: public/user-account.php:269 public/user-account.php:270
|
||||
#: public/user-register.php:615
|
||||
msgid "Firstname"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-account.php:150 public/user-account.php:151
|
||||
#: public/user-account.php:275 public/user-account.php:276
|
||||
#: public/user-register.php:621
|
||||
msgid "Lastname"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-account.php:162 public/user-account.php:163
|
||||
#: public/user-account.php:287 public/user-account.php:288
|
||||
#: public/user-register.php:631
|
||||
msgid "Street"
|
||||
msgstr "Straße"
|
||||
|
||||
#: public/user-account.php:168 public/user-account.php:169
|
||||
#: public/user-account.php:293 public/user-account.php:294
|
||||
#: public/user-register.php:636
|
||||
msgid "Zipcode"
|
||||
msgstr "PLZ"
|
||||
|
||||
#: public/user-account.php:174 public/user-account.php:175
|
||||
#: public/user-account.php:299 public/user-account.php:300
|
||||
#: public/user-register.php:642
|
||||
msgid "City"
|
||||
msgstr "Ort"
|
||||
|
||||
#: public/user-account.php:182 public/user-account.php:307
|
||||
msgid "Birthday"
|
||||
msgstr "Geburtstag"
|
||||
|
||||
#: public/user-account.php:208 public/user-account.php:422
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
#: public/user-account.php:231
|
||||
msgid "Detail"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-account.php:235
|
||||
msgid "Offer/Search"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-account.php:239 public/user-account.php:394
|
||||
msgid "Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-account.php:340
|
||||
msgid "interests"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-account.php:400 public/user-account.php:404
|
||||
msgid "Upload Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-dashboard.php:24
|
||||
msgid "Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-dashboard.php:33
|
||||
msgid "not logged in"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-login.php:32
|
||||
msgid "Benutzer/Email"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-login.php:33
|
||||
msgid "Passwort"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-login.php:34
|
||||
msgid "Eingeloggt bleiben"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-login.php:35 public/user-login.php:61
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-login.php:47 public/user-login.php:48
|
||||
msgid "Username oder Email"
|
||||
msgstr "Benutzer oder EMail"
|
||||
|
||||
#: public/user-login.php:51 public/user-login.php:52
|
||||
#: public/user-register.php:117 public/user-register.php:684
|
||||
#: public/user-register.php:685
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
#: public/user-login.php:56
|
||||
msgid "Be Logged in"
|
||||
msgstr "Sie sind eingeloggt"
|
||||
|
||||
#: public/user-login.php:74
|
||||
msgid "Reset password"
|
||||
msgstr "Passwort vergessen"
|
||||
|
||||
#: public/user-login.php:80 public/user-register.php:128
|
||||
#: public/user-register.php:742
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-login.php:121
|
||||
msgid "<strong>ERROR</strong>: Invalid username or incorrect password."
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:27
|
||||
msgid "You are logged in"
|
||||
msgstr "Sie sind bereits eingeloggt."
|
||||
|
||||
#: public/user-register.php:27
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:34
|
||||
msgid "Register disabled"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:56
|
||||
msgid "Your membership has been successfully activated"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:59 public/user-register.php:106
|
||||
#: public/user-register.php:186
|
||||
msgid "Activation was not successful"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:116
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:127
|
||||
msgid "Lost password"
|
||||
msgstr "Passwort vergessen"
|
||||
|
||||
#: public/user-register.php:174
|
||||
msgid "A membership application for this email has already been created."
|
||||
msgstr "Ein Mitgliedsantrag zu dieser Email wurde bereits angelegt."
|
||||
|
||||
#: public/user-register.php:294 public/user-register.php:515
|
||||
msgid "Please enter a valid email address!"
|
||||
msgstr "Bitte geben Sie eine gültige EMail ein!"
|
||||
|
||||
#: public/user-register.php:405
|
||||
msgid ""
|
||||
"Your account has been successfully created. You will receive an email with a "
|
||||
"confirmation link to activate your account."
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:437 public/user-register.php:449
|
||||
#: public/user-register.php:461 public/user-register.php:471
|
||||
#: public/user-register.php:481 public/user-register.php:491
|
||||
#: public/user-register.php:507
|
||||
msgid "Please fill in this field!"
|
||||
msgstr "Bitte füllen Sie dieses Feld aus!"
|
||||
|
||||
#: public/user-register.php:529 public/user-register.php:538
|
||||
msgid "Please enter a password with at least 8 characters!"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:547
|
||||
msgid "The passwords must be identical."
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:557
|
||||
msgid "Please confirm the terms and conditions."
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:566
|
||||
msgid "Please confirm the privacy policy"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:601
|
||||
msgid "address"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:616
|
||||
msgid "Your firstname"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:622
|
||||
msgid "Your lastname"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:632
|
||||
msgid "Your street"
|
||||
msgstr "Ihre Straße"
|
||||
|
||||
#: public/user-register.php:637
|
||||
msgid "Your zipcode"
|
||||
msgstr "Ihre PLZ"
|
||||
|
||||
#: public/user-register.php:643
|
||||
msgid "Your City"
|
||||
msgstr ""
|
||||
|
||||
#: public/user-register.php:647
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
||||
#: public/user-register.php:648
|
||||
msgid "Your phone"
|
||||
msgstr "Ihre Telefonnummer"
|
||||
|
||||
#: public/user-register.php:670
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: public/user-register.php:671
|
||||
msgid "Your name"
|
||||
msgstr "Ihr Name"
|
||||
|
||||
#: public/user-register.php:679
|
||||
msgid "EMail"
|
||||
msgstr "EMail"
|
||||
|
||||
#: public/user-register.php:680
|
||||
msgid "Your Email"
|
||||
msgstr "Ihre Email"
|
||||
|
||||
#: public/user-register.php:689 public/user-register.php:690
|
||||
msgid "Repeat password"
|
||||
msgstr "Passwort wiederholen"
|
||||
|
||||
#: public/user-register.php:704
|
||||
msgid "Membership"
|
||||
msgstr "Mitgliedschaft"
|
||||
258
spec/fixtures/dynamic_finders/plugin_version/avaibook/translation_file/languages/avaibook-pt_PT.po
vendored
Normal file
258
spec/fixtures/dynamic_finders/plugin_version/avaibook/translation_file/languages/avaibook-pt_PT.po
vendored
Normal file
@@ -0,0 +1,258 @@
|
||||
# Copyright (C) 2019 Carlos G. Cerro cgcerro@gmail.com
|
||||
# This file is distributed under the same license as the AvaiBook plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AvaiBook 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/avaibook\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-06-25T12:50:01+02:00\n"
|
||||
"PO-Revision-Date: 2019-06-28 09:34+0200\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Domain: avaibook\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: pt_PT\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "AvaiBook"
|
||||
msgstr "AvaiBook"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://wordpress.org/plugins/avaibook/"
|
||||
msgstr "http://wordpress.org/plugins/avaibook/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Show Avaibook booking form in your wordpress"
|
||||
msgstr "Mostre o formulário de reserva Avaibook no seu Wordpress"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Carlos G. Cerro cgcerro@gmail.com"
|
||||
msgstr ""
|
||||
|
||||
#: avaibook.php:239
|
||||
msgid "Show Avaibook book form 1"
|
||||
msgstr "Mostrar formulário AvaiBook 1"
|
||||
|
||||
#: avaibook.php:260
|
||||
msgid "Show Avaibook book form 2"
|
||||
msgstr "Mostrar formulário AvaiBook 2"
|
||||
|
||||
#: avaibook.php:282
|
||||
msgid "Show Avaibook book form 3"
|
||||
msgstr "Mostrar formulário AvaiBook 3"
|
||||
|
||||
#: includes/admin.php:3
|
||||
msgid "Form 1"
|
||||
msgstr "Formulário 1"
|
||||
|
||||
#: includes/admin.php:3
|
||||
msgid "Form 2"
|
||||
msgstr "Formulário 2"
|
||||
|
||||
#: includes/admin.php:3
|
||||
msgid "Form 3"
|
||||
msgstr "Formulário 3"
|
||||
|
||||
#: includes/admin.php:15
|
||||
msgid ""
|
||||
"You can define three types of form. Each one can have a different "
|
||||
"configuration or presentation."
|
||||
msgstr ""
|
||||
"É possível definir três tipos diferentes de formulários. Cada um com uma "
|
||||
"configuração ou apresentação diferente."
|
||||
|
||||
#: includes/admin.php:33
|
||||
msgid "Rental Id is mandatory with \"single\" rental type."
|
||||
msgstr ""
|
||||
"A identificação do alojamento é obrigatória no tipo de motor \"simples\"."
|
||||
|
||||
#: includes/admin.php:37
|
||||
msgid "Owner Id is mandatory with \"multiple\" rental type."
|
||||
msgstr ""
|
||||
"A identificação do alojamento é obrigatória no tipo de motor \"múltiplo\"."
|
||||
|
||||
#: includes/admin.php:41
|
||||
msgid "Configuration saved."
|
||||
msgstr "Configuração gravada."
|
||||
|
||||
#: includes/admin.php:47
|
||||
msgid "Form"
|
||||
msgstr "Formulário"
|
||||
|
||||
#: includes/admin.php:54
|
||||
msgid "AvaiBook configuration"
|
||||
msgstr "Configuração AvaiBook"
|
||||
|
||||
#: includes/admin.php:56
|
||||
msgid ""
|
||||
"Choose the type of Booking Engine you wish to link, and fill in the "
|
||||
"requested parameters (those marked with * are mandatory and you will find "
|
||||
"their value in your private area of AvaiBook)"
|
||||
msgstr ""
|
||||
"Escolha o tipo de motor de reservas que pretende utilizar. Preencha os "
|
||||
"campos obrigatórios (aqueles marcados com * são obrigatórios e encontrará o "
|
||||
"valor em sua área privada AvaiBook)"
|
||||
|
||||
#: includes/admin.php:61
|
||||
msgid "Booking Engine type"
|
||||
msgstr "Tipo de motor AvaiBook"
|
||||
|
||||
#: includes/admin.php:64
|
||||
msgid "Single"
|
||||
msgstr "Simples"
|
||||
|
||||
#: includes/admin.php:65
|
||||
msgid "Multiple"
|
||||
msgstr "Múltiplo"
|
||||
|
||||
#: includes/admin.php:67
|
||||
msgid ""
|
||||
"Choose the type of booking engine you want to use. To a single accommodation "
|
||||
"or to all your accommodations"
|
||||
msgstr ""
|
||||
"Escolha o tipo de motor de reservas que pretende utilizar. Para um único "
|
||||
"alojamento ou para todos os alojamentos"
|
||||
|
||||
#: includes/admin.php:73
|
||||
msgid "Rental Id"
|
||||
msgstr "ID de Alojamento"
|
||||
|
||||
#: includes/admin.php:75
|
||||
msgid "This is the AvaiBook accommodation Id"
|
||||
msgstr "Este é o identificador do alojamento"
|
||||
|
||||
#: includes/admin.php:79
|
||||
msgid "Reference"
|
||||
msgstr "Referência"
|
||||
|
||||
#: includes/admin.php:81 includes/admin.php:99
|
||||
msgid ""
|
||||
"(optional) the generated reserves will have this reference so that you can "
|
||||
"distinguish them"
|
||||
msgstr ""
|
||||
"(opcional) as reservas geradas terão esta referência anotada para que possa "
|
||||
"distingui-las"
|
||||
|
||||
#: includes/admin.php:92
|
||||
msgid "This is your customer id in AvaiBook"
|
||||
msgstr "Este é o seu ID de cliente no AvaiBook"
|
||||
|
||||
#: includes/admin.php:105
|
||||
msgid "Show rental units"
|
||||
msgstr "Mostrar unidades habitacionais"
|
||||
|
||||
#: includes/admin.php:106
|
||||
msgid "Show zones"
|
||||
msgstr "Mostrar zonas"
|
||||
|
||||
#: includes/admin.php:107
|
||||
msgid "Show people"
|
||||
msgstr "Mostrar pessoas"
|
||||
|
||||
#: includes/admin.php:108
|
||||
msgid "Behavior in the booking engine"
|
||||
msgstr "Comportamento no motor de reservas"
|
||||
|
||||
#: includes/admin.php:116
|
||||
msgid "Display options"
|
||||
msgstr "Opções de apresentação"
|
||||
|
||||
#: includes/admin.php:118
|
||||
msgid ""
|
||||
"Choose how you want your widget to be and what colors you want it to have. "
|
||||
"If you do not mark any of the options below your widget will only be a "
|
||||
"button."
|
||||
msgstr ""
|
||||
"Escolha como quer que seja o seu widget e que cores quer que ele tenha. Se "
|
||||
"não marcar nenhuma das opções, o widget será apenas um botão."
|
||||
|
||||
#: includes/admin.php:121
|
||||
msgid "title"
|
||||
msgstr "título"
|
||||
|
||||
#: includes/admin.php:122
|
||||
msgid "This text title will be showed in your form"
|
||||
msgstr "Este título será exibido no seu formulário"
|
||||
|
||||
#: includes/admin.php:127
|
||||
msgid "Request dates"
|
||||
msgstr "Pedir datas"
|
||||
|
||||
#: includes/admin.php:128
|
||||
msgid "show dates request's fields"
|
||||
msgstr "exibir campos de datas"
|
||||
|
||||
#: includes/admin.php:135
|
||||
msgid "Request guest number"
|
||||
msgstr "Pedir número de clientes"
|
||||
|
||||
#: includes/admin.php:136
|
||||
msgid "show guest's numbers field"
|
||||
msgstr "mostrar no campo o número de pessoas"
|
||||
|
||||
#: includes/admin.php:140
|
||||
msgid "Colour settings"
|
||||
msgstr "Configuração de cores"
|
||||
|
||||
#: includes/admin.php:141
|
||||
msgid "Set empty for keep your default style."
|
||||
msgstr "Mantenha a caixa vazia para deixar o seu estilo por defeito."
|
||||
|
||||
#: includes/admin.php:144
|
||||
msgid "Background colour"
|
||||
msgstr "Cor de fundo"
|
||||
|
||||
#: includes/admin.php:153
|
||||
msgid "Main colour"
|
||||
msgstr "Cor principal"
|
||||
|
||||
#: includes/admin.php:162
|
||||
msgid "Text colour"
|
||||
msgstr "Cor do texto"
|
||||
|
||||
#: includes/admin.php:176
|
||||
msgid "Save changes"
|
||||
msgstr "Guardar modificações"
|
||||
|
||||
#: includes/admin.php:181
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
#: includes/admin.php:183
|
||||
msgid "You can use this shortcode"
|
||||
msgstr "Pode usar o seguinte shortcode"
|
||||
|
||||
#: includes/admin.php:185
|
||||
msgid "Only copy this code, and put it where you want in your post or pages."
|
||||
msgstr "Basta copiar o código e colá-lo onde quiser nos seus posts ou páginas."
|
||||
|
||||
#: includes/admin.php:187
|
||||
msgid "Or you can use our widget"
|
||||
msgstr "Ou pode usar o nosso widget"
|
||||
|
||||
#: includes/admin.php:189
|
||||
msgid ""
|
||||
"Go to <a href=\"%s\">widgets section</a> and drag our widget \"avaibook%s\" "
|
||||
"where you want."
|
||||
msgstr ""
|
||||
"Vá até a seção <a href=\"%s\">widget </a> e arraste o nosso widget \"avaibook"
|
||||
"%s\" onde quiser."
|
||||
|
||||
#: includes/front.php:11
|
||||
msgid "Arrive date"
|
||||
msgstr "Data de chegada"
|
||||
|
||||
#: includes/front.php:16
|
||||
msgid "Departure date"
|
||||
msgstr "Data saída"
|
||||
|
||||
#: includes/front.php:24 includes/front.php:25
|
||||
msgid "Guest Num."
|
||||
msgstr "Número de pessoas."
|
||||
|
||||
#: includes/front.php:29
|
||||
msgid "search"
|
||||
msgstr "procurar"
|
||||
@@ -0,0 +1,8 @@
|
||||
Version 1.2.0 - 20th July 2019
|
||||
New: Countdown animation effect added.
|
||||
|
||||
Version 1.1.0 - 16th July 2019
|
||||
New: When to apply animation option added in admin settings.
|
||||
|
||||
Version 1.0.0 - 15th July 2019
|
||||
- Initial Release
|
||||
@@ -0,0 +1,191 @@
|
||||
# Copyright (C) 2019 Sandesh
|
||||
# This file is distributed under the same license as the Browser Title Bar Animation package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Browser Title Bar Animation 1.2.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/browser-title-bar-animation\n"
|
||||
"POT-Creation-Date: 2019-07-20 06:55:08+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: classes/class-tbas-admin.php:42
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:55 classes/class-tbas-admin.php:56
|
||||
#: classes/class-tbas-admin.php:72 classes/class-tbas-metabox.php:76
|
||||
msgid "Title Bar Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:85
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:86
|
||||
msgid "Got a question? I'm happy to help!"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:87
|
||||
msgid "Submit a Ticket »"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:103
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:111 classes/class-tbas-metabox.php:122
|
||||
msgid "Enable Title Bar Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:118
|
||||
msgid "Enable Title Bar Animation Globally"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:125
|
||||
msgid "Apply Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:132 classes/class-tbas-metabox.php:142
|
||||
msgid "When to apply animation?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:134 classes/class-tbas-metabox.php:139
|
||||
msgid "Always"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:135 classes/class-tbas-metabox.php:140
|
||||
msgid "When user switch to another tab"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:143 classes/class-tbas-admin.php:150
|
||||
#: classes/class-tbas-metabox.php:149
|
||||
msgid "Animation Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:152 classes/class-tbas-metabox.php:153
|
||||
msgid "Typing"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:153 classes/class-tbas-metabox.php:154
|
||||
msgid "Scrolling"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:154 classes/class-tbas-metabox.php:155
|
||||
msgid "Blinking"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:155 classes/class-tbas-metabox.php:156
|
||||
msgid "Countdown"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:169
|
||||
msgid "Animation Examples"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:176 classes/class-tbas-metabox.php:163
|
||||
msgid "Animation Speed"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:183
|
||||
msgid "Animation speed"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:190 classes/class-tbas-metabox.php:172
|
||||
msgid "Animation Title"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:197 classes/class-tbas-admin.php:225
|
||||
#: classes/class-tbas-metabox.php:175
|
||||
msgid ""
|
||||
"Animation will apply on this title. If empty, default title will consider "
|
||||
"as animation title."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:204 classes/class-tbas-metabox.php:180
|
||||
msgid "Countdown Duration"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:211
|
||||
msgid "Time in minutes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:217 classes/class-tbas-metabox.php:189
|
||||
msgid "Countdown Title"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-admin.php:224
|
||||
msgid "{{countdown}}"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:112
|
||||
msgid "Override Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:115
|
||||
msgid "Enable this to override global settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:126
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:127
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:135
|
||||
msgid "Animation Show"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:166
|
||||
msgid "Animation speed. eg. 1000 for 1second"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:183
|
||||
msgid "Duration in minutes."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:192
|
||||
msgid "User {{countdown}} tag."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-tbas-metabox.php:193
|
||||
msgid "You can use {{countdown}} tag in string."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Browser Title Bar Animation"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.techiesandesh.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Don't lose visitors. Catch the user's attention."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sandesh"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://sandeshjangam.com/"
|
||||
msgstr ""
|
||||
27
spec/fixtures/dynamic_finders/plugin_version/enter-title-here-changer/change_log/CHANGELOG.MD
vendored
Normal file
27
spec/fixtures/dynamic_finders/plugin_version/enter-title-here-changer/change_log/CHANGELOG.MD
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
# Enter Title Here Changer Changelog
|
||||
|
||||
## [0.3.0] - July 9, 2019
|
||||
- Improved: More information is added to readme.txt files
|
||||
- Removed: Remove support for GitHub Updater
|
||||
- Changed: Plugin URI has been change to the WordPress repos URI
|
||||
- Fixed: Fix the undefined error when trying to create a new quick draft in dashboard
|
||||
|
||||
[0.3.0]: https://github.com/TremiDkhar/enter-title-here-changer/compare/0.2.0...0.3.0
|
||||
|
||||
## [0.2.0] - July 8, 2019
|
||||
- Uploaded to WordPress.org - `Birthday of Enter Title Here Changer`
|
||||
- Improved: Club all the settings functions inside settings class
|
||||
- Removed: Remove unnecessary methods
|
||||
|
||||
[0.2.0]: https://github.com/TremiDkhar/enter-title-here-changer/compare/0.1.1...0.2.0
|
||||
|
||||
## [0.1.1] - July 7, 2019
|
||||
- Added: Add support for Custom Post Type
|
||||
- Added: Add uninstaller settings to delete data when plugin is removed
|
||||
- Added: Add default plugin data
|
||||
- Fixed: Check the settings is set before output in the settings field
|
||||
|
||||
[0.1.1]: https://github.com/TremiDkhar/enter-title-here-changer/compare/0.1.0...0.1.1
|
||||
|
||||
## 0.1.0 - July 5, 2019
|
||||
- Initial Release
|
||||
@@ -0,0 +1,141 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GDPR Cookie Banner 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-06-25 15:36+0530\n"
|
||||
"PO-Revision-Date: 2019-06-25 15:39+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_x;_ex;_n;_nx;_n_noop;_nx_noop;"
|
||||
"translate_nooped_plural;esc_html__;esc_html_e;esc_html_x;"
|
||||
"esc_attr__;esc_attr_e;esc_attr_x\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:117
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:137
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:138
|
||||
msgid "Banner Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:139
|
||||
msgid "Banner Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:140
|
||||
msgid "Banner Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:141
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:142
|
||||
msgid "Banner Font"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:143
|
||||
msgid "Banner Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:154
|
||||
msgid "Settings For GDPR Cookie Banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:170
|
||||
msgid "Banner Message Goes Here....."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:192
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:198
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:193
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:199
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:215
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:222
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:229
|
||||
msgid "Large"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:216
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:223
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:230
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:217
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:224
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:231
|
||||
msgid "Small"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:248
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:257
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:249
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:258
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:312
|
||||
msgid "GDPR Cookie Banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:353
|
||||
msgid "Banner Message cannot be blank"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:371
|
||||
msgid "Banner Position field is required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:375
|
||||
msgid "Banner Position field is not valid"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:393
|
||||
msgid "Banner Size field is required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:397
|
||||
msgid "Banner Size field is not valid"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:424
|
||||
msgid "Banner Font field is required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-gdpr-cookie-banner-admin.php:439
|
||||
msgid "Banner Font Size field is required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/gdpr-cookie-banner-admin-display.php:49
|
||||
#: admin/partials/gdpr-cookie-banner-admin-display.php:55
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/gdpr-cookie-banner-admin-display.php:59
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/gdpr-cookie-banner-admin-display.php:60
|
||||
msgid "Link Copied!!"
|
||||
msgstr ""
|
||||
1542
spec/fixtures/dynamic_finders/plugin_version/ghostbirdwp/translation_file/languages/ghostbirdwp.pot
vendored
Normal file
1542
spec/fixtures/dynamic_finders/plugin_version/ghostbirdwp/translation_file/languages/ghostbirdwp.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
14
spec/fixtures/dynamic_finders/plugin_version/instashop/composer_file/package.json
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/instashop/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "instashop",
|
||||
"title": "InstaShop",
|
||||
"version": "1.4.1",
|
||||
"homepage": "https://instashopapp.com/",
|
||||
"main": "Gruntfile.js",
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.5",
|
||||
"grunt-contrib-uglify": "~0.4.0",
|
||||
"grunt-contrib-less": "~0.11.1",
|
||||
"grunt-contrib-cssmin": "~0.9.0",
|
||||
"grunt-contrib-watch": "~0.6.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
# Copyright (C) 2019 Oberon Lai
|
||||
# This file is distributed under the same license as the Media with FTP plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Media with FTP 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/media-with-ftp\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: 2019-08-02T09:57:38+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: media-with-ftp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-media-with-ftp-admin.php:115
|
||||
#: admin/class-media-with-ftp-admin.php:118
|
||||
msgid "Media with FTP"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://oberonlai.blog/media-with-ftp/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Let's you upload images to ftp-server and remove the uploads in the WordPress Media Library."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Oberon Lai"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://oberonlai.blog"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:122
|
||||
msgid "FTP Host Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:123
|
||||
msgid "This is the FTP server hostname. It is usually used IP address or host URL."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:127
|
||||
msgid "ex: 123.123.123.123 or domain.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:131
|
||||
msgid "FTP Port"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:132
|
||||
msgid "This is the port number of connection the FTP server. The default is 21. DO NOT change it if you have no idea about protocol port."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:143
|
||||
msgid "FTP Username"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:144
|
||||
msgid "This is the username of connecting the FTP Server."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:149
|
||||
msgid "FTP Password"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:150
|
||||
msgid "This is the password of connecting the FTP Server."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:158
|
||||
msgid "FTP Image URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-media-with-ftp-admin.php:159
|
||||
msgid "This is the URL with folder structure of your FTP Server and also the path of your website's images."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,240 @@
|
||||
# Copyright (C) 2019 Jörn Lund
|
||||
# This file is distributed under the same license as the Multisite Blog Alias plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Multisite Blog Alias 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/multisite-blog-alias\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: 2019-07-16T14:23:15+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: multisite-blog-alias\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Multisite Blog Alias"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/mcguffin/multisite-blog-alias"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Alias Domains for Blogs"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Jörn Lund"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/mcguffin"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:67
|
||||
msgid "The Multisite Blog Alias plugin requires a WordPress multisite installation."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:68
|
||||
msgid "It has been deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/Ajax.php:67
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:483
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/Ajax.php:72
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/Ajax.php:75
|
||||
msgid "Error message:"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/Ajax.php:80
|
||||
msgid "Last Redirect to:"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:70
|
||||
msgid "Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:80
|
||||
msgid "Sorry, you are not allowed to install plugins."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:96
|
||||
msgid "Multisite Blog Alias Setup"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:101
|
||||
msgid "The plugin is well configured. The instructions are kept for documentation purposes."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:108
|
||||
msgid "The plugin could not write to the filesystem."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:109
|
||||
msgid "Please change the following."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Sunrise file location
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:140
|
||||
msgid "Insert the following code into %s:"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Sunrise file location
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:143
|
||||
msgid "Create a file %s with the following code:"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:174
|
||||
msgid "Sorry, you are not allowed to run the uninstall procedere."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:196
|
||||
msgid "Uninstall Plugin?"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:197
|
||||
msgid "Uninstalling the plugin will remove the Blog Alias table from the database and deactivate the plugin."
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %d number of alias domains
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:201
|
||||
msgid "%d Alias Domain will be deleted."
|
||||
msgid_plural "%d Alias Domains will be deleted."
|
||||
msgstr[0] ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:204
|
||||
msgid "No, back to plugins"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:205
|
||||
msgid "Yes, Uninstall now!"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:369
|
||||
msgid "Alias Domains"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:445
|
||||
msgid "Not Configured:"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: link to setup page
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:448
|
||||
msgid "Multisite Blog Alias is not configured. Please visit %s for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:452
|
||||
msgid "the setup page"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:460
|
||||
msgid "Alias created"
|
||||
msgstr ""
|
||||
|
||||
#. translators: number of deleted entries
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:463
|
||||
msgid "%d entry deleted"
|
||||
msgid_plural "%d entries deleted"
|
||||
msgstr[0] ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:466
|
||||
msgid "The Alias already exists."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:467
|
||||
msgid "Invalid domain name"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:468
|
||||
msgid "Deletion failed"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:469
|
||||
msgid "A different Blog is already using this domain."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:470
|
||||
msgid "Something went wrong..."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:473
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:480
|
||||
msgid "Visit other Blog"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:491
|
||||
msgid "Notice:"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:492
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:76
|
||||
msgid "The domain matches the site URL of this blog."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:524
|
||||
msgid "Add Domain Alias"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:535
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:542
|
||||
msgid "Domain Aliases"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:546
|
||||
msgid "– No Domain Aliases –"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:554
|
||||
msgid "Alias Domain"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:555
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:583
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:600
|
||||
msgid "Check Status"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Admin/NetworkAdmin.php:602
|
||||
msgid "Remove All"
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:60
|
||||
msgid "Domain alias not found."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:69
|
||||
msgid "WP-Site for this alias could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:74
|
||||
msgid "The domain is already used by another site."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:92
|
||||
msgid "The domain is unreachable."
|
||||
msgstr ""
|
||||
|
||||
#: include/BlogAlias/Model/ModelAliasDomains.php:99
|
||||
msgid "The domain or a redirect does not point to this blog."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,241 @@
|
||||
# PHP Console Log.
|
||||
# Copyright (C) 2019 Marcus Viar
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PHP Console Log 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: marcus@marcusviar.com\n"
|
||||
"POT-Creation-Date: 2019-07-06 18:16-0500\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: includes/php-console-log-menu.php:20 includes/php-console-log-menu.php:21
|
||||
msgid "PHP Console Log Help"
|
||||
msgstr ""
|
||||
|
||||
#: includes/php-console-log-menu.php:40
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: includes/php-console-log-scripts.php:65
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/php-console-log-scripts.php:66
|
||||
msgid "Line"
|
||||
msgstr ""
|
||||
|
||||
#: includes/php-console-log-scripts.php:67
|
||||
msgid "Args"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:39
|
||||
msgid "None."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:39
|
||||
msgid "loads first."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:77
|
||||
msgid "Important:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:78
|
||||
msgid ""
|
||||
"For security and performance on a production site, make sure to deactivate "
|
||||
"this plugin and remove all calls to"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:78
|
||||
#: pages/php-console-log-page-help.php:85
|
||||
#: pages/php-console-log-page-help.php:207
|
||||
#: pages/php-console-log-page-help.php:211
|
||||
msgid "My String or Array"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:78
|
||||
msgid ""
|
||||
"from your PHP code before going live to avoid exposing your PHP variables to "
|
||||
"the public."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:80
|
||||
msgid "Plugins That Load Before PHP Console Log"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:81
|
||||
msgid ""
|
||||
"PHP Console Log's functions are not accessible to any plugins that load "
|
||||
"before PHP Console Log is loaded. Therefore, Any plugins listed here will "
|
||||
"not be able to use PHP Console Log features."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:84
|
||||
msgid "Examples:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:85
|
||||
msgid "Place the"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:85
|
||||
msgid ""
|
||||
"function anywhere in your WordPress plugin PHP code. The value(s) "
|
||||
"you pass into"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:85
|
||||
msgid "will be logged to the web console in your browser."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:88
|
||||
msgid "Pass in a string:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:98
|
||||
msgid "Pass in an array:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:111
|
||||
msgid "Pass in an associative array:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:124
|
||||
msgid ""
|
||||
"Pass in an unlimited number of arguments nested to an unlimited depth (multi-"
|
||||
"dimensional array):"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:150
|
||||
msgid "Opening Web Console in your browser:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:156
|
||||
msgid ""
|
||||
"Press Command + Option + J (Mac) or Control + Shift + J (Windows, Linux, "
|
||||
"Chrome OS) to jump straight into the Console panel."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:158
|
||||
#: pages/php-console-log-page-help.php:167
|
||||
#: pages/php-console-log-page-help.php:175
|
||||
msgid "source"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:163
|
||||
msgid ""
|
||||
"Select Web Console from the Web Developer submenu in the Firefox Menu (or "
|
||||
"Tools menu if you display the menu bar or are on Mac OS X)."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:165
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:166
|
||||
msgid ""
|
||||
"Press the Ctrl + Shift + K (Command + Option + K on OS X) keyboard shortcut."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:172
|
||||
msgid "Select Develop menu in the menu bar, choose Show JavaScript Console."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:174
|
||||
msgid ""
|
||||
"If you dont see the Develop menu in the menu bar, choose Safari > "
|
||||
"Preferences, click Advanced, then select \"Show Develop menu in menu bar\"."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:180
|
||||
msgid "Troubleshooting:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:181
|
||||
msgid ""
|
||||
"The most common reasons that cause PHP Console Log to fail when logging your "
|
||||
"information to the web console are:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:186
|
||||
#: pages/php-console-log-page-help.php:196
|
||||
#: pages/php-console-log-page-help.php:206
|
||||
#: pages/php-console-log-page-help.php:216
|
||||
msgid "Cause:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:187
|
||||
msgid "The PHP Console log plugin is not activated."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:190
|
||||
#: pages/php-console-log-page-help.php:200
|
||||
#: pages/php-console-log-page-help.php:210
|
||||
#: pages/php-console-log-page-help.php:220
|
||||
msgid "Solution:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:191
|
||||
msgid "Activate the PHP Console Log Plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:197
|
||||
msgid ""
|
||||
"Another plugin has changed the order in which your plugins load. Making the "
|
||||
"PHP Console Log functions not available yet."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:201
|
||||
msgid ""
|
||||
"PHP Console Log updates the order in which plugins are loaded any time a "
|
||||
"plugin is activated or deactivated. However, it is still possible for other "
|
||||
"plugins to change the order in which plugins load afterwards. Deactivate any "
|
||||
"plugins that change the order in which your plugins load."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:207
|
||||
msgid "was called inside a block of code that was not run."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:211
|
||||
msgid "Make sure the function you called"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:211
|
||||
msgid "in is run via an action or filter hook such as:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:211
|
||||
msgid "Or call"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:211
|
||||
msgid "outside of any other functions in a file that you know is run."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:217
|
||||
msgid "PHP throws errors."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:217
|
||||
msgid "Side Note:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:217
|
||||
msgid "Make sure you are using"
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:217
|
||||
msgid "in your wp-config.php file so you can see PHP errors."
|
||||
msgstr ""
|
||||
|
||||
#: pages/php-console-log-page-help.php:221
|
||||
msgid "Fix the error that PHP is showing you. Then try again."
|
||||
msgstr ""
|
||||
@@ -612,6 +612,10 @@
|
||||
<link rel="stylesheet" id="ak_akucom-css" href="http://wp.lab/wp-content/plugins/alkivia/style.css?ver=0.10.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- all-in-one-analytics -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/all-in-one-analytics/public/js/analytics/analytics.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- all-in-one-event-calendar -->
|
||||
<link rel="stylesheet" id="ai1ec_style-css" href="//wp.lab/wp-content/plugins/all-in-one-event-calendar/public/themes-ai1ec/vortex/css/ai1ec_parsed_css.css?ver=2.5.28" type="text/css" media="all">
|
||||
|
||||
@@ -1439,6 +1443,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bigcommerce/assets/js/dist/scripts.min.js?ver=2.0.1-5.38.03.06.2019"></script>
|
||||
|
||||
|
||||
<!-- bigideas -->
|
||||
<link rel="stylesheet" id="ideas-css" href="http://wp.lab/wp-content/plugins/bigideas/public/css/ideas-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bigideas/public/js/ideas-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- billbee-auftragsabwicklung-warenwirtschaft-automatisierung -->
|
||||
<link rel="stylesheet" id="billbee-css" href="http://wp.lab/wp-content/plugins/billbee-auftragsabwicklung-warenwirtschaft-automatisierung/public/css/billbee-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/billbee-auftragsabwicklung-warenwirtschaft-automatisierung/public/js/billbee-public.js?ver=1.0.0"></script>
|
||||
@@ -2105,6 +2114,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/calculation-shipping/js/front_calship.js?ver=0.2.0"></script>
|
||||
|
||||
|
||||
<!-- calendar-to-events -->
|
||||
<link rel="stylesheet" id="calendar_to_events_style-css" href="http://wp.lab/wp-content/plugins/calendar-to-events/resources/css/eventCalendar.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="calendar_to_events_style_responsive-css" href="http://wp.lab/wp-content/plugins/calendar-to-events/resources/css/eventCalendar_theme_responsive.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/calendar-to-events/resources/js/jquery.eventCalendar.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- calendarista-basic-edition -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/calendarista-basic-edition/assets/scripts/bootstrap.collapse.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/calendarista-basic-edition/assets/scripts/calendarista.1.0.min.js?ver=1.0"></script>
|
||||
@@ -2228,6 +2243,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-scroll-progress-bar/public/js/catch-scroll-progress-bar-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- catch-social-share -->
|
||||
<link rel="stylesheet" id="catch-social-share-css" href="http://wp.lab/wp-content/plugins/catch-social-share/public/css/catch-social-share-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/catch-social-share/fonts/css/font-awesome.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-social-share/public/js/catch-social-share-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- catch-under-construction -->
|
||||
<link rel="stylesheet" id="catch-under-construction-css" href="http://wp.lab/wp-content/plugins/catch-under-construction/public/css/catch-under-construction-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-under-construction/public/js/catch-under-construction-public.js?ver=1.0.0"></script>
|
||||
@@ -2324,6 +2345,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cc-cookie-consent/assets/plugin-js/cookieconsent.latest.min.js?ver=1.2.0"></script>
|
||||
|
||||
|
||||
<!-- cc-custom-taxonmy -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cc-custom-taxonmy/assets/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cc-essentials -->
|
||||
<link rel="stylesheet" id="cce-shortcode-styles-css" href="http://wp.lab/wp-content/plugins/cc-essentials/assets/css/cce-shortcodes.css?ver=1.1.1" type="text/css" media="all">
|
||||
|
||||
@@ -2836,6 +2861,11 @@
|
||||
<link rel="stylesheet" id="plugin-styles-wc-css" href="http://wp.lab/wp-content/plugins/computer-repair-shop/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- conditional-fields-in-contact-form-7 -->
|
||||
<link rel="stylesheet" id="cfcf7-style-css" href="http://wp.lab/wp-content/plugins/conditional-fields-in-contact-form-7/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/conditional-fields-in-contact-form-7/js/scripts.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- conditional-lightbox -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/conditional-lightbox/slimbox-2.04/js/slimbox2.js?ver=1.0"></script>
|
||||
|
||||
@@ -3930,6 +3960,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ethereumico/ethereum-ico.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- ethiopian-calendar -->
|
||||
<link rel="stylesheet" id="ethiopian-calendar-css" href="http://wp.lab/wp-content/plugins/ethiopian-calendar/public/css/ethiopian-calendar-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ethiopian-calendar/public/js/ethiopian-calendar-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- etsy-shop -->
|
||||
<link rel="stylesheet" id="etsy_shop_style-css" href="http://wp.lab/wp-content/plugins/etsy-shop/etsy-shop.css?ver=1.1" type="text/css" media="all">
|
||||
|
||||
@@ -4097,6 +4132,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/express-twitter-feed/front/js/front.min.js?ver=0.2.1"></script>
|
||||
|
||||
|
||||
<!-- external-links-advertisement-note -->
|
||||
<link rel="stylesheet" id="bfelan-css" href="http://wp.lab/wp-content/plugins/external-links-advertisement-note/public/css/bfelan-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/external-links-advertisement-note/public/js/bfelan-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- extra-privacy-for-elementor -->
|
||||
<link rel="stylesheet" id="extra_privacy_for_elementor-frontend-css" href="http://wp.lab/wp-content/plugins/extra-privacy-for-elementor/assets/css/frontend.css?ver=0.0.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/extra-privacy-for-elementor/assets/js/frontend.min.js?ver=0.0.5"></script>
|
||||
@@ -4755,11 +4795,21 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gdpr-compliance-by-supsystic/modules/gdpr/js/frontend.gdpr.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- gdpr-cookie-banner -->
|
||||
<link rel="stylesheet" id="gdpr-cookie-banner-css" href="http://wp.lab/wp-content/plugins/gdpr-cookie-banner/public/css/gdpr-cookie-banner-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gdpr-cookie-banner/public/js/gdpr-cookie-banner-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- gdpr-cookie-compliance -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gdpr-cookie-compliance/dist/scripts/main.js?ver=1.0.1"></script>
|
||||
<link rel="stylesheet" id="moove_gdpr_frontend-css" href="http://wp.lab/wp-content/plugins/gdpr-cookie-compliance/dist/styles/gdpr-main.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- gdpr-cookie-consent -->
|
||||
<link rel="stylesheet" id="gdpr-cookie-consent-css" href="http://wp.lab/wp-content/plugins/gdpr-cookie-consent/public/css/gdpr-cookie-consent-public.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gdpr-cookie-consent/public/js/gdpr-cookie-consent-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- gdpr-formidable-forms -->
|
||||
<link rel="stylesheet" id="formidable-gdpr-css" href="http://wp.lab/wp-content/plugins/gdpr-formidable-forms/assets/public/css/formidable-gdpr-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gdpr-formidable-forms/assets/public/js/formidable-gdpr-public.js?ver=1.0.1"></script>
|
||||
@@ -5741,6 +5791,11 @@
|
||||
<link rel="stylesheet" id="ibwp-public-style-css" href="http://wp.lab/wp-content/plugins/inboundwp-lite/assets/css/ibwp-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- indianwebs-pideme-cambios -->
|
||||
<link rel="stylesheet" id="pideme_cambios-css" href="http://wp.lab/wp-content/plugins/indianwebs-pideme-cambios/public/css/pideme_cambios-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/indianwebs-pideme-cambios/public/js/pideme_cambios-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- indianwebs-whatsapp-submit -->
|
||||
<link rel="stylesheet" id="whatsapp_submit-css" href="http://wp.lab/wp-content/plugins/indianwebs-whatsapp-submit/public/css/whatsapp_submit-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/indianwebs-whatsapp-submit/public/js/whatsapp_submit-public.js?ver=1.0.0"></script>
|
||||
@@ -5817,6 +5872,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/innvonix-testimonials/assets/js/innvonix-custom.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- insert-image-alt-text -->
|
||||
<link rel="stylesheet" id="insert-image-alt-text-css" href="http://wp.lab/wp-content/plugins/insert-image-alt-text/public/css/insert-image-alt-text-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/insert-image-alt-text/public/js/insert-image-alt-text-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- insert-post-from-front-end-with-featured-image -->
|
||||
<link rel="stylesheet" id="insert_post_from_front_end-css" href="http://wp.lab/wp-content/plugins/insert-post-from-front-end-with-featured-image/public/css/insert_post_from_front_end-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/insert-post-from-front-end-with-featured-image/public/js/insert_post_from_front_end-public.js?ver=1.0.0"></script>
|
||||
@@ -6437,6 +6497,11 @@
|
||||
<script type="text/javascript" async="async" src="http://wp.lab/wp-content/plugins/lazy-load-optimizer/assets/frontend/js/lazysizes.min.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- lazy-load-videos-and-sticky-control -->
|
||||
<link rel="stylesheet" id="lazy-load-videos-and-sticky-control-style-css" href="http://wp.lab/wp-content/plugins/lazy-load-videos-and-sticky-control/assets/css/llvasc-public.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lazy-load-videos-and-sticky-control/assets/js/llvasc-public.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- lazy-widget-loader -->
|
||||
<link rel="stylesheet" id="lazy-widget-loader-css" href="http://wp.lab/wp-content/plugins/lazy-widget-loader/css/lwl.css?ver=1.2.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lazy-widget-loader/js/lazy-widget-loader.js?ver=1.2.8"></script>
|
||||
@@ -6735,6 +6800,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/login-and-logout-redirect/public/js/login-and-logout-redirect-public.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- login-as-user -->
|
||||
<link rel="stylesheet" id="Login as User-css" href="http://wp.lab/wp-content/plugins/login-as-user/public/css/public.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/login-as-user/public/js/public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- login-ip-restriction -->
|
||||
<link rel="stylesheet" id="login-ip-restriction-css" href="http://wp.lab/wp-content/plugins/login-ip-restriction/public/css/login-ip-restriction-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/login-ip-restriction/public/js/login-ip-restriction-public.js?ver=1.0.0"></script>
|
||||
@@ -7239,6 +7309,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/media-select-bulk-downloader/public/js/wp-msbd-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- media-with-ftp -->
|
||||
<link rel="stylesheet" id="media-with-ftp-css" href="http://wp.lab/wp-content/plugins/media-with-ftp/public/css/media-with-ftp-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/media-with-ftp/public/js/media-with-ftp-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- mediaview -->
|
||||
<link rel="stylesheet" id="mv_mediagallery_style-css" href="http://wp.lab/wp-content/plugins/mediaview/responsive-media-gallery/style.min.css?ver=1.1.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mediaview/responsive-media-gallery/media-slider.min.js?ver=1.1.2"></script>
|
||||
@@ -7293,6 +7368,20 @@
|
||||
<link rel="stylesheet" id="melonpan-block-images-front-css" href="http://wp.lab/wp-content/plugins/melonpan-block-images/build/melonpan-block-images-front.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- member-chimp -->
|
||||
<link rel="stylesheet" id="memberchimp-layout-css" href="http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp-layout.css?ver=1.0.13" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="memberchimp-style-css" href="http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp-style.css?ver=1.0.13" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="memberchimp-general-css" href="http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp.css?ver=1.0.13" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="memberchimp-media-css" href="http://wp.lab/wp-content/plugins/member-chimp/assets/css/memberchimp-media.css?ver=1.0.13" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-tiptip/jquery-tiptip.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-toggles/jquery-toggles.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-modal/jquery-modal.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-selectize/jquery-selectize.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-raty/jquery-raty.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/jquery-mcp/jquery-mcp.js?ver=1.0.13"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/member-chimp/assets/js/frontend/memberchimp.js?ver=1.0.13"></script>
|
||||
|
||||
|
||||
<!-- memberlite-elements -->
|
||||
<link rel="stylesheet" id="memberlite_elements_frontend-css" href="http://wp.lab/wp-content/plugins/memberlite-elements/css/memberlite-elements.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -7322,6 +7411,11 @@
|
||||
<link rel="stylesheet" id="menu-icons-extra-css" href="http://wp.lab/wp-content/plugins/menu-icons/css/extra.min.css?ver=0.10.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- menu-import-export -->
|
||||
<link rel="stylesheet" id="menu-import-export-css" href="http://wp.lab/wp-content/plugins/menu-import-export/public/css/menu-import-export-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/menu-import-export/public/js/menu-import-export-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- menu-manager -->
|
||||
<link rel="stylesheet" id="superfish_css-css" href="http://wp.lab/wp-content/plugins/menu-manager/display/styles/superfish.css?ver=1.0.4" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="menu-manager_css-css" href="http://wp.lab/wp-content/plugins/menu-manager/display/styles/menu-manager.css?ver=1.0.4" type="text/css" media="all">
|
||||
@@ -8649,6 +8743,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photonic/include/scripts/photonic.js?ver=1.64"></script>
|
||||
|
||||
|
||||
<!-- php-console-log -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/php-console-log/js/php-console-log.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- phzoom -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/phzoom/phzoom.js?ver=1.2.92"></script>
|
||||
|
||||
@@ -8789,6 +8887,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/polldirectory/js/admin.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- pollen -->
|
||||
<link rel="stylesheet" id="pollen_frontend_style-css" href="http://wp.lab/wp-content/plugins/pollen/assets/css/pollen.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pollen/assets/js/pollen.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- pootle-page-builder -->
|
||||
<link rel="stylesheet" id="ppb-panels-front-css" href="http://wp.lab/wp-content/plugins/pootle-page-builder/css/front.css?ver=5.1.0" type="text/css" media="all">
|
||||
|
||||
@@ -9645,6 +9748,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/recurly-subscription/public/js/rs-additional-methods.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- redirect-pagespost-with-shortcode -->
|
||||
<link rel="stylesheet" id="pi_redirect_shortcode-css" href="http://wp.lab/wp-content/plugins/redirect-pagespost-with-shortcode/public/css/pi_redirect_shortcode-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/redirect-pagespost-with-shortcode/public/js/pi_redirect_shortcode-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- refer-a-friend-for-woocommerce-by-wpgens -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/refer-a-friend-for-woocommerce-by-wpgens/public/js/cookie.min.js?ver=1.1.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/refer-a-friend-for-woocommerce-by-wpgens/public/js/gens-raf-public.js?ver=1.1.4"></script>
|
||||
@@ -10329,6 +10437,11 @@
|
||||
<link rel="stylesheet" id="sendapi-css" href="http://wp.lab/wp-content/plugins/sendapi-net/public/css/sendapi-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- sendbox-shipping -->
|
||||
<link rel="stylesheet" id="wooss-css" href="http://wp.lab/wp-content/plugins/sendbox-shipping/public/css/wooss-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sendbox-shipping/public/js/wooss-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sensei-lms -->
|
||||
<link rel="stylesheet" id="module-frontend-css" href="http://wp.lab/wp-content/plugins/sensei-lms/assets/css/modules-frontend.css?ver=2.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="sensei-frontend-css" href="http://wp.lab/wp-content/plugins/sensei-lms/assets/css/frontend/sensei.css?ver=2.0.1" type="text/css" media="screen">
|
||||
@@ -10418,6 +10531,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/share-this-image/assets/js/sti.js?ver=1.04"></script>
|
||||
|
||||
|
||||
<!-- share-to-microsoft-teams -->
|
||||
<link rel="stylesheet" id="microsoft_teams_styles-css" href="http://wp.lab/wp-content/plugins/share-to-microsoft-teams/css/ms-teams-share.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- share-to-social-bookmarking -->
|
||||
<link rel="stylesheet" id="share_to_social_bookmarking-css" href="http://wp.lab/wp-content/plugins/share-to-social-bookmarking/style.css?ver=1.6" type="text/css" media="all">
|
||||
|
||||
@@ -11931,6 +12048,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/th23-user-management/th23-user-management.js?ver=2.3.0"></script>
|
||||
|
||||
|
||||
<!-- thank-you-reader -->
|
||||
<link rel="stylesheet" id="thank-you-reader-css" href="http://wp.lab/wp-content/plugins/thank-you-reader/public/css/thank-you-reader-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/thank-you-reader/public/js/thank-you-reader-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- the-beyond -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/the-beyond/src/embed.js?ver=0.1.0"></script>
|
||||
|
||||
@@ -12186,6 +12308,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/total-team-lite/assets/js/jquery.colorbox.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- tour-booking -->
|
||||
<link rel="stylesheet" id="tourbooking_css-css" href="http://wp.lab/wp-content/plugins/tour-booking/front/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="tourbooking_css_responsive-css" href="http://wp.lab/wp-content/plugins/tour-booking/front/css/responsive.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tour-booking/front/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- tour-operator-search -->
|
||||
<link rel="stylesheet" id="lsx_to_search-css" href="http://wp.lab/wp-content/plugins/tour-operator-search/assets/css/to-search.css?ver=1.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tour-operator-search/assets/js/vendor/jquery.touchSwipe.min.js?ver=1.1.1"></script>
|
||||
@@ -12885,6 +13013,10 @@
|
||||
<link rel="stylesheet" id="very-simple-slider-style-css" href="http://wp.lab/wp-content/plugins/very-simple-slider/css/very-simple-slider.css?ver=1.0" type="text/css" media="screen">
|
||||
|
||||
|
||||
<!-- very-simple-wp-popup -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/very-simple-wp-popup/public/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- vessel -->
|
||||
<link rel="stylesheet" id="vessel_campaign_style-css" href="http://wp.lab/wp-content/plugins/vessel/css/vessel.css?ver=0.7.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vessel/js/vessel.js?ver=0.7.1"></script>
|
||||
@@ -13070,6 +13202,19 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waving-portfolio/assets/js/custom.js?ver=1.2.4.5"></script>
|
||||
|
||||
|
||||
<!-- waymark -->
|
||||
<link rel="stylesheet" id="leaflet-css" href="http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet/leaflet.min.css?ver=0.9.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ionicons-css" href="http://wp.lab/wp-content/plugins/waymark/assets/dist/ionicons/css/ionicons.min.css?ver=0.9.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="awesome_markers-css" href="http://wp.lab/wp-content/plugins/waymark/assets/dist/awesome-markers/leaflet.awesome-markers.min.css?ver=0.9.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="leaflet_fullscreen-css" href="http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet-fullscreen/dist/leaflet.fullscreen.min.css?ver=0.9.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="waymark_map-css" href="http://wp.lab/wp-content/plugins/waymark/assets/shared/css/Waymark_Map.css?ver=0.9.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="waymark_map_viewer-css" href="http://wp.lab/wp-content/plugins/waymark/assets/front/css/Waymark_Map_Viewer.css?ver=0.9.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet/leaflet.min.js?ver=0.9.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waymark/assets/dist/awesome-markers/leaflet.awesome-markers.min.js?ver=0.9.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waymark/assets/dist/leaflet-fullscreen/dist/leaflet.fullscreen.min.js?ver=0.9.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waymark/assets/dist/Leaflet.Sleep/Leaflet.Sleep.js?ver=0.9.2"></script>
|
||||
|
||||
|
||||
<!-- waypanel-heatmap-analysis -->
|
||||
<link rel="stylesheet" id="waypanel-heatmap-css" href="http://wp.lab/wp-content/plugins/waypanel-heatmap-analysis/public/css/waypanel-heatmap-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/waypanel-heatmap-analysis/public/js/waypanel-heatmap-public.js?ver=1.0.0"></script>
|
||||
@@ -13180,6 +13325,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wds-theme-switcher/public/assets/js/public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wdv-add-services-and-events -->
|
||||
<link rel="stylesheet" id="wdv-add-services-and-events-css" href="http://wp.lab/wp-content/plugins/wdv-add-services-and-events/public/css/wdv-add-services-and-events-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wdv-add-services-and-events/public/js/wdv-add-services-and-events-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- we-the-people -->
|
||||
<link rel="stylesheet" id="we-the-people-css" href="http://wp.lab/wp-content/plugins/we-the-people/assets/dist/css/we-the-people.css?ver=2.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="we-the-people-twentyfifteen-css" href="http://wp.lab/wp-content/plugins/we-the-people/assets/dist/css/twentyfifteen.css?ver=2.0" type="text/css" media="all">
|
||||
@@ -13240,6 +13390,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webcamconsult/public/js/webcamconsult-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- webhotelier -->
|
||||
<link rel="stylesheet" id="wp-webhotelier-flatpickr-css" href="http://wp.lab/wp-content/plugins/webhotelier/public/css/flatpickr.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wp-webhotelier-css" href="http://wp.lab/wp-content/plugins/webhotelier/public/css/wp-webhotelier-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webhotelier/public/js/flatpickr.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webhotelier/public/js/wp-webhotelier-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- webiots-teamshowcase -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webiots-teamshowcase/assets/js/owl.carousel.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webiots-teamshowcase/assets/js/teamshowcase.js?ver=1.0"></script>
|
||||
@@ -13272,6 +13429,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/website-importer/public/assets/js/public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- website-password-protection -->
|
||||
<link rel="stylesheet" id="website-password-protection-css" href="http://wp.lab/wp-content/plugins/website-password-protection/public/css/website-password-protection-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/website-password-protection/public/js/website-password-protection-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wechat-shop-download -->
|
||||
<link rel="stylesheet" id="jquery-loading-css" href="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/css/jquery.loading.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wshop-css" href="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/css/wshop.css?ver=1.0.2" type="text/css" media="all">
|
||||
@@ -13524,6 +13686,18 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-authorize-net/public/js/woo-authorizenet-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- woo-badge-designer-lite -->
|
||||
<link rel="stylesheet" id="wobd-fontawesome-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wobd-fontawesome1-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fontawesome.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wobd-fa-brands-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fa-brands.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wobd-fa-regular-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fa-regular.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wobd-fa-solid-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//fa-solid.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="elegant-icons-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//elegant-icons.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="linear-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css//linear-style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wobd-frontend-style-css" href="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/css/wobd-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-badge-designer-lite/js/wobd-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- woo-best-selling-products -->
|
||||
<link rel="stylesheet" id="woobsp_widget_css-css" href="http://wp.lab/wp-content/plugins/woo-best-selling-products/assets/woobsp-styles.css?ver=1.1.0" type="text/css" media="all">
|
||||
|
||||
@@ -13590,6 +13764,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-easy-view/public/js/r_wev_search-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- woo-elite-licenser-addon -->
|
||||
<link rel="stylesheet" id="elite-woo-css-css" href="http://wp.lab/wp-content/plugins/woo-elite-licenser-addon/css/elite-woo-license.css?ver=1.0.0" type="text/css" media="">
|
||||
|
||||
|
||||
<!-- woo-extra-cart-fee -->
|
||||
<link rel="stylesheet" id="woo-extra-cart-fee-css" href="http://wp.lab/wp-content/plugins/woo-extra-cart-fee/public/css/woo-extra-cart-fee-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-extra-cart-fee/public/js/woo-extra-cart-fee-public.js?ver=1.0.0"></script>
|
||||
@@ -13604,6 +13782,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-mobile-bottom-bar/public/js/public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- woo-oc-product-filter -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-oc-product-filter/includes/js/ocpf_front.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- woo-open-graph -->
|
||||
<link rel="stylesheet" id="woo-open-graph-css" href="http://wp.lab/wp-content/plugins/woo-open-graph/public/css/woo-open-graph-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-open-graph/public/js/woo-open-graph-public.js?ver=1.0.0"></script>
|
||||
@@ -14095,6 +14277,11 @@
|
||||
<link rel="stylesheet" id="wp-business-essentials-css" href="http://wp.lab/wp-content/plugins/wp-business-essentials/public/css/wp-business-essentials-public.css?ver=0.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-campaigns -->
|
||||
<link rel="stylesheet" id="wp-campaigns-css" href="http://wp.lab/wp-content/plugins/wp-campaigns/public/css/wpex-campaigns-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-campaigns/public/js/wpex-campaigns-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-car-manager -->
|
||||
<link rel="stylesheet" id="wpcm_css_frontend-css" href="http://wp.lab/wp-content/plugins/wp-car-manager/assets/css/frontend.css?ver=1.3.5" type="text/css" media="all">
|
||||
|
||||
@@ -14496,6 +14683,10 @@
|
||||
<link rel="stylesheet" id="fontawesome-css-css" href="http://wp.lab/wp-content/plugins/wp-font-awesome/font-awesome/css/font-awesome.min.css?ver=1.5" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-food -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-food/js/ex_s_lick/ex_s_lick.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-foundation-shortcodes -->
|
||||
<link rel="stylesheet" id="wp-foundation-shortcodes-css" href="http://wp.lab/wp-content/plugins/wp-foundation-shortcodes/stylesheets/app.css?ver=0.8.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-foundation-shortcodes/js/app.js?ver=0.8.5"></script>
|
||||
@@ -14781,6 +14972,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-login-button/assets/js/wplgbtn-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-login-register-flow -->
|
||||
<link rel="stylesheet" id="wplrf-toastr-css-css" href="http://wp.lab/wp-content/plugins/wp-login-register-flow/public/css/toastr.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wp-login-register-flow-css" href="http://wp.lab/wp-content/plugins/wp-login-register-flow/public/css/wp-login-register-flow-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-login-register-flow/public/js/toastr.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-login-register-flow/public/js/wp-login-register-flow-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-logo-showcase -->
|
||||
<link rel="stylesheet" id="rt-wls-css" href="http://wp.lab/wp-content/plugins/wp-logo-showcase/assets/css/wplogoshowcase.css?ver=1.3.1" type="text/css" media="all">
|
||||
|
||||
@@ -15118,6 +15316,8 @@
|
||||
<!-- wp-radio -->
|
||||
<link rel="stylesheet" id="wp-radio-css" href="http://wp.lab/wp-content/plugins/wp-radio/assets/frontend.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-radio/assets/frontend.min.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="wp-radio-css" href="http://wp.lab/wp-content/plugins/wp-radio/assets/css/frontend.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-radio/assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-ragadjust -->
|
||||
@@ -15274,6 +15474,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-scroll//js/scroll.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-scroll-to-post -->
|
||||
<link rel="stylesheet" id="wsp-front-style-css" href="http://wp.lab/wp-content/plugins/wp-scroll-to-post/assets/css/wsp-front-style.css?ver=1.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-scroll-to-post/assets/js/wsp-front-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-scroll-up -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-scroll-up/js/jquery-scroll-up.js?ver=0.5.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-scroll-up/js/wp-scroll-up-options.js?ver=0.5.1"></script>
|
||||
@@ -15461,6 +15666,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-tab-anchors/wp-tab-anchors.js?ver=1.3.0"></script>
|
||||
|
||||
|
||||
<!-- wp-table-builder -->
|
||||
<link rel="stylesheet" id="wp-table-builder-css" href="http://wp.lab/wp-content/plugins/wp-table-builder/inc/frontend/css/wp-table-builder-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-table-builder/inc/frontend/js/wp-table-builder-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-tag-manager-event -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-tag-manager-event/js/wp-tag-manager-event.js?ver=1.0"></script>
|
||||
|
||||
@@ -15852,6 +16062,10 @@
|
||||
<link rel="stylesheet" id="wplike2get-css" href="http://wp.lab/wp-content/plugins/wplike2get/css/wplike2get.min.css?ver=1.2.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wplyr-media-block -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wplyr-media-block/assets/js/wplyr.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpm-email -->
|
||||
<link rel="stylesheet" id="wpm-email-css" href="http://wp.lab/wp-content/plugins/wpm-email/public/css/wpm-email-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -15885,6 +16099,10 @@
|
||||
<link rel="stylesheet" id="wpnextpreviouslink-css" href="http://wp.lab/wp-content/plugins/wpnextpreviouslink/public/css/wpnextpreviouslink-public.css?ver=2.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wpo365-login -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpo365-login//apps/dist/pintra-redirect.js?ver=8.6"></script>
|
||||
|
||||
|
||||
<!-- wpopal-medical -->
|
||||
<link rel="stylesheet" id="opalmedical-frontend-css-css" href="http://wp.lab/wp-content/plugins/wpopal-medical/assets/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -16268,6 +16486,10 @@
|
||||
<link rel="stylesheet" id="zerowp-social-profiles-styles-css" href="http://wp.lab/wp-content/plugins/zerowp-social-profiles/assets/css/styles.css?ver=1.1.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- zigaform-calculator-cost-estimation-form-builder-lite -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zigaform-calculator-cost-estimation-form-builder-lite/assets/frontend/js/iframe/4.1.1/iframeResizer.min.js?ver=3.9.9.6.8"></script>
|
||||
|
||||
|
||||
<!-- ziyarat-ashura -->
|
||||
<link rel="stylesheet" id="za_css-css" href="http://wp.lab/wp-content/plugins/ziyarat-ashura/css/style.css?ver=1.0.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ziyarat-ashura/js/za-js.js?ver=1.0.0"></script>
|
||||
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/reviews-from-google/change_log/changelog.txt
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/reviews-from-google/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
Version 1.0
|
||||
|
||||
Created the free version for the WordPress Repository
|
||||
|
||||
Version 1.1
|
||||
|
||||
Moved from Curl to WordPress HTTP API
|
||||
12
spec/fixtures/dynamic_finders/plugin_version/simple-iframe/composer_file/package.json
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/simple-iframe/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "wp-simple-iframe",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "^1.18.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simple Iframe 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-iframe-dev\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-07-31T19:23:05+02:00\n"
|
||||
"PO-Revision-Date: 2019-07-31 19:24+0200\n"
|
||||
"Language: es_ES\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Domain: simple-iframe\n"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/unapersona/wp-simple-iframe"
|
||||
msgstr "https://github.com/unapersona/wp-simple-iframe"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Jorge González"
|
||||
msgstr "Jorge González"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://unapersona.com"
|
||||
msgstr "http://unapersona.com"
|
||||
@@ -0,0 +1,8 @@
|
||||
***CHANGELOG***
|
||||
|
||||
|
||||
Version 1.0.0 - 27 july 2019
|
||||
|
||||
|
||||
* Initial release
|
||||
|
||||
@@ -0,0 +1,304 @@
|
||||
# Copyright (C) 2019 GetLoy payment gateway for WooCommerce (supports iPay88, PayWay and Pi Pay) 1.1.1
|
||||
# This file is distributed under the same license as the GetLoy payment gateway for WooCommerce (supports iPay88, PayWay and Pi Pay) 1.1.1 package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GetLoy payment gateway for WooCommerce (supports iPay88, PayWay and Pi Pay) 1.1.1 \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. translators: %f total amount (e.g. "9.99")
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway-connector.php:112
|
||||
msgid "Transaction amount must be greater than 0, but %f given."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s currency code (e.g. "EUR")
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway-connector.php:124
|
||||
msgid "Unknown transaction currency %s."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:110
|
||||
msgid "$this->method_admin_title"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:111
|
||||
msgid "$this->method_admin_description"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:288
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s gateway name (e.g. "PayWay")
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:291
|
||||
msgid "Enable %s"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:313
|
||||
msgid "Test mode"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:314
|
||||
msgid "Enable Test Mode"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:316
|
||||
msgid "Place the payment gateway in test mode (no actual payments will be made)."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:321
|
||||
msgid "GetLoy merchant token"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:323
|
||||
msgid "You will receive this token from GetLoy after setting up your account."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s gateway name (e.g. "PayWay")
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:342
|
||||
msgid "The transaction ID identifies the payment in %s. It is a combination of an optional prefix, the WooCommerce order ID and an optional prefix (example: prefix-123-suffix)."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:350
|
||||
msgid "Transaction ID prefix"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:352
|
||||
msgid "This text will be prepended to the WooCommerce order number to create the transaction ID."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:356
|
||||
msgid "Transaction ID suffix"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:358
|
||||
msgid "This text will be appended to the WooCommerce order number to create the transaction ID."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s gateway name (e.g. "PayWay")
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:468
|
||||
msgid "The %s payment gateway is not configured properly. Please ask the site administrator to complete the configuration."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:544
|
||||
msgid "Payment not possible - the payment may have timed out or failed. Please place a new order instead."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s payment method name (e.g. "PayWay"), %2$s transaction id (e.g. "WC-1234")
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:569
|
||||
msgid "Customer started payment via %1$s (transaction ID: %2$s)"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:628
|
||||
msgid "Invalid payment request:"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s currency code, %2$f order amount, %3$s payment method name (e.g. "PayWay")
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:805
|
||||
msgid "Payment of %1$s %2$.2f received via %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:815
|
||||
msgid "Payment timed out"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s "click here to sign up" link
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:958
|
||||
msgid "GetLoy token is missing. If you did not create a GetLoy account yet, please %s."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:964
|
||||
msgid "click here to sign up"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s gateway name (e.g. "PayWay"), %2$s "click here to fix" link
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:978
|
||||
msgid "%1$s gateway configuration error(s) (%2$s):"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:986
|
||||
msgid "click here to fix"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s gateway name (e.g. "PayWay")
|
||||
#: tmp/gateways/class-wc-getloy-payment-gateway.php:1003
|
||||
msgid "%s payment gateway is in test mode, no real payments are processed!"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:250
|
||||
msgid "iPay88 demo merchant credentials"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:252
|
||||
msgid "You will receive the credentials from iPay88 with your demo account."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:258
|
||||
msgid "iPay88 demo merchant code"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:265
|
||||
msgid "iPay88 demo merchant key"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:272
|
||||
msgid "iPay88 production merchant credentials"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:274
|
||||
msgid "You will receive the credentials from iPay88 after completing the tests with the demo merchant."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:280
|
||||
msgid "iPay88 production merchant code"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:287
|
||||
msgid "iPay88 production merchant key"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:294
|
||||
msgid "iPay88 payment method selection"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:296
|
||||
msgid "Select all payment methods you want to allow in your shop."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s payment method variant name (e.g. "AliPay")
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:325
|
||||
msgid "Enable payment with %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s payment method variant name (e.g. "AliPay")
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:335
|
||||
msgid "The title of the %s payment option the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s payment method variant name (e.g. "AliPay")
|
||||
#: tmp/gateways/ipay88_kh/class-wc-getloy-gateway-ipay88-kh.php:343
|
||||
msgid "The description of the %s payment option the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s transaction id (e.g. "WC-1234")
|
||||
#. translators: %s transaction id (e.g. "WC-1234")
|
||||
#. translators: %s transaction id (e.g. "WC-1234")
|
||||
#: tmp/gateways/ipay88_kh/includes/class-wc-getloy-gateway-ipay88-kh-connector.php:39, tmp/gateways/payway_kh/includes/class-wc-getloy-gateway-payway-kh-connector.php:39, tmp/gateways/pipay_kh/includes/class-wc-getloy-gateway-pipay-kh-connector.php:39
|
||||
msgid "Malformed transaction ID %s."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:92
|
||||
msgid "PayWay merchant ID"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:94
|
||||
msgid "You will receive your merchant ID by email from ABA Bank. It is the same for test and production mode."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:99
|
||||
msgid "PayWay test API key"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:101
|
||||
msgid "You will receive this key from ABA Bank with your test account credentials."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:106
|
||||
msgid "PayWay production API key"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:108
|
||||
msgid "You will receive this key from ABA Bank after completing the tests."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:113
|
||||
msgid "Allowed payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:116
|
||||
msgid "Debit/credit cards and ABA Pay"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:117
|
||||
msgid "ABA Pay only"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:118
|
||||
msgid "Debit/credit cards only"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/payway_kh/class-wc-getloy-gateway-payway-kh.php:120
|
||||
msgid "Change this option to pre-select the payment option within PayWay."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/pipay_kh/class-wc-getloy-gateway-pipay-kh.php:98
|
||||
msgid "Pi Pay merchant ID"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/pipay_kh/class-wc-getloy-gateway-pipay-kh.php:100
|
||||
msgid "You will receive your merchant ID by email from Pi Pay. It is the same for test and production mode."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/pipay_kh/class-wc-getloy-gateway-pipay-kh.php:105
|
||||
msgid "Pi Pay store ID"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/pipay_kh/class-wc-getloy-gateway-pipay-kh.php:107
|
||||
msgid "You will receive your store ID by email from Pi Pay. It is the same for test and production mode."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/pipay_kh/class-wc-getloy-gateway-pipay-kh.php:112
|
||||
msgid "Pi Pay device ID"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/gateways/pipay_kh/class-wc-getloy-gateway-pipay-kh.php:114
|
||||
msgid "You will receive your device ID by email from Pi Pay. It is the same for test and production mode."
|
||||
msgstr ""
|
||||
|
||||
#: tmp/includes/class-wc-getloy-gateway.php:327
|
||||
msgid "Confirm & Pay"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s gateway name (e.g. "PayWay"), %2$s PHP version (e.g. "5.2")
|
||||
#: tmp/includes/class-wc-getloy-gateway.php:401
|
||||
msgid "%1$s gateway error: This plugin requires PHP 5.3 and above. You are using version %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s URL to WooCommerce settings page
|
||||
#: tmp/includes/class-wc-getloy-gateway.php:429
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s gateway name (e.g. "PayWay")
|
||||
#: tmp/includes/class-wc-getloy-gateway.php:522
|
||||
msgid "%s settings"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/widgets/class-getloy-widget-payway-footer-box.php:19
|
||||
msgid "PayWay accepted payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/widgets/class-getloy-widget-payway-footer-box.php:22
|
||||
msgid "Footer box title"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/widgets/class-getloy-widget-payway-footer-box.php:27
|
||||
msgid "Additional CSS classes for footer box title"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/widgets/class-getloy-widget-payway-footer-box.php:32
|
||||
msgid "Footer background color"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/widgets/class-getloy-widget-payway-footer-box.php:36
|
||||
msgid "White / bright color"
|
||||
msgstr ""
|
||||
|
||||
#: tmp/widgets/class-getloy-widget-payway-footer-box.php:37
|
||||
msgid "Black / dark color"
|
||||
msgstr ""
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/woo-phone-validator/change_log/changelog.txt
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/woo-phone-validator/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
== Changelog ==
|
||||
= 1.0.0 =
|
||||
* lauhcing first version.
|
||||
= 1.0.1 =
|
||||
* Proper sanitizing
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/woo-suggestion-engine/change_log/CHANGELOG.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/woo-suggestion-engine/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/*1.0.0 - 2019.07.16*/
|
||||
- Release version 1.0.0
|
||||
@@ -0,0 +1,431 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP24 Domain Check 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-07-21 15:26+0200\n"
|
||||
"PO-Revision-Date: 2019-07-21 15:27+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/class-wp24-options.php:26
|
||||
msgid "desired-domain"
|
||||
msgstr "wunschdomain"
|
||||
|
||||
#: includes/class-wp24-options.php:31
|
||||
msgid "check"
|
||||
msgstr "prüfen"
|
||||
|
||||
#: includes/class-wp24-options.php:32
|
||||
msgid "is available"
|
||||
msgstr "ist verfügbar"
|
||||
|
||||
#: includes/class-wp24-options.php:34
|
||||
msgid "is registered"
|
||||
msgstr "ist registriert"
|
||||
|
||||
#: includes/class-wp24-options.php:36
|
||||
msgid "error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#: includes/class-wp24-options.php:38
|
||||
msgid "is invalid"
|
||||
msgstr "ist ungültig"
|
||||
|
||||
#: includes/class-wp24-options.php:40
|
||||
msgid "query limit reached"
|
||||
msgstr "Abfragelimit erreicht"
|
||||
|
||||
#: includes/class-wp24-options.php:42
|
||||
msgid "whois server unknown"
|
||||
msgstr "Whois Server unbekannt"
|
||||
|
||||
#: includes/class-wp24-settings.php:60 includes/class-wp24-settings.php:260
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: includes/class-wp24-settings.php:79
|
||||
msgid "Domain Name Field"
|
||||
msgstr "Domain Name Feld"
|
||||
|
||||
#: includes/class-wp24-settings.php:83 includes/class-wp24-settings.php:161
|
||||
msgid "Label"
|
||||
msgstr "Beschriftung"
|
||||
|
||||
#: includes/class-wp24-settings.php:95
|
||||
msgid "Placeholder"
|
||||
msgstr "Platzhalter"
|
||||
|
||||
#: includes/class-wp24-settings.php:107
|
||||
msgid "Width"
|
||||
msgstr "Breite"
|
||||
|
||||
#: includes/class-wp24-settings.php:117
|
||||
msgid "Pixel"
|
||||
msgstr "Pixel"
|
||||
|
||||
#: includes/class-wp24-settings.php:118
|
||||
msgid "Percent"
|
||||
msgstr "Prozent"
|
||||
|
||||
#: includes/class-wp24-settings.php:125
|
||||
msgid "Top-Level Domain (TLD) Input"
|
||||
msgstr "Top-Level Domain (TLD) Eingabe"
|
||||
|
||||
#: includes/class-wp24-settings.php:128
|
||||
msgid "Drop-Down List"
|
||||
msgstr "Drop-Down Liste"
|
||||
|
||||
#: includes/class-wp24-settings.php:129
|
||||
msgid "Select the TLD from predefinded list"
|
||||
msgstr "TLD aus vordefinierter Liste auswählen"
|
||||
|
||||
#: includes/class-wp24-settings.php:133
|
||||
msgid "Selection Type"
|
||||
msgstr "Auswahl Typ"
|
||||
|
||||
#: includes/class-wp24-settings.php:146
|
||||
msgid "TLDs"
|
||||
msgstr "TLDs"
|
||||
|
||||
#: includes/class-wp24-settings.php:153
|
||||
msgid "Comma separated list of testable TLDs without leading point."
|
||||
msgstr "Kommagetrennte Liste testbarer TLDs ohne führenden Punkt."
|
||||
|
||||
#: includes/class-wp24-settings.php:157
|
||||
msgid "Check Button"
|
||||
msgstr "Prüfen Button"
|
||||
|
||||
#: includes/class-wp24-settings.php:178
|
||||
msgid "Available"
|
||||
msgstr "Verfügbar"
|
||||
|
||||
#: includes/class-wp24-settings.php:190
|
||||
msgid "Registered"
|
||||
msgstr "Registriert"
|
||||
|
||||
#: includes/class-wp24-settings.php:202
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#: includes/class-wp24-settings.php:214
|
||||
msgid "Invalid"
|
||||
msgstr "Ungültig"
|
||||
|
||||
#: includes/class-wp24-settings.php:226
|
||||
msgid "Limit"
|
||||
msgstr "Limit"
|
||||
|
||||
#: includes/class-wp24-settings.php:235
|
||||
msgid ""
|
||||
"Some whois servers have an access control limit to prevent excessive use,"
|
||||
"<br>so the number of queries per network and time interval is limited."
|
||||
msgstr ""
|
||||
"Einige Whois-Server verfügen über ein Zugriffssteuerungslimit, um eine "
|
||||
"übermäßige Verwendung zu verhindern.<br>Daher ist die Anzahl der Abfragen "
|
||||
"pro Netzwerk und Zeitintervall begrenzt."
|
||||
|
||||
#: includes/class-wp24-settings.php:242
|
||||
msgid "Whois Server Unknown"
|
||||
msgstr "Whois Server unbekannt"
|
||||
|
||||
#: includes/class-wp24-settings.php:275
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
"Sie haben keine ausreichenden Berechtigungen um auf diese Seite zuzugreifen."
|
||||
|
||||
#: includes/class-wp24-settings.php:279
|
||||
msgid "General"
|
||||
msgstr "Allgemein"
|
||||
|
||||
#: includes/class-wp24-settings.php:280
|
||||
msgid "Texts & Colors"
|
||||
msgstr "Text & Farben"
|
||||
|
||||
#: includes/class-wp24-settings.php:281
|
||||
msgid "Whois Servers"
|
||||
msgstr "Whois Server"
|
||||
|
||||
#: includes/class-wp24-settings.php:282
|
||||
msgid "Premium"
|
||||
msgstr "Premium"
|
||||
|
||||
#: includes/class-wp24-settings.php:283
|
||||
msgid "About"
|
||||
msgstr "Über"
|
||||
|
||||
#: includes/class-wp24-settings.php:300
|
||||
msgid ""
|
||||
"Simply insert this shortcode <code>[wp24_domaincheck]</code> into any post "
|
||||
"or page to display the domain check."
|
||||
msgstr ""
|
||||
"Fügen Sie einfach diesen Shortcode <code>[wp24_domaincheck]</code> in einen "
|
||||
"Beitrag oder eine Seite ein, um den Domain Check anzuzeigen."
|
||||
|
||||
#: includes/class-wp24-settings.php:308
|
||||
msgid "Text and colors for the different statuses returned by domain checks."
|
||||
msgstr ""
|
||||
"Text und Farben für die verschiedenen Status die von Domainenprüfungen "
|
||||
"zurückgegeben werden."
|
||||
|
||||
#: includes/class-wp24-settings.php:431
|
||||
msgid "no TLDs set"
|
||||
msgstr "keine TLDs festgelegt"
|
||||
|
||||
#: includes/class-wp24-settings.php:433
|
||||
msgid "not supported"
|
||||
msgstr "nicht unterstützt"
|
||||
|
||||
#: includes/class-wp24-settings.php:478
|
||||
msgid "Number Of Servers / TLDs"
|
||||
msgstr "Anzahl Server / TLDs"
|
||||
|
||||
#: includes/class-wp24-settings.php:483
|
||||
msgid "Find"
|
||||
msgstr "Suchen"
|
||||
|
||||
#: includes/class-wp24-settings.php:484
|
||||
msgid "Enter the desired TLD and check if there is an appropriate server."
|
||||
msgstr ""
|
||||
"Gewünschte TLD eingeben und prüfen, ob ein geeigneter Server vorhanden ist."
|
||||
|
||||
#: includes/class-wp24-settings.php:488
|
||||
msgid "TLD"
|
||||
msgstr "TLD"
|
||||
|
||||
#: includes/class-wp24-settings.php:492
|
||||
msgid "search"
|
||||
msgstr "suchen"
|
||||
|
||||
#: includes/class-wp24-settings.php:499
|
||||
msgid "Results with"
|
||||
msgstr "Ergebnisse mit"
|
||||
|
||||
#: includes/class-wp24-settings.php:507
|
||||
msgid ""
|
||||
"If a TLD is missing or the query returns erroneous results, feel free to "
|
||||
"contact us."
|
||||
msgstr ""
|
||||
"Wenn eine TLD fehlt oder die Abfrage fehlerhafte Ergebnisse liefert, können "
|
||||
"Sie sich gerne an uns wenden."
|
||||
|
||||
#: includes/class-wp24-settings.php:516
|
||||
msgid "Premium features"
|
||||
msgstr "Premium Funktionen"
|
||||
|
||||
#: includes/class-wp24-settings.php:518
|
||||
msgid "Free Text Input (Type TLD into domain name field)"
|
||||
msgstr "Freitext Eingabe (TLD in Feld für Domainnamen eingeben)"
|
||||
|
||||
#: includes/class-wp24-settings.php:519
|
||||
msgid "Check all TLDs simultaneously (asynchronous)"
|
||||
msgstr "Gleichzeitiges Überprüfen aller TLDs (asynchron)"
|
||||
|
||||
#: includes/class-wp24-settings.php:520
|
||||
msgid "Show detailed whois information if domain is registered"
|
||||
msgstr ""
|
||||
"Detaillierte Whois Informationen anzeigen, wenn die Domain registriert ist"
|
||||
|
||||
#: includes/class-wp24-settings.php:521
|
||||
msgid "Bot protection with reCAPTCHA (Version 2 and 3)"
|
||||
msgstr "Botschutz mit reCAPTCHA (Version 2 und 3)"
|
||||
|
||||
#: includes/class-wp24-settings.php:524
|
||||
msgid "Upgrade to Premium"
|
||||
msgstr "Auf Premium upgraden"
|
||||
|
||||
#: includes/class-wp24-settings.php:537
|
||||
msgid "License"
|
||||
msgstr "Lizenz"
|
||||
|
||||
#: includes/class-wp24-settings.php:539
|
||||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: includes/class-wp24-settings.php:546
|
||||
msgid "Requirements for whois queries"
|
||||
msgstr "Voraussetzungen für Whois-Abfragen"
|
||||
|
||||
#: includes/class-wp24-settings.php:549
|
||||
msgid "Enabled"
|
||||
msgstr "Aktiviert"
|
||||
|
||||
#: includes/class-wp24-settings.php:551
|
||||
msgid "Disabled"
|
||||
msgstr "Deaktiviert"
|
||||
|
||||
#: includes/class-wp24-settings.php:551 includes/class-wp24-settings.php:555
|
||||
msgid "Port 43 must be unlocked by your web host."
|
||||
msgstr "Port 43 muss von Ihrem Webhoster freigeschaltet sein."
|
||||
|
||||
#: includes/class-wp24-settings.php:553
|
||||
msgid "Open"
|
||||
msgstr "Offen"
|
||||
|
||||
#: includes/class-wp24-settings.php:555
|
||||
msgid "Locked"
|
||||
msgstr "Gesperrt"
|
||||
|
||||
#: includes/class-wp24-widget.php:18
|
||||
msgid "Display domaincheck form."
|
||||
msgstr "Domaincheck Formular anzeigen."
|
||||
|
||||
#: includes/class-wp24-widget.php:46
|
||||
msgid "Domain Check"
|
||||
msgstr "Domain Check"
|
||||
|
||||
#~ msgid "all"
|
||||
#~ msgstr "alle"
|
||||
|
||||
#~ msgid "whois"
|
||||
#~ msgstr "whois"
|
||||
|
||||
#~ msgid ".[tld] is not supported"
|
||||
#~ msgstr ".[tld] wird nicht unterstützt"
|
||||
|
||||
#~ msgid "Please enter a domain extension"
|
||||
#~ msgstr "Bitte eine Domainendung eingeben"
|
||||
|
||||
#~ msgid "reCAPTCHA check failed"
|
||||
#~ msgstr "reCAPTCHA Prüfung fehlgeschlagen"
|
||||
|
||||
#~ msgid "Free Text Input"
|
||||
#~ msgstr "Freitext Eingabe"
|
||||
|
||||
#~ msgid "Type the TLD into domain name field"
|
||||
#~ msgstr "TLD in Feld für Domainnamen eingeben"
|
||||
|
||||
#~ msgid "Check All"
|
||||
#~ msgstr "Alle Prüfen"
|
||||
|
||||
#~ msgid "Allow to check all testable TLDs simultaneously."
|
||||
#~ msgstr "Prüfung aller testbaren TLDs gleichzeitig erlauben."
|
||||
|
||||
#~ msgid "Check All Label"
|
||||
#~ msgstr "Alle Prüfen Beschriftung"
|
||||
|
||||
#~ msgid "Label of option in drop-down list."
|
||||
#~ msgstr "Bezeichnung der Option in der Dropdown-Liste."
|
||||
|
||||
#~ msgid "Result Settings"
|
||||
#~ msgstr "Ergebnis Einstellungen"
|
||||
|
||||
#~ msgid "Whois Link"
|
||||
#~ msgstr "Whois Link"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Show a link to open detailed whois information if the domain is "
|
||||
#~ "registered."
|
||||
#~ msgstr ""
|
||||
#~ "Link anzeigen um detaillierte Whois-Informationen zu öffnen wenn die "
|
||||
#~ "Domain registriert ist."
|
||||
|
||||
#~ msgid "Whois Link Label"
|
||||
#~ msgstr "Whois Link Beschriftung"
|
||||
|
||||
#~ msgid "Unsupported"
|
||||
#~ msgstr "Nicht unterstützt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Only needed if selection type is free text input.<br>Use <strong>[tld]</"
|
||||
#~ "strong> as placeholder for the TLD."
|
||||
#~ msgstr ""
|
||||
#~ "Nur benötigt bei Auswahl Typ Freitext. <br>Verwenden Sie <strong>[tld]</"
|
||||
#~ "strong> als Platzhalter für die TLD."
|
||||
|
||||
#~ msgid "TLD Missing"
|
||||
#~ msgstr "TLD fehlt"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Only needed if selection type is free text input and check all is "
|
||||
#~ "disabled."
|
||||
#~ msgstr ""
|
||||
#~ "Nur benötigt wenn Auswahl Typ Freitext ist und Alle Prüfen deaktiviert "
|
||||
#~ "ist."
|
||||
|
||||
#~ msgid "Type"
|
||||
#~ msgstr "Typ"
|
||||
|
||||
#~ msgid "None"
|
||||
#~ msgstr "Keiner"
|
||||
|
||||
#~ msgid "Version 2 (\"I'm not a robot\" Checkbox)"
|
||||
#~ msgstr "Version 2 (\"Ich bin kein Roboter\" Checkbox)"
|
||||
|
||||
#~ msgid "Version 2 (Invisible badge)"
|
||||
#~ msgstr "Version 2 (unsichbares Badge)"
|
||||
|
||||
#~ msgid "Version 3"
|
||||
#~ msgstr "Version 3"
|
||||
|
||||
#~ msgid "Site Key"
|
||||
#~ msgstr "Site Schlüssel"
|
||||
|
||||
#~ msgid "Secret Key"
|
||||
#~ msgstr "Geheimer Schlüssel"
|
||||
|
||||
#~ msgid "Theme"
|
||||
#~ msgstr "Theme"
|
||||
|
||||
#~ msgid "Light"
|
||||
#~ msgstr "Hell"
|
||||
|
||||
#~ msgid "Dark"
|
||||
#~ msgstr "Dunkel"
|
||||
|
||||
#~ msgid "Size"
|
||||
#~ msgstr "Größe"
|
||||
|
||||
#~ msgid "Normal"
|
||||
#~ msgstr "Normal"
|
||||
|
||||
#~ msgid "Compact"
|
||||
#~ msgstr "Kompakt"
|
||||
|
||||
#~ msgid "Position"
|
||||
#~ msgstr "Position"
|
||||
|
||||
#~ msgid "Bottom right"
|
||||
#~ msgstr "Unten rechts"
|
||||
|
||||
#~ msgid "Bottom left"
|
||||
#~ msgstr "Unten links"
|
||||
|
||||
#~ msgid "Score"
|
||||
#~ msgstr "Punktzahl"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cancel request if score is lower than this value.<br>(1.0 is very likely "
|
||||
#~ "a good interaction, 0.0 is very likely a bot.)"
|
||||
#~ msgstr ""
|
||||
#~ "Anfrage abbrechen, wenn Punktzahl unter diesem Wert liegt.<br> (1.0 ist "
|
||||
#~ "sehr wahrscheinlich eine gute Interaktion, 0.0 ist sehr wahrscheinlich "
|
||||
#~ "ein Bot.)"
|
||||
|
||||
#~ msgid "Text / Color"
|
||||
#~ msgstr "Text / Farbe"
|
||||
|
||||
#~ msgid "Text and color for message in case of failed check."
|
||||
#~ msgstr "Text und Farbe der Meldung bei fehlgeschlagener Prüfung."
|
||||
|
||||
#~ msgid "reCAPTCHA"
|
||||
#~ msgstr "reCAPTCHA"
|
||||
|
||||
#~ msgid "Requirements for reCAPTCHA"
|
||||
#~ msgstr "Voraussetzungen für reCAPTCHA"
|
||||
|
||||
#~ msgid "Using cURL as fallback."
|
||||
#~ msgstr "cURL als Fallback verwenden."
|
||||
|
||||
#~ msgid "allow_url_fopen is enabled."
|
||||
#~ msgstr "allow_url_fopen ist aktiviert."
|
||||
|
||||
#~ msgid "Premium Demo"
|
||||
#~ msgstr "Premium Demo"
|
||||
@@ -0,0 +1,54 @@
|
||||
# Copyright (C) 2019 WPHobby WooCommerce Mini Cart
|
||||
# This file is distributed under the same license as the WPHobby WooCommerce Mini Cart package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPHobby WooCommerce Mini Cart 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
||||
"Project-Id-Version: megamio\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language-Team: support@wphobby.com\n"
|
||||
"Report-Msgid-Bugs-To: support@wphobby.com\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: wphobby-woo-mini-cart.php:34
|
||||
msgid "WPHobby WooCommerce Mini Cart is enabled but not effective. It requires WooCommerce in order to work."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whmc_admin.php:37
|
||||
msgid "Settings updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whmc_admin.php:106
|
||||
msgid "Mini Cart Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whmc_admin.php:107
|
||||
msgid "Display Shop Cart Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whmc_admin.php:111
|
||||
msgid "This is where general display settings."
|
||||
msgstr ""
|
||||
|
||||
#: cart/mini-cart.php:72
|
||||
msgid "Remove this item"
|
||||
msgstr ""
|
||||
|
||||
#: cart/mini-cart.php:88
|
||||
msgid "No products in the cart."
|
||||
msgstr ""
|
||||
|
||||
#: cart/mini-cart.php:96
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#: cart/mini-cart.php:103
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,102 @@
|
||||
# Copyright (C) 2019 WPHobby WooCommerce Product Filter
|
||||
# This file is distributed under the same license as the WPHobby WooCommerce Product Filter package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPHobby WooCommerce Product Filter 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
||||
"Project-Id-Version: WPHobby WooCommerce Product Filter 1.0.0\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language-Team: support@wphobby.com\n"
|
||||
"Report-Msgid-Bugs-To: support@wphobby.com\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: wphobby-woo-product-filter.php:34
|
||||
msgid "WooCommerce Ajax Product Filter is enabled but not effective. It requires WooCommerce in order to work."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:49
|
||||
msgid "Settings updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:95
|
||||
msgid "Off-Canvas Filter Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:96
|
||||
msgid "Off Canvas Filters Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:97
|
||||
msgid "Enable Off Canvas Filters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:98
|
||||
msgid "Enable Collapse Filters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:99
|
||||
msgid "Enable Back To Top"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpf_admin.php:127
|
||||
msgid "This is where general display settings."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_navigation_widget.php:30
|
||||
msgid "A list of product filters."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_navigation_widget.php:32
|
||||
msgid "WooCommerce Product Filter"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_navigation_widget.php:36
|
||||
msgid "Product Filter"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_navigation_widget.php:37
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_navigation_widget.php:43
|
||||
msgid "Attribute"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:28
|
||||
msgid "Reset product filters."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:30
|
||||
msgid "WooCommerce Reset Product Filter"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:34
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:35
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:39
|
||||
msgid "Reset All Filters."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_reset_widget.php:40
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_init.php:171
|
||||
msgid "Please Add your filters widget Here."
|
||||
msgstr ""
|
||||
|
||||
#: widgets/whpf_init.php:119
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
@@ -451,3 +451,7 @@ FooBox.ready(function() {
|
||||
<meta name="generator" content="Everest Forms 1.4.9">
|
||||
|
||||
|
||||
<!-- waymark -->
|
||||
<meta name="Waymark Version" content="0.9.2">
|
||||
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ describe WPScan::DB::DynamicFinders::Plugin do
|
||||
describe '.create_versions_finders' do
|
||||
# handled and tested in spec/lib/finders/dynamic_finders/plugin_version_spec
|
||||
|
||||
describe 'Try to create the finders twice' do
|
||||
context 'When trying to create the finders twice' do
|
||||
# let's just test one slug, no need to test them all
|
||||
let(:slug) { '12-step-meeting-list' }
|
||||
|
||||
@@ -57,6 +57,14 @@ describe WPScan::DB::DynamicFinders::Plugin do
|
||||
expect { WPScan::DB::DynamicFinders::Plugin.create_versions_finders(slug) }.to_not raise_error
|
||||
end
|
||||
end
|
||||
|
||||
context 'when the slug contains non alpha-numeric chars' do
|
||||
let(:slug) { 'test.something' }
|
||||
|
||||
it 'sanitize it and does not raise an error' do
|
||||
expect { WPScan::DB::DynamicFinders::Plugin.create_versions_finders(slug) }.to_not raise_error
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '.version_finder_super_class' do
|
||||
|
||||
18
spec/lib/helper_spec.rb
Normal file
18
spec/lib/helper_spec.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe '#classify_slug' do
|
||||
{
|
||||
'slug' => :Slug,
|
||||
'slug-usual' => :SlugUsual,
|
||||
'12-slug' => :D_12Slug,
|
||||
'slug.s' => :SlugS,
|
||||
'slug yolo $' => :SlugYolo,
|
||||
'slug $ ab.cd/12' => :SlugAbCd12
|
||||
}.each do |slug, expected_symbol|
|
||||
context "when #{slug}" do
|
||||
it "returns #{expected_symbol}" do
|
||||
expect(classify_slug(slug)).to eql expected_symbol
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
||||
s.executables = ['wpscan']
|
||||
s.require_paths = ['lib']
|
||||
|
||||
s.add_dependency 'cms_scanner', '~> 0.5.4'
|
||||
s.add_dependency 'cms_scanner', '~> 0.5.5'
|
||||
|
||||
s.add_development_dependency 'bundler', '>= 1.6'
|
||||
s.add_development_dependency 'coveralls', '~> 0.8.0'
|
||||
@@ -29,7 +29,7 @@ Gem::Specification.new do |s|
|
||||
s.add_development_dependency 'rake', '~> 12.3'
|
||||
s.add_development_dependency 'rspec', '~> 3.8.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.72.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.74.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.4.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.16.1'
|
||||
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
||||
|
||||
Reference in New Issue
Block a user