Compare commits

...

9 Commits

Author SHA1 Message Date
erwanlr
9b07d53077 Bumps version 2019-08-06 16:10:21 +01:00
erwanlr
8ee9b2bc31 Fixes #1378 2019-08-06 13:01:22 +01:00
erwanlr
c5989477a4 Adds DFs 2019-08-03 10:56:22 +01:00
Erwan
96d8a4e4f8 Merge pull request #1377 from wpscanteam/dependabot/bundler/rubocop-tw-0.74.0
Update rubocop requirement from ~> 0.73.0 to ~> 0.74.0
2019-08-03 10:19:49 +02:00
dependabot-preview[bot]
e865e11731 Update rubocop requirement from ~> 0.73.0 to ~> 0.74.0
Updates the requirements on [rubocop](https://github.com/rubocop-hq/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop-hq/rubocop/releases)
- [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop-hq/rubocop/compare/v0.73.0...v0.74.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-08-01 05:31:24 +00:00
erwanlr
f0997bfe0d Bumps version 2019-07-31 15:46:59 +01:00
erwanlr
8b67dad456 Fixes regexp perf 2019-07-31 14:54:57 +01:00
erwanlr
53fdac1038 Fixes #1376 2019-07-31 14:53:11 +01:00
erwanlr
534a7602e6 Adds DFs 2019-07-27 18:36:53 +01:00
34 changed files with 4562 additions and 18 deletions

View File

@@ -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)

View File

@@ -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),

View File

@@ -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/')

View File

@@ -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),

View File

@@ -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)

View File

@@ -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

View File

@@ -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,

View File

@@ -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,

View File

@@ -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

View File

@@ -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

View File

@@ -69,7 +69,7 @@ module WPScan
connecttimeout: 300,
accept_encoding: 'gzip, deflate',
cache_ttl: 0,
headers: { 'User-Agent' => Browser.instance.default_user_agent }
headers: { 'User-Agent' => Browser.instance.default_user_agent, 'Referer' => nil }
}
end

View File

@@ -14,7 +14,7 @@ end
# @return [ Symbol ]
def classify_slug(slug)
classified = slug.to_s.gsub(/[^a-z\d\-]/i, '-').gsub(/\-{1,}/, '_').camelize.to_s
classified = "D_#{classified}" if classified[0] =~ /\d/
classified = "D_#{classified}" if /\d/.match?(classified[0])
classified.to_sym
end

View File

@@ -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?

View File

@@ -2,5 +2,5 @@
# Version
module WPScan
VERSION = '3.6.1'
VERSION = '3.6.3'
end

View 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

File diff suppressed because it is too large Load Diff

View File

@@ -2678,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
@@ -3054,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
@@ -5796,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'
@@ -6296,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
@@ -7717,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'
@@ -11298,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'
@@ -11770,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'
@@ -13391,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
@@ -13772,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
@@ -16486,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
@@ -18005,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
@@ -20078,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'
@@ -24133,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
@@ -26334,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
@@ -27058,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
@@ -28241,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
@@ -29210,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'
@@ -32353,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
@@ -34795,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
@@ -35255,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
@@ -35372,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'
@@ -35379,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
@@ -35621,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
@@ -37069,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
@@ -40570,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
@@ -41336,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
@@ -41670,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
@@ -42770,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'
@@ -43112,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
@@ -43172,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
@@ -43239,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

View 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&auml;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"

View 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"

View 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"
}
}

View File

@@ -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 ""

View File

@@ -2114,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>
@@ -2339,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">
@@ -2851,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>
@@ -3945,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">
@@ -4112,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>
@@ -4780,6 +4805,11 @@
<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>
@@ -6467,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>
@@ -7274,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>
@@ -8847,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">
@@ -9703,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>
@@ -10387,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">
@@ -11993,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>
@@ -12953,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>
@@ -13138,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>
@@ -13248,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">
@@ -14890,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">
@@ -15227,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 -->
@@ -15383,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>
@@ -15966,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">
@@ -15999,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">

View 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

View 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"
}
}

View File

@@ -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"

View File

@@ -0,0 +1,8 @@
***CHANGELOG***
Version 1.0.0 - 27 july 2019
* Initial release

View File

@@ -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 ""

View File

@@ -0,0 +1,5 @@
== Changelog ==
= 1.0.0 =
* lauhcing first version.
= 1.0.1 =
* Proper sanitizing

View File

@@ -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 &amp; Colors"
msgstr "Text &amp; 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"

View File

@@ -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 ""

View File

@@ -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 ""

View File

@@ -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">

View File

@@ -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.73.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'