Compare commits

..

15 Commits

Author SHA1 Message Date
erwanlr
ac16a951c5 Bumps version 2020-08-08 14:21:50 +02:00
erwanlr
1043bcb267 Adds Dfs 2020-08-08 13:25:15 +02:00
erwanlr
22979a1a77 Adds DFs 2020-08-07 09:39:50 +02:00
erwanlr
3039d2e7eb More rubocop fixes 2020-08-06 12:47:00 +02:00
erwanlr
557dee2d8c Updates rubocop 2020-08-06 11:43:26 +02:00
erwanlr
a506adcb64 Fixes #1529 2020-08-06 10:51:08 +02:00
erwanlr
3bfb120646 Adds DF for monarch - Ref #1527 2020-08-04 14:42:50 +02:00
erwanlr
43e613aa52 Updates Gravityforms detection - Ref #1526 2020-08-03 12:33:14 +02:00
erwanlr
0d930ed605 Adds Dfs 2020-08-01 10:45:42 +02:00
erwanlr
2014f1e4b3 Bumps version 2020-07-25 17:13:29 +02:00
erwanlr
4889d17e0a Ref #1510 2020-07-25 16:24:59 +02:00
erwanlr
494d31215d Ref #1510 2020-07-25 16:21:03 +02:00
erwanlr
582bdea431 Adds DFs 2020-07-25 11:51:59 +02:00
erwanlr
ecf7df9c01 Ref #1510 2020-07-24 15:32:41 +02:00
erwanlr
a9760e8817 Ref #1510 2020-07-24 15:26:22 +02:00
69 changed files with 12534 additions and 4848 deletions

View File

@@ -7,6 +7,8 @@ AllCops:
- 'vendor/**/*'
Layout/LineLength:
Max: 120
Lint/MissingSuper:
Enabled: false
Lint/UriEscapeUnescape:
Enabled: false
Metrics/AbcSize:
@@ -24,6 +26,8 @@ Metrics/MethodLength:
Max: 20
Exclude:
- 'app/controllers/enumeration/cli_options.rb'
Metrics/PerceivedComplexity:
Max: 11
Style/ClassVars:
Enabled: false
Style/Documentation:

View File

@@ -13,7 +13,7 @@ module WPScan
def passive(opts = {})
found = []
slugs = items_from_links('themes', false) + items_from_codes('themes', false)
slugs = items_from_links('themes', uniq: false) + items_from_codes('themes', uniq: false)
slugs.each_with_object(Hash.new(0)) { |slug, counts| counts[slug] += 1 }.each do |slug, occurences|
found << Model::Theme.new(slug, target, opts.merge(found_by: found_by, confidence: 2 * occurences))

View File

@@ -6,6 +6,7 @@ require_relative 'users/oembed_api'
require_relative 'users/rss_generator'
require_relative 'users/author_id_brute_forcing'
require_relative 'users/login_error_messages'
require_relative 'users/author_sitemap'
require_relative 'users/yoast_seo_author_sitemap'
module WPScan
@@ -22,6 +23,7 @@ module WPScan
Users::WpJsonApi.new(target) <<
Users::OembedApi.new(target) <<
Users::RSSGenerator.new(target) <<
Users::AuthorSitemap.new(target) <<
Users::YoastSeoAuthorSitemap.new(target) <<
Users::AuthorIdBruteForcing.new(target) <<
Users::LoginErrorMessages.new(target)

View File

@@ -0,0 +1,36 @@
# frozen_string_literal: true
module WPScan
module Finders
module Users
# Since WP 5.5, /wp-sitemap-users-1.xml is generated and contains
# the usernames of accounts who made a post
class AuthorSitemap < CMSScanner::Finders::Finder
# @param [ Hash ] opts
#
# @return [ Array<User> ]
def aggressive(_opts = {})
found = []
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
username = user_tag.text.to_s[%r{/author/([^/]+)/}, 1]
next unless username && !username.strip.empty?
found << Model::User.new(username,
found_by: found_by,
confidence: 100,
interesting_entries: [sitemap_url])
end
found
end
# @return [ String ] The URL of the sitemap
def sitemap_url
@sitemap_url ||= target.url('wp-sitemap-users-1.xml')
end
end
end
end
end

View File

@@ -5,27 +5,7 @@ module WPScan
module Users
# The YOAST SEO plugin has an author-sitemap.xml which can leak usernames
# See https://github.com/wpscanteam/wpscan/issues/1228
class YoastSeoAuthorSitemap < CMSScanner::Finders::Finder
# @param [ Hash ] opts
#
# @return [ Array<User> ]
def aggressive(_opts = {})
found = []
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
username = user_tag.text.to_s[%r{/author/([^/]+)/}, 1]
next unless username && !username.strip.empty?
found << Model::User.new(username,
found_by: found_by,
confidence: 100,
interesting_entries: [sitemap_url])
end
found
end
class YoastSeoAuthorSitemap < AuthorSitemap
# @return [ String ] The URL of the author-sitemap
def sitemap_url
@sitemap_url ||= target.url('author-sitemap.xml')

View File

@@ -9,7 +9,7 @@ module WPScan
# @param [ Boolean ] uniq Wether or not to apply the #uniq on the results
#
# @return [ Array<String> ] The plugins/themes detected in the href, src attributes of the page
def items_from_links(type, uniq = true)
def items_from_links(type, uniq: true)
found = []
xpath = format(
'(//@href|//@src|//@data-src)[contains(., "%s")]',
@@ -31,7 +31,7 @@ module WPScan
# @param [ Boolean ] uniq Wether or not to apply the #uniq on the results
#
# @return [Array<String> ] The plugins/themes detected in the javascript/style of the homepage
def items_from_codes(type, uniq = true)
def items_from_codes(type, uniq: true)
found = []
page_res.html.xpath('//script[not(@src)]|//style[not(@src)]').each do |tag|

View File

@@ -7,10 +7,11 @@ module WPScan
include References
end
#
# Some classes are empty for the #type to be correctly displayed (as taken from the self.class from the parent)
#
class BackupDB < InterestingFinding
def to_s
@to_s ||= "A backup directory has been found: #{url}"
end
# @return [ Hash ]
def references
@references ||= { url: ['https://github.com/wpscanteam/wpscan/issues/422'] }
@@ -18,6 +19,10 @@ module WPScan
end
class DebugLog < InterestingFinding
def to_s
@to_s ||= "Debug Log found: #{url}"
end
# @ return [ Hash ]
def references
@references ||= { url: ['https://codex.wordpress.org/Debugging_in_WordPress'] }
@@ -40,6 +45,10 @@ module WPScan
end
class FullPathDisclosure < InterestingFinding
def to_s
@to_s ||= "Full Path Disclosure found: #{url}"
end
# @return [ Hash ]
def references
@references ||= { url: ['https://www.owasp.org/index.php/Full_Path_Disclosure'] }
@@ -71,6 +80,9 @@ module WPScan
end
class Readme < InterestingFinding
def to_s
@to_s ||= "WordPress readme found: #{url}"
end
end
class Registration < InterestingFinding
@@ -81,6 +93,10 @@ module WPScan
end
class TmmDbMigrate < InterestingFinding
def to_s
@to_s ||= "ThemeMakers migration file found: #{url}"
end
# @return [ Hash ]
def references
@references ||= { packetstorm: [131_957] }
@@ -95,6 +111,9 @@ module WPScan
end
class UploadSQLDump < InterestingFinding
def to_s
@to_s ||= "SQL Dump found: #{url}"
end
end
class WPCron < InterestingFinding

View File

@@ -31,7 +31,7 @@ module WPScan
finder_configs(
finder_class,
Regexp.last_match[1] == 'aggressive'
aggressive: Regexp.last_match[1] == 'aggressive'
)
end

View File

@@ -16,7 +16,7 @@ module WPScan
# @param [ Symbol ] finder_class
# @param [ Boolean ] aggressive
# @return [ Hash ]
def self.finder_configs(finder_class, aggressive = false)
def self.finder_configs(finder_class, aggressive: false)
configs = {}
return configs unless allowed_classes.include?(finder_class)

View File

@@ -24,7 +24,7 @@ module WPScan
# @param [ Symbol ] finder_class
# @param [ Boolean ] aggressive
# @return [ Hash ]
def self.finder_configs(finder_class, aggressive = false)
def self.finder_configs(finder_class, aggressive: false)
configs = {}
return configs unless allowed_classes.include?(finder_class)

View File

@@ -2,5 +2,5 @@
# Version
module WPScan
VERSION = '3.8.4'
VERSION = '3.8.6'
end

View File

@@ -4,7 +4,7 @@ describe WPScan::Finders::InterestingFindings::EmergencyPwdResetScript do
subject(:finder) { described_class.new(target) }
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
let(:url) { 'http://ex.lo/' }
let(:file_url) { url + 'emergency.php' }
let(:file_url) { "#{url}emergency.php" }
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'emergency_pwd_reset_script') }
before do

View File

@@ -4,7 +4,7 @@ describe WPScan::Finders::InterestingFindings::UploadSQLDump do
subject(:finder) { described_class.new(target) }
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
let(:url) { 'http://ex.lo/' }
let(:dump_url) { url + 'wp-content/uploads/dump.sql' }
let(:dump_url) { "#{url}wp-content/uploads/dump.sql" }
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'upload_sql_dump') }
let(:wp_content) { 'wp-content' }

View File

@@ -13,8 +13,8 @@ describe WPScan::Finders::Medias::AttachmentBruteForcing do
describe '#target_urls' do
it 'returns the expected urls' do
expect(finder.target_urls(range: (1..2))).to eql(
url + '?attachment_id=1' => 1,
url + '?attachment_id=2' => 2
"#{url}?attachment_id=1" => 1,
"#{url}?attachment_id=2" => 2
)
end
end

View File

@@ -13,8 +13,8 @@ describe WPScan::Finders::Users::AuthorIdBruteForcing do
describe '#target_urls' do
it 'returns the correct URLs' do
expect(finder.target_urls(range: (1..2))).to eql(
url + '?author=1' => 1,
url + '?author=2' => 2
"#{url}?author=1" => 1,
"#{url}?author=2" => 2
)
end
end

View File

@@ -0,0 +1,48 @@
# frozen_string_literal: true
describe WPScan::Finders::Users::AuthorSitemap do
subject(:finder) { described_class.new(target) }
let(:target) { WPScan::Target.new(url) }
let(:url) { 'http://wp.lab/' }
let(:fixtures) { FINDERS_FIXTURES.join('users', 'author_sitemap') }
describe '#aggressive' do
before do
allow(target).to receive(:sub_dir).and_return(false)
stub_request(:get, finder.sitemap_url).to_return(body: body)
end
context 'when not an XML response' do
let(:body) { '' }
its(:aggressive) { should eql([]) }
end
context 'when an XML response' do
context 'when no usernames disclosed' do
let(:body) { File.read(fixtures.join('no_usernames.xml')) }
its(:aggressive) { should eql([]) }
end
context 'when usernames disclosed' do
let(:body) { File.read(fixtures.join('usernames.xml')) }
it 'returns the expected array of users' do
users = finder.aggressive
expect(users.size).to eql 2
expect(users.first.username).to eql 'admin'
expect(users.first.confidence).to eql 100
expect(users.first.interesting_entries).to eql ['http://wp.lab/wp-sitemap-users-1.xml']
expect(users.last.username).to eql 'author'
expect(users.last.confidence).to eql 100
expect(users.last.interesting_entries).to eql ['http://wp.lab/wp-sitemap-users-1.xml']
end
end
end
end
end

View File

@@ -8,7 +8,7 @@ describe WPScan::Finders::Users::Base do
describe '#finders' do
it 'contains the expected finders' do
expect(user.finders.map { |f| f.class.to_s.demodulize })
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator YoastSeoAuthorSitemap
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator AuthorSitemap YoastSeoAuthorSitemap
AuthorIdBruteForcing LoginErrorMessages]
end
end

View File

@@ -5,7 +5,7 @@ describe WPScan::Finders::WpVersion::Readme do
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
let(:url) { 'http://ex.lo/' }
let(:fixtures) { FINDERS_FIXTURES.join('wp_version', 'readme') }
let(:readme_url) { url + 'readme.html' }
let(:readme_url) { "#{url}readme.html" }
describe '#aggressive' do
before { stub_request(:get, readme_url).to_return(body: File.read(fixtures.join(file))) }

File diff suppressed because it is too large Load Diff

View File

@@ -94,14 +94,42 @@ wordpress:
- http://wp.lab/wp-admin/css/install.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/install.css?ver=3.8.1
- http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1
QueryParameterInUpgradePage:
number: 3.8.1
found_by: Query Parameter In Upgrade Page (Aggressive Detection)
confidence: 90
confidence: 100
interesting_entries:
- http://wp.lab/wp-includes/css/buttons.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/install.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/install.css?ver=3.8.1
- http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1
QueryParameterInRepairPage:
number: 3.8.1
found_by: Query Parameter In Repair Page (Aggressive Detection)
confidence: 100
interesting_entries:
- http://wp.lab/wp-includes/css/buttons.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/install.min.css?ver=3.8.1
- http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1
QueryParameterInLoginPage:
number: 3.8.1
found_by: Query Parameter In Login Page (Aggressive Detection)
confidence: 100
interesting_entries:
- http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1
- http://wp.lab/wp-includes/css/buttons.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1
- http://wp.lab/wp-admin/css/login.min.css?ver=3.8.1
- http://wp.lab/wp-admin/js/password-strength-meter.min.js?ver=3.8.1
- http://wp.lab/wp-includes/js/wp-util.min.js?ver=3.8.1
- http://wp.lab/wp-admin/js/user-profile.min.js?ver=3.8.1
SitemapGenerator:
number: 4.0
found_by: Sitemap Generator (Aggressive Detection)
@@ -1372,6 +1400,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/adrecord-affiliate/package.json, Match:
''1.0.0'''
ads-pixel:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/ads-pixel/public/css/facebook-pixel-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ads-pixel/public/js/facebook-pixel-public.js?ver=1.0.0
confidence: 20
adsense-plugin:
QueryParameter:
number: '1.47'
@@ -2655,6 +2691,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/announce-on-publish/lang/announce-on-publish-es_ES.po,
Match: ''Project-Id-Version: Announce on Publish 2016.10.30'''
annytab-photoswipe:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/annytab-photoswipe/languages/annytab-photoswipe.pot,
Match: ''"v1.0.0'''
another-wordpress-classifieds-plugin:
QueryParameter:
number: 3.8.1
@@ -2846,6 +2889,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/apoyl-weixinshare/public/js/jweixin-1.4.0.js?ver=1.0.0
confidence: 10
app-log:
TranslationFile:
number: '1.1'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/app-log/lang/aplg.pot, Match: ''"Project-Id-Version:
App Log 1.1'''
app-mockups-carousel:
QueryParameter:
number: '1.0'
@@ -4248,6 +4298,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/badgearoo/assets/js/js.cookie.js?ver=1.0.14
- http://wp.lab/wp-content/plugins/badgearoo/assets/js/frontend.js?ver=1.0.14
badgeos-nomination-submission-add-on:
ChangeLog:
number: '1.0'
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/badgeos-nomination-submission-add-on/CHANGELOG.md,
Match: ''## 1.0'''
badger:
QueryParameter:
number: 1.0.0
@@ -7819,6 +7876,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cf7-facebook-contactor/languages/gsconnector-en_US.po,
Match: ''ject-Id-Version: Google Sheet Coneector 1.0'''
cf7-file-download:
TranslationFile:
number: '1.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cf7-file-download/languages/cf7-file-download.pot,
Match: ''"Project-Id-Version: CF7 File Download 1.0'''
cf7-google-sheets-connector:
TranslationFile:
number: '1.7'
@@ -8071,6 +8135,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/chatmeim-mini/includes/mini/stylesheets/mini.css?ver=5.6.1
- http://wp.lab/wp-content/plugins/chatmeim-mini/includes/mini/javascripts/mini.js?ver=5.6.1
chatster:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/chatster/languages/chatster.pot, Match:
''"Project-Id-Version: chatster 1.0.0'''
checkbox-for-taxonomies:
TranslationFile:
number: '1.1'
@@ -8093,6 +8164,12 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/checkout-add-on-woo-onepage/lang/woo-onepage-checkout.pot,
Match: ''commerce OnePage Checkout Add-on - Lite 0.9'''
checkrobin:
ChangeLog:
number: 0.0.6
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/checkrobin/changelog.txt, Match: ''## [0.0.6]'''
cherry-popups:
QueryParameter:
number: 1.1.6
@@ -8155,6 +8232,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/child-theme-configurator/js/chldthmcfg.js,
Match: ''* Version: 2.2.8.1'''
chilexpress-oficial:
QueryParameter:
number: 1.1.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/chilexpress-oficial/public/css/chilexpress-woo-oficial-public.css?ver=1.1.0
- http://wp.lab/wp-content/plugins/chilexpress-oficial/public/js/chilexpress-woo-oficial-public.js?ver=1.1.0
confidence: 20
chiliforms:
QueryParameter:
number: 0.5.1
@@ -8638,6 +8723,16 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cm-idin/languages/cm-idin.pot, Match: ''ect-Id-Version:
CM iDIN for WooCommerce 1.0.1'''
cm-tiktok-feed:
QueryParameter:
number: 1.0.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/wtiktok.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/templates.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/wtik-header.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/js/jquery.flexslider-min.js?ver=1.0.1
confidence: 40
cmb2:
TranslationFile:
number: 2.2.6.2
@@ -9964,6 +10059,25 @@ plugins:
- http://wp.lab/wp-content/plugins/coupons/frontend/css/frontend.css?ver=1.1.0
- http://wp.lab/wp-content/plugins/coupons/frontend/js/frontend.js?ver=1.1.0
confidence: 20
courier-notices:
QueryParameter:
number: 1.2.3
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/courier-notices/css/courier-notices.css?ver=1.2.3
- http://wp.lab/wp-content/plugins/courier-notices/js/courier-notices.js?ver=1.2.3
confidence: 20
ComposerFile:
number: 1.2.3
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/courier-notices/composer.json, Match: ''1.2.3'''
ChangeLog:
number: 1.2.3
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/courier-notices/CHANGELOG.md, Match: ''##
1.2.3'''
course-migration-for-learndash:
QueryParameter:
number: 1.0.0
@@ -10075,6 +10189,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cpo-content-types/changelog.txt, Match:
''= 1.1.0'''
cpt-ajax-load-more:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/cpt-ajax-load-more/assets/js/app.js?ver=1.0.0
confidence: 10
cpt-list:
QueryParameter:
number: 0.1.1
@@ -10233,6 +10354,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/crosswordsearch/languages/crosswordsearch.pot,
Match: ''Project-Id-Version: crosswordsearch 1.0.2'''
crowdsignal-forms:
TranslationFile:
number: 0.9.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/crowdsignal-forms/languages/crowdsignal-forms.pot,
Match: ''"Project-Id-Version: Crowdsignal Forms 0.9.0'''
crs-post-title-shortener:
QueryParameter:
number: 1.0.0
@@ -10369,6 +10497,12 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/csv-exporter-for-terms/languages/et-csv.pot,
Match: ''"Project-Id-Version: et-csv 1.0.0'''
cta-bar:
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cta-bar/package.json, Match: ''1.0.0'''
ctc-countdown-timer-cookies:
TranslationFile:
number: 1.0.0
@@ -10470,6 +10604,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/custom-advert-blocks-free/lang/custom-blocks-free-ru_RU.po,
Match: ''-Id-Version: Custom Advert Blocks Free v1.0.4'''
custom-api-for-wp:
QueryParameter:
number: 1.1.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/custom-api-for-wp/public/css/custom-api-for-wordpress-public.css?ver=1.1.1
- http://wp.lab/wp-content/plugins/custom-api-for-wp/public/js/custom-api-for-wordpress-public.js?ver=1.1.1
confidence: 20
custom-authentication:
TranslationFile:
number: 1.0.0
@@ -14530,6 +14672,13 @@ plugins:
confidence: 10
interesting_entries:
- http://wp.lab/wp-content/plugins/f1press/style.css?ver=2.0
f70-simple-table-of-contents:
TranslationFile:
number: '1.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/f70-simple-table-of-contents/languages/f70-simple-table-of-contents-ja.po,
Match: ''d-Version: F70 Simple Table of Contents 1.0'''
fa-comment-rating:
QueryParameter:
number: 1.0.0
@@ -16974,6 +17123,14 @@ plugins:
- http://wp.lab/wp-content/plugins/getwid/assets/css/blocks.style.css?ver=1.3.1
- http://wp.lab/wp-content/plugins/getwid/assets/js/frontend.blocks.js?ver=1.3.1
confidence: 20
getwid-megamenu:
QueryParameter:
number: 0.0.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/getwid-megamenu/build/style-index.css?ver=0.0.1
- http://wp.lab/wp-content/plugins/getwid-megamenu/build/frontend.js?ver=0.0.1
confidence: 20
gf-confirmation-page-list:
ChangeLog:
number: 1.0.0
@@ -17652,6 +17809,15 @@ plugins:
- http://wp.lab/wp-content/plugins/graph-lite/public/css/graphs-lite-public.css?ver=2.0.2
- http://wp.lab/wp-content/plugins/graph-lite/public/js/graphs-lite-public.js?ver=2.0.2
confidence: 20
graphina-elementor-charts-and-graphs:
QueryParameter:
number: 0.0.5
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/css/graphina-charts-for-elementor-public.css?ver=0.0.5
- http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/js/apexcharts.min.js?ver=0.0.5
- http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/js/graphina-charts-for-elementor-public.js?ver=0.0.5
confidence: 30
gratify:
ComposerFile:
number: 1.0.0
@@ -17724,11 +17890,11 @@ plugins:
confidence: 10
gravityforms:
ChangeLog:
number: 2.2.5.5
number: 2.4.19
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/gravityforms/change_log.txt, Match: ''Version
2.2.5.5'''
- 'http://wp.lab/wp-content/plugins/gravityforms/change_log.txt, Match: ''###
2.4.19'''
QueryParameter:
number: 2.2.5.5
found_by: Query Parameter (Passive Detection)
@@ -18104,6 +18270,26 @@ plugins:
- http://wp.lab/wp-content/plugins/gridable/public/css/gridable-style.css?ver=1.2.2
- http://wp.lab/wp-content/plugins/gridable/public/js/gridable-scripts.js?ver=1.2.2
confidence: 20
grit-portfolio:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/grit-portfolio/public/css/grit-portfolio-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/font-awesome.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/animate.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/magnific-popup.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/owl.carousel.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/style.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/responsive.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/js/grit-portfolio-public.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/jquery.magnific-popup.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/owl.carousel.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/wow.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/isotope.pkgd.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/imagesloaded.pkgd.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/main.js?ver=1.0.0
confidence: 100
grit-taxonomy-filter:
QueryParameter:
number: 1.0.0
@@ -18656,6 +18842,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/heroic-table-of-contents/languages/ht-toc.pot,
Match: ''ct-Id-Version: Heroic Table of Contents 1.0.0'''
hey-notify:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/hey-notify/languages/hey-notify.pot, Match:
''"Project-Id-Version: Hey Notify 1.0.0'''
hidden-contents:
TranslationFile:
number: '1.0'
@@ -20831,6 +21024,29 @@ plugins:
- http://wp.lab/wp-content/plugins/job-postings/css/style.css?v=1.4.1&ver=4.9.1
- http://wp.lab/wp-content/plugins/job-postings/js/script.js?v=1.4.1&ver=4.9.1
confidence: 20
jobboardwp:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/select2/css/select2.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/tipsy/css/tipsy.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/css/helptip.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/css/common.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/css/job.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/select2/js/select2.full.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/tipsy/js/tipsy.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/dropdown.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/common/js/helptip.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/global.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/single-job.min.js?ver=1.0.0
confidence: 100
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/jobboardwp/languages/jobboardwp-en_US.po,
Match: ''"Project-Id-Version: JobBoardWP 1.0.0'''
jobsoid:
QueryParameter:
number: 1.0.0
@@ -21686,6 +21902,13 @@ plugins:
kontera-official:
Comment:
found_by: Comment (Passive Detection)
kontur-copy-code-button:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/kontur-copy-code-button/languages/kontur-copy-code-button.pot,
Match: ''ect-Id-Version: Kontur Copy Code Button 1.0.0'''
kosmos-esync-dashboard-connector:
QueryParameter:
number: 1.0.0
@@ -22038,6 +22261,18 @@ plugins:
- http://wp.lab/wp-content/plugins/lazy-widget-loader/css/lwl.css?ver=1.2.8
- http://wp.lab/wp-content/plugins/lazy-widget-loader/js/lazy-widget-loader.js?ver=1.2.8
confidence: 20
lazy-youtube:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/lazy-youtube/languages/lazy-youtube.pot,
Match: ''"Project-Id-Version: Lazy Youtube 1.0.0'''
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/lazy-youtube/package.json, Match: ''1.0.0'''
lcmd-tracking-codes:
ChangeLog:
number: 1.1.2
@@ -23020,7 +23255,10 @@ plugins:
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/loginer-public.css?ver=1.0
confidence: 10
- http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/bootstrap.min.css?ver=1.0
- http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/login-public.css?ver=1.0
- http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/js/login-public.js?ver=1.0
confidence: 40
loginpetze:
ChangeLog:
number: '1.1'
@@ -23101,6 +23339,12 @@ plugins:
- http://wp.lab/wp-content/plugins/logo-showcase-with-slick-slider/assets/css/slick.css?ver=1.0
- http://wp.lab/wp-content/plugins/logo-showcase-with-slick-slider/assets/css/lswss-public.css?ver=1.0
confidence: 20
lokalise:
ChangeLog:
number: 1.1.3
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/lokalise/CHANGELOG.md, Match: ''= 1.1.3'''
loks-monetization:
QueryParameter:
number: 1.1.5
@@ -25438,13 +25682,29 @@ plugins:
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/mon-laboratoire/MonLabo.css?ver=3.0
confidence: 10
- http://wp.lab/wp-content/plugins/mon-laboratoire/mon-laboratoire.css?ver=3.0
confidence: 20
ChangeLog:
number: '3.0'
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/mon-laboratoire/changelog.txt, Match: ''=
3.0'''
monarch:
QueryParameter:
number: 1.4.12
found_by: Query Parameter (Passive Detection)
interesting_entries:
- https://wp.lab/wp-content/plugins/monarch/css/style.css?ver=1.4.12
- https://wp.lab/wp-content/plugins/monarch/js/idle-timer.min.js?ver=1.4.12
- https://wp.lab/wp-content/plugins/monarch/js/custom.js?ver=1.4.12
confidence: 30
ChangeLog:
number: 1.4.12
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/monarch/changelog.txt, Match: ''version
1.4.12 ('''
monk:
QueryParameter:
number: 0.7.0
@@ -27537,6 +27797,13 @@ plugins:
interesting_entries:
- !binary |-
aHR0cDovL3dwLmxhYi93cC1jb250ZW50L3BsdWdpbnMvb2d1bG8tMzYwLXRvdXIvbGFuZ3VhZ2VzL29ndWxvLTM2MC10b3VyLnBvdCwgTWF0Y2g6ICciUHJvamVjdC1JZC1WZXJzaW9uOiBPZ3VsbyAtIDM2MMKwIFRvdXIgMS4wLjAn
ohdear:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/ohdear/languages/ohdear.pot, Match: ''"Project-Id-Version:
Oh Dear 1.0.0'''
oik:
TranslationFile:
number: 3.2.3
@@ -28437,6 +28704,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/papaya-youtube-widget/inc/js/script.js?ver=1.0
confidence: 10
paperview-publisher:
ChangeLog:
number: 0.7.3
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/paperview-publisher/changelog.txt, Match:
''## [0.7.3]'''
papi-compatibility-for-wpml:
TranslationFile:
number: 1.0.7
@@ -28970,6 +29244,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/photonic/languages/photonic.po, Match: ''SmugMug,
500px, Zenfolio and Instagram 1.64'''
photoshelter-importer:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/photoshelter-importer/languages/photoshelter-importer.pot,
Match: ''oject-Id-Version: PhotoShelter Importer 1.0.0'''
php-console-log:
QueryParameter:
number: 1.0.0
@@ -29929,6 +30210,13 @@ plugins:
- http://wp.lab/wp-content/plugins/post-timeline/public/js/libs_new.js?ver=2.1.0
- http://wp.lab/wp-content/plugins/post-timeline/public/js/post-timeline.js?ver=2.1.0
confidence: 50
post-to-flarum:
ChangeLog:
number: 0.2.1
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/post-to-flarum/CHANGELOG.md, Match: ''Version
0.2.1'''
post-to-queue:
TranslationFile:
number: '1.0'
@@ -31378,6 +31666,12 @@ plugins:
- http://wp.lab/wp-content/plugins/quentn-wp/public/js/quentn-wp-public.js?ver=1.0.5
- http://wp.lab/wp-content/plugins/quentn-wp/public/js/flipclock.min.js?ver=1.0.5
confidence: 30
questionscout:
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/questionscout/package.json, Match: ''1.0.0'''
quform-mailchimp:
TranslationFile:
number: 1.0.0
@@ -31591,6 +31885,13 @@ plugins:
- http://wp.lab/wp-content/plugins/raileo/public/css/raileo-public.css?ver=1.0.2
- http://wp.lab/wp-content/plugins/raileo/public/js/raileo-public.js?ver=1.0.2
confidence: 20
random-and-popular-post:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/random-and-popular-post/public/css/random-and-popular-post-public.css?ver=1.0.0
confidence: 10
random-banner:
QueryParameter:
number: '4.0'
@@ -33511,6 +33812,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/russian-currency-chart/languages/russian-currency-chart.pot,
Match: ''ject-Id-Version: Russian Currency Chart 0.6'''
rut-chileno-con-validacion:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/rut-chileno-con-validacion/public/css/wc-chilean-bundle-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/rut-chileno-con-validacion/public/js/wc-chilean-bundle-public.js?ver=1.0.0
confidence: 20
rvvideos:
TranslationFile:
number: '1.7'
@@ -33801,6 +34110,18 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/sayonara/public/js/sayonara-public.js?ver=1.0.1
confidence: 10
sb-children-block:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/sb-children-block/languages/sb-children-block-bb_BB.po,
Match: ''"Project-Id-Version: SB Children block 1.0.0'''
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/sb-children-block/package.json, Match: ''1.0.0'''
sb-login:
TranslationFile:
number: '2.5'
@@ -36108,6 +36429,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/simplified-font-manager/lang/simplified-font-manager.pot,
Match: ''ect-Id-Version: Simplified Font Manager 1.0.0'''
simplify-menu-usage:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/simplify-menu-usage/languages/simplify-menu-usage-de_DE.po,
Match: ''Project-Id-Version: Simplify Menu Usage 1.0.0'''
simply-gallery-block:
QueryParameter:
number: 1.0.0
@@ -36365,6 +36693,14 @@ plugins:
- http://wp.lab/wp-content/plugins/slatre/public/css/slatre-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/slatre/public/js/slatre-public.js?ver=1.0.0
confidence: 20
slazzer-background-changer:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/slazzer-background-changer/public/css/slazzer-background-changer-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/slazzer-background-changer/public/js/slazzer-background-changer-public.js?ver=1.0.0
confidence: 20
slcrerator-shorten-link-creator:
ChangeLog:
number: '1.0'
@@ -37081,6 +37417,17 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/social-share-and-social-locker-arsocial/languages/arsocial_lite-en_US.po,
Match: ''"Project-Id-Version: ARSocial Lite v1.3'''
social-share-buttons-by-elixirs-io:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/fontawesome.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/brands.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/regular.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/social-share-buttons-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/js/social-share-buttons-public.js?ver=1.0.0
confidence: 50
social-share-by-jm-crea:
MetaTag:
number: 2.2.1
@@ -38563,6 +38910,14 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/sv-sticky-menu/js/sv-sticky-menu.min.js?ver=1.0.5
confidence: 10
svg-favicon:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/svg-favicon/public/css/svg-favicon-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/svg-favicon/public/js/svg-favicon-public.js?ver=1.0.0
confidence: 20
svg-map-by-saedi:
QueryParameter:
number: 1.0.0
@@ -39233,6 +39588,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/templates-add-on-woo-onepage/lang/woo-onepage-templates.pot,
Match: ''Templates Add-on for Woo OnePage - Lite 0.9'''
templates-patterns-collection:
ChangeLog:
number: 1.0.8
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/templates-patterns-collection/CHANGELOG.md,
Match: ''Version 1.0.8'''
templatesnext-onepager:
QueryParameter:
number: 1.2.0
@@ -39429,6 +39791,13 @@ plugins:
- http://wp.lab/wp-content/plugins/the-contento/public/css/wp-contento-public.css?ver=1.2
- http://wp.lab/wp-content/plugins/the-contento/public/js/wp-contento-public.js?ver=1.2
confidence: 20
the-courier-guy:
ChangeLog:
number: 4.2.0
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/the-courier-guy/changelog.txt, Match: ''=
4.2.0'''
the-definitive-url-sanitizer:
ChangeLog:
number: 0.4.9.1
@@ -39582,6 +39951,20 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/themegrill-demo-importer/CHANGELOG.txt,
Match: ''= 1.5.7'''
themehigh-multiple-addresses:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/themehigh-multiple-addresses/languages/themehigh-multiple-addresses.pot,
Match: ''d-Version: Themehigh Multiple Addresses 1.0.0'''
themeid-caldera-form-to-slack:
TranslationFile:
number: 0.1.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/themeid-caldera-form-to-slack/languages/caladea-slack.pot,
Match: ''rsion: Theme.id''s Caldera Form to Slack 0.1.0'''
themeisle-companion:
StyleComment:
number: 2.4.1
@@ -40659,6 +41042,14 @@ plugins:
- http://wp.lab/wp-content/plugins/twenty20/assets/js/jquery.twenty20.js?ver=1.2
- http://wp.lab/wp-content/plugins/twenty20/assets/js/jquery.event.move.js?ver=1.2
confidence: 30
twentyfourth-wp-scraper:
QueryParameter:
number: 0.1.9
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/twentyfourth-wp-scraper/public/css/twentyfourth-wp-scraper-public.css?ver=0.1.9
- http://wp.lab/wp-content/plugins/twentyfourth-wp-scraper/public/js/twentyfourth-wp-scraper-public.js?ver=0.1.9
confidence: 20
twinfield:
TranslationFile:
number: 1.1.0
@@ -41340,6 +41731,33 @@ plugins:
- http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/jquery.dataTables.min.js?ver=1.0
- http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/main.js?ver=1.0
confidence: 60
ultra-elementor-addons:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/accordion.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/animated-headlines.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/box.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/css/twentytwenty.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/image-comparison.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/team-member.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/slick/slick.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/team-members-carousel.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/testimonial.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/css/owl.carousel.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/css/owl.theme.default.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/testimonial-carousel.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/accordion.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/animated-headlines.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/js/jquery.event.move.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/js/jquery.twentytwenty.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/image-comparison.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/slick/slick.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/team-members-carousel.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/js/owl.carousel.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/testimonial-carousel.js?ver=1.0.0
confidence: 100
um-custom-tab-builder-lite:
TranslationFile:
number: 1.0.0
@@ -41611,6 +42029,13 @@ plugins:
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/unmask/composer.json, Match: ''1.0.0'''
unofficial-convertkit:
ChangeLog:
number: 1.0.1
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/unofficial-convertkit/CHANGELOG.md, Match:
''#### 1.0.1 - Aug 4, 2020'''
unregister-gutenberg-blocks:
ComposerFile:
number: 1.0.0
@@ -42452,6 +42877,15 @@ plugins:
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/vikrentcar/changelog.md, Match: ''## 1.0.0'''
vindi-payment-gateway:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/css/frontend.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/js/imask.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/js/frontend.js?ver=1.0.0
confidence: 30
vinteotv-video-ads:
QueryParameter:
number: '1.0'
@@ -43945,6 +44379,13 @@ plugins:
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/whizz/change_log.txt, Match: ''Version 1.1.8'''
whoframed:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/whoframed/js/whoframed.min.js?ver=1.0
confidence: 10
whois-dashboard-widget:
QueryParameter:
number: 1.0.0
@@ -47574,6 +48015,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wp-customer-reviews/changelog.txt, Match:
''= 3.4.0 / 3.4.1 ='''
wp-dark-mode:
QueryParameter:
number: 1.0.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-dark-mode/assets/css/frontend.css?ver=1.0.2
- http://wp.lab/wp-content/plugins/wp-dark-mode/assets/js/frontend.js?ver=1.0.2
confidence: 20
wp-dashboard-beacon:
TranslationFile:
number: 1.2.0
@@ -50445,6 +50894,12 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wp-simple-seo/languages/wp-simple-seo.pot,
Match: ''"Project-Id-Version: WP Simple SEO 1.0.7'''
wp-simplemind-map:
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wp-simplemind-map/package.json, Match: ''1.0.0'''
wp-site-mapping:
QueryParameter:
number: '0.3'
@@ -51347,6 +51802,16 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-vipergb/styles/Default.css?ver=1.4.3
confidence: 10
wp-visualize:
QueryParameter:
number: 1.0.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-visualize/public/css/wp-visualize-public.css?v=1.4.1&ver=1.0.2
- http://wp.lab/wp-content/plugins/wp-visualize/public/js/wp-visualize-public.js?v=1.3.4&ver=1.0.2
- http://wp.lab/wp-content/plugins/wp-visualize/public/js/scene.js?ver=1.0.2
- http://wp.lab/wp-content/plugins/wp-visualize/public/js/moveable.min.js?ver=1.0.2
confidence: 40
wp-wdfy-integration-of-wodify:
QueryParameter:
number: 1.12.1
@@ -53178,6 +53643,13 @@ plugins:
- http://wp.lab/wp-content/plugins/youcruit-job-listings/public/css/youCruitPositions-public.css?ver=1.2.20
- http://wp.lab/wp-content/plugins/youcruit-job-listings/public/js/youCruitPositions-public.min.js?ver=1.2.20
confidence: 20
youforms-free-for-copecart:
ChangeLog:
number: 1.0.2
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/youforms-free-for-copecart/changelog.txt,
Match: ''/***1.0.2 - 2020.07.21**/'''
your-idea-counts:
QueryParameter:
number: 1.0.0
@@ -53500,6 +53972,18 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/zone-marker/public/js/gil-zone-marker.js?ver=1.0.1
confidence: 10
zone-pandemic-covid-19:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/pandemic-covid19-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/bulma.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/datatable/jquery.dataTables.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/pandemic-covid19-public.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/pandemic-covid19-ajax.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/datatable/jquery.dataTables.js?ver=1.0.0
confidence: 60
zoorvy-social-share:
QueryParameter:
number: 1.0.0

View File

@@ -0,0 +1,91 @@
# Blank WordPress Pot
# Copyright 2014 ...
# This file is distributed under the GNU General Public License v3 or later.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: "
"Blank WordPress Pot "
"v1.0.0\n"
"POT-Creation-Date: "
"2020-07-27 14:57+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Fredrik Stigsson"
"<info@annytab.se>\n"
"Language-Team: Your Team "
"<translations@example."
"com>\n"
"Report-Msgid-Bugs-To: "
"Translator Name "
"<translations@example."
"com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/"
"plain; charset=UTF-8\n"
"Content-Transfer-"
"Encoding: 8bit\n"
"Plural-Forms: "
"nplurals=2; plural=n != "
"1;\n"
"X-Textdomain-Support: "
"yesX-Generator: Poedit "
"1.6.4\n"
"X-Poedit-SourceCharset: "
"UTF-8\n"
"X-Poedit-KeywordsList: "
"__;_e;esc_html_e;"
"esc_html_x:1,2c;"
"esc_html__;esc_attr_e;"
"esc_attr_x:1,2c;"
"esc_attr__;_ex:1,2c;"
"_nx:4c,1,2;"
"_nx_noop:4c,1,2;_x:1,2c;"
"_n:1,2;_n_noop:1,2;"
"__ngettext:1,2;"
"__ngettext_noop:1,2;_c,"
"_nc:4c,1,2\n"
"X-Poedit-Basepath: ..\n"
"Language: en_US\n"
"X-Generator: Poedit 2.4\n"
"X-Poedit-"
"SearchPath-0: .\n"
#: annytab-photoswipe.php:85
msgid "Share on Facebook"
msgstr ""
#: annytab-photoswipe.php:86
msgid "Tweet"
msgstr ""
#: annytab-photoswipe.php:87
msgid "Pin it"
msgstr ""
#: annytab-photoswipe.php:88
msgid "Download image"
msgstr ""
#: annytab-photoswipe.php:114
msgid "Close (Esc)"
msgstr ""
#: annytab-photoswipe.php:116
msgid "Share"
msgstr ""
#: annytab-photoswipe.php:118
msgid "Toggle fullscreen"
msgstr ""
#: annytab-photoswipe.php:120
msgid "Zoom in/out"
msgstr ""
#: annytab-photoswipe.php:137
msgid "Previous"
msgstr ""
#: annytab-photoswipe.php:140
msgid "Next"
msgstr ""

View File

@@ -0,0 +1,88 @@
# Copyright (C) 2020 PRESSMAN
# This file is distributed under the same license as the App Log plugin.
msgid ""
msgstr ""
"Project-Id-Version: App Log 1.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/app-log\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-29T02:35:19+00:00\n"
"PO-Revision-Date: 2020-08-07T06:01:23+00:00\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: aplg\n"
#. Plugin Name of the plugin
#: admin/aplg-dashboard.php:48
#: admin/aplg-settings.php:38
msgid "App Log"
msgstr ""
#. Description of the plugin
msgid "A simple logger for debugging."
msgstr ""
#. Author of the plugin
msgid "PRESSMAN"
msgstr ""
#. Author URI of the plugin
msgid "https://www.pressman.ne.jp/"
msgstr ""
#: admin/aplg-dashboard.php:64
msgid "File will be deleted. Are you sure you want to proceed?"
msgstr ""
#: admin/aplg-dashboard.php:83
msgid "Delete"
msgstr ""
#: admin/aplg-dashboard.php:105
msgid "No logs found."
msgstr ""
#: admin/aplg-dashboard.php:117
msgid "Log File List"
msgstr ""
#: admin/aplg-dashboard.php:117
msgid "Path"
msgstr ""
#: admin/aplg-dashboard.php:152
msgid "Set path to where the application logs are stored"
msgstr ""
#: admin/aplg-dashboard.php:159
msgid "※No need to set if default path will be used. (Default Path: %s)"
msgstr ""
#: admin/aplg-dashboard.php:191
msgid "Invalid access"
msgstr ""
#: admin/aplg-dashboard.php:231
#: classes/class-aplg-logger.php:122
msgid "%s successfully deleted."
msgstr ""
#: admin/aplg-settings.php:37
#: admin/aplg-settings.php:53
msgid "App Log Settings"
msgstr ""
#: admin/aplg-settings.php:60
msgid "Log Directory"
msgstr ""
#: admin/aplg-settings.php:68
msgid "Enable/Disable Mail Log"
msgstr ""
#: classes/class-aplg-logger.php:114
#: classes/class-aplg-logger.php:127
msgid "Failed to delete log."
msgstr ""

View File

@@ -0,0 +1,24 @@
# Changelog
## 1.3
- New: Removed OB features
## 1.2
- New: Added option to allow only embed or social share on front-end
- New: Made the popup compatible with badgeOS Congratulation add-on popup
- Fix: UI Tweaks
## 1.1
- New: Option to display social sharing popup on badge award
- New: Option to display social sharing option with BadgeOS earned achievement shortcode
- New: Option to share badges to social media from front-end
- Fix: Fixed email image issue
- Fix: string translation issues in email
## 1.0
- Initial

View File

@@ -0,0 +1,40 @@
# Copyright (C) 2020 Rimes Gold
msgid ""
msgstr ""
"Project-Id-Version: CF7 File Download 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cf7-file-download\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-24 11:14+0300\n"
"PO-Revision-Date: 2020-07-25 10:18+0300\n"
"X-Generator: Poedit 1.8.7.1\n"
"X-Domain: cf-file-download\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en\n"
#: classes/class-cf7-file-download.php:34
#: classes/class-cf7-file-download.php:35
msgid "CF7 File Download"
msgstr ""
#: classes/class-cf7-file-download.php:53
msgid "File Download Settings"
msgstr ""
#: classes/class-cf7-file-download.php:59
msgid "Download Settings"
msgstr ""
#: classes/class-cf7-file-download.php:78
msgid "Contact Form ID"
msgstr ""
#: classes/class-cf7-file-download.php:87
msgid "Attachment URL"
msgstr ""
#: classes/class-cf7-file-download.php:95
msgid "Downloaded File Name"
msgstr ""

View File

@@ -0,0 +1,685 @@
# Copyright (C) 2020 Frankspress
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: chatster 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: yyyy-mm-dd hh:mm+0000\n"
"PO-Revision-Date: 2020-07-18 14:46-0500\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"X-Generator: Eazy Po 0.9.5.3\n"
#: includes/api/class.request-all.php:207
msgid "Testing Chatster! Your email setup works! "
msgstr ""
#: includes/api/class.request-all.php:209
msgid "Mock request message.. Customer original message will be shown here!"
msgstr ""
#: includes/api/class.request-all.php:210
msgid "This is a test email sent by"
msgstr ""
#: includes/api/class.request-all.php:211
msgid "The plugin is working. For more testing, please read the documentation."
msgstr ""
#: includes/api/class.request-all.php:212
msgid "Test your website link here: "
msgstr ""
#: includes/api/class.request-all.php:213
msgid "Thank you."
msgstr ""
#: includes/core/action.global.php:17 views/admin/function.header.php:17
msgid "Settings"
msgstr ""
#: includes/core/class.add-admin-menu.php:27
msgid "Started"
msgstr ""
#: includes/core/class.add-admin-menu.php:28
msgid "more than one hour ago"
msgstr ""
#: includes/core/class.add-admin-menu.php:29
msgid "hour ago"
msgstr ""
#: includes/core/class.add-admin-menu.php:30
msgid "minutes ago"
msgstr ""
#: includes/core/class.add-admin-menu.php:31
msgid "minute ago"
msgstr ""
#: includes/core/class.add-admin-menu.php:32
msgid "just now"
msgstr ""
#: includes/core/class.add-admin-menu.php:33
msgid "Edit"
msgstr ""
#: includes/core/class.add-admin-menu.php:34
#: views/admin/function.request.php:90
msgid "Delete"
msgstr ""
#: includes/core/class.add-admin-menu.php:35
msgid "Reset settings?"
msgstr ""
#: includes/core/class.add-admin-menu.php:36
msgid "Reset All settings?"
msgstr ""
#: includes/core/class.add-admin-menu.php:37
msgid "Disconnect"
msgstr ""
#: includes/core/class.add-admin-menu.php:38
msgid "Replied by admin"
msgstr ""
#: includes/core/class.add-admin-menu.php:102
msgid "Chatster"
msgstr ""
#: includes/core/class.add-admin-menu.php:103
msgid "Online"
msgstr ""
#: includes/core/class.add-chat-public.php:118
msgid "open"
msgstr ""
#: includes/core/class.cron-manager.php:30
msgid "Once every 3 minutes"
msgstr ""
#: includes/core/class.cron-manager.php:59
msgid "New Request received on"
msgstr ""
#: includes/core/class.cron-manager.php:60
msgid "Hello"
msgstr ""
#: includes/core/class.cron-manager.php:61
msgid "You have received "
msgstr ""
#: includes/core/class.cron-manager.php:62
#, php-format
msgid "%s new request"
msgid_plural "%s new requests"
msgstr[0] ""
msgstr[1] ""
#: includes/core/class.cron-manager.php:63
msgid "on"
msgstr ""
#: includes/core/class.cron-manager.php:64
msgid "To login to your website go here:"
msgstr ""
#: includes/core/class.cron-manager.php:65
msgid "Thank you for using Chatster!"
msgstr ""
#: includes/core/class.emailer.php:27
msgid "Your original message: "
msgstr ""
#: includes/core/class.emailer.php:55
msgid "RE:"
msgstr ""
#: includes/core/class.notices.php:15
msgid "Thank you and Welcome to"
msgstr ""
#: includes/core/class.notices.php:15
msgid "Chatster!"
msgstr ""
#: includes/core/class.notices.php:17
msgid "Testing:"
msgstr ""
#: includes/core/class.notices.php:18
msgid ""
"- Please use only <b>incognito windows</b> or <b>second browser</b> to test "
"chat functionalities.<br>"
msgstr ""
#: includes/core/class.notices.php:19
msgid "- API functionality <b>must be enabled!</b><br>"
msgstr ""
#: includes/core/class.notices.php:20
msgid ""
"- Email delivery only works if you have a <b>transactional email service</b>."
"<br>"
msgstr ""
#: includes/core/class.notices.php:21
msgid ""
"- Go to <i>Settings->Request/Response->Test Functionality</i> and verify "
"email delivery."
msgstr ""
#: includes/core/class.notices.php:22
msgid "Suggestions:"
msgstr ""
#: includes/core/class.notices.php:23
msgid ""
"- For any questions or suggestions please visit the <a target=\"_blank\" "
"href=\""
msgstr ""
#: includes/options/class.add-options-bot-qa.php:32
msgid "Bot Q &amp; A"
msgstr ""
#: includes/options/class.add-options-bot-qa.php:43
msgid "Add a question or questions"
msgstr ""
#: includes/options/class.add-options-bot-qa.php:44
msgid "What are your opening hours? What time do you open?"
msgstr ""
#: includes/options/class.add-options-bot-qa.php:46
msgid ""
"The Bot will look for similarities between saved questions and user question."
msgstr ""
#: includes/options/class.add-options-bot-qa.php:55
msgid "Bot Response to the question or questions"
msgstr ""
#: includes/options/class.add-options-bot-qa.php:56
msgid "Our stores are open from 7 a.m. to 8:30 p.m."
msgstr ""
#: includes/options/class.add-options-bot-qa.php:58
msgid "This answer will be given when a similar question is asked."
msgstr ""
#: includes/options/class.add-options-bot.php:27
msgid "Hi!! How can I help you today?"
msgstr ""
#: includes/options/class.add-options-bot.php:28
msgid "If you have any other questions please feel free to ask."
msgstr ""
#: includes/options/class.add-options-bot.php:29
msgid ""
"Sorry, I couldn't find what you're looking for..\n"
" Please try again"
msgstr ""
#: includes/options/class.add-options-bot.php:79
msgid "Give your bot your favorite name."
msgstr ""
#: includes/options/class.add-options-bot.php:89
msgid "Give your bot a friendly image"
msgstr ""
#: includes/options/class.add-options-bot.php:99
msgid ""
"Bot introductory sentece used when the chat is initially displayed.\n"
" <br><span class=\"ch-field-descr-extra\">(Each "
"line break is shown as separate message)</span>"
msgstr ""
#: includes/options/class.add-options-bot.php:110
msgid ""
"The bot sentece that follows a successfull reply.\n"
" <br><span class=\"ch-field-descr-extra\">"
"(Each line break is shown as separate message)</span>"
msgstr ""
#: includes/options/class.add-options-bot.php:121
msgid ""
"When no answer is found the bot will use this sentence.\n"
" <br><span class=\"ch-field-descr-extra\">"
"(Each line break is shown as separate message)</span>"
msgstr ""
#: includes/options/class.add-options-bot.php:132
msgid ""
"BOT will search full text in both questions and answers. <br>When not "
"enabled it will only search among the saved questions."
msgstr ""
#: includes/options/class.add-options-bot.php:155
msgid "BOT settings have been reset!"
msgstr ""
#: includes/options/class.add-options-bot.php:171
#: includes/options/class.add-options-bot.php:184
#: includes/options/class.add-options-chat.php:279
#, php-format
msgid "A field text exceeds %d character"
msgid_plural "A field text exceeds %d characters"
msgstr[0] ""
msgstr[1] ""
#: includes/options/class.add-options-chat.php:24
msgid "Chat or get in touch!"
msgstr ""
#: includes/options/class.add-options-chat.php:25
msgid "Contact Us"
msgstr ""
#: includes/options/class.add-options-chat.php:47
#: includes/options/class.add-options-chat.php:48
#: includes/options/class.add-options-chat.php:49
#: includes/options/class.add-options-chat.php:50
#: includes/options/class.add-options-chat.php:51
msgid "Customers"
msgstr ""
#: includes/options/class.add-options-chat.php:57
#: includes/options/class.add-options-chat.php:58
#: includes/options/class.add-options-chat.php:59
#: includes/options/class.add-options-chat.php:60
#: includes/options/class.add-options-chat.php:66
#: includes/options/class.add-options-chat.php:67
#: includes/options/class.add-options-chat.php:68
msgid "Minutes"
msgstr ""
#: includes/options/class.add-options-chat.php:81
msgid "Small Text"
msgstr ""
#: includes/options/class.add-options-chat.php:82
msgid "Medium Text"
msgstr ""
#: includes/options/class.add-options-chat.php:83
msgid "Large Text"
msgstr ""
#: includes/options/class.add-options-chat.php:88
msgid "Left Side of the screen"
msgstr ""
#: includes/options/class.add-options-chat.php:89
msgid "Right Side of the screen"
msgstr ""
#: includes/options/class.add-options-chat.php:218
msgid ""
"Will automatically switch the current admin to offline mode when "
"\"conversation\" screen is not open.\n"
" <br/>You can choose how long before that happens."
msgstr ""
#: includes/options/class.add-options-chat.php:229
msgid ""
"Automatically disconnects conversations that have been inactive <br>for a "
"selected amount of time."
msgstr ""
#: includes/options/class.add-options-chat.php:263
msgid "Chatster Chat settings have been reset!"
msgstr ""
#: includes/options/class.add-options-chat.php:290
msgid "Wrong Hex color"
msgstr ""
#: includes/options/class.add-options-chat.php:302
msgid "Wrong Volume Setting"
msgstr ""
#: includes/options/class.add-options-request.php:39
msgid "Chatster Request Settings"
msgstr ""
#: includes/options/class.add-options-request.php:45
msgid "Test Functionality"
msgstr ""
#: includes/options/class.add-options-request.php:56
msgid "Email Header Image"
msgstr ""
#: includes/options/class.add-options-request.php:58
msgid ""
"Your response email can display an header image.<br>\n"
" Go to Media -> Library -> Add New, then copy "
"and paste the link in this field.<br>\n"
" (Optimal aspect ratio: 600 X 230 px.)"
msgstr ""
#: includes/options/class.add-options-request.php:71
msgid "Enable Reply Forward"
msgstr ""
#: includes/options/class.add-options-request.php:84
msgid "Replies will be sent to: your@email.com"
msgstr ""
#: includes/options/class.add-options-request.php:85
msgid ""
"If your WordPress website sends email from an email address you don't check "
"daily, <br>\n"
" with this option you can redirect customer "
"replies to an account of your choice.<br><br>\n"
" Customers replying your initial response email "
"sent from the <i>\"Received Messages\"</i> section <br>\n"
" and all future back and forth emails will be "
"routed to this email address instead."
msgstr ""
#: includes/options/class.add-options-request.php:98
msgid "Enable Email Alert"
msgstr ""
#: includes/options/class.add-options-request.php:110
msgid "Alerts sent to: your@email.com"
msgstr ""
#: includes/options/class.add-options-request.php:111
msgid ""
"Receive an email alert when a new request is submitted.<br>\n"
" (Wordpress will check for new requests every "
"hour.)"
msgstr ""
#: includes/options/class.add-options-request.php:122
msgid "Enter an Email Address."
msgstr ""
#: includes/options/class.add-options-request.php:124
msgid "Ex: your@email.com"
msgstr ""
#: includes/options/class.add-options-request.php:125
msgid ""
"You will receive a mock email to check functionalities.<br>\n"
" (Depending on your server and service status "
"it may take <br>\n"
" a few minutes to receive the email. Also "
"check your \"junk folder\".)"
msgstr ""
#: includes/options/class.add-options-request.php:141
msgid "Chatster Request settings have been reset!"
msgstr ""
#: includes/options/class.add-options-request.php:158
msgid "Wrong URL submitted"
msgstr ""
#: views/functions.basic-templates.php:7
msgid "support page"
msgstr ""
#: views/admin/function.chat.php:25
msgid "Your conversations will be shown here.."
msgstr ""
#: views/admin/function.chat.php:36
msgid "Current conversation will be shown here."
msgstr ""
#: views/admin/function.chat.php:45
#, php-format
msgid "There is %s customer waiting in line"
msgstr ""
#: views/admin/function.chat.php:48
#, php-format
msgid "There are %s customers waiting in line"
msgstr ""
#: views/admin/function.chat.php:60
msgid "Attach a link to a page or product."
msgstr ""
#: views/admin/function.header.php:15
msgid "Conversations"
msgstr ""
#: views/admin/function.header.php:16
msgid "Received Messages"
msgstr ""
#: views/admin/function.request.php:16
msgid "No Messages yet"
msgstr ""
#: views/admin/function.request.php:28
msgid "Show Replied Messages"
msgstr ""
#: views/admin/function.request.php:35
msgid "User Name"
msgstr ""
#: views/admin/function.request.php:36
msgid "Subject"
msgstr ""
#: views/admin/function.request.php:37
msgid "Date Received"
msgstr ""
#: views/admin/function.request.php:38
msgid "Last Replied"
msgstr ""
#: views/admin/function.request.php:39
msgid "Pinned"
msgstr ""
#: views/admin/function.request.php:42
msgid "Message Data"
msgstr ""
#: views/admin/function.request.php:70
msgid "By: "
msgstr ""
#: views/admin/function.request.php:89
msgid "Reply"
msgstr ""
#: views/admin/function.request.php:89
msgid "Show&#47;Reply"
msgstr ""
#: views/admin/function.request.php:92
msgid "asks"
msgstr ""
#: views/admin/function.request.php:97 views/public/function.front-chat.php:56
msgid "Type here your message.."
msgstr ""
#: views/admin/function.request.php:100
msgid "Send Email"
msgstr ""
#: views/admin/function.request.php:121 views/admin/function.settings.php:54
msgid "&laquo;"
msgstr ""
#: views/admin/function.request.php:122 views/admin/function.settings.php:55
msgid "&raquo;"
msgstr ""
#: views/admin/function.settings.php:16
msgid "Bot Setup"
msgstr ""
#: views/admin/function.settings.php:25
msgid "Reset Settings"
msgstr ""
#: views/admin/function.settings.php:32
msgid "Bot Q &amp; A"
msgstr ""
#: views/admin/function.settings.php:35
msgid "Q&A Was Reset Successfully!"
msgstr ""
#: views/admin/function.settings.php:36
msgid "Dismiss this notice."
msgstr ""
#: views/admin/function.settings.php:43
msgid "You didn't add any Q&A yet!"
msgstr ""
#: views/admin/function.settings.php:71
msgid "Reset Bot Q&A"
msgstr ""
#: views/admin/function.settings.php:80
msgid "Chat Configuration"
msgstr ""
#: views/admin/function.settings.php:100
msgid "Request&#47;Response"
msgstr ""
#: views/admin/function.settings.php:100
msgid "Configuration"
msgstr ""
#: views/admin/function.settings.php:116
msgid "Send Test Email"
msgstr ""
#: views/admin/function.settings.php:118
msgid "Sent Successfully!"
msgstr ""
#: views/admin/function.settings.php:119
msgid "Something went wrong."
msgstr ""
#: views/admin/function.settings.php:131
msgid "Reset All Configuration"
msgstr ""
#: views/public/function.front-chat.php:22
msgid "Customers already waiting: "
msgstr ""
#: views/public/function.front-chat.php:23
msgid "An admin will be here shortly.."
msgstr ""
#: views/public/function.front-chat.php:24
msgid "You are beign helped by "
msgstr ""
#: views/public/function.front-chat.php:25
msgid "Sorry, we are currently unavailable.. "
msgstr ""
#: views/public/function.front-chat.php:26
msgid "You are now disconnected.."
msgstr ""
#: views/public/function.front-chat.php:27
msgid "You are chatting with "
msgstr ""
#: views/public/function.front-chat.php:32
#: views/public/function.front-chat.php:100
msgid "Your message here.."
msgstr ""
#: views/public/function.front-chat.php:36
msgid "End Chat"
msgstr ""
#: views/public/function.front-chat.php:38
#: views/public/function.front-chat.php:60
msgid "Back"
msgstr ""
#: views/public/function.front-chat.php:45
msgid "Please fill out this form to get in touch!"
msgstr ""
#: views/public/function.front-chat.php:61
msgid "Sent"
msgstr ""
#: views/public/function.front-chat.php:63
msgid "Try Again"
msgstr ""
#: views/public/function.front-chat.php:64
msgid "Send"
msgstr ""
#: views/public/function.front-chat.php:72
msgid "Start Chatting now!"
msgstr ""
#: views/public/function.front-chat.php:74
msgid "Your name"
msgstr ""
#: views/public/function.front-chat.php:77
msgid "Your email"
msgstr ""
#: views/public/function.front-chat.php:80
msgid "Type here your question.."
msgstr ""
#: views/public/function.front-chat.php:84
msgid "Cancel"
msgstr ""
#: views/public/function.front-chat.php:86
msgid "Start Chatting"
msgstr ""
#: views/public/function.front-chat.php:97
msgid "Our Bot "
msgstr ""
#: views/public/function.front-chat.php:97
msgid "is here to help you."
msgstr ""
#: views/public/function.front-chat.php:104
msgid "Chat unavailable at the moment."
msgstr ""
#: views/public/function.front-chat.php:104
msgid "Live Chat"
msgstr ""
#: views/public/function.front-chat.php:105
msgid "Message Us"
msgstr ""

View File

@@ -0,0 +1,32 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.0.6] - 2020-06-29
### Added
- First release version for wordpress repository
## [0.0.5] - 2020-02-26
### Fixed
- Avoid settings link in module overview overloading other modules settings links
## [0.0.4] - 2020-01-27
### Added
- count(): Parameter must be an array or an object that implements Countable as of as of PHP 7.2
- Updating composer/installers (v1.5.0 => v1.7.0)
## [0.0.3] - 2018-04-27
### Added
- Added defined check and prefix to constants.php
- Re-Worked Failsave email
## [0.0.2] - 2018-04-27
### Added
- Disabled Failsave email
- Make sure default timezone is set
## [0.0.1] - 2018-04-13
### Added
- Started changelog

View File

@@ -0,0 +1,87 @@
# Changelog #
## 1.2.3 ##
* Fixed - issue with notice placement (whoops)
## 1.2.1 ##
* Updated sanitization to match wordpress.org audit.
## 1.2.0 ##
* Updated - Namespace changed from courier to courier-notices due to plugin conflict on wordpress.org
* Fixed - Duplicate modal/popup issue
* Submission to wordpress.org
## 1.1.4 ##
* Fixed - Fatal error when assigning data to a template view
## 1.1.3 ##
* Fixed - Icon font specificity
## 1.1.2 ##
* Remove - Notice font styles, allow styling to inherit from theme
## 1.1.1 ##
* Fixed - Issue with default styles not being created on install
* Fixed - Security updates provided by github audit
## 1.1.0 ##
* Fixed - Minor security updates
* Fixed - Minor code cleanup
* Fixed - Link to Types/Design was broken
* Fixed - Link to Settings was broken
* Fixed - Minor updates to strings to allow for translation
* Fixed - Modal notice was not working properly (dismissible)
* Fixed - Error log was being utilized and should not have been
* Fixed - Cron was running hourly and not every 5 minutes
* Fixed - Various typos (We talk pretty one day)
* Fixed - utilizing iris wpColorPicker (For the time being)
* Fixed - Fixed an issue with color changes in the design panel did not show until page refresh
* Added - New UI/UX for creating and styling "Types" of notices
* Added - Courier actually has some branding now
* Added - Default data on plugin activation
* Added - Utility method to sanitize kses content
* Added - Cleaned up CSS across the entire plugin
* Added - New cron schedule (Every 5 minutes)
* Added - New taxonomy for "Style of Notice". This will allow for all different kinds of notices in the future
* Added - Base for CRUD in the future. Mainly just R right now.
* Improved - Added more flexibility to how tabs and subtabs can extend the plugin
* Improved - CSS is only generated and output if CSS is not disabled
* Improved - Placement logic is more flexible now
* Improved - UI/UX to show different notice options depending on other selections
* Improved - How css and javascript is enqueued based on context of admin
* Improved - Code Organization
* Improved - Templates
* Improved - Updated the expiration of notices to increment every 5 minutes for better accuracy and less stress on servers
## 1.0.4 ##
* Cleaned up deployment process further.
## 1.0.2 ##
* Migrated to using composer as our autoloader instead of a proprietary one
* Added Parsedown dependency for Markdown display within the plugin
* Added a changelog.md display to the settings page as a tab
* Added more automation for release to get releases out the door quicker
* Minor code formatting changes
## 1.0.1 ##
* Updated dependencies based on github security notification
## 1.0.0 ##
Initial Release
* Cleaned up UI for date and time selection.
* You can no longer select an expiration date from the past.
* Implemented datetimepicker so time selection is easier.
* Minor typo fix in admin area.
* Minor data sanitization/security hardening.

View File

@@ -0,0 +1,43 @@
{
"name": "linchpin/courier",
"description": "Courier Notification for WordPress",
"homepage": "https://github.com/linchpin/courier",
"version": "1.2.3",
"authors": [
{
"name": "Linchpin",
"email": "sayhi@linchpin.com",
"homepage": "https://linchpin.com",
"role": "Developer"
}
],
"keywords": [
"WordPress",
"linchpin",
"notices",
"notifications",
"alerts",
"gdpr"
],
"support": {
"issues": "https://github.com/linchpin/courier/issues",
"source": "https://github.com/linchpin/courier"
},
"license": "GPL-2.0+",
"require-dev": {
},
"type": "wordpress-plugin",
"require": {
"php": ">=7.0",
"erusev/parsedown": "^1.7"
},
"autoload": {
"psr-4": {
"CourierNotices\\": "src/"
}
},
"scripts": {
"lint": "phpcs .",
"lint-fix": "phpcbf ."
}
}

View File

@@ -0,0 +1,212 @@
# Copyright (C) 2020 Automattic
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Crowdsignal Forms 0.9.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/crowdsignal-forms\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-27T13:38:00+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0-alpha-c4c9f7e\n"
"X-Domain: crowdsignal-forms\n"
#. Plugin Name of the plugin
msgid "Crowdsignal Forms"
msgstr ""
#. Plugin URI of the plugin
msgid "https://crowdsignal.com/crowdsignal-forms/"
msgstr ""
#. Description of the plugin
msgid "Crowdsignal Form Blocks"
msgstr ""
#. Author of the plugin
msgid "Automattic"
msgstr ""
#. Author URI of the plugin
msgid "https://automattic.com/"
msgstr ""
#: includes/admin/class-crowdsignal-forms-admin-notices.php:112
msgid "Action failed. Please refresh the page and retry."
msgstr ""
#: includes/admin/class-crowdsignal-forms-admin-notices.php:116
msgid "You don&#8217;t have permission to do this."
msgstr ""
#: includes/admin/class-crowdsignal-forms-admin.php:70
msgid "Crowdsignal"
msgstr ""
#: includes/admin/class-crowdsignal-forms-admin.php:71
#: includes/admin/class-crowdsignal-forms-admin.php:86
msgid "Settings"
msgstr ""
#: includes/admin/class-crowdsignal-forms-admin.php:72
#: includes/admin/class-crowdsignal-forms-admin.php:85
msgid "Getting Started"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:71
msgid "General"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:76
#: includes/admin/class-crowdsignal-forms-settings.php:184
msgid "Enter Crowdsignal API Key"
msgstr ""
#. translators: %s is a link to the Crowdsignal connection page.
#: includes/admin/class-crowdsignal-forms-settings.php:163
msgid "To collect responses and data with Crowdsignal Forms you need to <a href=\"%s\" target=\"_blank\">connect the plugin with a Crowdsignal account.</a>"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:169
msgid "You can do this by entering an API key below:"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:176
msgid "Settings successfully saved"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:204
msgid "Disconnect"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:210
msgid "Connect"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:221
msgid "If you don't have an API key we can help you here:"
msgstr ""
#: includes/admin/views/html-admin-notice-core-setup.php:17
msgid "You are nearly ready to start creating polls with <strong>Crowdsignal</strong>."
msgstr ""
#: includes/admin/views/html-admin-notice-core-setup.php:21
msgid "Let's Get Started"
msgstr ""
#: includes/admin/views/html-admin-notice-core-setup.php:22
msgid "Skip Setup"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:24
msgid "Crowdsignal Support"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:24
msgid "Support"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:25
msgid "Terms of Service"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:25
msgid "Terms"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:26
msgid "Privacy Policy"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:26
msgid "Privacy"
msgstr ""
#: includes/admin/views/html-admin-setup-header.php:43
msgid "Could not disconnect. Please try again."
msgstr ""
#: includes/admin/views/html-admin-setup-header.php:46
msgid "Successfully disconnected from Crowdsignal."
msgstr ""
#: includes/admin/views/html-admin-setup-header.php:49
msgid "Success! Your Crowdsignal account is successfully connected! You are ready!"
msgstr ""
#: includes/admin/views/html-admin-setup-header.php:52
msgid "You have been connected to Crowdsignal."
msgstr ""
#: includes/admin/views/html-admin-setup-header.php:55
msgid "Your API key has not been updated."
msgstr ""
#: includes/admin/views/html-admin-setup-step-1.php:14
msgid "Welcome to Crowdsignal Forms"
msgstr ""
#: includes/admin/views/html-admin-setup-step-1.php:24
msgid "Lets get started"
msgstr ""
#: includes/admin/views/html-admin-setup-step-2.php:20
msgid "You're ready to start using Crowdsignal!"
msgstr ""
#: includes/admin/views/html-admin-setup-step-3.php:15
msgid "First time using Crowdsignal?"
msgstr ""
#: includes/admin/views/html-admin-setup-step-3.php:20
msgid "You can search for our blocks, like the Poll block, in the library of the block editor."
msgstr ""
#: includes/admin/views/html-admin-setup-step-3.php:22
msgid "Here is a short video to get you started:"
msgstr ""
#. translators: Argument is a link to Crowdsignal's contact page.
#: includes/admin/views/html-admin-setup-step-3.php:37
msgid "<a href=\"%1s\" target=\"_blank\">Any questions about Crowdsignal?</a>"
msgstr ""
#. translators: Argument is a link to Crowdsignal's support page.
#: includes/admin/views/html-admin-setup-step-3.php:52
msgid "<a href=\"%1s\" target=\"_blank\">Read more about us here.</a>"
msgstr ""
#: includes/frontend/blocks/class-crowdsignal-forms-poll-block.php:149
msgid "Untitled Poll"
msgstr ""
#: includes/frontend/blocks/class-crowdsignal-forms-poll-block.php:178
msgid "Submit"
msgstr ""
#: includes/gateways/class-canned-api-gateway.php:60
#: includes/gateways/class-canned-api-gateway.php:79
msgid "Poll not found"
msgstr ""
#: includes/rest-api/controllers/class-polls-controller.php:210
#: includes/rest-api/controllers/class-polls-controller.php:235
msgid "No Poll ID was provided."
msgstr ""
#: includes/rest-api/controllers/class-polls-controller.php:295
#: includes/rest-api/controllers/class-polls-controller.php:336
msgid "Invalid poll ID"
msgstr ""
#: includes/rest-api/controllers/class-polls-controller.php:322
msgid "Invalid post ID"
msgstr ""
#: includes/rest-api/controllers/class-polls-controller.php:413
msgid "Resource not found"
msgstr ""

View File

@@ -0,0 +1,23 @@
{
"name": "pattonwebz/cta-bar-block",
"description": "",
"version": "1.0.0",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pattonwebz/cta-bar-block.git"
},
"author": "William Patton",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/pattonwebz/cta-bar-block/issues"
},
"homepage": "https://github.com/pattonwebz/cta-bar-block#readme",
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build"
},
"devDependencies": {
"@wordpress/scripts": "^12.0.0"
}
}

View File

@@ -0,0 +1,49 @@
# Copyright (C) 2020 F70 Simple Table of Contents
# This file is distributed under the same license as the F70 Simple Table of Contents package.
msgid ""
msgstr ""
"Project-Id-Version: F70 Simple Table of Contents 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/f70-simple-table-"
"of-contents\n"
"POT-Creation-Date: 2020-07-22 10:50:35+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2020-07-22 19:57+0900\n"
"Language-Team: \n"
"X-Generator: Poedit 2.3.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
"Language: ja\n"
#: includes/display.php:102 includes/meta_box.php:15
msgid "Table of contents"
msgstr "目次"
#: includes/meta_box.php:71
msgid "Display the table of contents"
msgstr "目次を表示する"
#: includes/meta_box.php:81
msgid "Headers level to include in the table of contents"
msgstr "目次に含める見出し"
#. Plugin Name of the plugin/theme
msgid "F70 Simple Table of Contents"
msgstr "F70 シンプル目次"
#. Plugin URI of the plugin/theme
msgid "https://factory70.com/simple-table-of-contents/"
msgstr "https://factory70.com/simple-table-of-contents/"
#. Description of the plugin/theme
msgid ""
"Display a table of contents in your posts by automatically generated from "
"the headings. No Javascript code, simple to use."
msgstr ""
"記事に目次を表示します。目次は見出しから自動生成されます。余分なJavascriptな"
"し。簡単に使えます。"
#. Author of the plugin/theme
msgid "Nao Matsuo"
msgstr "Nao Matsuo"

View File

@@ -0,0 +1,349 @@
# Copyright (C) 2020 FireTree Design, LLC <info@firetreedesign.com>
# This file is distributed under the same license as the Hey Notify plugin.
msgid ""
msgstr ""
"Project-Id-Version: Hey Notify 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hey-notify\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-21T19:21:51+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.1.0\n"
"X-Domain: hey-notify\n"
#. Plugin Name of the plugin
#: includes/cpt.php:35
#: includes/services/class-email.php:99
msgid "Hey Notify"
msgstr ""
#. Plugin URI of the plugin
msgid "https://heynotifywp.com/"
msgstr ""
#. Description of the plugin
msgid "Get notified when things happen in WordPress."
msgstr ""
#. Author of the plugin
msgid "FireTree Design, LLC <info@firetreedesign.com>"
msgstr ""
#. Author URI of the plugin
msgid "https://firetreedesign.com/"
msgstr ""
#: includes/cpt.php:33
msgctxt "Post Type General Name"
msgid "Notifications"
msgstr ""
#: includes/cpt.php:34
msgctxt "Post Type Singular Name"
msgid "Notification"
msgstr ""
#: includes/cpt.php:36
msgid "Parent Notification:"
msgstr ""
#: includes/cpt.php:37
msgid "All Notifications"
msgstr ""
#: includes/cpt.php:38
msgid "View Notification"
msgstr ""
#: includes/cpt.php:39
msgid "Add New Notification"
msgstr ""
#: includes/cpt.php:40
msgid "Add New"
msgstr ""
#: includes/cpt.php:41
msgid "Edit Notification"
msgstr ""
#: includes/cpt.php:42
msgid "Update Notification"
msgstr ""
#: includes/cpt.php:43
msgid "Search Notifications"
msgstr ""
#: includes/cpt.php:44
msgid "Not found"
msgstr ""
#: includes/cpt.php:45
msgid "Not found in Trash"
msgstr ""
#: includes/cpt.php:100
#: includes/fields.php:40
msgid "Service"
msgstr ""
#: includes/cpt.php:101
#: includes/fields.php:53
#: includes/filters.php:49
msgid "Events"
msgstr ""
#: includes/events/page/class-page-event.php:30
msgid "Pages"
msgstr ""
#: includes/events/page/class-page-event.php:43
#: includes/events/post/class-post-event.php:43
msgid "Action"
msgstr ""
#: includes/events/page/class-page-event.php:46
msgid "Page Draft"
msgstr ""
#: includes/events/page/class-page-event.php:47
msgid "Page Pending"
msgstr ""
#: includes/events/page/class-page-event.php:48
msgid "Page Published"
msgstr ""
#: includes/events/page/class-page-event.php:49
msgid "Page Scheduled"
msgstr ""
#: includes/events/page/class-page-event.php:50
msgid "Page Updated"
msgstr ""
#: includes/events/page/class-page-event.php:51
msgid "Page Moved to Trash"
msgstr ""
#: includes/events/page/class-page-hook.php:42
msgid "Hey, a new page was drafted!"
msgstr ""
#: includes/events/page/class-page-hook.php:73
msgid "Hey, a new page was published!"
msgstr ""
#: includes/events/page/class-page-hook.php:103
msgid "Hey, a new page was scheduled!"
msgstr ""
#: includes/events/page/class-page-hook.php:134
msgid "Hey, a new page is pending!"
msgstr ""
#: includes/events/page/class-page-hook.php:155
msgid "Hey, a page was updated!"
msgstr ""
#: includes/events/page/class-page-hook.php:176
msgid "Hey, a page was deleted!"
msgstr ""
#: includes/events/page/class-page-hook.php:190
#: includes/events/post/class-post-hook.php:190
msgid "Author"
msgstr ""
#: includes/events/page/class-page-hook.php:195
#: includes/events/post/class-post-hook.php:195
msgid "Date"
msgstr ""
#: includes/events/post/class-post-event.php:30
msgid "Posts"
msgstr ""
#: includes/events/post/class-post-event.php:46
msgid "Post Draft"
msgstr ""
#: includes/events/post/class-post-event.php:47
msgid "Post Pending"
msgstr ""
#: includes/events/post/class-post-event.php:48
msgid "Post Published"
msgstr ""
#: includes/events/post/class-post-event.php:49
msgid "Post Scheduled"
msgstr ""
#: includes/events/post/class-post-event.php:50
msgid "Post Updated"
msgstr ""
#: includes/events/post/class-post-event.php:51
msgid "Post Moved to Trash"
msgstr ""
#: includes/events/post/class-post-hook.php:42
msgid "Hey, a new post was drafted!"
msgstr ""
#: includes/events/post/class-post-hook.php:73
msgid "Hey, a new post was published!"
msgstr ""
#: includes/events/post/class-post-hook.php:103
msgid "Hey, a new post was scheduled!"
msgstr ""
#: includes/events/post/class-post-hook.php:134
msgid "Hey, a new post is pending!"
msgstr ""
#: includes/events/post/class-post-hook.php:155
msgid "Hey, a post was updated!"
msgstr ""
#: includes/events/post/class-post-hook.php:176
msgid "Hey, a post was deleted!"
msgstr ""
#: includes/events/post/class-post-hook.php:204
msgid "Categories"
msgstr ""
#: includes/events/post/class-post-hook.php:213
msgid "Tags"
msgstr ""
#: includes/fields.php:66
msgid "Hey Notify Settings"
msgstr ""
#: includes/fields.php:68
msgid "Settings"
msgstr ""
#: includes/fields.php:71
msgid "General"
msgstr ""
#: includes/fields.php:75
msgid "Uninstall"
msgstr ""
#: includes/filters.php:31
msgid "Select a service"
msgstr ""
#: includes/filters.php:46
msgid "Notification Events"
msgstr ""
#: includes/filters.php:50
msgid "Event"
msgstr ""
#: includes/filters.php:56
msgid "Event Type"
msgstr ""
#: includes/filters.php:80
msgid "Upon deletion of the plugin, you can optionally remove all custom data, settings, etc."
msgstr ""
#: includes/filters.php:85
msgid "Remove all data when Hey Notify is deleted."
msgstr ""
#: includes/filters.php:102
msgid "General settings for Hey Notify."
msgstr ""
#: includes/filters.php:107
msgid "Default service:"
msgstr ""
#: includes/services/class-discord.php:44
#: includes/services/class-slack.php:44
msgid "Webhook URL"
msgstr ""
#: includes/services/class-discord.php:46
msgid "The webhook that you created for your Discord channel."
msgstr ""
#: includes/services/class-discord.php:46
#: includes/services/class-slack.php:46
msgid "Learn More"
msgstr ""
#: includes/services/class-discord.php:57
msgid "Discord Avatar"
msgstr ""
#: includes/services/class-discord.php:58
msgid "Override the default avatar of the webhook. Not required."
msgstr ""
#: includes/services/class-discord.php:70
msgid "Discord Username"
msgstr ""
#: includes/services/class-discord.php:71
#: includes/services/class-slack.php:71
msgid "Override the default username of the webhook. Not required."
msgstr ""
#: includes/services/class-email.php:44
msgid "Send notifications to"
msgstr ""
#: includes/services/class-email.php:47
#: includes/services/class-email.php:53
msgid "Email Address"
msgstr ""
#: includes/services/class-email.php:52
msgid "Email Addresses"
msgstr ""
#: includes/services/class-email.php:105
msgid "Hey, here's your notification!"
msgstr ""
#: includes/services/class-slack.php:46
msgid "The webhook that you created for your Slack channel."
msgstr ""
#: includes/services/class-slack.php:57
msgid "Slack Icon"
msgstr ""
#: includes/services/class-slack.php:58
msgid "Override the default icon of the webhook. Not required."
msgstr ""
#: includes/services/class-slack.php:70
msgid "Slack Username"
msgstr ""
#: includes/services/class-slack.php:83
msgid "Color"
msgstr ""
#: includes/services/class-slack.php:84
msgid "Select a color to use for the message attachment."
msgstr ""
#: includes/services/class-slack.php:230
msgid "Attached image"
msgstr ""

View File

@@ -0,0 +1,145 @@
msgid ""
msgstr ""
"Project-Id-Version: Kontur Copy Code Button 1.0.0 \n"
"Report-Msgid-Bugs-To: https://profiles.wordpress.org/netzaufsicht/\n"
"Last-Translator: Eilert Behrends <hello@kontur.us>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-25 20:09+0000\n"
"PO-Revision-Date: 2020-07-25 22:25+0000\n"
"X-Domain: kontur-copy-code-button\n"
#. Plugin Name of the plugin
msgid "Kontur Copy Code Button"
msgstr "Kontur Copy Code Button"
#. Plugin URI of the plugin
msgid "https://wordpress.org/kontur-copy-code-button"
msgstr "https://wordpress.org/kontur-copy-code-button"
#. Description of the plugin
msgid ""
"Add your own \"kontur Copy Code Button\" <strong>with your own text, class, "
"color</strong> and \"pre\" Background. Works as well with the \"WP Code Block"
"\". The clicked button copies your code into the clipboard."
msgstr ""
"Erstelle Deinen eigenen \"kontur Copy Code Button\" <strong>mit Deinem Text, "
"CSS-Klasse, Farbe</strong> und \"pre\" Background. Funktioniert mit dem "
"\"WP Code Block\". Ein Klick auf den Button kopiert Deinen Code in die "
"Zwischenablage."
#. Author of the plugin
msgid "Eilert Behrends"
msgstr ""
#. Author URI of the plugin
msgid "https://profiles.wordpress.org/netzaufsicht"
msgstr ""
#: kontur-copy-code-button.php:107
msgid ">> Settings"
msgstr ""
#: kontur-copy-code-button.php:120
msgid "Coffee?"
msgstr ""
#: kontur-copy-code-button.php:137
msgid "kontur Copy Code Button"
msgstr ""
#: kontur-copy-code-button.php:193
msgid "SETTINGS UPDATED !"
msgstr ""
#: kontur-copy-code-button.php:233
msgid "Change Your Settings"
msgstr ""
#: kontur-copy-code-button.php:239
msgid "Set your own Text for the Button"
msgstr ""
#: kontur-copy-code-button.php:242
msgid "Copy Button Text:"
msgstr ""
#: kontur-copy-code-button.php:243
msgid " e.g. \"Copy Code\""
msgstr ""
#: kontur-copy-code-button.php:246
msgid "Text when copied:"
msgstr ""
#: kontur-copy-code-button.php:248
msgid " e.g. \"Copied\""
msgstr ""
#: kontur-copy-code-button.php:251
msgid "Save Button Label Texts"
msgstr ""
#: kontur-copy-code-button.php:261
msgid "You got the looks"
msgstr ""
#: kontur-copy-code-button.php:263
msgid "This is how it would look like right now:"
msgstr ""
#: kontur-copy-code-button.php:283
msgid "Style it Baby"
msgstr ""
#: kontur-copy-code-button.php:285
msgid "Button <strong>Background Color</strong>:"
msgstr ""
#: kontur-copy-code-button.php:290 kontur-copy-code-button.php:297
#: kontur-copy-code-button.php:305
msgid "Current color: "
msgstr ""
#: kontur-copy-code-button.php:292
msgid "Save Background Color"
msgstr ""
#: kontur-copy-code-button.php:294
msgid "Button <strong>Text Color</strong>:"
msgstr ""
#: kontur-copy-code-button.php:298
msgid "Save Text Color"
msgstr ""
#: kontur-copy-code-button.php:302
msgid "Code \"pre\" Block Background"
msgstr ""
#: kontur-copy-code-button.php:308
msgid "Save Box Background"
msgstr ""
#: kontur-copy-code-button.php:322
msgid "Get Classy"
msgstr ""
#: kontur-copy-code-button.php:325
msgid "Add your custom class(es) to make the button match your theme."
msgstr ""
#: kontur-copy-code-button.php:326
msgid " Input goes like this for multiple classes: \"class1 class2 class3\""
msgstr ""
#: kontur-copy-code-button.php:330
msgid "Save added classes"
msgstr ""
#: kontur-copy-code-button.php:353
msgid "Save all settings"
msgstr ""

View File

@@ -0,0 +1,16 @@
{
"name": "lazy-youtube",
"version": "1.0.0",
"description": "A gutenberg Youtube embed block that only loads Youtube assets when the user needs them.",
"main": "",
"scripts": {
"start": "wp-scripts start block/src/lazy-youtube-block.js --output-path=block/dist",
"build": "wp-scripts build block/src/lazy-youtube-block.js --output-path=block/dist",
"lint:js": "wp-scripts lint-js"
},
"author": "Laytan Laats",
"license": "GPL-2.0+",
"devDependencies": {
"@wordpress/scripts": "6.2.0"
}
}

View File

@@ -0,0 +1,56 @@
# Copyright (C) 2020 Laytan Laats
# This file is distributed under the same license as the Lazy Youtube plugin.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Lazy Youtube 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lazy-youtube\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-02-07 13:40+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: Poedit 1.8.7\n"
"X-Domain: lazy-youtube\n"
#. Plugin Name of the plugin
msgid "Lazy Youtube"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/laytan/lazy-youtube"
msgstr ""
#. Description of the plugin
msgid "A gutenberg Youtube embed block that only loads Youtube assets when the user needs them."
msgstr ""
#. Author of the plugin
msgid "Laytan Laats"
msgstr ""
#. Author URI of the plugin
msgid "https://github.com/laytan"
msgstr ""
#: block/dist/lazy-youtube-block.js:118 block/src/lazy-youtube-block.js:11
msgid "Lazy youtube"
msgstr ""
#: block/dist/lazy-youtube-block.js:119 block/src/lazy-youtube-block.js:12
msgid "A youtube embed that only loads Youtube scripts when needed."
msgstr ""
#: block/dist/lazy-youtube-block.js:181 block/src/lazy-youtube-block.js:68
msgid "Youtube embed options"
msgstr ""
#: block/dist/lazy-youtube-block.js:183 block/src/lazy-youtube-block.js:71
msgid "Youtube video link"
msgstr ""
#: block/dist/lazy-youtube-block.js:184 block/src/lazy-youtube-block.js:72
msgid "Youtube video link or embed link. allowed format is [https://www.youtube.com/watch?v=video_id]."
msgstr ""

View File

@@ -0,0 +1,26 @@
= 1.1.3 =
* Changed readme.txt
= 1.1.2 =
* Added readme.txt, ReadmeOSS
= 1.1.1 =
* Fixed hard-coded table prefix
= 1.1.0 =
* Added list of post types that can be edited by current user to environment REST
* Dependency to process request headers
= 1.0.3 - 2020-07-02 =
* Added CHANGELOG.md
* Changed correct link to documentation
= 1.0.2 - 2020-07-02 =
* Fixed authorization secret regeneration
= 1.0.1 - 2020-07-01 =
* Added default locale to environment REST
= 1.0.0 - 2020-06-19 =
* Added plugin code

View File

@@ -0,0 +1,511 @@
version 1.4.12 ( updated 03-11-2019 )
- Security Update: Fixed a vulnerability that could allow some cross-site request forgery checks within our core product framework to be bypassed. In all cases, these checks were also hardened by user permission checks, however, user permissions checks alone are not sufficient to protect against all CSRF vectors. View the full disclosure here: https://us7.campaign-archive.com/?u=9ae7aa91c578052b052b864d6&id=917542a075.
- Updated core to the latest version.
* core/admin/css/core.css
* core/admin/css/support-center.css
* core/admin/js/support-center.js
* core/components/Logger.php
* core/components/PageResource.php
* core/components/SupportCenter.php
* core/components/SupportCenterMUAutoloader.php
* core/components/Updates.php
* core/components/init.php
* core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php
* core/functions.php
* core/ui/utils/frames.js
version 1.4.11 ( updated 02-26-2019 )
- Updated core to the latest version.
* core/components/data/init.php
version 1.4.10 ( updated 12-12-2018 )
- Updated core to the latest version.
* core/components/data/Utils.php
version 1.4.9 ( updated 12-05-2018 )
- Various security hardening fixes.
- Added i18n support for visual builder toggle buttons.
- Fixed post_max_size megabytes conversion.
- Fixed a issue where Your Save Has Failed Modal Hides Wordfence's Blocked Request Notification.
- Fixed Monarch metabox styles in Gutenberg Editor.
- Removed LinkedIn share count API integration since it was deprecated and no longer supported by LinkedIn.
- Various security hardening fixes.
* core/admin/css/core.css
* core/admin/css/portability.css
* core/admin/js/core.js
* core/components/PageResource.php
* core/components/Portability.php
* core/components/Updates.php
* core/components/VersionRollback.php
* core/components/api/OAuthHelper.php
* core/components/api/Service.php
* core/components/api/email/HubSpot.php
* core/components/api/email/Provider.php
* core/components/api/email/Providers.php
* core/components/api/email/_MailPoet2.php
* core/components/api/email/_MailPoet3.php
* core/components/data/Utils.php
* core/components/data/init.php
* core/components/init.php
* core/components/lib/WPHttp.php
* core/components/post/Query.php
* core/functions.php
* core/ui/utils/attribute-binder.js
* core/ui/utils/frames.js
* css/stats-meta-styles.css
* monarch.php
version 1.4.8 ( updated 10-30-2018 )
- Applied some minor security hardening improvements.
version 1.4.7 ( updated 10-05-2018 )
- Fixed the Facebook follower count.
* monarch.php
version 1.4.6 ( updated 10-04-2018 )
- Fixed a slightly outdated React version being loaded.
- Updated custom fields retrieval and processing functions for Mailchimp to make it work with custom field names.
- Fixed the Subscription error shown when using Custom fields in the Email Optin module with MailPoet service provider.
- Fixed "et_social_stats" table missing error.
* .github/PULL_REQUEST_TEMPLATE.md
* core/admin/js/react-dom.production.min.js
* core/admin/js/react.production.min.js
* core/components/api/email/MailChimp.php
* core/components/api/email/_MailPoet3.php
* core/components/data/Utils.php
* monarch.php
version 1.4.5 ( updated 08-13-2018 )
- Fixed WSOD that occurred in some cases.
* monarch.php
version 1.4.4 ( updated 08-13-2018 )
- Corrected German translation of button text in WP Admin.
- Fixed PHP notice that was occurring since introduction of rollback feature.
- Fixed "et_social_stats" table missing error.
* core/components/VersionRollback.php
* core/languages/de_DE.mo
* core/languages/de_DE.po
* monarch.php
version 1.4.3 ( updated 7-13-2018 )
- Updated core framework to the latest version.
* core/*
* monarch.php
version 1.4.2 ( updated 6-14-2018 )
- Updated core framework to the latest version.
- Sanitized values used to generate sharing popup.
* core/*
* monarch.php
version 1.4.1 ( updated 5-31-2018 )
- Updated core framework to the latest version.
- Added extra security hardening to the OAuth2 authorization callback.
* core/*
version 1.4 ( updated 5-26-2018 )
- updated core framework to the latest version.
- Added the option to disable Google Fonts.
* monarch.php
* css/admin.css
* includes/monarch_options.php
* js/admin.js
* core/*
version 1.3.27 ( updated 4-26-2018 )
- Updated core framework to the latest version.
* core/*
version 1.3.26 ( updated 4-19-2018 )
- Updated core framework to the latest version.
* core/*
version 1.3.25 ( updated 2-8-2018 )
- Updated core framework to the latest version.
* core/*
version 1.3.24 ( updated 12-7-2017 )
- Updated core framework to the latest version.
* core/admin/js/portability.js
* core/components/Portability.php
* core/functions.php
version 1.3.23 ( updated 10-18-2017 )
- Updated core framework to the latest version.
* core/admin/css/portability.css
version 1.3.22 ( updated 10-18-2017 )
- Updated core framework to the latest version.
* core/admin/fonts/modules.eot
* core/admin/fonts/modules.svg
* core/admin/fonts/modules.ttf
* core/admin/fonts/modules.woff
version 1.3.21 ( updated 9-29-2017 )
- Updated core framework to the latest version.
* core/components/api/email/ConstantContact.php
* core/components/api/email/GetResponse.php
* core/components/api/email/MailPoet.php
* core/components/api/email/_MailPoet2.php
* core/components/api/email/Provider.php
* core/components/api/email/Providers.php
version 1.3.20 ( updated 9-21-2017 )
- Updated core framework to the latest version.
* core/functions.php
* core/components/data/init.php
* core/components/data/Utils.php
* core/components/api/email/init.php
* core/components/api/email/iContact.php
* core/components/api/email/_ProviderName.php
* core/components/api/email/Providers.php
* core/components/api/email/Provider.php
* core/components/api/email/MailPoet.php
* core/components/api/email/MadMimi.php
* core/components/api/email/HubSpot.php
* core/components/api/email/GetResponse.php
* core/components/api/email/Feedblitz.php
* core/components/api/email/Emma.php
* core/components/api/email/ConvertKit.php
* core/components/api/email/ConstantContact.php
* core/components/api/email/CampaignMonitor.php
* core/components/api/email/Aweber.php
* core/components/api/email/ActiveCampaign.php
* core/components/api/Service.php
* core/components/Logger.php
* core/components/HTTPInterface.php
version 1.3.19 ( updated 9-6-2017 )
- Updated core framework to the latest version.
* core/init.php
version 1.3.18 ( updated 7-27-2017 )
- Updated core framework to the latest version.
* core/functions.php
* core/admin/js/portability.js
* core/components/Portability.php
version 1.3.17 ( updated 7-14-2017 )
- Updated core framework to the latest version.
* core/components/PageResource.php
* core/components/PageResource.php
* core/functions.php
version 1.3.16 ( updated 7-10-2017 )
- Updated core framework to the latest versions.
- Fixed a bug that caused errors to occur on SiteGround hosting accounts for some customers when the Elegant Themes caching system attempted to clear the SiteGround cache during plugin & theme activation.
* core/components/PageResource.php
* core/components/data/Utils.php
* core/components/init.php
* core/functions.php
* core/init.php
version 1.3.15 ( updated 7-8-2017 )
- Updated core framework to the latest version.
* core/components/PageResource.php
* core/components/init.php
version 1.3.14 ( updated 7-2-2017 )
- Updated core framework to the latest version.
* core/components/PageResource.php
* core/components/init.php
version 1.3.13 ( updated 7-2-2017 )
- Updated core framework to the latest version.
* core/components/init.php
* core/components/PageResource.php
version 1.3.12 ( updated 7-1-2017 )
- Updated core framework to the latest version.
* core/init.php
version 1.3.11 ( updated 7-1-2017 )
- Updated core framework to the latest version.
* core/components/PageResource.php
version 1.3.10 ( updated 6-30-2017 )
- Updated core framework to the latest version.
* core/components/PageResource.php
version 1.3.9 ( updated 6-30-2017 )
- Updated core framework to the latest version.
* core/components/init.php
* core/components/PageResource.php
version 1.3.8 updated 6-28-2017 )
- Fixed undefined function PHP error that occurred after upgrading to the latest version in some cases.
* components/PageResource.php
version 1.3.7 ( updated 6-28-2017 )
- Updated core framework to the latest version.
* core/admin/js/page-resource-fallback.js
* core/admin/js/page-resource-fallback.min.js
* core/components/PageResource.php
* core/components/data/Utils.php
* core/components/init.php
* core/components/lib/BluehostCache.php
* core/functions.php
* core/init.php
version 1.3.6 ( updated 5-31-2017 )
- Updated Monarch to support the latest changes to the Facebook API.
* monarch.php
version 1.3.5 ( updated 5-11-2017 )
- Fixed an error that caused update notifications to fail when the latest version of Monarch was used with an old version of Divi.
* monarch.php
version 1.3.4 ( updated 4-26-2017 )
- Fixed error that occured on websites running PHP 5.2.
- Fixed error that occured when updating plugins for some customers.
* core/components/Updates.php
* core/functions.php
* core/main_functions.php
* core/init.php
version 1.3.3 ( updated 4-25-2017 )
- Updated Monarch with new core/ structure.
- Updated Facebook open graph to version 2.8
- Updated Delicious URL to the new version.
- An admin notice will now be displayed when an API needs re-authorization due to API updates.
- Added RTL support for the Monarch dashboard.
- Fixed a bug that allowed any empty @ symbol to be added when sharing via Twitter.
- Removed nofollow attribute that was mistakenly added to the data-social_link div.
- Removed FriendFeed from the list of available networks.
- Fixed a bug where media icons were not positioned correctly in some cases.
- Added validation to manual share count input fields in the Monarch dashboard.
- Added support for additional post types when choosing where social sharing buttons will appear.
- Fixed broken Vkontakte API.
- Added support for Vkontakte groups and public pages.
- Fixed a design conflict between Divi gallery hover icons and the On Media sharing location in Monarch.
- Fixed a bug that caused Monarch settings import to fail in some cases.
* monarch.php
* css/admin-rtl.css
* css/style.css
* includes/monarch_options.php
* js/custom.js
* js/admin.js
* core/*
version 1.3.2 ( updated 08-15-2016 )
- Fixed settings page font issues in WordPress 4.6
* monarch.php
* css/admin.css
* core/admin/css/core.css
* core/functions.php
version 1.3.1 ( updated 06-21-2016 )
- Fixed the issue with Inline Sharing buttons jumping on page load
- Fixed the issue with wrong hover effect for Outlook and Linkedin circle icons
* css/style.css
- Fixed an SQL error that showed up on posts/pages sharing stats page in some cases
- Fixed the issue with "Display on Home" option working incorrectly with some themes
* monarch.php
version 1.3 ( updated 05-16-2016 )
- Fixed some issues with Facebook API calls
* monarch.php
version 1.2.9 ( updated 05-10-2016 )
- Updated core submodule to latest versions (Fonts files were moved to /core. If you are currently calling these font files, your CSS files should be updated with new file paths).
* /core
- Updated Google+ icon to match the new Google+ logo & branding guidlines.
* core/admin/fonts
- Updated Facebook follow counts to handle change in latest API version
* monarch.php
version 1.2.8 ( updated 04-13-2016 )
- Fixed an issue that caused theme updates to fail when Bloom, Monarch or the Divi Builder were installed.
* core/admin/includes/class-updates.php
version 1.2.7.3 ( updated 04-12-2016 )
- Added option to configure auto updates from the Plugin Settings
* monarch.php
* css/admin.css
* includes/monarch_options.php
* js/admin.js
* /core
- Fixed the issue with Linkedin wrong followers count
* monarch.php
version 1.2.7.2 ( updated 02-26-2016 )
- Fixed the issue with Facebook counts, not working properly
* monarch.php
version 1.2.7.1 ( updated 02-18-2016 )
- Fixed the issue with meta box settings, not being loaded properly for non-admin users
* monarch.php
version 1.2.7 ( updated 02-17-2016 )
- IMPORTANT: Fixed critical privilege escalation security vulnerability that, if properly exploited, could allow unprivileged registered WordPress users to modify plugin settings.
* For more detailed information, please refer to the full public disclosure that was emailed to all customers on 2-17-2016: http://bit.ly/1Q9P13N
version 1.2.6 ( 11-23-2015 )
- Fixed warning messages, displayed on a fresh installation
- Twitter Share counts: Removed a request to an outdated endpoint
* monarch.php
version 1.2.5 ( 09-09-2015 )
- Fixed Facebook Follow count
* monarch.php
version 1.2.4 ( 08-18-2015 )
- GitHub: Fixed the issue with followers count for Organizations
- LinkedIn: Fixed the issues with followers count retrieval from linkedin network
- Pinterest: Fixed the issue with followers count in some cases
- Fixed the issue with quotes encoding in post title
- Fixed the issue with reset of share counts to 0 sometimes
- Fixed the issue with HTML tags in title when sharing
- Fixed the issue with sharing URL for buddypress pages
- Fixed the issue with localization of some strings in Dashboard
- Fixed the issue when Open Sans font loaded multiple times if Bloom and/or Divi was enabled
- Added localization for the "k" and "Mil" suffixes
* monarch.php
- Twitter: Fixed the issue with OAuthException class conflicts with some plugins
* includes/oauth.php
- YouTube: Added YouTube API v3 support
* monarch.php
* includes/monarch_options.php
- Fixed the issue with circle icons animation
* css/style.css
- Fixed WP_Widget class constructor warning message in WordPress 4.3
* includes/monarch-widget.php
- Added WPML support
* includes/monarch_options.php
* monarch.php
- "On media" location is supported on Product post type pages now
* includes/monarch_options.php
* js/custom.js
* monarch.php
- Added ability to set an empty title for the widget
* includes/monarch-widget.php
- Improved visibility of API settings in Dashboard, depending on selected networks
* css/admin.css
* includes/monarch_options.php
* js/admin.js
* monarch.php
- Added ability to filter the stats by location on Stats Page
* css/admin.css
* js/admin.js
* js/custom.js
* monarch.php
version 1.2.3 ( 05-02-2015 )
- Integrated Facebook API changes. Due to changes in Facebook's API, Monarch must be authorized to obtain follow/share counts from Facebook. Please get an App ID and App Secret from Facebook.
* includes/monarch_options.php
* js/admin.js
* monarch.php
- Updated localization files
* languages/Monarch-en_US.po
* languages/Monarch-en_US.mo
version 1.2.2 ( 04-21-2015 )
- Fixed the issue with "loading icon" visibility in WordPress 4.2
* css/admin.css
* js/admin.js
version 1.2.1 ( 02-19-2015 )
- Added support for all Pinterest data formats
- Fixed the issue with disabled "Share Count" option, visible on the mobile version
- Fixed the issue with Like count, not displaying inside the mobile sidebar
* monarch.php
- Added alt attribute ( alternate text ) to images in the Pinterest picker
* js/custom.js
version 1.2 ( 02-05-2015 )
- Monarch widget: Fixed the issue with likes count error
* monarch.php
- Added option for Sidebar on Right Browser Edge:
* css/style.css
* includes/monarch_options.php
* monarch.php
- Added a "Home" Option Within The Post Type Settings Of All Locations
* includes/monarch_options.php
* monarch.php
- Added All Time Stats Graph
* css/admin.css
* js/admin.js
* monarch.php
- Added Twitter Followers Auto Count
* includes/monarch_options.php
* includes/oauth.php
* includes/twitter_auth.php
* js/admin.js
* monarch.php
- Added Pinterest Followers Auto Count
- Added YouTube Api Support
- Improved YouTube response handling
- Fixed the issue with Pinterest icon, conflicting with the official Pinterest plugin icon
- Fixed the issue with wrong Google+ share counts
- Fixed the issue with Twitter sharing link on mobile devices
* monarch.php
- Added Stats Meta Box
* css/stats-meta-styles.css
* js/monarch-post-meta.js
* monarch.php
- Added "All Networks" Front-end Icon
* css/fonts
* css/style.css
* includes/monarch_options.php
* monarch.php
* js/custom.js
- Added "After Inactivity" Trigger
- Added "After Comment" Trigger To Fly-In & Pop-Up
- Added "Percentage Down The Page" trigger to Fly-In & Pop-Up
- Added "After WooCommerce Purchase" Trigger To Fly-In & Pop-Up
* includes/monarch_options.php
* js/custom.js
* js/idle-timer.js
* monarch.php
- Added Fadein/FadeOut Animation To Popup Overlay
* css/style.css
* js/custom.js
- Fixed the issue with monarch widget class that had no width defined
* css/style.css
- Added Highest performing posts to stats
* css/admin.css
* monarch.php
version 1.1.2 ( 11-21-2014 )
- Fixed the issue with override settings that were not saved correctly
- Fixed the issue with incorrectly encoded symbols in the sharing popup window
- Fixed the issue with a backslash displayed before apostrophes in popup/flyin titles and descriptions
- Fixed some issues with the Contact Form module in the Divi theme
- Counters display 1 Mil ( 1 million ) as opposed to 1000k now
* monarch.php
- Fixed the issue with image size / alignment inside of the media shortcode
- Fixed styling issues with some themes
* css/style.css
* js/custom.js
- Pinterest Modal window: added an error message if there are no images on a page, improved functionality
- Added "Hide/Show Sidebar" button
* css/style.css
* js/custom.js
* monarch.php
- Improved Auto Width styles, auto width buttons remain auto width on mobile.
* css/style.css
version 1.1.1 ( 10-28-2014 )
- Fixed the issue with page url, not working properly, when some additional information was appended to it.
* js/custom.js
version 1.1 ( 10-24-2014 )
- Fixed Pinterest Modal Images visibility issue
- Fixed styling issues
- Fixed OpenSans typo - the font was not being used
* css/style.css
- Added % Height to "Add Network" modal window
* css/admin.css
* js/admin.js
- Fixed the issue with cached share counts
- Fixed Pinterest modal warning message, when no networks were selected
* monarch.php
- Fixed the issue with automatic share counts, not properly calculated after a comment is made
* js/custom.js
* monarch.php
version 1.0 ( 10-22-2014 )
- Initial release

View File

@@ -0,0 +1,209 @@
# Copyright (C) 2020 flowdee
# This file is distributed under the same license as the Oh Dear plugin.
msgid ""
msgstr ""
"Project-Id-Version: Oh Dear 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ohdear\n"
"Last-Translator: flowdee <coder@flowdee.de>\n"
"Language-Team: KryptoniteWP <support@kryptonitewp.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-08-05T15:24:49+03:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: ohdear\n"
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
"esc_html_x:1,2c\n"
"Language: en_US\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-Basepath: ..\n"
"X-Textdomain-Support: yes\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: assets\n"
#. Plugin Name of the plugin
#: includes/admin/class-menu.php:29
msgid "Oh Dear"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/ohdear/"
msgstr ""
#. Description of the plugin
msgid "Websites uptime monitoring."
msgstr ""
#: includes/admin/class-menu.php:31
#: includes/admin/plugins.php:25
msgid "Dashboard"
msgstr ""
#: includes/admin/class-menu.php:33
#: includes/admin/plugins.php:26
msgid "Settings"
msgstr ""
#: includes/admin/class-settings.php:250
msgid "API Status"
msgstr ""
#: includes/admin/class-settings.php:256
msgid "API Token"
msgstr ""
#. translators: OhDear page link
#: includes/admin/class-settings.php:259
msgid "Enter your OhDear API token, found on your <a href=\"%s\" target=\"_blank\">OhDear api settings page</a>"
msgstr ""
#: includes/admin/class-settings.php:265
msgid "Website"
msgstr ""
#: includes/admin/class-settings.php:267
msgid "Select the website from which the data will be taken from"
msgstr ""
#: includes/admin/class-settings.php:272
msgid "Grant Access"
msgstr ""
#: includes/admin/class-settings.php:274
msgid "Select which user roles can access the Oh Dear monitoring (administrators have access by default)"
msgstr ""
#: includes/admin/class-settings.php:323
msgid "Please enter a valid API token before selecting a site"
msgstr ""
#. translators: Callback name, passed by the setting
#: includes/admin/class-settings.php:427
msgid "The callback function used for the <strong>%s</strong> setting is missing."
msgstr ""
#: includes/admin/class-settings.php:476
msgid "No sites found"
msgstr ""
#: includes/admin/class-settings.php:488
msgid "Please select a site"
msgstr ""
#: includes/admin/views/dashboard.php:13
msgid "Oh Dear Monitoring"
msgstr ""
#. translators: 1: Plugin settings page link, 2: 'Settings' word
#: includes/admin/views/dashboard.php:20
msgid "Please set the valid Oh Dear API token at <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
msgstr ""
#: includes/admin/views/dashboard.php:22
#: includes/admin/views/dashboard.php:35
msgid "Settings page"
msgstr ""
#. translators: 1: Plugin settings page link, 2: 'Settings' word
#: includes/admin/views/dashboard.php:33
msgid "Please set the site at <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
msgstr ""
#: includes/admin/views/settings.php:11
msgid "Oh Dear Settings"
msgstr ""
#: includes/admin/views/templates/broken-widget.php:22
#: includes/admin/views/templates/broken.php:50
msgid "Status Code"
msgstr ""
#: includes/admin/views/templates/broken-widget.php:28
#: includes/admin/views/templates/broken.php:52
msgid "Broken Link"
msgstr ""
#: includes/admin/views/templates/broken-widget.php:34
#: includes/admin/views/templates/broken.php:54
msgid "Found on"
msgstr ""
#: includes/admin/views/templates/broken.php:20
msgid "Broken Links"
msgstr ""
#: includes/admin/views/templates/broken.php:25
#: includes/admin/views/templates/performance.php:25
#: includes/admin/views/templates/uptime.php:24
msgid "Open on Oh Dear"
msgstr ""
#: includes/admin/views/templates/broken.php:35
#: includes/admin/views/templates/performance.php:56
msgid "Last time checked"
msgstr ""
#: includes/admin/views/templates/broken.php:58
msgid "Actions"
msgstr ""
#: includes/admin/views/templates/broken.php:86
msgid "Edit"
msgstr ""
#: includes/admin/views/templates/broken.php:109
msgid "No Broken Links for the current site"
msgstr ""
#: includes/admin/views/templates/performance.php:20
msgid "Performance"
msgstr ""
#: includes/admin/views/templates/performance.php:56
msgid "Last 7 days"
msgstr ""
#: includes/admin/views/templates/performance.php:194
msgid "No Performance stats for the current site"
msgstr ""
#: includes/admin/views/templates/uptime.php:19
msgid "Uptime"
msgstr ""
#. translators: 1: Days count, 2: Date
#: includes/admin/views/templates/uptime.php:47
msgid "Last %1$s days. Last time checked: %2$s"
msgstr ""
#: includes/admin/views/templates/uptime.php:115
msgid "No Uptime stats for the current site"
msgstr ""
#: includes/admin/views/widgets.php:23
msgid "Oh Dear Uptime"
msgstr ""
#: includes/admin/views/widgets.php:24
msgid "Oh Dear Performance"
msgstr ""
#: includes/admin/views/widgets.php:25
msgid "Oh Dear Broken Links"
msgstr ""
#: includes/admin/views/widgets.php:156
msgid "View all "
msgstr ""
#: ohdear.php:93
msgid "Your version of PHP is below the minimum version of PHP required by this plugin. Please contact your host and request that your version be upgraded to 5.6 or later."
msgstr ""
#: ohdear.php:107
#: ohdear.php:118
msgid "Cheatin&#8217; huh?"
msgstr ""

View File

@@ -0,0 +1,30 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.7.3] - 2020-07-31
### Added
- Released to WordPress Plugin Directory.
### Fixed
- Some under-the-hood improvements to the code (kudos to the WordPress Plugin Review team!).
## [0.7.2] - 2020-07-24
### Added
- Configuration option: default paywall availability.
### Fixed
- Corrected javascript bug that occurred when the Classic Editor was being used (with the WordPress plugin).
- Texts in Portuguese now display correctly.
## [0.7.1] - 2020-07-22
### Added
- Configuration option: default user to associate to articles.
### Changed
- The Paperview User that is associated to an Article is now determined by: 1) article author; 2) current user; and 3) default user (in this order).
## [0.7.0] - 2020-05-18
### Added
- Initial release.

View File

@@ -0,0 +1,277 @@
# Copyright (C) 2020 PhotoShelter
# This file is distributed under the same license as the PhotoShelter Importer plugin.
msgid ""
msgstr ""
"Project-Id-Version: PhotoShelter Importer 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/photoshelter-importer\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-31T17:06:01+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: photoshelter-importer\n"
#. Plugin Name of the plugin
msgid "PhotoShelter Importer"
msgstr ""
#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.photoshelter.com"
msgstr ""
#. Description of the plugin
msgid "PhotoShelter Digital Asset Manager integration with WordPress."
msgstr ""
#. Author of the plugin
#: assets/src/js/blocks/ps-media/index.js:24
msgid "PhotoShelter"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/Auth/DataSource.php:45
msgid "Auth\\authenticate_organization() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/Auth/DataSource.php:83
msgid "Auth\\deauthenticate_organization() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$d: Numeric HTTP status code (e.g. 400, 403, 500, etc.), %2$s Error message, if any.
#: includes/classes/API/ClientRemote.php:75
#: includes/classes/APIv3/ClientRemote.php:76
#: includes/classes/APIv3/ClientRemote.php:88
msgid "Bad response from API (%1$d): %2$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/Media/DataSource.php:49
msgid "Media\\download_media() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/Media/DataSource.php:92
msgid "Media\\get_media() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/OAuth/DataSource.php:58
msgid "OAuth\\register() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/OAuth/DataSource.php:106
#: includes/classes/APIv3/Organization/DataSource.php:91
msgid "OAuth\\token() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/APIv3/Organization/DataSource.php:43
msgid "OAuth\\get_organization() is missing the following required fields: %1$s"
msgstr ""
#: includes/functions/admin.php:63
msgid "Account Details"
msgstr ""
#: includes/functions/admin.php:71
msgid "PhotoShelter API Key"
msgstr ""
#: includes/functions/admin.php:79
msgid "Where can I find my API Key?"
msgstr ""
#: includes/functions/admin.php:101
msgid "Authorize through PhotoShelter"
msgstr ""
#: includes/functions/admin.php:112
msgid "PhotoShelter Org ID"
msgstr ""
#: includes/functions/admin.php:120
msgid "Where can I find my Org ID?"
msgstr ""
#: includes/functions/admin.php:160
msgid "PhotoShelter Importer Settings"
msgstr ""
#: includes/functions/admin.php:161
#: includes/functions/admin.php:169
#: includes/functions/admin.php:170
msgid "PS Importer"
msgstr ""
#: includes/functions/admin.php:357
msgid "Save Settings"
msgstr ""
#: includes/functions/admin.php:385
msgid "Please enter your PhotoShelter API Key in order to access your Library."
msgstr ""
#: includes/functions/admin.php:408
msgid "Enter API Key here."
msgstr ""
#: includes/functions/admin.php:473
msgid "Enter Org ID here, if you have one."
msgstr ""
#: includes/functions/admin.php:502
msgid "Disconnect"
msgstr ""
#: includes/functions/admin.php:536
msgid "Invalid API key specified."
msgstr ""
#: includes/functions/admin.php:549
msgid "Invalid Org ID specified."
msgstr ""
#: includes/functions/admin.php:670
msgid "organization"
msgstr ""
#: includes/functions/admin.php:675
#: includes/functions/rest-api.php:101
msgid "Library"
msgstr ""
#. translators: %s is the organition name
#: includes/functions/admin.php:719
msgid "Logged into %s."
msgstr ""
#. translators: %s is the organition name
#: includes/functions/admin.php:721
msgid "Logged out of %s."
msgstr ""
#: includes/functions/admin.php:755
msgid "Settings"
msgstr ""
#: includes/functions/rest-api.php:241
msgid "Access granted."
msgstr ""
#: includes/functions/rest-api.php:268
#: includes/functions/rest-api.php:351
msgid "Unexpected input"
msgstr ""
#: includes/functions/rest-api.php:282
#: includes/functions/rest-api.php:464
msgid "OK"
msgstr ""
#. translators: %s is the tmp file path
#: includes/functions/rest-api.php:376
msgid "Response in unexpected format: %s"
msgstr ""
#. translators: %s is the tmp file path
#: includes/functions/rest-api.php:399
msgid "Unable to write to file system: %s"
msgstr ""
#. translators: %s is the tmp file path
#: includes/functions/rest-api.php:424
msgid "Unable to sideload attachment: %s"
msgstr ""
#. translators: %s is the error message
#: includes/helpers/api.php:26
msgid "API Response error: %s"
msgstr ""
#: assets/src/js/blocks/ps-media/index.js:25
msgid "PhotoShelter Media Block"
msgstr ""
#: assets/src/js/blocks/ps-media/index.js:29
msgid "Images"
msgstr ""
#: assets/src/js/components/Breadcrumbs.js:38
msgid "Galleries"
msgstr ""
#: assets/src/js/components/Collection.js:12
msgid "Retrieving collection..."
msgstr ""
#: assets/src/js/components/Collection.js:31
msgid "Collection is empty"
msgstr ""
#: assets/src/js/components/Gallery.js:12
msgid "Retrieving gallery..."
msgstr ""
#: assets/src/js/components/Gallery.js:35
msgid "Gallery is empty"
msgstr ""
#: assets/src/js/components/LibraryHome.js:29
msgid "Fetching library..."
msgstr ""
#: assets/src/js/components/LibraryPlaceholder.js:47
msgid "Browse or search your PhotoShelter Library"
msgstr ""
#: assets/src/js/components/LibraryPlaceholder.js:49
msgid "Open Library"
msgstr ""
#: assets/src/js/components/SearchForm.js:44
msgid "Search"
msgstr ""
#: assets/src/js/components/SearchResults.js:40
msgid "There are no results yet"
msgstr ""
#: assets/src/js/components/SearchResults.js:41
msgid "Try a new search or change your filters."
msgstr ""
#: assets/src/js/components/SearchResults.js:47
msgid "Search Results"
msgstr ""
#: assets/src/js/components/ThumbnailGallery.js:50
msgid "File"
msgstr ""
#: assets/src/js/components/ThumbnailGallery.js:50
msgid "Files"
msgstr ""
#: assets/src/js/utilities/fetch.js:23
msgid "Bad JSON response."
msgstr ""
#. translators: %1$s is the status code, and %2$s is the status text.
#: assets/src/js/utilities/fetch.js:76
msgid "Status code: %1$s | %2$s"
msgstr ""
#. translators: %s is the stringified JSON response.
#: assets/src/js/utilities/fetch.js:86
msgid "Got unexpected response object: %s"
msgstr ""
#: assets/src/js/utilities/fetch.js:101
msgid "An unknown error occurred."
msgstr ""

View File

@@ -0,0 +1,10 @@
# Version 0.2.1 beta 2020-07-22
* Changed `apply_filter` for `do_shortcode` to avoid iframes
# Version 0.2.0 beta 2020-07-18
* The plugin has been completely rewritten and now it uses the Flarum API instead of making changes directly in the database
# Version 0.1.0 beta 2018-10-15
## Initial version
* Initial version of `post-to-flarum` plugin submitted

View File

@@ -398,6 +398,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/admin-keys/assets/js/mousetrap-global-bind.min.js?ver=1.4.0"></script>
<!-- ads-pixel -->
<link rel="stylesheet" id="facebook-pixel-css" href="http://wp.lab/wp-content/plugins/ads-pixel/public/css/facebook-pixel-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/ads-pixel/public/js/facebook-pixel-public.js?ver=1.0.0"></script>
<!-- adsense-plugin -->
<link rel="stylesheet" id="adsns_css-css" href="http://wp.lab/wp-content/plugins/adsense-plugin/css/adsns.css?ver=1.47" type="text/css" media="all">
@@ -3020,6 +3025,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chessgame-shizzle/frontend/js/chessgame-shizzle-frontend.js?ver=1.0.4"></script>
<!-- chilexpress-oficial -->
<link rel="stylesheet" id="chilexpress-woo-oficial-css" href="http://wp.lab/wp-content/plugins/chilexpress-oficial/public/css/chilexpress-woo-oficial-public.css?ver=1.1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/chilexpress-oficial/public/js/chilexpress-woo-oficial-public.js?ver=1.1.0"></script>
<!-- chiliforms -->
<link rel="stylesheet" id="chiliforms_css-css" href="http://wp.lab/wp-content/plugins/chiliforms/assets/css/bundle/chiliforms.css?ver=0.5.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chiliforms/js/build/clientside/chiliforms.js?ver=0.5.1"></script>
@@ -3184,6 +3194,13 @@
<link rel="stylesheet" id="cm-idin-css" href="http://wp.lab/wp-content/plugins/cm-idin/css/style.min.css?ver=1.0.1" type="text/css" media="all">
<!-- cm-tiktok-feed -->
<link rel="stylesheet" id="wtiktok-styles-css" href="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/wtiktok.css?ver=1.0.1" media="all">
<link rel="stylesheet" id="wtik_instag-slider-css" href="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/templates.css?ver=1.0.1" media="all">
<link rel="stylesheet" id="wtik_wtik-header-css" href="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/wtik-header.css?ver=1.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/js/jquery.flexslider-min.js?ver=1.0.1"></script>
<!-- cn-custom-tabs -->
<link rel="stylesheet" id="cn-custom-woo-tabs-css" href="http://wp.lab/wp-content/plugins/cn-custom-tabs/public/css/cn-custom-woo-tabs-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cn-custom-tabs/public/js/cn-custom-woo-tabs-public.js?ver=1.0.0"></script>
@@ -3685,6 +3702,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/coupons/frontend/js/frontend.js?ver=1.1.0"></script>
<!-- courier-notices -->
<link rel="stylesheet" id="courier-notices-css" href="http://wp.lab/wp-content/plugins/courier-notices/css/courier-notices.css?ver=1.2.3" media="all">
<script src="http://wp.lab/wp-content/plugins/courier-notices/js/courier-notices.js?ver=1.2.3"></script>
<!-- course-migration-for-learndash -->
<link rel="stylesheet" id="sfwd-lms-course-migration-css" href="http://wp.lab/wp-content/plugins/course-migration-for-learndash/public/css/sfwd-lms-course-migration-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/course-migration-for-learndash/public/js/sfwd-lms-course-migration-public.js?ver=1.0.0"></script>
@@ -3742,6 +3764,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cpf-e-cnpj-para-contact-form-7/js/main.js?ver=1.0"></script>
<!-- cpt-ajax-load-more -->
<script src="http://wp.lab/wp-content/plugins/cpt-ajax-load-more/assets/js/app.js?ver=1.0.0"></script>
<!-- cpt-list -->
<link rel="stylesheet" id="cpt-list-style-css" href="http://wp.lab/wp-content/plugins/cpt-list/css/cpt-list.css?ver=0.1.1" type="text/css" media="all">
@@ -3882,6 +3908,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-accordion-block/js/custom-script.js?ver=1.0"></script>
<!-- custom-api-for-wp -->
<link rel="stylesheet" id="custom-api-for-wp-css" href="http://wp.lab/wp-content/plugins/custom-api-for-wp/public/css/custom-api-for-wordpress-public.css?ver=1.1.1" media="all">
<script src="http://wp.lab/wp-content/plugins/custom-api-for-wp/public/js/custom-api-for-wordpress-public.js?ver=1.1.1"></script>
<!-- custom-checkout-layouts-for-woocommerce -->
<link rel="stylesheet" id="custom-checkout-css-css" href="http://wp.lab/wp-content/plugins/custom-checkout-layouts-for-woocommerce/css/custom-checkout.css?ver=1.0" type="text/css" media="all">
@@ -6116,6 +6147,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/getwid/assets/js/frontend.blocks.js?ver=1.3.1"></script>
<!-- getwid-megamenu -->
<link rel="stylesheet" id="getwid-megamenu-block-style-css" href="http://wp.lab/wp-content/plugins/getwid-megamenu/build/style-index.css?ver=0.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/getwid-megamenu/build/frontend.js?ver=0.0.1"></script>
<!-- gf-fields-persistence -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gf-fields-persistence/assets/js/gf-field-persistence.js?ver=1.0.1"></script>
@@ -6332,6 +6368,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/graph-lite/public/js/graphs-lite-public.js?ver=2.0.2"></script>
<!-- graphina-elementor-charts-and-graphs -->
<link rel="stylesheet" id="graphina-charts-for-elementor-css" href="http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/css/graphina-charts-for-elementor-public.css?ver=0.0.5" media="all">
<script src="http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/js/apexcharts.min.js?ver=0.0.5"></script>
<script src="http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/js/graphina-charts-for-elementor-public.js?ver=0.0.5"></script>
<!-- gravitate-event-tracking -->
<script type="text/javascript" defer src="http://wp.lab/wp-content/plugins/gravitate-event-tracking/gravitate_event_tracking.js?v=1.5.3"></script>
@@ -6405,6 +6447,23 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gridable/public/js/gridable-scripts.js?ver=1.2.2"></script>
<!-- grit-portfolio -->
<link rel="stylesheet" id="grit-portfolio-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/css/grit-portfolio-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfoliofont-awesome-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/font-awesome.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfolioanimate-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/animate.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfoliomagnific-popup-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/magnific-popup.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfolioowl-carousel-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/owl.carousel.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfoliostyle-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/style.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfolioresponsive-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/responsive.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/js/grit-portfolio-public.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/jquery.magnific-popup.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/owl.carousel.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/wow.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/isotope.pkgd.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/imagesloaded.pkgd.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/main.js?ver=1.0.0"></script>
<!-- grit-taxonomy-filter -->
<link rel="stylesheet" id="grit_taxonomy_filter-css" href="http://wp.lab/wp-content/plugins/grit-taxonomy-filter/public/css/grit-taxonomy-filter-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/grit-taxonomy-filter/public/js/grit-taxonomy-filter-public.js?ver=1.0.0"></script>
@@ -7445,6 +7504,20 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/job-postings/include/../js/script.js?v=1.4.1&amp;ver=4.9.1"></script>
<!-- jobboardwp -->
<link rel="stylesheet" id="select2-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/select2/css/select2.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="jb-tipsy-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/tipsy/css/tipsy.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="jb-helptip-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/css/helptip.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="jb-common-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/css/common.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="jb-job-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/css/job.min.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/select2/js/select2.full.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/tipsy/js/tipsy.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/dropdown.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/js/helptip.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/global.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/single-job.min.js?ver=1.0.0"></script>
<!-- jobsoid -->
<link rel="stylesheet" id="jobsoid_plugin_css-css" href="http://wp.lab/wp-content/plugins/jobsoid/css/jobsoid.css?ver=1.0.0" type="text/css" media="all">
@@ -8266,6 +8339,9 @@
<!-- loginer-custom-login-page-builder -->
<link rel="stylesheet" id="loginer-style-css" href="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/loginer-public.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="login-bootstrap-css" href="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/bootstrap.min.css?ver=1.0" media="all">
<link rel="stylesheet" id="login-style-css" href="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/login-public.css?ver=1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/js/login-public.js?ver=1.0"></script>
<!-- logistia -->
@@ -9233,6 +9309,13 @@
<!-- mon-laboratoire -->
<link rel="stylesheet" id="MonLabo-css" href="http://wp.lab/wp-content/plugins/mon-laboratoire/MonLabo.css?ver=3.0" media="all">
<link rel="stylesheet" id="MonLabo-css" href="http://wp.lab/wp-content/plugins/mon-laboratoire/mon-laboratoire.css?ver=3.0" media="all">
<!-- monarch -->
<link rel="stylesheet" id="et_monarch-css-css" href="https://wp.lab/wp-content/plugins/monarch/css/style.css?ver=1.4.12" type="text/css" media="all">
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/monarch/js/idle-timer.min.js?ver=1.4.12"></script>
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/monarch/js/custom.js?ver=1.4.12"></script>
<!-- monk -->
@@ -11593,6 +11676,10 @@
<script src="http://wp.lab/wp-content/plugins/raileo/public/js/raileo-public.js?ver=1.0.2"></script>
<!-- random-and-popular-post -->
<link rel="stylesheet" id="random-and-popular-post-css" href="http://wp.lab/wp-content/plugins/random-and-popular-post/public/css/random-and-popular-post-public.css?ver=1.0.0" media="all">
<!-- random-banner -->
<link rel="stylesheet" id="bc_rb_global_style-css" href="http://wp.lab/wp-content/plugins/random-banner/assets/style/bc_rb_global.css?ver=4.0" type="text/css" media="all">
<link rel="stylesheet" id="bc_rb_animate-css" href="http://wp.lab/wp-content/plugins/random-banner/assets/style/animate.css?ver=4.0" type="text/css" media="all">
@@ -12319,6 +12406,11 @@
<link rel="stylesheet" id="rd-downloads-front-css-css" href="http://wp.lab/wp-content/plugins/rundiz-downloads/assets/css/front/rd-downloads.min.css?ver=0.3" type="text/css" media="all">
<!-- rut-chileno-con-validacion -->
<link rel="stylesheet" id="wc-chilean-bundle-css" href="http://wp.lab/wp-content/plugins/rut-chileno-con-validacion/public/css/wc-chilean-bundle-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/rut-chileno-con-validacion/public/js/wc-chilean-bundle-public.js?ver=1.0.0"></script>
<!-- rw-elephant-rental-inventory -->
<link rel="stylesheet" id="rwe-frontend-css" href="http://wp.lab/wp-content/plugins/rw-elephant-rental-inventory/lib/assets/css/rw-elephant.min.css?ver=2.1.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rw-elephant-rental-inventory/lib/assets/js/rw-elephant.min.js?ver=2.1.2"></script>
@@ -13402,6 +13494,11 @@
<script src="http://wp.lab/wp-content/plugins/slatre/public/js/slatre-public.js?ver=1.0.0"></script>
<!-- slazzer-background-changer -->
<link rel="stylesheet" id="slazzer-background-changer-css" href="http://wp.lab/wp-content/plugins/slazzer-background-changer/public/css/slazzer-background-changer-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/slazzer-background-changer/public/js/slazzer-background-changer-public.js?ver=1.0.0"></script>
<!-- slicewp -->
<link rel="stylesheet" id="slicewp-style-css" href="http://wp.lab/wp-content/plugins/slicewp/assets/css/style-front-end.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/slicewp/assets/js/script-tracking.js?ver=1.0.0"></script>
@@ -13736,6 +13833,14 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-rocket/js/script.js?ver=1.0.1"></script>
<!-- social-share-buttons-by-elixirs-io -->
<link rel="stylesheet" id="social-share-buttons-fontawesome-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/fontawesome.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="social-share-buttons-fontawesome-brands-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/brands.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="social-share-buttons-fontawesome-regular-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/regular.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="social-share-buttons-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/social-share-buttons-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/js/social-share-buttons-public.js?ver=1.0.0"></script>
<!-- social-sharing-buttons-and-counters -->
<link rel="stylesheet" id="jcss-styles-css" href="http://wp.lab/wp-content/plugins/social-sharing-buttons-and-counters/assets/css/jc-social-sharing.css?ver=1.1.5" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-sharing-buttons-and-counters/assets/js/jc-social-sharing.js?ver=1.1.5"></script>
@@ -14298,6 +14403,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sv-sticky-menu/js/sv-sticky-menu.min.js?ver=1.0.5"></script>
<!-- svg-favicon -->
<link rel="stylesheet" id="svg-favicon-css" href="http://wp.lab/wp-content/plugins/svg-favicon/public/css/svg-favicon-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/svg-favicon/public/js/svg-favicon-public.js?ver=1.0.0"></script>
<!-- svg-map-by-saedi -->
<link rel="stylesheet" id="svg-map-by-saedi-css" href="http://wp.lab/wp-content/plugins/svg-map-by-saedi/public/css/svg-map-by-saedi-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/svg-map-by-saedi/public/js/svg-map-by-saedi-public.js?ver=1.0.0"></script>
@@ -15093,6 +15203,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/twenty20/assets/js/jquery.event.move.js?ver=1.2"></script>
<!-- twentyfourth-wp-scraper -->
<link rel="stylesheet" id="twentyfourth-wp-scraper-css" href="http://wp.lab/wp-content/plugins/twentyfourth-wp-scraper/public/css/twentyfourth-wp-scraper-public.css?ver=0.1.9" media="all">
<script src="http://wp.lab/wp-content/plugins/twentyfourth-wp-scraper/public/js/twentyfourth-wp-scraper-public.js?ver=0.1.9"></script>
<!-- twitch-status -->
<link rel="stylesheet" id="twitch_status-css" href="http://wp.lab/wp-content/plugins/twitch-status/css/twitch-status.css?ver=1.4.2" type="text/css" media="all">
<link rel="stylesheet" id="twitch_status_fontello-css" href="http://wp.lab/wp-content/plugins/twitch-status/font/fontello/css/fontello.css?ver=1.4.2" type="text/css" media="all">
@@ -15420,6 +15535,30 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/main.js?ver=1.0"></script>
<!-- ultra-elementor-addons -->
<link rel="stylesheet" id="ua-style-accordion-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/accordion.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-animated-headlines-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/animated-headlines.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-box-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/box.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-twentytwenty-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/css/twentytwenty.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-image-comparison-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/image-comparison.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-team-member-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/team-member.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-slick-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/slick/slick.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-team-members-carousel-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/team-members-carousel.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-testimonial-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/testimonial.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-owl-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/css/owl.carousel.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-owl-default-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/css/owl.theme.default.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="ua-style-testimonial-carousel-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/testimonial-carousel.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/accordion.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/animated-headlines.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/js/jquery.event.move.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/js/jquery.twentytwenty.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/image-comparison.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/slick/slick.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/team-members-carousel.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/js/owl.carousel.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/testimonial-carousel.js?ver=1.0.0"></script>
<!-- um-events-lite-for-ultimate-member -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/um-events-lite-for-ultimate-member/assets/js/um-events.min.js?ver=1.0.0"></script>
@@ -15826,6 +15965,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vies-validator/public/js/vies-validator-public.js?ver=1.0.4"></script>
<!-- vindi-payment-gateway -->
<link rel="stylesheet" id="vindi_woocommerce_style-css" href="http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/css/frontend.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/js/imask.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/js/frontend.js?ver=1.0.0"></script>
<!-- vinteotv-video-ads -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vinteotv-video-ads/modules/js/front.js?ver=1.0"></script>
@@ -16372,6 +16517,10 @@
<link rel="stylesheet" id="whats-new-style-css" href="http://wp.lab/wp-content/plugins/whats-new-genarator/whats-new.css?ver=2.0.1" type="text/css" media="all">
<!-- whoframed -->
<script src="http://wp.lab/wp-content/plugins/whoframed/js/whoframed.min.js?ver=1.0"></script>
<!-- whois-dashboard-widget -->
<link rel="stylesheet" id="whoisdashboard-plugin-styles-css" href="http://wp.lab/wp-content/plugins/whois-dashboard-widget/public/assets/css/public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/whois-dashboard-widget/public/assets/js/public.js?ver=1.0.0"></script>
@@ -17428,6 +17577,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-customer-reviews/js/wp-customer-reviews.js?ver=3.1.5"></script>
<!-- wp-dark-mode -->
<link rel="stylesheet" id="wp-dark-mode-frontend-css" href="http://wp.lab/wp-content/plugins/wp-dark-mode/assets/css/frontend.css?ver=1.0.2" media="all">
<script src="http://wp.lab/wp-content/plugins/wp-dark-mode/assets/js/frontend.js?ver=1.0.2"></script>
<!-- wp-database-error-manager -->
<link rel="stylesheet" id="wp-db-error-manager-css" href="http://wp.lab/wp-content/plugins/wp-database-error-manager/public/css/wp-db-error-manager-public.css?ver=2.1.6" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-database-error-manager/public/js/wp-db-error-manager-public.js?ver=2.1.6"></script>
@@ -19058,6 +19212,13 @@
<link rel="stylesheet" id="WP-ViperGB-Default-css" href="http://wp.lab/wp-content/plugins/wp-vipergb/styles/Default.css?ver=1.4.3" type="text/css" media="all">
<!-- wp-visualize -->
<link rel="stylesheet" id="wp-visualize-css" href="http://wp.lab/wp-content/plugins/wp-visualize/public/css/wp-visualize-public.css?v=1.4.1&ver=1.0.2" media="all">
<script src="http://wp.lab/wp-content/plugins/wp-visualize/public/js/wp-visualize-public.js?v=1.3.4&ver=1.0.2"></script>
<script src="http://wp.lab/wp-content/plugins/wp-visualize/public/js/scene.js?ver=1.0.2"></script>
<script src="http://wp.lab/wp-content/plugins/wp-visualize/public/js/moveable.min.js?ver=1.0.2"></script>
<!-- wp-wdfy-integration-of-wodify -->
<link rel="stylesheet" id="soswodify-css" href="http://wp.lab/wp-content/plugins/wp-wdfy-integration-of-wodify/css/style.css?ver=1.12.1" type="text/css" media="all">
@@ -19813,6 +19974,15 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zone-marker/public/js/gil-zone-marker.js?ver=1.0.1"></script>
<!-- zone-pandemic-covid-19 -->
<link rel="stylesheet" id="pandemic-covid19-css" href="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/pandemic-covid19-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="zone-pandemic-covid19-bulma-css" href="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/bulma.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="zone-pandemic-covid19-datatable-css-css" href="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/datatable/jquery.dataTables.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/pandemic-covid19-public.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/pandemic-covid19-ajax.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/datatable/jquery.dataTables.js?ver=1.0.0"></script>
<!-- zoorvy-social-share -->
<link rel="stylesheet" id="zoorvy-social-share-css" href="http://wp.lab/wp-content/plugins/zoorvy-social-share/public/css/zoorvy-social-share-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zoorvy-social-share/public/js/zoorvy-social-share-public.js?ver=1.0.0"></script>

View File

@@ -0,0 +1,14 @@
{
"name": "questionscout-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.23.0",
"whatwg-fetch": "3.2.0"
}
}

View File

@@ -0,0 +1,24 @@
{
"name": "sb-children-block",
"version": "1.0.0",
"description": "List children of the current content as links.",
"author": "bobbingwide",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start",
"dev": "wp-scripts start",
"packages-update": "wp-scripts packages-update",
"makepot": "wp i18n make-pot . languages/sb-children-block.pot --exclude=node_modules,vendor,src",
"makejson": "wp i18n make-json languages --no-purge",
"l10n": "l10n sb-children-block"
},
"devDependencies": {
"@wordpress/scripts": "^12.1.1"
},
"dependencies": {}
}

View File

@@ -0,0 +1,72 @@
# Copyright (C) 2020 bobbingwide
# This file is distributed under the same license as the SB Children block plugin.
msgid ""
msgstr ""
"Project-Id-Version: SB Children block 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sb-children-block\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
"Language: bb_BB\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-08-06T13:06:19+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: sb-children-block\n"
#. Plugin Name of the plugin
msgid "SB Children block"
msgstr "SB Cihdlern bolck"
#. Plugin URI of the plugin
msgid "https://www.oik-plugins.com/oik-plugins/sb-children-block"
msgstr "https://www.oik-plugins.com/oik-plugins/sb-children-block"
#. Description of the plugin
#: build/index.js:1
msgid "List children of the current content as links."
msgstr "Lsit cihdlern Of thE cruernt cnoetnt As lniks."
#. Author of the plugin
msgid "bobbingwide"
msgstr "bboibgniwde"
#. Author URI of the plugin
msgid "https://www.bobbingwide.com/about-bobbing-wide"
msgstr "https://www.bobbingwide.com/about-bobbing-wide"
#: build/index.js:1
msgid "Children"
msgstr "Cihdlern"
#: build/index.js:1
msgid "Tree"
msgstr "Tere"
#: build/index.js:1
msgid "Descendents"
msgstr "Dseecdnnets"
#: build/index.js:1
msgid "Child list"
msgstr "Cihld lsit"
#: build/index.js:1
msgid "0 for all levels, 1-n for defined,-1 for flat."
msgstr "0 fOr All lveles, 1-n fOr dfenied,-1 fOr falt."
#: build/index.js:1
msgid "Depth"
msgstr "Dpeth"

View File

@@ -0,0 +1,419 @@
# Copyright (C) 2020 Konstantin Kröpfl
# This file is distributed under the same license as the Simplify Menu Usage plugin.
msgid ""
msgstr ""
"Project-Id-Version: Simplify Menu Usage 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simplify-menu-"
"usage-\n"
"POT-Creation-Date: 2020-07-22 10:39+0200\n"
"PO-Revision-Date: 2020-07-22 10:42+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.8.12\n"
"X-Domain: simplify-menu-usage\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. Plugin Name of the plugin
msgid "Simplify Menu Usage"
msgstr "Simplify Menu Usage"
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/simplify-menu-usage/"
msgstr ""
#. Description of the plugin
msgid ""
"Improves the handling of the menu section in the dashboard. Fast deleting "
"and inserting/moving menu items."
msgstr ""
"Verbessert die Bedienung der Menüs im Dashboard. Schnelles entfernen und "
"einfügen/verschieben von Menüelementen."
#. Author of the plugin
msgid "Konstantin Kröpfl"
msgstr "Konstantin Kröpfl"
#. Author URI of the plugin
msgid "https://profiles.wordpress.org/konstk/"
msgstr "https://profiles.wordpress.org/konstk/"
#: admin/classes/rating-banner.php:34
msgid "No valid Ajax request"
msgstr "keine gültige Ajax-Anfrage"
#: admin/classes/rating-banner.php:39
msgid "Banner has been dismissed"
msgstr "Banner wurde entfernt."
#: admin/classes/rating-banner.php:41
msgid "Something went wrong - try again."
msgstr "Etwas ging schief - versuch es nochmal."
#: admin/partials/downwards-inserting-behavior.php:9
#: admin/partials/leftwards-inserting-behavior.php:9
msgid "Default behaviour"
msgstr "standardmäßiges Verhalten"
#: admin/partials/downwards-inserting-behavior.php:11
msgid ""
"Choosing the default behavior is the standard way how WordPress handles "
"inserting menu items downwards. To put it simply, if the next menu item is "
"on the same level inserting downwards will be on the same level. If the next "
"menu item has children elements, the item, which is about to be inserted/"
"moved downwards will become a new children element of the next menu item. It "
"should be familiar as it is the default way of handling the downwards move. "
"For better visualization, the following image show the behavior."
msgstr ""
"Die Auswahl vom Standardverhalten entspricht dem Verhalten wie WordPress das "
"abwärts Verschieben/Einfügen von Menüelementen handhabt. Kurz gesagt, wenn "
"sich das nächste Menüelement auf der selben Ebene befindet, wird das zu "
"verschiebende/einfügende Element danach eingefügt. Falls das nächste "
"Menüelement ein Sub-Menü ist und Kindselemente verwaltet, wird das zu "
"verschiebende/einfügende Element zu einem neuen Kindselement. Das dürfte "
"vertraut sein, weil das das Standardverhalten von WordPress beim abwärts "
"Verschieben/Einfügen ist. Für eine bessere Darstellung stellt das "
"nachstehende Bild das Verhalten dar."
#: admin/partials/downwards-inserting-behavior.php:19
#: admin/partials/leftwards-inserting-behavior.php:17
msgid "Showing the default behavior of moving/inserting elements downwards."
msgstr ""
"Zeige das standardmäßige Verhalten beim abwärts Verschieben/Einfügen von "
"Elementen."
#: admin/partials/downwards-inserting-behavior.php:23
msgid "Same-Level behaviour"
msgstr "gleiches Level Verhalten"
#: admin/partials/downwards-inserting-behavior.php:25
msgid ""
"Choosing the same level behavior is very intuitive. It simply inserts/moves "
"the menu item on the same level one step downwards. Special case when the "
"next menu item has children elements it will be inserted after the entire "
"sub-menu with its original level. For better visualization, the following "
"imagenav-menu-settings-explainations show the behavior."
msgstr ""
"Die Auswahl für das Verhalten der selben Ebene ist sehr intuitiv. Es fügt "
"bzw. verschriebt ein Menüelement ganz einfach einen Schritt weiter nach "
"unter, aber auf dem selben Level. Ein Spezialfall ist, wenn das nächste "
"Menüelement ein Sub-Menü ist, dann wird das zu verschiebende Element erst "
"nach dem ganzen Sub-Menü eingefügt. Für eine bessere Vorstellung zeigt das "
"nachfolgende Bild das Verhalten."
#: admin/partials/downwards-inserting-behavior.php:31
msgid "Showing the same-level behavior of moving/inserting elements downwards."
msgstr ""
"Zeige das gleiche Level Verhalten beim abwärts Verschieben/Einfügen von "
"Elementen."
#: admin/partials/downwards-inserting-behavior.php:35
#: admin/partials/leftwards-inserting-behavior.php:21
msgid "Take-Children elements behaviour"
msgstr "Kinderelemente-Übernehmen Verhalten"
#: admin/partials/downwards-inserting-behavior.php:37
msgid ""
"Choosing the behavior of taking children elements can be very handy. "
"Especially if you have very large nested menus, which would require to "
"manually drag and drop every child element to its new parent element. This "
"is the scenario when the \"take-children\" behavior should be used when "
"inserting an menu item downwards. For better visualization, the following "
"image show the behavior."
msgstr ""
"Die Auswahl für das Übernehmen von Kindselementen kann sehr nützlich sein. "
"Dies ist der Fall, wenn man sehr große verschachtelte Menüs/Sub-Menüs hat, "
"welche sonst eine manuelle Anpassung jedes einzelnen Kindselement erfordert. "
"Das ist das Szenario für welches man dieses Verhalten beim abwärts Einfügen/"
"Verschieben von Menüelementen verwenden sollte. Für eine bessere Vorstellung "
"zeigt das nachfolgende Bild das Verhalten."
#: admin/partials/downwards-inserting-behavior.php:44
#: admin/partials/leftwards-inserting-behavior.php:28
msgid ""
"Showing the take-children behavior of moving/inserting elements downwards."
msgstr ""
"Zeige das Kinderelemente-Übernehmen Verhalten beim abwärts Verschieben/"
"Einfügen von Elementen."
#: admin/partials/explaination-inserting-behavior-menu.php:7
msgid "Settings applied for inserting/moving menu items"
msgstr ""
"Einstellungen angewendet für das Einfügen/Verschieben von Menüelementen"
#: admin/partials/explaination-inserting-behavior-menu.php:10
msgid ""
"The current behavior for inserting/moving items downwards is: <span class="
"\"current-behavior bold\">%s</span>"
msgstr ""
"Das momentate Verhalten für das abwärts Einfügen/Verschieben ist: <span "
"class=\"current-behavior bold\">%s</span>"
#: admin/partials/explaination-inserting-behavior-menu.php:13
msgid ""
"By clicking the info icon you will see the description and an image "
"illustrating the different behaviors. Clicking again removes the section. "
"This is the behavior set on the settings page <a href=\"%s\" target=\"_blank"
"\">Simplify Menu Usage Settings</a>. To modify the current behavior just "
"temporarily you can click on the downwards arrow, which will change the "
"behavior just temporarily without saving it in the database. "
msgstr ""
"Durch das Drücken des Information-Icons siehst du die Beschreibung sowie ein "
"Bild, welches das jeweilige Verhalten darstellt. Erneutes drücken entfernt "
"diesen Abschnitt. Das ist das Verhalten, welches auf der Einstellungs-Seite "
"<a href=\"%s\" target=\"_blank\">Simplify Menu Usage Einstellungen</a> "
"gesetzt ist. Um das momentane Verhalten temporär zu ändern, kannst du auf "
"den Abwärtspfeil drücken. Dieser ändert das Verhalten nur temporär und "
"speichert nichts in der Datenbank."
#: admin/partials/explaination-inserting-down-behavior-settings.php:9
#: admin/partials/explaination-inserting-left-behavior-settings.php:15
msgid ""
"By clicking the info icon you will see the description and an image "
"illustrating the different behaviors. Clicking again removes the section."
msgstr ""
"Durch das Drücken des Information-Icons siehst du die Beschreibung sowie ein "
"Bild, welches das jeweilige Verhalten darstellt. Erneutes drücken entfernt "
"diesen Abschnitt."
#: admin/partials/explaination-inserting-left-behavior-settings.php:10
msgid ""
"The behavior when moving/inserting menu elements downwards is explained "
"below the relevant setting. The modification for leftwards moving/inserting "
"can be explained as follows. The behavior of moving/inserting menu elements "
"leftwards is the same as provided by WordPress except when the following "
"menu items become child elements and represent a submenu."
msgstr ""
"Das Verhalten beim abwärts Verschieben/Einfügen von Menüelementen ist "
"unterhalb der relevanten Einstellung beschrieben. Die Veränderung für "
"seitwärts (links) Verschieben/Einfügen kann wie folgt beschrieben werden. "
"Das Verhalten beim Verschieben/Einfügen von Menüelementen ist dasselbe wie "
"von WordPress ausgenommen wenn die nachfolgenden Menüelemente zu "
"Kindselemente werden würden und dadurch ein Sub-Menü darstellen."
#: admin/partials/leftwards-inserting-behavior.php:11
msgid ""
"The default behavior is the standard way how WordPress handles inserting "
"menu items leftwards. To put it simply, if the next menu item will not "
"become a child element of the element, which is going to be moved left the "
"behavior is the default one used by WordPress."
msgstr ""
"Das Standardverhalten ist dasselbe wie es WordPress handelt beim seitwärts "
"(links) Einfügen von Menüelementen. Kurz gesagt, wenn das folgende "
"Menüelement kein Kindselement von dem zu einfügenden/verschiebenden Element "
"wird, kommt das standardmäßige WordPress-Verhalten zum Einsatz."
#: admin/partials/leftwards-inserting-behavior.php:23
msgid ""
"The behavior of taking children elements is automatically applied when the "
"next menu item becomes a child element of the menu item, which is moved/"
"inserted leftwards."
msgstr ""
"Das Verhalten vom Übernehmen von Kindselementen wird automatisch angewendet "
"wenn das nächste Menüelement ein Kindselement darstellen würde von dem "
"seitwärts (links) zu einfügenden/verschiebenden Element."
#: admin/partials/rating-banner.php:7
msgid "Simplify Menu Usage says Thank you!"
msgstr "Simplify Menu Usage bedankt sich vielmals."
#: admin/partials/rating-banner.php:9
msgid ""
"I hope the \"Simplify Menu Usage\" plugin helps you working more efficient "
"on your site. If you like it, it would be very kind if you rate the plugin."
msgstr ""
"Ich hoffe das Plugin \"Simplify Menu Usage\" hilft dir effizienter an deiner "
"Seite zu arbeiten. Falls du es magst, wäre es nett wenn du eine Bewertung "
"für das Plugin abgibst."
#: admin/partials/rating-banner.php:13
msgid "Dismiss"
msgstr "verwerfen"
#: admin/partials/rating-banner.php:15
msgid "Rate Simplify Menu Usage"
msgstr "Simplify Menu Usage bewerten"
#: admin/settings_page/elements/validators/email-validator.php:9
msgid "No valid Email"
msgstr "keine gültige E-Mail"
#: admin/settings_page/elements/validators/file-validator.php:9
msgid "The entered data is no valid attachment id"
msgstr "keine gültige Anhangs-Id"
#: admin/settings_page/elements/validators/number-validator.php:9
msgid "The entered data is not valid - just numbers"
msgstr "Daten sind nicht gültig - nur Zahlen"
#: admin/settings_page/elements/validators/string-validator.php:12
msgid "The entered data is not valid - just text"
msgstr "Daten sind nicht gültig - nur Text"
#: admin/settings_page/pages/simplify_menu_usage_page/options.php:8
msgid "Simplify Menu Usage Settings"
msgstr "Simplify Menu Usage Einstellungen"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:10
msgid "Info"
msgstr "Information"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:14
msgid ""
"The Simplify Menu Usage plugin let you work faster with menus in the "
"backend. The behavior of inserting/moving menu items is partially modified."
msgstr ""
"Das Simplify Menu Usage Plugin hilft dir dabei schneller mit den Menüs im "
"Backend zu arbeiten. Das Verhalten beim Einfügen/Verschieben von "
"Menüelementen ist teilweise verändert."
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:24
msgid "General Settings"
msgstr "Generelle Einstellungen"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:28
msgid ""
"In this section you can define the default behavior of inserting/moving menu "
"items downwards."
msgstr ""
"In diesem Bereich kann man das standardmäßige Verhalten für das abwärts "
"Einfügen/Verschieben von Menüelementen hinterlegen."
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:39
msgid "Display description on menu page"
msgstr "zeige Beschreibung auf der Menüseite an"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:45
msgid ""
"This option displays the description of the different behaviors on the menu "
"edit page in the admin dashboard."
msgstr ""
"Diese Einstellung zeigt die Beschreibungen der verschiedenen "
"Verhaltensweisen auf der Menüseite im Admin-Dashboard an."
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:50
msgid "Display description"
msgstr "zeige Beschreibung an"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:51
msgid "Do not display description"
msgstr "zeige Beschreibung nicht an"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:59
msgid "Behavior when inserting a menu item downwars"
msgstr "Verhalten wenn ein Menüelement abwärts eingefügt wird."
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:65
msgid ""
"The different options change the behavior of inserting/moving menu items "
"downwards."
msgstr ""
"Die verschiedenen Einstellungen können das Verhalten vom abwärts Einfügen/"
"Verschieben der Menüelemente verändern."
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:71
msgid "Default inserting"
msgstr "standardmäßiges Einfügen"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:72
msgid "Insert on same level"
msgstr "Einfügen auf selber Ebene"
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:73
msgid "Take children elements"
msgstr "Kinder-Elemente übernehmen"
#: admin/settings_page/setting-string-helper.php:8
msgid "Field \"%s\" is required"
msgstr "Feld \"%s\" ist verpflichtend"
#: admin/settings_page/setting-string-helper.php:9
msgid "Do not change value of field \"%s\""
msgstr "ändere nicht den Wert von Feld \"%s\""
#: admin/settings_page/setting-string-helper.php:19
msgid "Field is required"
msgstr "Feld ist verpflichtend"
#: admin/settings_page/setting-string-helper.php:20
msgid "Do not change value of field"
msgstr "ändere nicht den Wert vom Feld"
#: admin/settings_page/templates/pages/menu_page.php:16
#: admin/settings_page/templates/pages/tabbed_menu_page.php:31
msgid "Fields marked with * are required"
msgstr "Felder mit einem * sind verpflichtend"
#: admin/settings_page/templates/pages/menu_page.php:19
msgid "Save Settings"
msgstr "Einstellungen speichern"
#: admin/settings_page/templates/settings/fields/file.php:7
msgid "Upload File"
msgstr "Datei hochladen"
#: admin/settings_page/templates/settings/fields/file.php:14
msgid "Remove File"
msgstr "Datei entfernen"
#: admin/settings_page/templates/settings/fields/image.php:8
msgid "Upload Image"
msgstr "Bild hochladen"
#: admin/settings_page/templates/settings/fields/image.php:11
msgid "Remove Image"
msgstr "Bild entfernen"
#~ msgid ""
#~ "Choosing the default behavior is the standard way how WordPress handles "
#~ "inserting menu items downwards. To put it simply, if the next menu item "
#~ "will not become a child element of the element, which is going to be "
#~ "moved left the behavior is the default one used by WordPress."
#~ msgstr "Die Auswahl für das Standardverhalten "
#~ msgid ""
#~ "Choosing the behavior of taking children elements can be very handy. "
#~ "Especially if you have very large nested menus, which would require to "
#~ "manually drag and drop every child element to its new parent element. "
#~ "This is the scenario when the \"take-children\" behavior should be used "
#~ "when inserting an menu item leftwards. For better visualization, the "
#~ "following image show the behavior."
#~ msgstr ""
#~ "Die Auswahl für das Übernehmen von Kindselementen kann sehr nützlich "
#~ "sein. Dies ist der Fall, wenn man sehr große verschachtelte Menüs/Sub-"
#~ "Menüs hat, welche sonst eine manuelle Anpassung jedes einzelnen "
#~ "Kindselement erfordert. Das ist das Szenario für welches man dieses "
#~ "Verhalten beim seitwärts (links) Einfügen/Verschieben von Menüelementen "
#~ "verwenden sollte. Für eine bessere Vorstellung zeigt das nachfolgende "
#~ "Bild das Verhalten."
#~ msgid ""
#~ "The Simplify Menu Usage plugin let you work faster with menus in the "
#~ "backend. The behavior of inserting/moving menu items is partially "
#~ "modified. This is the case for downwards and leftwards inserting/moving. "
#~ "The different behaviors concerning downwards moving are described below "
#~ "the relevant setting. The behavior for the leftwards moving is nearly the "
#~ "same as provided by WordPress. The only difference is that leftwards "
#~ "moving can lead to new submenus if the menu item would become a new "
#~ "submenu parent by moving one step left."
#~ msgstr ""
#~ "Das Simplify Menu Usage - Plugin lässt dich schneller mit Menüs im "
#~ "Backend arbeiten. Das Verhalten vom Einfügen/Verschieben der Menüelemente "
#~ "ist teilweise verändert. Das ist der Fall für das abwärts und seitwärts "
#~ "(links) Einfügen/Verschieben. Die unterschiedlichen Verhaltensweisen "
#~ "bezüglich der abwärts Bewegung sind unterhalb der relevanten Einstellung "
#~ "beschrieben. Das Verhalten für die seitwärts (links) Bewegung ist beinahe "
#~ "dieselbe wie von WordPress. Der einzige Unterschied liegt darin, dass die "
#~ "seitwärts (links) Bewegung zu neuen Sub-Menüs führen kann, falls das zu "
#~ "bewegende/einfügende Menü-Element ein Sub-Menü verwalten würde."
#~ msgid ""
#~ "In this section you can define the default behavior of inserting/moving "
#~ "menu items downwards. Furthermore you can define addtional settings "
#~ "enriching the usability."
#~ msgstr ""
#~ "In diesem Abschnitt kannst du das standardmäßige Verhalten vom abwärts "
#~ "Einfügen/Verschieben der Menüelemente definieren."

View File

@@ -0,0 +1,35 @@
##### [Version 1.0.8](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.7...v1.0.8) (2020-07-29)
> Things are getting better every day. 🚀
##### [Version 1.0.7](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.6...v1.0.7) (2020-07-29)
chore: adds SVN deployment workflow
##### [Version 1.0.6](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.5...v1.0.6) (2020-07-27)
> Things are getting better every day. 🚀
##### [Version 1.0.5](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.4...v1.0.5) (2020-07-27)
> Things are getting better every day. 🚀
##### [Version 1.0.4](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.3...v1.0.4) (2020-07-24)
Fetch starter sites remotely
##### [Version 1.0.3](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.2...v1.0.3) (2020-07-23)
> Things are getting better every day. 🚀
##### [Version 1.0.2](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.1...v1.0.2) (2020-07-23)
> Things are getting better every day. 🚀
##### [Version 1.0.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.0...v1.0.1) (2020-07-21)
- adds plugin code
#### Version1.0.0 (2020-07-21)
Initial Release

View File

@@ -0,0 +1,18 @@
= 4.2.0 - Jul 25, 2020
* Add conditional free shipping feature.
* Add custom label and location for suburb area field.
* Fix shipment notifications.
* Fix parcel size, volume and weight calculations.
* Add parcel dimension configuration at both global and product levels.
* Add order id as WayBill reference.
* Add order notes for Parcel Perfect endpoint queries.
* Problem of variable products not calculating resolved with new methods.
* Adjust Waybill position and add clickable link in emails.
* Fix deprecated code warnings.
* Fix PHP missing index warnings.
* Fix collections submitted for the following day.
* Fix contact number is present where the name is supposed to go.
* Add option: If free shipping is active, remove all other shipping methods from checkout.
* Add option: Enable free shipping if selected products are in the cart.
* Add option: Enable free shipping if shipping total is a selected percentage of the total order value.
* Added VAT option for TCG shipping.

View File

@@ -0,0 +1,175 @@
# Copyright (C) 2020 Themehigh Multiple Addresses
# This file is distributed under the same license as the Themehigh Multiple Addresses package.
msgid ""
msgstr ""
"Project-Id-Version: Themehigh Multiple Addresses 1.0.0\n"
"Report-Msgid-Bugs-To: support@themehigh.com\n"
"POT-Creation-Date: 2020-06-25 12:07+0530\n"
"PO-Revision-Date: 2020-06-25 11:55+0530\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: admin/class-thmaf-admin.php:77
msgid "Manage Address"
msgstr ""
#: admin/class-thmaf-admin.php:105
msgid "premium version provides more features to manage the users addresses."
msgstr ""
#: admin/class-thmaf-admin.php:108
msgid "Let Your Shoppers Choose from a List of Saved Addresses"
msgstr ""
#: admin/class-thmaf-admin.php:111
msgid "Manage All Addresses from My Account Page"
msgstr ""
#: admin/class-thmaf-admin.php:115
msgid "Save Time with Google Autocomplete Feature"
msgstr ""
#: admin/class-thmaf-admin.php:118
msgid "Custom Address Formats through Overriding"
msgstr ""
#: admin/class-thmaf-admin.php:121
msgid "Display Your Multiple Address Layouts in Style"
msgstr ""
#: admin/class-thmaf-admin.php:124
msgid "Highly Compatible with"
msgstr ""
#: admin/class-thmaf-admin-settings.php:24
msgid "General Settings"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:37
msgid "Enable multiple address for billing"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:40
msgid "Enable multiple address for shipping"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:43
msgid "Address Properties"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:62
msgid "Your changes were saved."
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:64
msgid "Your changes were not saved due to an error (or you made none!)."
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:159
msgid "Save changes"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:160
msgid "Reset to default"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:93
msgid "Settings successfully reset"
msgstr ""
#: admin/class-thmaf-admin.php:89 includes/class-thmaf.php:172
msgid "Settings"
msgstr ""
#: includes/class-thmaf.php:171
msgid "Premium plugin"
msgstr ""
#: includes/utils/class-thmaf-utils.php:62
msgid "Home"
msgstr ""
#: public/class-thmaf-public.php:62
msgid "Billing Addresses"
msgstr ""
#: public/class-thmaf-public.php:63
msgid "Shipping Addresses"
msgstr ""
#: public/class-thmaf-public.php:64
msgid "Addresses"
msgstr ""
#: public/class-thmaf-public.php:181
msgid "Additional billing addresses"
msgstr ""
#: public/class-thmaf-public.php:186 public/class-thmaf-public.php:204
msgid "There are no saved addresses yet "
msgstr ""
#: public/class-thmaf-public.php:199
msgid "Additional shipping addresses"
msgstr ""
#: public/class-thmaf-public.php:235
msgid "Are you sure you want to delete this address?"
msgstr ""
#: public/class-thmaf-public.php:248
msgid "Delete"
msgstr ""
#: public/class-thmaf-public.php:256 public/class-thmaf-public.php:264
msgid "Set as default"
msgstr ""
#: public/class-thmaf-public.php:333
msgid "Address Added successfully."
msgstr ""
#: public/class-thmaf-public.php:335
msgid "Address Changed successfully."
msgstr ""
#: public/class-thmaf-public.php:525 public/class-thmaf-public.php:537
#: public/class-thmaf-public.php:546
msgid "hidden value"
msgstr ""
#: public/class-thmaf-public.php:634 public/class-thmaf-public.php:673
msgid "Billing Address"
msgstr ""
#: public/class-thmaf-public.php:669 public/class-thmaf-public.php:749
msgid "Add New Address"
msgstr ""
#: public/class-thmaf-public.php:683 public/class-thmaf-public.php:762
msgid "Choose an Address.."
msgstr ""
#: public/class-thmaf-public.php:715 public/class-thmaf-public.php:753
msgid "Shipping Address"
msgstr ""
#: public/templates/myaccount/my-address.php:27
#: public/templates/myaccount/my-address.php:32
msgid "Billing address"
msgstr ""
#: public/templates/myaccount/my-address.php:28
msgid "Shipping address"
msgstr ""
#: public/templates/myaccount/my-address.php:41
msgid "The following addresses will be used on the checkout page by default."
msgstr ""
#: public/templates/myaccount/my-address.php:53
msgid "Edit"
msgstr ""
#: public/templates/myaccount/my-address.php:57
msgid "You have not set up this type of address yet."
msgstr ""

View File

@@ -0,0 +1,63 @@
# Copyright (C) 2020 Theme.id
# This file is distributed under the same license as the Theme.id's Caldera Form to Slack plugin.
msgid ""
msgstr ""
"Project-Id-Version: Theme.id's Caldera Form to Slack 0.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/themeid-caldera-form-to-slack\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-25T09:31:49+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: caladea-slack\n"
#. Plugin Name of the plugin
msgid "Theme.id's Caldera Form to Slack"
msgstr ""
#. Plugin URI of the plugin
msgid "http://caladea.com"
msgstr ""
#. Description of the plugin
msgid "Send notifications to Slack channels when certain on Caldera Form submission."
msgstr ""
#. Author of the plugin
msgid "Theme.id"
msgstr ""
#. Author URI of the plugin
msgid "https://theme.id"
msgstr ""
#: includes/caldera.php:57
msgid "Hook Url"
msgstr ""
#: includes/caldera.php:64
msgid "The name of Bot that will be display in message"
msgstr ""
#: includes/caldera.php:65
msgid "Bot Name"
msgstr ""
#: includes/caldera.php:71
msgid "Overrides the default channel for this web hook (e.g #myChannel) or leave blank to use default"
msgstr ""
#: includes/caldera.php:73
msgid "Channel Name"
msgstr ""
#: includes/caldera.php:79
msgid "You can put URL (https://domain.com/image.png) or emoji (:taco:) here"
msgstr ""
#: includes/caldera.php:81
msgid "Icon"
msgstr ""

View File

@@ -0,0 +1,10 @@
Changelog
==========
#### 1.0.1 - Aug 4, 2020
Fixes an issue where the plugin would silently fail on PHP version 7.2 or lower.
#### 1.0.0 - Aug 3, 2020
Initial plugin release.

View File

@@ -0,0 +1,11 @@
{
"name": "opcodespace",
"version": "1.0.0",
"description": "Wordpress plugin development boilerplate",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Mehedee Rahman",
"license": "ISC"
}

View File

@@ -0,0 +1,9 @@
/***1.0.2 - 2020.07.21**/
- Escape Button and HTML Code
- Update bootstrap.min.css to 4.5
/***1.0.1 - 2020.07.20**/
- Fixing Wordpress Team review
/***1.0.0 - 2020.07.20**/
- Release

View File

@@ -11,6 +11,10 @@
<link rel='stylesheet' id='install-css' href='http://wp.lab/wp-admin/css/install.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='dashicons-css' href='http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='forms-css' href='http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='l10n-css' href='http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1' type='text/css' media='all' />
</head>
<body class="wp-core-ui">
<p id="logo"><a href="https://wordpress.org/" tabindex="-1">WordPress</a></p>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html>
<!--[if IE 8]>
<html xmlns="http://www.w3.org/1999/xhtml" class="ie8" lang="en-US">
<![endif]-->
<!--[if !(IE 8) ]><!-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Log In &lsaquo; WP 3.8.1 &#8212; WordPress</title>
<link rel='dns-prefetch' href='//s.w.org' />
<link rel='stylesheet' id='dashicons-css' href='http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='buttons-css' href='http://wp.lab/wp-includes/css/buttons.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='forms-css' href='http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='l10n-css' href='http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='login-css' href='http://wp.lab/wp-admin/css/login.min.css?ver=3.8.1' media='all' />
<meta name='robots' content='noindex,noarchive' />
<meta name='referrer' content='strict-origin-when-cross-origin' />
<meta name="viewport" content="width=device-width" />
</head>
<body class="login no-js login-action-login wp-core-ui locale-en-us">
<script type="text/javascript">
document.body.className = document.body.className.replace('no-js','js');
</script>
<div id="login">
<h1><a href="https://wordpress.org/">Powered by WordPress</a></h1>
<form name="loginform" id="loginform" action="http://wp.lab/wp-login.php" method="post">
<p>
<label for="user_login">Username or Email Address</label>
<input type="text" name="log" id="user_login" class="input" value="" size="20" autocapitalize="off" />
</p>
<div class="user-pass-wrap">
<label for="user_pass">Password</label>
<div class="wp-pwd">
<input type="password" name="pwd" id="user_pass" class="input password-input" value="" size="20" />
<button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="Show password">
<span class="dashicons dashicons-visibility" aria-hidden="true"></span>
</button>
</div>
</div>
<p class="forgetmenot"><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> <label for="rememberme">Remember Me</label></p>
<p class="submit">
<input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="Log In" />
<input type="hidden" name="redirect_to" value="http://wp.lab/wp-admin/" />
<input type="hidden" name="testcookie" value="1" />
</p>
</form>
<p id="nav">
<a href="http://wp.lab/wp-login.php?action=lostpassword">Lost your password?</a>
</p>
<script type="text/javascript">
function wp_attempt_focus() {setTimeout( function() {try {d = document.getElementById( "user_login" );d.focus(); d.select();} catch( er ) {}}, 200);}
wp_attempt_focus();
if ( typeof wpOnload === 'function' ) { wpOnload() } </script>
<p id="backtoblog"><a href="http://wp.lab/">
&larr; Back to WP 3.8.1 </a></p>
</div>
<script src='http://wp.lab/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp'></script>
<script src='http://wp.lab/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script>
var _zxcvbnSettings = {"src":"http:\/\/wp.lab\/wp-includes\/js\/zxcvbn.min.js"};
</script>
<script src='http://wp.lab/wp-includes/js/zxcvbn-async.min.js?ver=1.0'></script>
<script>
var pwsL10n = {"unknown":"Password strength unknown","short":"Very weak","bad":"Weak","good":"Medium","strong":"Strong","mismatch":"Mismatch"};
</script>
<script src='http://wp.lab/wp-admin/js/password-strength-meter.min.js?ver=3.8.1'></script>
<script src='http://wp.lab/wp-includes/js/underscore.min.js?ver=1.8.3'></script>
<script>
var _wpUtilSettings = {"ajax":{"url":"\/wp-admin\/admin-ajax.php"}};
</script>
<script src='http://wp.lab/wp-includes/js/wp-util.min.js?ver=3.8.1'></script>
<script>
var userProfileL10n = {"warn":"Your new password has not been saved.","warnWeak":"Confirm use of weak password","show":"Show","hide":"Hide","cancel":"Cancel","ariaShow":"Show password","ariaHide":"Hide password"};
</script>
<script src='http://wp.lab/wp-admin/js/user-profile.min.js?ver=3.8.1'></script>
<script>
/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
</script>
<div class="clear"></div>
</body>
</html>

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex,nofollow" />
<title>WordPress &rsaquo; Database Repair</title>
<link rel='stylesheet' id='dashicons-css' href='http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='buttons-css' href='http://wp.lab/wp-includes/css/buttons.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='forms-css' href='http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='l10n-css' href='http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='install-css' href='http://wp.lab/wp-admin/css/install.min.css?ver=3.8.1' media='all' />
</head>
<body class="wp-core-ui">
<p id="logo"><a href="https://wordpress.org/">WordPress</a></p>
<h1 class="screen-reader-text">Allow automatic database repair</h1><p>To allow use of this page to automatically repair database problems, please add the following line to your <code>wp-config.php</code> file. Once this line is added to your config, reload this page.</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p></body>
</html>

View File

@@ -10,6 +10,12 @@
<link rel='stylesheet' id='install-css' href='http://wp.lab/wp-admin/css/install.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='dashicons-css' href='http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='forms-css' href='http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='l10n-css' href='http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1' type='text/css' media='all' />
<!--[if lte IE 7]>
<link rel='stylesheet' id='ie-css' href='http://wp.lab/wp-admin/css/ie.min.css?ver=3.8.1' type='text/css' media='all' />
<![endif]-->

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://wp.lab/wp-sitemap.xsl" ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
</urlset>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://wp.lab/wp-sitemap.xsl" ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url><loc>http://wp.lab/author/admin/</loc></url>
<url><loc>http://wp.lab//author/author/</loc></url>
</urlset>

View File

@@ -25,7 +25,7 @@ describe WPScan::DB::DynamicFinders::Plugin do
context 'when aggressive argument is true' do
it 'returns only the configs with a path parameter' do
configs = subject.finder_configs(:Xpath, true)
configs = subject.finder_configs(:Xpath, aggressive: true)
expect(configs.keys).to include('revslider')
expect(configs.keys).to_not include('shareaholic')

View File

@@ -81,7 +81,7 @@ WPScan::DB::DynamicFinders::Plugin.versions_finders_configs.each do |slug, confi
found.each_with_index do |version, index|
expected_version = expected.at(index)
expected_ie = expected_version['interesting_entries'].map do |ie|
ie.gsub(target.url + ',', ie_url + ',')
ie.gsub("#{target.url},", "#{ie_url},")
end
expect(version).to be_a WPScan::Model::Version
@@ -111,7 +111,7 @@ WPScan::DB::DynamicFinders::Plugin.versions_finders_configs.each do |slug, confi
found.each_with_index do |version, index|
expected_version = expected.at(index)
expected_ie = expected_version['interesting_entries'].map do |ie|
ie.gsub(target.url + ',', ie_url + ',')
ie.gsub("#{target.url},", "#{ie_url},")
end
expect(version).to be_a WPScan::Model::Version

View File

@@ -86,7 +86,7 @@ WPScan::DB::DynamicFinders::Theme.versions_finders_configs.each do |slug, config
found.each_with_index do |version, index|
expected_version = expected.at(index)
expected_ie = expected_version['interesting_entries'].map do |ie|
ie.gsub(target.url + ',', ie_url + ',')
ie.gsub("#{target.url},", "#{ie_url},")
end
expect(version).to be_a WPScan::Model::Version
@@ -116,7 +116,7 @@ WPScan::DB::DynamicFinders::Theme.versions_finders_configs.each do |slug, config
found.each_with_index do |version, index|
expected_version = expected.at(index)
expected_ie = expected_version['interesting_entries'].map do |ie|
ie.gsub(target.url + ',', ie_url + ',')
ie.gsub("#{target.url},", "#{ie_url},")
end
expect(version).to be_a WPScan::Model::Version

View File

@@ -20,7 +20,7 @@ shared_examples 'App::Finders::WpItems::UrlsInPage' do
let(:fixture) { 'found.html' }
it 'returns the expected array' do
expect(finder.items_from_links(type, uniq_links)).to eql expected_from_links
expect(finder.items_from_links(type, uniq: uniq_links)).to eql expected_from_links
end
end
@@ -52,7 +52,7 @@ shared_examples 'App::Finders::WpItems::UrlsInPage' do
let(:fixture) { 'found.html' }
it 'returns the expected array' do
expect(finder.items_from_codes(type, uniq_codes)).to eql expected_from_codes
expect(finder.items_from_codes(type, uniq: uniq_codes)).to eql expected_from_codes
end
end
end

View File

@@ -100,7 +100,7 @@ shared_examples 'WordPress::CustomDirectories' do
before { target.content_dir = dir }
its(:content_dir) { should eq dir.chomp('/') }
its(:plugins_dir) { should eq dir.chomp('/') + '/plugins' }
its(:plugins_dir) { should eq "#{dir.chomp('/')}/plugins" }
end
context "when content_dir = #{dir} and plugins_dir = #{dir}" do

View File

@@ -14,8 +14,8 @@ shared_examples 'App::Views::Enumeration::Medias' do
end
context 'when medias found' do
let(:m1) { media.new(target_url + '?attachment_id=1', found_by: 'Attachment Brute Forcing') }
let(:m2) { media.new(target_url + '?attachment_id=5', found_by: 'Attachment Brute Forcing') }
let(:m1) { media.new("#{target_url}?attachment_id=1", found_by: 'Attachment Brute Forcing') }
let(:m2) { media.new("#{target_url}?attachment_id=5", found_by: 'Attachment Brute Forcing') }
let(:medias) { [m1, m2] }
let(:expected_view) { File.join(view, 'medias') }

View File

@@ -15,8 +15,8 @@ shared_examples 'App::Views::Enumeration::Timthumbs' do
end
context 'when timthumbs found' do
let(:tt) { timthumb.new(target_url + 'tt.php', found_by: 'Known Locations') }
let(:tt2) { timthumb.new(target_url + 'tt2.php', found_by: 'Known Locations') }
let(:tt) { timthumb.new("#{target_url}tt.php", found_by: 'Known Locations') }
let(:tt2) { timthumb.new("#{target_url}tt2.php", found_by: 'Known Locations') }
let(:timthumbs) { [tt, tt2] }
context 'when not vulnerable' do

View File

@@ -21,14 +21,14 @@ Gem::Specification.new do |s|
s.executables = ['wpscan']
s.require_paths = ['lib']
s.add_dependency 'cms_scanner', '~> 0.12.0'
s.add_dependency 'cms_scanner', '~> 0.12.1'
s.add_development_dependency 'bundler', '>= 1.6'
s.add_development_dependency 'memory_profiler', '~> 0.9.13'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.9.0'
s.add_development_dependency 'rspec-its', '~> 1.3.0'
s.add_development_dependency 'rubocop', '~> 0.88.0'
s.add_development_dependency 'rubocop', '~> 0.89.0'
s.add_development_dependency 'rubocop-performance', '~> 1.7.0'
s.add_development_dependency 'simplecov', '~> 0.18.2'
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'