Compare commits

..

9 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
57 changed files with 8131 additions and 4843 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

@@ -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.5'
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
@@ -8107,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
@@ -8169,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
@@ -10118,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
@@ -10276,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
@@ -10412,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
@@ -14581,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
@@ -17025,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
@@ -17784,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)
@@ -18164,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
@@ -21776,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
@@ -22128,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
@@ -23194,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
@@ -25531,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
@@ -27630,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
@@ -28530,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
@@ -29063,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
@@ -33624,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'
@@ -33914,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'
@@ -36485,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'
@@ -37201,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
@@ -38683,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
@@ -39353,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
@@ -39709,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
@@ -41773,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
@@ -42614,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'
@@ -44107,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
@@ -47736,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
@@ -50607,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'
@@ -51509,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
@@ -53669,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,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,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,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

@@ -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>
@@ -3754,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">
@@ -6133,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>
@@ -6428,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>
@@ -9273,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 -->
@@ -12363,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>
@@ -13446,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>
@@ -13780,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>
@@ -14342,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>
@@ -15899,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>
@@ -16445,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>
@@ -17501,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>
@@ -19131,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">
@@ -19886,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,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,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,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

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

@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
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'