Compare commits

...

14 Commits

Author SHA1 Message Date
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
erwanlr
30f329fe43 Bumps version 2019-07-23 18:27:09 +01:00
erwanlr
4ce39951a9 Additional specs for #1374 2019-07-23 16:33:09 +01:00
ethicalhack3r
0e9eb34626 Remove Patreon link 2019-07-23 12:09:04 +02:00
erwanlr
0ff299c425 Updates UA used when updating the DB 2019-07-22 12:13:01 +01:00
erwanlr
6366258ce9 Merge branch 'df' 2019-07-20 19:11:06 +01:00
erwanlr
bca69a026e Adds DFs 2019-07-20 19:10:47 +01:00
Christian Mehlmauer
adc26ea42a ruby 2.6.3 2019-07-19 09:16:56 +02:00
Erwan
b16e8d84d7 Merge pull request #1369 from wpscanteam/dependabot/bundler/rubocop-tw-0.73.0
Update rubocop requirement from ~> 0.72.0 to ~> 0.73.0
2019-07-17 11:38:45 +02:00
dependabot-preview[bot]
5ee405d5a0 Update rubocop requirement from ~> 0.72.0 to ~> 0.73.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.72.0...v0.73.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-07-17 05:28:25 +00:00
erwanlr
a5b9470636 Adds DFs 2019-07-13 11:57:18 +01:00
34 changed files with 3764 additions and 29 deletions

View File

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

View File

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

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

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

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

View File

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

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.0'
VERSION = '3.6.2'
end

File diff suppressed because it is too large Load Diff

View File

@@ -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
@@ -3047,6 +3054,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 +4084,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 +5252,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'
@@ -6033,6 +6068,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
@@ -11045,6 +11089,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 +11261,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:
@@ -13325,6 +13376,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
@@ -16109,6 +16174,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 +16366,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
@@ -18682,6 +18763,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
@@ -20114,6 +20203,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 +20291,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 +21243,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 +23729,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
@@ -28114,6 +28248,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 +28503,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'
@@ -32219,6 +32368,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 +33039,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 +34818,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 +35285,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
@@ -35478,6 +35672,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 +35822,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 +35923,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 +36508,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 +36635,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 +36851,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 +37043,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 +37128,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 +37430,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 +38997,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 +39968,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 +40636,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
@@ -41459,6 +41746,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 +42250,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 +42854,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 +43203,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 +43277,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 +43351,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 +44399,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

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

View File

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

View 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

View File

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

View File

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

View File

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

View File

@@ -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>
@@ -2228,6 +2237,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>
@@ -4755,6 +4770,11 @@
<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">
@@ -5741,6 +5761,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 +5842,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>
@@ -6735,6 +6765,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>
@@ -7293,6 +7328,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 +7371,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 +8703,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>
@@ -10329,6 +10387,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 +10481,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 +11998,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 +12258,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 +12963,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 +13152,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 +13275,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 +13340,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 +13379,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 +13636,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 +13714,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 +13732,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 +14227,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 +14633,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 +14922,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">
@@ -15274,6 +15422,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 +15614,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 +16010,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 +16047,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 +16434,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>

View File

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

View File

@@ -0,0 +1,2 @@
/*1.0.0 - 2019.07.16*/
- Release version 1.0.0

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

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

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.72.0'
s.add_development_dependency 'rubocop', '~> 0.73.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'