Compare commits

..

11 Commits

Author SHA1 Message Date
erwanlr
4d32749489 Updates deps and bump version 2019-07-04 17:06:28 +01:00
erwanlr
d911a16684 Removes useless WPScan namespace 2019-07-04 16:46:33 +01:00
erwanlr
d7193bc755 Ref #1364 2019-07-04 16:33:14 +01:00
erwanlr
aee9ffdb9c Fixes #1365 2019-07-04 15:45:01 +01:00
erwanlr
1f627d5e49 Adds DFs 2019-06-29 10:51:03 +01:00
ethicalhack3r
bb67626d09 Change thimthub enum icon back to info 2019-06-28 15:04:30 +02:00
ethicalhack3r
4e0153e94a Change some enum icons to critical 2019-06-28 15:00:05 +02:00
erwanlr
065142ff19 Updates Rubocop dep 2019-06-27 08:15:54 +01:00
erwanlr
8bb6fae52f Adds DFs 2019-06-22 11:31:28 +01:00
Erwan
8cb7b81903 Merge pull request #1359 from wpscanteam/dependabot/bundler/rubocop-performance-tw-1.4.0
Update rubocop-performance requirement from ~> 1.3.0 to ~> 1.4.0
2019-06-21 13:02:00 +02:00
dependabot-preview[bot]
cb214ccda9 Update rubocop-performance requirement from ~> 1.3.0 to ~> 1.4.0
Updates the requirements on [rubocop-performance](https://github.com/rubocop-hq/rubocop-performance) to permit the latest version.
- [Release notes](https://github.com/rubocop-hq/rubocop-performance/releases)
- [Changelog](https://github.com/rubocop-hq/rubocop-performance/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop-hq/rubocop-performance/compare/v1.3.0...v1.4.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-06-21 05:41:30 +00:00
48 changed files with 5153 additions and 94 deletions

View File

@@ -65,30 +65,43 @@ module WPScan
case ParsedCli.password_attack
when :wp_login
WPScan::Finders::Passwords::WpLogin.new(target)
Finders::Passwords::WpLogin.new(target)
when :xmlrpc
raise Error::XMLRPCNotDetected unless xmlrpc
WPScan::Finders::Passwords::XMLRPC.new(xmlrpc)
Finders::Passwords::XMLRPC.new(xmlrpc)
when :xmlrpc_multicall
raise Error::XMLRPCNotDetected unless xmlrpc
WPScan::Finders::Passwords::XMLRPCMulticall.new(xmlrpc)
Finders::Passwords::XMLRPCMulticall.new(xmlrpc)
end
end
# @return [ Boolean ]
def xmlrpc_get_users_blogs_enabled?
if xmlrpc&.enabled? &&
xmlrpc.available_methods.include?('wp.getUsersBlogs') &&
xmlrpc.method_call('wp.getUsersBlogs', [SecureRandom.hex[0, 6], SecureRandom.hex[0, 4]])
.run.body !~ /XML\-RPC services are disabled/
true
else
false
end
end
# @return [ CMSScanner::Finders::Finder ]
def attacker_from_automatic_detection
if xmlrpc&.enabled? && xmlrpc.available_methods.include?('wp.getUsersBlogs')
if xmlrpc_get_users_blogs_enabled?
wp_version = target.wp_version
if wp_version && wp_version < '4.4'
WPScan::Finders::Passwords::XMLRPCMulticall.new(xmlrpc)
Finders::Passwords::XMLRPCMulticall.new(xmlrpc)
else
WPScan::Finders::Passwords::XMLRPC.new(xmlrpc)
Finders::Passwords::XMLRPC.new(xmlrpc)
end
else
WPScan::Finders::Passwords::WpLogin.new(target)
Finders::Passwords::WpLogin.new(target)
end
end

View File

@@ -17,7 +17,7 @@ module WPScan
end
def before_scan
WPScan::DB::DynamicFinders::Wordpress.create_versions_finders
DB::DynamicFinders::Wordpress.create_versions_finders
end
def run

View File

@@ -4,7 +4,7 @@ module WPScan
module Finders
module Plugins
# Plugins finder from Dynamic Finder 'BodyPattern'
class BodyPattern < WPScan::Finders::DynamicFinder::WpItems::Finder
class BodyPattern < Finders::DynamicFinder::WpItems::Finder
DEFAULT_CONFIDENCE = 30
# @param [ Hash ] opts The options from the #passive, #aggressive methods

View File

@@ -4,7 +4,7 @@ module WPScan
module Finders
module Plugins
# Plugins finder from the Dynamic Finder 'Comment'
class Comment < WPScan::Finders::DynamicFinder::WpItems::Finder
class Comment < Finders::DynamicFinder::WpItems::Finder
DEFAULT_CONFIDENCE = 30
# @param [ Hash ] opts The options from the #passive, #aggressive methods

View File

@@ -4,7 +4,7 @@ module WPScan
module Finders
module Plugins
# Plugins finder from Dynamic Finder 'ConfigParser'
class ConfigParser < WPScan::Finders::DynamicFinder::WpItems::Finder
class ConfigParser < Finders::DynamicFinder::WpItems::Finder
DEFAULT_CONFIDENCE = 40
# @param [ Hash ] opts The options from the #passive, #aggressive methods

View File

@@ -4,7 +4,7 @@ module WPScan
module Finders
module Plugins
# Plugins finder from Dynamic Finder 'HeaderPattern'
class HeaderPattern < WPScan::Finders::DynamicFinder::WpItems::Finder
class HeaderPattern < Finders::DynamicFinder::WpItems::Finder
DEFAULT_CONFIDENCE = 30
# @param [ Hash ] opts

View File

@@ -4,7 +4,7 @@ module WPScan
module Finders
module Plugins
# Plugins finder from the Dynamic Finder 'JavascriptVar'
class JavascriptVar < WPScan::Finders::DynamicFinder::WpItems::Finder
class JavascriptVar < Finders::DynamicFinder::WpItems::Finder
DEFAULT_CONFIDENCE = 60
# @param [ Hash ] opts The options from the #passive, #aggressive methods

View File

@@ -4,7 +4,7 @@ module WPScan
module Finders
module Plugins
# Plugins finder from Dynamic Finder 'QueryParameter'
class QueryParameter < WPScan::Finders::DynamicFinder::WpItems::Finder
class QueryParameter < Finders::DynamicFinder::WpItems::Finder
DEFAULT_CONFIDENCE = 10
def passive(_opts = {})

View File

@@ -4,7 +4,7 @@ module WPScan
module Finders
module Plugins
# Plugins finder from the Dynamic Finder 'Xpath'
class Xpath < WPScan::Finders::DynamicFinder::WpItems::Finder
class Xpath < Finders::DynamicFinder::WpItems::Finder
DEFAULT_CONFIDENCE = 40
# @param [ Hash ] opts The options from the #passive, #aggressive methods

View File

@@ -6,7 +6,7 @@ module WPScan
# Users disclosed from the dc:creator field in the RSS
# The names disclosed are display names, however depending on the configuration of the blog,
# they can be the same than usernames
class RSSGenerator < WPScan::Finders::WpVersion::RSSGenerator
class RSSGenerator < Finders::WpVersion::RSSGenerator
def process_urls(urls, _opts = {})
found = []

View File

@@ -28,7 +28,7 @@ module WPScan
# @param [ WPScan::Target ] target
def initialize(target)
(%w[RSSGenerator AtomGenerator RDFGenerator] +
WPScan::DB::DynamicFinders::Wordpress.versions_finders_configs.keys +
DB::DynamicFinders::Wordpress.versions_finders_configs.keys +
%w[Readme UniqueFingerprinting]
).each do |finder_name|
finders << WpVersion.const_get(finder_name.to_sym).new(target)

View File

@@ -5,7 +5,7 @@
<%= notice_icon %> Config Backup(s) Identified:
<% @config_backups.each do |config_backup| -%>
<%= info_icon %> <%= config_backup %>
<%= critical_icon %> <%= config_backup %>
<%= render('@finding', item: config_backup) -%>
<% end -%>
<% end %>

View File

@@ -5,7 +5,7 @@
<%= notice_icon %> Db Export(s) Identified:
<% @db_exports.each do |db_export| -%>
<%= info_icon %> <%= db_export %>
<%= critical_icon %> <%= db_export %>
<%= render('@finding', item: db_export) -%>
<% end -%>
<% end %>

View File

@@ -6,7 +6,7 @@ module WPScan
module Version
# Version finder using Body Pattern method. Tipically used when the response is not
# an HTML doc and Xpath can't be used
class BodyPattern < WPScan::Finders::DynamicFinder::Version::Finder
class BodyPattern < Finders::DynamicFinder::Version::Finder
# @return [ Hash ]
def self.child_class_constants
@child_class_constants ||= super().merge(PATTERN: nil, CONFIDENCE: 60)

View File

@@ -6,7 +6,7 @@ module WPScan
module Version
# Version finder in Comment, which is basically an Xpath one with a default
# Xpath of //comment()
class Comment < WPScan::Finders::DynamicFinder::Version::Xpath
class Comment < Finders::DynamicFinder::Version::Xpath
# @return [ Hash ]
def self.child_class_constants
@child_class_constants ||= super().merge(PATTERN: nil, XPATH: '//comment()')

View File

@@ -6,7 +6,7 @@ module WPScan
module Version
# Version finder using by parsing config files, such as composer.json
# and so on
class ConfigParser < WPScan::Finders::DynamicFinder::Version::Finder
class ConfigParser < Finders::DynamicFinder::Version::Finder
ALLOWED_PARSERS = [JSON, YAML].freeze
def self.child_class_constants

View File

@@ -5,7 +5,7 @@ module WPScan
module DynamicFinder
module Version
# Version finder using Header Pattern method
class HeaderPattern < WPScan::Finders::DynamicFinder::Version::Finder
class HeaderPattern < Finders::DynamicFinder::Version::Finder
# @return [ Hash ]
def self.child_class_constants
@child_class_constants ||= super().merge(HEADER: nil, PATTERN: nil, CONFIDENCE: 60)

View File

@@ -5,7 +5,7 @@ module WPScan
module DynamicFinder
module Version
# Version finder using JavaScript Variable method
class JavascriptVar < WPScan::Finders::DynamicFinder::Version::Finder
class JavascriptVar < Finders::DynamicFinder::Version::Finder
# @return [ Hash ]
def self.child_class_constants
@child_class_constants ||= super().merge(

View File

@@ -5,7 +5,7 @@ module WPScan
module DynamicFinder
module Version
# Version finder using QueryParameter method
class QueryParameter < WPScan::Finders::DynamicFinder::Version::Finder
class QueryParameter < Finders::DynamicFinder::Version::Finder
# @return [ Hash ]
def self.child_class_constants
@child_class_constants ||= super().merge(

View File

@@ -5,7 +5,7 @@ module WPScan
module DynamicFinder
module Version
# Version finder using Xpath method
class Xpath < WPScan::Finders::DynamicFinder::Version::Finder
class Xpath < Finders::DynamicFinder::Version::Finder
# @return [ Hash ]
def self.child_class_constants
@child_class_constants ||= super().merge(

View File

@@ -4,22 +4,22 @@ module WPScan
module Finders
module DynamicFinder
module WpItemVersion
class BodyPattern < WPScan::Finders::DynamicFinder::Version::BodyPattern
class BodyPattern < Finders::DynamicFinder::Version::BodyPattern
end
class Comment < WPScan::Finders::DynamicFinder::Version::Comment
class Comment < Finders::DynamicFinder::Version::Comment
end
class ConfigParser < WPScan::Finders::DynamicFinder::Version::ConfigParser
class ConfigParser < Finders::DynamicFinder::Version::ConfigParser
end
class HeaderPattern < WPScan::Finders::DynamicFinder::Version::HeaderPattern
class HeaderPattern < Finders::DynamicFinder::Version::HeaderPattern
end
class JavascriptVar < WPScan::Finders::DynamicFinder::Version::JavascriptVar
class JavascriptVar < Finders::DynamicFinder::Version::JavascriptVar
end
class QueryParameter < WPScan::Finders::DynamicFinder::Version::QueryParameter
class QueryParameter < Finders::DynamicFinder::Version::QueryParameter
# @return [ Regexp ]
def path_pattern
# TODO: consider the target.blog.themes_dir if the target is a Theme (maybe implement a WpItem#item_dir ?)
@@ -37,7 +37,7 @@ module WPScan
end
end
class Xpath < WPScan::Finders::DynamicFinder::Version::Xpath
class Xpath < Finders::DynamicFinder::Version::Xpath
end
end
end

View File

@@ -12,23 +12,23 @@ module WPScan
end
end
class BodyPattern < WPScan::Finders::DynamicFinder::Version::BodyPattern
class BodyPattern < Finders::DynamicFinder::Version::BodyPattern
include Finder
end
class Comment < WPScan::Finders::DynamicFinder::Version::Comment
class Comment < Finders::DynamicFinder::Version::Comment
include Finder
end
class HeaderPattern < WPScan::Finders::DynamicFinder::Version::HeaderPattern
class HeaderPattern < Finders::DynamicFinder::Version::HeaderPattern
include Finder
end
class JavascriptVar < WPScan::Finders::DynamicFinder::Version::JavascriptVar
class JavascriptVar < Finders::DynamicFinder::Version::JavascriptVar
include Finder
end
class QueryParameter < WPScan::Finders::DynamicFinder::Version::QueryParameter
class QueryParameter < Finders::DynamicFinder::Version::QueryParameter
include Finder
# @return [ Hash ]

View File

@@ -2,5 +2,5 @@
# Version
module WPScan
VERSION = '3.5.4'
VERSION = '3.5.5'
end

View File

@@ -52,6 +52,60 @@ describe WPScan::Controller::PasswordAttack do
end
end
describe '#xmlrpc_get_users_blogs_enabled?' do
before { expect(controller.target).to receive(:xmlrpc).and_return(xmlrpc) }
context 'when xmlrpc not found' do
let(:xmlrpc) { nil }
its(:xmlrpc_get_users_blogs_enabled?) { should be false }
end
context 'when xmlrpc not enabled' do
let(:xmlrpc) { WPScan::Model::XMLRPC.new("#{target_url}xmlrpc.php") }
it 'returns false' do
expect(xmlrpc).to receive(:enabled?).and_return(false)
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
end
end
context 'when xmlrpc enabled' do
let(:xmlrpc) { WPScan::Model::XMLRPC.new("#{target_url}xmlrpc.php") }
before { expect(xmlrpc).to receive(:enabled?).and_return(true) }
context 'when wp.getUsersBlogs methods not listed' do
it 'returns false' do
expect(xmlrpc).to receive(:available_methods).and_return(%w[m1 m2])
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
end
end
context 'when wp.getUsersBlogs method listed' do
before { expect(xmlrpc).to receive(:available_methods).and_return(%w[wp.getUsersBlogs m2]) }
context 'when wp.getUsersBlogs method disabled' do
it 'returns false' do
stub_request(:post, xmlrpc.url).to_return(body: 'XML-RPC services are disabled on this site.')
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
end
end
context 'when wp.getUsersBlogs method enabled' do
it 'returns true' do
stub_request(:post, xmlrpc.url).to_return(body: 'Incorrect username or password.')
expect(controller.xmlrpc_get_users_blogs_enabled?).to be true
end
end
end
end
end
describe '#attacker' do
context 'when --password-attack provided' do
let(:cli_args) { "#{super()} --password-attack #{attack}" }
@@ -92,7 +146,7 @@ describe WPScan::Controller::PasswordAttack do
before do
expect(controller.target)
.to receive(:xmlrpc)
.and_return(WPScan::Model::XMLRPC.new("#{target_url}/xmlrpc.php"))
.and_return(WPScan::Model::XMLRPC.new("#{target_url}xmlrpc.php"))
end
context 'when single xmlrpc' do
@@ -117,73 +171,50 @@ describe WPScan::Controller::PasswordAttack do
end
context 'when automatic detection' do
before { expect(controller.target).to receive(:xmlrpc).and_return(xmlrpc) }
context 'when xmlrpc not found' do
let(:xmlrpc) { nil }
context 'when xmlrpc_get_users_blogs_enabled? is false' do
it 'returns the WpLogin' do
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
expect(controller.attacker.target).to be_a WPScan::Target
end
end
context 'when xmlrpc not enabled' do
let(:xmlrpc) { WPScan::Model::XMLRPC.new("#{target_url}/xmlrpc.php") }
it 'returns the WpLogin' do
expect(xmlrpc).to receive(:enabled?).and_return(false)
expect(controller).to receive(:xmlrpc_get_users_blogs_enabled?).and_return(false)
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
expect(controller.attacker.target).to be_a WPScan::Target
end
end
context 'when xmlrpc enabled' do
let(:xmlrpc) { WPScan::Model::XMLRPC.new("#{target_url}/xmlrpc.php") }
context 'when xmlrpc_get_users_blogs_enabled? is true' do
before do
expect(controller).to receive(:xmlrpc_get_users_blogs_enabled?).and_return(true)
before { expect(xmlrpc).to receive(:enabled?).and_return(true) }
expect(controller.target)
.to receive(:xmlrpc).and_return(WPScan::Model::XMLRPC.new("#{target_url}xmlrpc.php"))
end
context 'when wp.getUsersBlogs methods not available' do
it 'returns the WpLogin' do
expect(xmlrpc).to receive(:available_methods).and_return(%w[m1 m2])
context 'when WP version not found' do
it 'returns the XMLRPC' do
expect(controller.target).to receive(:wp_version).and_return(false)
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
expect(controller.attacker.target).to be_a WPScan::Target
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPC
expect(controller.attacker.target).to be_a WPScan::Model::XMLRPC
end
end
context 'when wp.getUsersBlogs method evailable' do
before { expect(xmlrpc).to receive(:available_methods).and_return(%w[wp.getUsersBlogs m2]) }
context 'when WP version found' do
before { expect(controller.target).to receive(:wp_version).and_return(wp_version) }
context 'when WP version not found' do
it 'returns the XMLRPC' do
expect(controller.target).to receive(:wp_version).and_return(false)
context 'when WP < 4.4' do
let(:wp_version) { WPScan::Model::WpVersion.new('3.8.1') }
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPC
it 'returns the XMLRPCMulticall' do
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPCMulticall
expect(controller.attacker.target).to be_a WPScan::Model::XMLRPC
end
end
context 'when WP version found' do
before { expect(controller.target).to receive(:wp_version).and_return(wp_version) }
context 'when WP >= 4.4' do
let(:wp_version) { WPScan::Model::WpVersion.new('4.4') }
context 'when WP < 4.4' do
let(:wp_version) { WPScan::Model::WpVersion.new('3.8.1') }
it 'returns the XMLRPCMulticall' do
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPCMulticall
expect(controller.attacker.target).to be_a WPScan::Model::XMLRPC
end
end
context 'when WP >= 4.4' do
let(:wp_version) { WPScan::Model::WpVersion.new('4.4') }
it 'returns the XMLRPC' do
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPC
expect(controller.attacker.target).to be_a WPScan::Model::XMLRPC
end
it 'returns the XMLRPC' do
expect(controller.attacker).to be_a WPScan::Finders::Passwords::XMLRPC
expect(controller.attacker.target).to be_a WPScan::Model::XMLRPC
end
end
end

View File

@@ -283,6 +283,14 @@ plugins:
path: assets/js/script.js
pattern: !ruby/regexp '/Version: (?<v>\d+\.[\.\d]+)/i'
version: true
5usujian-super-serv:
QueryParameter:
files:
- asset/css/wysj-iconfont.css
- asset/css/5usujian-serv-trade.css
- asset/css/5usujian-serv-compatible.css
- asset/js/5usujian-serv-trade.js
version: true
8-degree-availability-calendar:
QueryParameter:
files:
@@ -1234,6 +1242,12 @@ plugins:
- public/css/styles.min.css
- public/js/scripts.min.js
version: true
affiliate-links-woocommerce:
TranslationFile:
class: BodyPattern
path: languages/uk_UA.po
pattern: !ruby/regexp '/"Project\-Id\-Version: xq\-xe\-xt\-xy (?<v>\d+\.[\.\d]+)/i'
version: true
affiliates:
ChangeLog:
class: BodyPattern
@@ -1351,6 +1365,12 @@ plugins:
- assets/css/front.css
- assets/scripts/front.js
version: true
aio-for-divi:
TranslationFile:
class: BodyPattern
path: languages/en_US.po
pattern: !ruby/regexp '/"Project\-Id\-Version: Divi AiO (?<v>\d+\.[\.\d]+)/i'
version: true
airstory:
TranslationFile:
class: BodyPattern
@@ -1375,6 +1395,14 @@ plugins:
path: languages/acfw30-en_US.po
pattern: !ruby/regexp '/Project\-Id\-Version: Ajax Contact Forms v(?<v>\d+\.[\.\d]+)/i'
version: true
ajax-content-browser:
QueryParameter:
files:
- assets/css/acb.css
- assets/js/jquery-tiptip/jquery-tiptip.js
- assets/js/jquery-simplebar/jquery-simplebar.js
- assets/js/frontend/acb.js
version: true
ajax-dropdowns:
QueryParameter:
files:
@@ -3334,6 +3362,17 @@ plugins:
- biz-cal.css
- calendar.js
version: true
bizreview:
QueryParameter:
files:
- assets/icofont/icofont.min.css
- assets/fontawesome/all.min.css
- assets/css/bt-grid.css
- assets/css/owl.carousel.min.css
- assets/css/owl.theme.default.min.css
- assets/css/style.css
- inc/google-review/js/google-place.js
version: true
bizyhood:
QueryParameter:
files:
@@ -3359,6 +3398,11 @@ plugins:
files:
- js/black-studio-touch-dropdown-menu.min.js
version: true
blackout-darkmode-widget:
QueryParameter:
files:
- js/blackout.js
version: true
blade:
ComposerFile:
class: ConfigParser
@@ -3407,6 +3451,12 @@ plugins:
- dist/js//block-gallery-masonry.min.js
- dist/js/vendors/flickity.min.js
version: true
block-layouts:
ComposerFile:
class: ConfigParser
path: package.json
key: version
version: true
block-spammers:
TranslationFile:
class: BodyPattern
@@ -4408,6 +4458,12 @@ plugins:
files:
- assets/filter.js
version: true
business-model-canvas:
QueryParameter:
files:
- bmc-dashboard/css/bmc_frontend_style.css
- bmc-dashboard/js/bmc_frontend_script.js
version: true
business-open-hours-master:
QueryParameter:
files:
@@ -4587,6 +4643,13 @@ plugins:
path: languages/callme-plugin-ru_RU.po
pattern: !ruby/regexp /Project\-Id\-Version:\ Call\.me form v(?<v>\d+\.[\.\d]+)/i
version: true
camoo-sms:
QueryParameter:
files:
- assets/css/admin-bar.css
- assets/css/subscribe.css
- assets/js/script.js
version: true
campaign-monitor-dashboard:
TranslationFile:
class: BodyPattern
@@ -6511,6 +6574,12 @@ plugins:
- frontend/css/frontend.css
- frontend/js/frontend.js
version: true
course-migration-for-learndash:
QueryParameter:
files:
- public/css/sfwd-lms-course-migration-public.css
- public/js/sfwd-lms-course-migration-public.js
version: true
course-scheduler-for-learndash:
ChangeLog:
class: BodyPattern
@@ -7034,6 +7103,12 @@ plugins:
- libs/vimeo-player-js/player.js
- js/client.js
version: true
da-reactions:
QueryParameter:
files:
- assets/dist/public.css
- assets/dist/public.js
version: true
daggerhart-openid-connect-generic:
ChangeLog:
class: BodyPattern
@@ -7064,6 +7139,11 @@ plugins:
path: i18n/danixland-countdown.pot
pattern: !ruby/regexp /Project\-Id\-Version:\ danixland CountDown (?<v>\d+\.[\.\d]+)/i
version: true
darkmode:
QueryParameter:
files:
- js/darkmode.min.js
version: true
darwin-backup:
ChangeLog:
class: BodyPattern
@@ -8217,6 +8297,7 @@ plugins:
- features/tooltip/inc/tooltip.js
- features/sticky/inc/sticky.js
- features/waypoints/inc/waypoints.js
- "/inc/front.js"
version: true
echo-show-ids:
ChangeLog:
@@ -8462,6 +8543,12 @@ plugins:
path: languages/ercs.pot
pattern: !ruby/regexp /msgid "Version:\ (?<v>\d+\.[\.\d]+)/i
version: true
elegantui-social-media-icons:
QueryParameter:
files:
- public/css/eui-smi-public.css
- public/js/eui-smi-public.js
version: true
element-capability-manager:
TranslationFile:
class: BodyPattern
@@ -8638,6 +8725,12 @@ plugins:
path: languages/embed-wikimedia.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: Embed Wikimedia (?<v>\d+\.[\.\d]+)/i'
version: true
emoji-autocomplete-gutenberg:
ComposerFile:
class: ConfigParser
path: package.json
key: version
version: true
emoji-keyboard-in-comment-form:
TranslationFile:
class: BodyPattern
@@ -10899,6 +10992,12 @@ plugins:
path: languages/gis-maps.pot
pattern: !ruby/regexp /"Project\-Id\-Version:\ Gis maps (?<v>\d+\.[\.\d]+)/i
version: true
gitblock:
TranslationFile:
class: BodyPattern
path: languages/gitblock.po
pattern: !ruby/regexp '/Github Block Plugin (?<v>\d+\.[\.\d]+)/i'
version: true
github-ribbon:
TranslationFile:
class: BodyPattern
@@ -13245,6 +13344,11 @@ plugins:
path: package.json
key: version
version: true
itp-cookie-saver:
QueryParameter:
files:
- frontend/js/nsc_ics_cookiesaver.js
version: true
iugu-woocommerce:
TranslationFile:
class: BodyPattern
@@ -15007,6 +15111,17 @@ plugins:
path: changelog.txt
pattern: !ruby/regexp /\#\# (?<v>\d+\.[\.\d]+)/
version: true
lsx-importer-for-wetu:
ComposerFile:
class: ConfigParser
path: package.json
key: version
version: true
ChangeLog:
class: BodyPattern
path: changelog.txt
pattern: !ruby/regexp /\#\# (?<v>\d+\.[\.\d]+)/
version: true
lsx-mega-menus:
ChangeLog:
class: BodyPattern
@@ -15284,6 +15399,17 @@ plugins:
path: changelog.txt
pattern: !ruby/regexp /^Version:? (?<v>\d+\.[\.\d]+)(?!.*Version:? \d+\.[\.\d]+)/mi
version: true
mailbluster4wp:
QueryParameter:
files:
- public/css/mailbluster4wp-public.css
- public/js/mailbluster4wp-public.js
version: true
TranslationFile:
class: BodyPattern
path: languages/mailbluster4wp.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: MailBluster v(?<v>\d+\.[\.\d]+)/i'
version: true
mailcamp:
QueryParameter:
files:
@@ -16226,6 +16352,12 @@ plugins:
files:
- assets/css/mcn-plugin.min.css
version: true
missing-product-shipping-info-tool:
TranslationFile:
class: BodyPattern
path: languages/missing-product-shipping-info-tool-el.po
pattern: !ruby/regexp '/ion: Missing_Product_Shipping_Info_tool (?<v>\d+\.[\.\d]+)/i'
version: true
ml-adverts:
QueryParameter:
files:
@@ -17165,6 +17297,11 @@ plugins:
- subscription/style.css
- subscription/validate.js
version: true
newsletter-email-subscribe:
QueryParameter:
files:
- css/style.css
version: true
newsletter-manager:
TranslationFile:
class: BodyPattern
@@ -17653,6 +17790,11 @@ plugins:
- public/assets/css/public.css
- public/assets/js/public.js
version: true
offers-overview-block:
QueryParameter:
files:
- build/block.css
version: true
official-facebook-pixel:
TranslationFile:
class: BodyPattern
@@ -18073,6 +18215,7 @@ plugins:
files:
- main.css
- main.js
- static/js/main.js
version: true
ovic-addon-toolkit:
QueryParameter:
@@ -18424,6 +18567,11 @@ plugins:
files:
- css/frontend.css
version: true
pe-theme-elements-info:
QueryParameter:
files:
- css/pe-theme-elements-info.css
version: true
peepso-core:
QueryParameter:
files:
@@ -18575,6 +18723,13 @@ plugins:
- lib/photoswipe-ui-default.min.js
- js/photoswipe.js
version: true
photoblocks-grid-gallery:
CorrectReadmePath:
class: BodyPattern
path: README.txt
pattern: !ruby/regexp /= (?<v>\d+\.[\.\d]+) =/
confidence: 80
version: true
photonic:
QueryParameter:
files:
@@ -18605,6 +18760,11 @@ plugins:
files:
- pe2-display.css
version: true
pick-n-post-quote:
QueryParameter:
files:
- css/style.css
version: true
picsascii:
QueryParameter:
files:
@@ -19028,6 +19188,14 @@ plugins:
pattern: !ruby/regexp /^Portfolio Mgmt\. (?<v>\d+\.[\.\d]+)(?!.*Portfolio Mgmt\.
\d+\.[\.\d]+)/mi
version: true
portfolio-responsive-gallery:
QueryParameter:
files:
- public/css/prg_lightbox_styles.css
- public/css/portfolio-responsive-gallery-public.css
- public/js/portfolio-responsive-gallery-public.js
- public/js/prg-lightbox-ajax.js
version: true
portfolio-toolkit:
TranslationFile:
class: BodyPattern
@@ -20435,6 +20603,11 @@ plugins:
- public/css/read-me-later-public.css
- public/js/read-me-later-public.js
version: true
read-meter:
QueryParameter:
files:
- assets/css/bsfrt-frontend-css.css
version: true
read-more-buddy:
QueryParameter:
files:
@@ -21311,6 +21484,12 @@ plugins:
files:
- ringotel-webchat.js
version: true
risk-warning-bar:
TranslationFile:
class: BodyPattern
path: lang/risk-warning-bar.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: Risk Warning Bar (?<v>\d+\.[\.\d]+)/i'
version: true
rk-hreview-for-wp:
QueryParameter:
files:
@@ -23104,6 +23283,17 @@ plugins:
- public/css/simple-testimonials-showcase-public.css
- public/js/simple-testimonials-showcase-public.js
version: true
simple-urls:
TranslationFile:
class: BodyPattern
path: languages/simple-urls.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: Simple URLs (?<v>\d+\.[\.\d]+)/i'
version: true
ComposerFile:
class: ConfigParser
path: package.json
key: plugin:version
version: true
simple-user-adding:
TranslationFile:
class: BodyPattern
@@ -24713,6 +24903,11 @@ plugins:
- public/css/super-web-share-public.css
- public/js/super-web-share-public.js
version: true
superb-social-share-and-follow-buttons:
QueryParameter:
files:
- "/assets/css/frontend.css"
version: true
superb-tables:
QueryParameter:
files:
@@ -25088,6 +25283,14 @@ plugins:
files:
- assets//css/style.css
version: true
taugun:
QueryParameter:
files:
- assets/css/font-awesome.min.css
- assets/css/frontend/single-event.css
- assets/css/frontend/archive-event.css
- assets/js/frontend/archive-event.js
version: true
taxjar-simplified-taxes-for-woocommerce:
ChangeLog:
class: BodyPattern
@@ -25497,6 +25700,11 @@ plugins:
- themify/js/main.min.js
- css/themify-builder-style.min.css
version: true
MetaTag:
class: Xpath
xpath: //meta[@name="builder-styles-css"]/@data-href
version: true
pattern: !ruby/regexp /\/themify\-builder\/css\/themify\-builder\-style\.min\.css\?ver=(?<v>\d+\.[\.\d]+)/i
themify-builder-lite:
QueryParameter:
files:
@@ -26379,6 +26587,7 @@ plugins:
- includes/lib/pricing-plan//assets/js/frontend/user-plan-detail.js
- includes/lib/stripe//assets/js/stripe-card-component.js
- includes/lib/stripe//assets/js/stripe-my-card.js
- assets/js/vue/vue-w3c-valid.js
version: true
ulitmate-facebook-buttons:
QueryParameter:
@@ -26776,6 +26985,17 @@ plugins:
- assets/css/unit-switcher.css
- assets/js/unit-switcher.min.js
version: true
universal-google-adsense-and-ads-manager:
QueryParameter:
files:
- public/assets/dist/css/ugaam-public.css
- public/assets/dist/js/ugaam-public.js
version: true
TranslationFile:
class: BodyPattern
path: languages/universal-google-adsense-and-ads-manager.pot
pattern: !ruby/regexp /niversal Google AdSense And Ads Manager (?<v>\d+\.[\.\d]+)/i
version: true
universam-demo:
QueryParameter:
files:
@@ -28681,6 +28901,12 @@ plugins:
- css/main.css
- js/main.js
version: true
woo-cart-all-in-one:
ChangeLog:
class: BodyPattern
path: CHANGELOG.txt
pattern: !ruby/regexp /Version (?<v>\d+\.[\.\d]+)/i
version: true
woo-cart-items-bulk-deletion:
QueryParameter:
files:
@@ -28689,6 +28915,12 @@ plugins:
- public/js/wcibd-public.js
- public/js/jquery-confirm.min.js
version: true
woo-casinocoin-payments:
TranslationFile:
class: BodyPattern
path: languages/woocommerce-csc.pot
pattern: !ruby/regexp '/Project\-Id\-Version: CasinoCoin Payments (?<v>\d+\.[\.\d]+)/i'
version: true
woo-category-slider-by-pluginever:
TranslationFile:
class: BodyPattern
@@ -28962,6 +29194,12 @@ plugins:
path: change_log.txt
pattern: !ruby/regexp /Version (?<v>\d+\.[\.\d]+)/i
version: true
woo-orders-to-google-spreadsheet:
QueryParameter:
files:
- public/css/woo-orders-to-google-spreadsheet-public.css
- public/js/woo-orders-to-google-spreadsheet-public.js
version: true
woo-orders-tracking:
ChangeLog:
class: BodyPattern
@@ -30753,6 +30991,12 @@ plugins:
path: wp-course-manager.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: WP Course Manager (?<v>\d+\.[\.\d]+)/i'
version: true
wp-courseware-convertkit-addon:
ComposerFile:
class: ConfigParser
path: package.json
key: version
version: true
wp-cprotext:
TranslationFile:
class: BodyPattern
@@ -31250,6 +31494,12 @@ plugins:
files:
- js/script.js
version: true
wp-foft-loader:
TranslationFile:
class: BodyPattern
path: lang/wp-foft-loader.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: WP FOFT Loader (?<v>\d+\.[\.\d]+)/i'
version: true
wp-font-awesome:
QueryParameter:
files:
@@ -31991,6 +32241,7 @@ plugins:
- public/css/wp-coin-hive-public.css
- includes/js/wp-coin-hive-util.js
- includes/js/wp-coin-hive.js
- includes/js/wp-monero-miner-class.js
version: true
JavascriptVar:
pattern: !ruby/regexp /var wp_js_options\s*=\s*{(?<json>.+?(?=};))};/i
@@ -32368,6 +32619,12 @@ plugins:
- public/css/wp-quiz-importer-public.css
- public/js/wp-quiz-importer-public.js
version: true
wp-radio:
QueryParameter:
files:
- assets/frontend.min.css
- assets/frontend.min.js
version: true
wp-ragadjust:
QueryParameter:
files:
@@ -34712,6 +34969,11 @@ plugins:
- public/css/zoorvy-social-share-public.css
- public/js/zoorvy-social-share-public.js
version: true
zovonto:
QueryParameter:
files:
- assets/css/font-awesome.min.css
version: true
ztr-zeumic-work-timer:
QueryParameter:
files:

View File

@@ -290,6 +290,16 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/4nton-extensions/assets/js/script.js, Match:
''Version: 1.2.1'''
5usujian-super-serv:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/css/wysj-iconfont.css?ver=1.0
- http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/css/5usujian-serv-trade.css?ver=1.0
- http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/css/5usujian-serv-compatible.css?ver=1.0
- http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/js/5usujian-serv-trade.js?ver=1.0
confidence: 40
8-degree-availability-calendar:
QueryParameter:
number: 1.0.7
@@ -1452,6 +1462,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/affiliate-coupons/public/css/styles.min.css?ver=1.2.2
- http://wp.lab/wp-content/plugins/affiliate-coupons/public/js/scripts.min.js?ver=1.2.2
affiliate-links-woocommerce:
TranslationFile:
number: '1.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/affiliate-links-woocommerce/languages/uk_UA.po,
Match: ''"Project-Id-Version: xq-xe-xt-xy 1.0'''
affiliates:
ChangeLog:
number: 4.0.4
@@ -1592,6 +1609,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/ainow/assets/css/front.css?ver=1.0
- http://wp.lab/wp-content/plugins/ainow/assets/scripts/front.js?ver=1.0
aio-for-divi:
TranslationFile:
number: 1.0.1
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/aio-for-divi/languages/en_US.po, Match:
''"Project-Id-Version: Divi AiO 1.0.1'''
airstory:
TranslationFile:
number: 1.1.4
@@ -1620,6 +1644,16 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/ajax-contact-forms/languages/acfw30-en_US.po,
Match: ''Project-Id-Version: Ajax Contact Forms v1.0.0'''
ajax-content-browser:
QueryParameter:
number: 1.0.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/ajax-content-browser/assets/css/acb.css?ver=1.0.2
- http://wp.lab/wp-content/plugins/ajax-content-browser/assets/js/jquery-tiptip/jquery-tiptip.js?ver=1.0.2
- http://wp.lab/wp-content/plugins/ajax-content-browser/assets/js/jquery-simplebar/jquery-simplebar.js?ver=1.0.2
- http://wp.lab/wp-content/plugins/ajax-content-browser/assets/js/frontend/acb.js?ver=1.0.2
confidence: 40
ajax-dropdowns:
QueryParameter:
number: 0.9.8
@@ -4082,6 +4116,19 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/biz-calendar/biz-cal.css?ver=2.2.0
- http://wp.lab/wp-content/plugins/biz-calendar/calendar.js?ver=2.2.0
bizreview:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/bizreview/assets/icofont/icofont.min.css?ver=1.0
- http://wp.lab/wp-content/plugins/bizreview/assets/fontawesome/all.min.css?ver=1.0
- http://wp.lab/wp-content/plugins/bizreview/assets/css/bt-grid.css?ver=1.0
- http://wp.lab/wp-content/plugins/bizreview/assets/css/owl.carousel.min.css?ver=1.0
- http://wp.lab/wp-content/plugins/bizreview/assets/css/owl.theme.default.min.css?ver=1.0
- http://wp.lab/wp-content/plugins/bizreview/assets/css/style.css?ver=1.0
- http://wp.lab/wp-content/plugins/bizreview/inc/google-review/js/google-place.js?ver=1.0
confidence: 70
bizyhood:
QueryParameter:
number: 1.5.3
@@ -4112,6 +4159,13 @@ plugins:
confidence: 10
interesting_entries:
- http://wp.lab/wp-content/plugins/black-studio-touch-dropdown-menu/js/black-studio-touch-dropdown-menu.min.js?ver=1.0.1
blackout-darkmode-widget:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/blackout-darkmode-widget/js/blackout.js?ver=1.0
confidence: 10
blade:
ComposerFile:
number: 0.3.7
@@ -4172,6 +4226,12 @@ plugins:
- http://wp.lab/wp-content/plugins/block-gallery/dist/js//block-gallery-masonry.min.js?ver=1.1.5
- http://wp.lab/wp-content/plugins/block-gallery/dist/js/vendors/flickity.min.js?ver=1.1.5
confidence: 20
block-layouts:
ComposerFile:
number: 1.0.5
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/block-layouts/package.json, Match: ''1.0.5'''
block-spammers:
TranslationFile:
number: '0.3'
@@ -5405,6 +5465,14 @@ plugins:
confidence: 10
interesting_entries:
- http://wp.lab/wp-content/plugins/business-era-extension/assets/filter.js?ver=1.0.0
business-model-canvas:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/business-model-canvas/bmc-dashboard/css/bmc_frontend_style.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/business-model-canvas/bmc-dashboard/js/bmc_frontend_script.js?ver=1.0.0
confidence: 20
business-open-hours-master:
QueryParameter:
number: 1.0.0
@@ -5625,6 +5693,15 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/callme-form/languages/callme-plugin-ru_RU.po,
Match: ''Project-Id-Version: Call.me form v1.1'''
camoo-sms:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/camoo-sms/assets/css/admin-bar.css?ver=1.0
- http://wp.lab/wp-content/plugins/camoo-sms/assets/css/subscribe.css?ver=1.0
- http://wp.lab/wp-content/plugins/camoo-sms/assets/js/script.js?ver=1.0
confidence: 30
campaign-monitor-dashboard:
TranslationFile:
number: 1.1.5
@@ -8024,6 +8101,14 @@ plugins:
- http://wp.lab/wp-content/plugins/coupons/frontend/css/frontend.css?ver=1.1.0
- http://wp.lab/wp-content/plugins/coupons/frontend/js/frontend.js?ver=1.1.0
confidence: 20
course-migration-for-learndash:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/course-migration-for-learndash/public/css/sfwd-lms-course-migration-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/course-migration-for-learndash/public/js/sfwd-lms-course-migration-public.js?ver=1.0.0
confidence: 20
course-scheduler-for-learndash:
ChangeLog:
number: '1.3'
@@ -8660,6 +8745,14 @@ plugins:
- http://wp.lab/wp-content/plugins/cyclone-slider-2/templates/thumbnails/script.js?ver=3.2.0
- http://wp.lab/wp-content/plugins/cyclone-slider-2/libs/vimeo-player-js/player.js?ver=3.2.0
- http://wp.lab/wp-content/plugins/cyclone-slider-2/js/client.js?ver=3.2.0
da-reactions:
QueryParameter:
number: 3.3.3
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/da-reactions/assets/dist/public.css?ver=3.3.3
- http://wp.lab/wp-content/plugins/da-reactions/assets/dist/public.js?ver=3.3.3
confidence: 20
daggerhart-openid-connect-generic:
ChangeLog:
number: 3.4.1
@@ -8697,6 +8790,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/danixland-countdown/i18n/danixland-countdown.pot,
Match: ''Project-Id-Version: danixland CountDown 0.4'''
darkmode:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/darkmode/js/darkmode.min.js?ver=1.0.0
confidence: 10
darwin-backup:
ChangeLog:
number: 1.2.25
@@ -10097,7 +10197,8 @@ plugins:
- http://wp.lab/wp-content/plugins/echelon-so/features/tooltip/inc/tooltip.js?ver=1.1.1
- http://wp.lab/wp-content/plugins/echelon-so/features/sticky/inc/sticky.js?ver=1.1.1
- http://wp.lab/wp-content/plugins/echelon-so/features/waypoints/inc/waypoints.js?ver=1.1.1
confidence: 70
- http://wp.lab/wp-content/plugins/echelon-so//inc/front.js?ver=1.1.1
confidence: 80
echo-show-ids:
ChangeLog:
number: 1.0.1
@@ -10402,6 +10503,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/elegant-responsive-content-slider/languages/ercs.pot,
Match: ''msgid "Version: 1.0.1'''
elegantui-social-media-icons:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/elegantui-social-media-icons/public/css/eui-smi-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/elegantui-social-media-icons/public/js/eui-smi-public.js?ver=1.0.0
confidence: 20
element-capability-manager:
TranslationFile:
number: '1.1'
@@ -10614,6 +10723,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/embed-wikimedia/languages/embed-wikimedia.pot,
Match: ''"Project-Id-Version: Embed Wikimedia 0.1.0'''
emoji-autocomplete-gutenberg:
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/emoji-autocomplete-gutenberg/package.json,
Match: ''1.0.0'''
emoji-keyboard-in-comment-form:
TranslationFile:
number: 1.0.0
@@ -13410,6 +13526,12 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/gis-maps/languages/gis-maps.pot, Match:
''"Project-Id-Version: Gis maps 0.3.0'''
gitblock:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/gitblock/languages/gitblock.po, Match: ''Github Block Plugin 1.0.0'''
github-ribbon:
TranslationFile:
number: 1.2.1
@@ -16300,6 +16422,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/ithoughts-tooltip-glossary/package.json,
Match: ''3.0.2'''
itp-cookie-saver:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/itp-cookie-saver/frontend/js/nsc_ics_cookiesaver.js?ver=1.0
confidence: 10
iugu-woocommerce:
TranslationFile:
number: 2.0.1
@@ -18483,6 +18612,19 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/lsx-geo-content/changelog.txt, Match: ''##
1.0.0'''
lsx-importer-for-wetu:
ComposerFile:
number: 1.2.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/lsx-importer-for-wetu/package.json, Match:
''1.2.0'''
ChangeLog:
number: 1.2.0
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/lsx-importer-for-wetu/changelog.txt, Match:
''## 1.2.0'''
lsx-mega-menus:
ChangeLog:
number: '1.2'
@@ -18824,6 +18966,20 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/magic-theme-mods-holder/changelog.txt, Match:
''Version 1.0.0'''
mailbluster4wp:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/mailbluster4wp/public/css/mailbluster4wp-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/mailbluster4wp/public/js/mailbluster4wp-public.js?ver=1.0.0
confidence: 20
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/mailbluster4wp/languages/mailbluster4wp.pot,
Match: ''"Project-Id-Version: MailBluster v1.0.0'''
mailcamp:
QueryParameter:
number: 1.3.1
@@ -20008,6 +20164,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/missing-content/assets/css/mcn-plugin.min.css?ver=1.1.0
confidence: 10
missing-product-shipping-info-tool:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/missing-product-shipping-info-tool/languages/missing-product-shipping-info-tool-el.po,
Match: ''ion: Missing_Product_Shipping_Info_tool 1.0.0'''
ml-adverts:
QueryParameter:
number: 1.0.1
@@ -21190,6 +21353,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/newsletter/subscription/style.css?ver=5.1.6
- http://wp.lab/wp-content/plugins/newsletter/subscription/validate.js?ver=5.1.6
newsletter-email-subscribe:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/newsletter-email-subscribe/css/style.css?ver=1.0
confidence: 10
newsletter-manager:
TranslationFile:
number: '1.4'
@@ -21810,6 +21980,13 @@ plugins:
- http://wp.lab/wp-content/plugins/offers-for-woocommerce/public/assets/css/public.css?ver=1.4.8.2
- http://wp.lab/wp-content/plugins/offers-for-woocommerce/public/assets/js/public.js?ver=1.4.8.2
confidence: 20
offers-overview-block:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/offers-overview-block/build/block.css?ver=1.0.0
confidence: 10
official-facebook-pixel:
TranslationFile:
number: 1.7.17
@@ -22334,7 +22511,8 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/outdr-booking-widget/main.css?ver=0.0.6
- http://wp.lab/wp-content/plugins/outdr-booking-widget/main.js?ver=0.0.6
confidence: 20
- http://wp.lab/wp-content/plugins/outdr-booking-widget/static/js/main.js?ver=0.0.6
confidence: 30
ovic-addon-toolkit:
QueryParameter:
number: 1.2.4
@@ -22777,6 +22955,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/pdf-print/css/frontend.css?ver=1.9.8
confidence: 10
pe-theme-elements-info:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/pe-theme-elements-info/css/pe-theme-elements-info.css?ver=1.0
confidence: 10
peepso-core:
QueryParameter:
number: 1.9.1
@@ -22963,6 +23148,13 @@ plugins:
- http://wp.lab/wp-content/plugins/photo-swipe/lib/photoswipe-ui-default.min.js?ver=4.1.1.1
- http://wp.lab/wp-content/plugins/photo-swipe/js/photoswipe.js?ver=4.1.1.1
confidence: 50
photoblocks-grid-gallery:
CorrectReadmePath:
number: 1.1.40
found_by: Correct Readme Path (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/photoblocks-grid-gallery/README.txt, Match: ''= 1.1.40 ='''
confidence: 80
photonic:
QueryParameter:
number: '1.64'
@@ -23001,6 +23193,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/picasa-express-x2/pe2-display.css?ver=2.2.10
confidence: 10
pick-n-post-quote:
QueryParameter:
number: 1.0.3
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/pick-n-post-quote/css/style.css?ver=1.0.3
confidence: 10
picsascii:
QueryParameter:
number: 1.0.0
@@ -23534,6 +23733,16 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/portfolio-mgmt/changelog.txt, Match: ''Portfolio
Mgmt. 2.0.2'''
portfolio-responsive-gallery:
QueryParameter:
number: 1.0.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/portfolio-responsive-gallery/public/css/prg_lightbox_styles.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/portfolio-responsive-gallery/public/css/portfolio-responsive-gallery-public.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/portfolio-responsive-gallery/public/js/portfolio-responsive-gallery-public.js?ver=1.0.1
- http://wp.lab/wp-content/plugins/portfolio-responsive-gallery/public/js/prg-lightbox-ajax.js?ver=1.0.1
confidence: 40
portfolio-toolkit:
TranslationFile:
number: 0.1.5
@@ -25289,6 +25498,13 @@ plugins:
- http://wp.lab/wp-content/plugins/read-me-later/public/css/read-me-later-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/read-me-later/public/js/read-me-later-public.js?ver=1.0.0
confidence: 20
read-meter:
QueryParameter:
number: 1.0.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/read-meter/assets/css/bsfrt-frontend-css.css?ver=1.0.2
confidence: 10
read-more-buddy:
QueryParameter:
number: 1.0.0
@@ -26384,6 +26600,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/ringotel-webchat/ringotel-webchat.js?ver=1.0.0
confidence: 10
risk-warning-bar:
TranslationFile:
number: '1.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/risk-warning-bar/lang/risk-warning-bar.pot,
Match: ''"Project-Id-Version: Risk Warning Bar 1.0'''
rk-hreview-for-wp:
QueryParameter:
number: 1.1.1
@@ -28659,6 +28882,18 @@ plugins:
- http://wp.lab/wp-content/plugins/simple-testimonials-showcase/public/css/simple-testimonials-showcase-public.css?ver=1.1.3
- http://wp.lab/wp-content/plugins/simple-testimonials-showcase/public/js/simple-testimonials-showcase-public.js?ver=1.1.3
confidence: 20
simple-urls:
TranslationFile:
number: 0.9.9
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/simple-urls/languages/simple-urls.pot, Match:
''"Project-Id-Version: Simple URLs 0.9.9'''
ComposerFile:
number: 0.9.9
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/simple-urls/package.json, Match: ''0.9.9'''
simple-user-adding:
TranslationFile:
number: 1.1.1
@@ -30686,6 +30921,13 @@ plugins:
- http://wp.lab/wp-content/plugins/super-web-share/public/css/super-web-share-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/super-web-share/public/js/super-web-share-public.js?ver=1.0.0
confidence: 20
superb-social-share-and-follow-buttons:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/superb-social-share-and-follow-buttons//assets/css/frontend.css?ver=1.0.0
confidence: 10
superb-tables:
QueryParameter:
number: 1.0.0
@@ -31151,6 +31393,16 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/taskbreaker-project-management/assets//css/style.css?ver=1.4.12
confidence: 10
taugun:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/taugun/assets/css/font-awesome.min.css?ver=1.0
- http://wp.lab/wp-content/plugins/taugun/assets/css/frontend/single-event.css?ver=1.0
- http://wp.lab/wp-content/plugins/taugun/assets/css/frontend/archive-event.css?ver=1.0
- http://wp.lab/wp-content/plugins/taugun/assets/js/frontend/archive-event.js?ver=1.0
confidence: 40
taxjar-simplified-taxes-for-woocommerce:
ChangeLog:
number: 2.0.1
@@ -31667,6 +31919,11 @@ plugins:
- http://wp.lab/wp-content/plugins/themify-builder/themify/js/main.min.js?ver=4.1.3
- http://wp.lab/wp-content/plugins/themify-builder/css/themify-builder-style.min.css?ver=4.1.3
confidence: 20
MetaTag:
number: 4.5.2
found_by: Meta Tag (Passive Detection)
interesting_entries:
- 'http://wp.lab/, Match: ''/themify-builder/css/themify-builder-style.min.css?ver=4.5.2'''
themify-builder-lite:
QueryParameter:
number: 2.0.9
@@ -32749,6 +33006,7 @@ plugins:
- http://wp.lab/wp-content/plugins/ulisting/includes/lib/pricing-plan//assets/js/frontend/user-plan-detail.js?ver=1.0
- http://wp.lab/wp-content/plugins/ulisting/includes/lib/stripe//assets/js/stripe-card-component.js?ver=1.0
- http://wp.lab/wp-content/plugins/ulisting/includes/lib/stripe//assets/js/stripe-my-card.js?ver=1.0
- http://wp.lab/wp-content/plugins/ulisting/assets/js/vue/vue-w3c-valid.js?ver=1.0
confidence: 100
ulitmate-facebook-buttons:
QueryParameter:
@@ -33232,6 +33490,20 @@ plugins:
- http://wp.lab/wp-content/plugins/units/assets/css/unit-switcher.css?ver=1.0.2
- http://wp.lab/wp-content/plugins/units/assets/js/unit-switcher.min.js?ver=1.0.2
confidence: 20
universal-google-adsense-and-ads-manager:
QueryParameter:
number: 1.0.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/universal-google-adsense-and-ads-manager/public/assets/dist/css/ugaam-public.css?ver=1.0.2
- http://wp.lab/wp-content/plugins/universal-google-adsense-and-ads-manager/public/assets/dist/js/ugaam-public.js?ver=1.0.2
confidence: 20
TranslationFile:
number: 1.0.2
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/universal-google-adsense-and-ads-manager/languages/universal-google-adsense-and-ads-manager.pot,
Match: ''niversal Google AdSense And Ads Manager 1.0.2'''
universam-demo:
QueryParameter:
number: 4.50.02
@@ -35608,6 +35880,13 @@ plugins:
- http://wp.lab/wp-content/plugins/woo-bulkbuy/css/main.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/woo-bulkbuy/js/main.js?ver=1.0.0
confidence: 20
woo-cart-all-in-one:
ChangeLog:
number: 1.0.0
found_by: Change Log (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/woo-cart-all-in-one/CHANGELOG.txt, Match:
''version 1.0.0'''
woo-cart-items-bulk-deletion:
QueryParameter:
number: 1.0.0
@@ -35618,6 +35897,13 @@ plugins:
- http://wp.lab/wp-content/plugins/woo-cart-items-bulk-deletion/public/js/wcibd-public.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/woo-cart-items-bulk-deletion/public/js/jquery-confirm.min.js?ver=1.0.0
confidence: 40
woo-casinocoin-payments:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/woo-casinocoin-payments/languages/woocommerce-csc.pot,
Match: ''Project-Id-Version: CasinoCoin Payments 1.0.0'''
woo-category-slider-by-pluginever:
TranslationFile:
number: 3.0.0
@@ -35944,6 +36230,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/woo-order-export/change_log.txt, Match:
''Version 1.0.0'''
woo-orders-to-google-spreadsheet:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/woo-orders-to-google-spreadsheet/public/css/woo-orders-to-google-spreadsheet-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/woo-orders-to-google-spreadsheet/public/js/woo-orders-to-google-spreadsheet-public.js?ver=1.0.0
confidence: 20
woo-orders-tracking:
ChangeLog:
number: 1.0.1
@@ -38126,6 +38420,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wp-course-manager/wp-course-manager.pot,
Match: ''"Project-Id-Version: WP Course Manager 1.3'''
wp-courseware-convertkit-addon:
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wp-courseware-convertkit-addon/package.json,
Match: ''1.0.0'''
wp-cprotext:
TranslationFile:
number: 2.0.0
@@ -38751,6 +39052,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-floating-notifications/js/script.js?ver=1.0.0
confidence: 10
wp-foft-loader:
TranslationFile:
number: 1.0.30
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wp-foft-loader/lang/wp-foft-loader.pot,
Match: ''"Project-Id-Version: WP FOFT Loader 1.0.30'''
wp-font-awesome:
QueryParameter:
number: '1.5'
@@ -39683,7 +39991,8 @@ plugins:
- http://wp.lab/wp-content/plugins/wp-monero-miner-using-coin-hive/public/css/wp-coin-hive-public.css?ver=3.1.1
- http://wp.lab/wp-content/plugins/wp-monero-miner-using-coin-hive/includes/js/wp-coin-hive-util.js?ver=3.1.1
- http://wp.lab/wp-content/plugins/wp-monero-miner-using-coin-hive/includes/js/wp-coin-hive.js?ver=3.1.1
confidence: 30
- http://wp.lab/wp-content/plugins/wp-monero-miner-using-coin-hive/includes/js/wp-monero-miner-class.js?ver=3.1.1
confidence: 40
JavascriptVar:
number: 3.1.1
found_by: Javascript Var (Passive Detection)
@@ -40157,6 +40466,14 @@ plugins:
- http://wp.lab/wp-content/plugins/wp-quiz-importer/public/css/wp-quiz-importer-public.css?ver=1.1.1
- http://wp.lab/wp-content/plugins/wp-quiz-importer/public/js/wp-quiz-importer-public.js?ver=1.1.1
confidence: 20
wp-radio:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-radio/assets/frontend.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-radio/assets/frontend.min.js?ver=1.0.0
confidence: 20
wp-ragadjust:
QueryParameter:
number: 1.0.0
@@ -43080,6 +43397,13 @@ plugins:
- http://wp.lab/wp-content/plugins/zoorvy-social-share/public/css/zoorvy-social-share-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/zoorvy-social-share/public/js/zoorvy-social-share-public.js?ver=1.0.0
confidence: 20
zovonto:
QueryParameter:
number: '1.0'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/zovonto/assets/css/font-awesome.min.css?ver=1.0
confidence: 10
ztr-zeumic-work-timer:
QueryParameter:
number: 1.8.2

View File

@@ -0,0 +1,49 @@
msgid ""
msgstr ""
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
"Last-Translator: \n"
"Language-Team: Marko Maksym\n"
"Language: uk_UA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.6\n"
"X-Poedit-Basepath: ../includes\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-admin-main.php:66
msgid "Title of the page"
msgstr ""
#: admin/class-admin-main.php:66
msgid "Link Name"
msgstr ""
#: admin/class-admin-main.php:69
msgid "Submenu title"
msgstr ""
#: admin/class-admin-main.php:69
msgid "Submenu item"
msgstr ""
#: admin/templates/index.php:8
msgid "Settings Page"
msgstr ""
#: admin/templates/main_module_menu.php:10
msgid "Main page"
msgstr ""
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
msgid "Page 1"
msgstr ""
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
msgid "Page 2"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,37 @@
{
"name": "block-layouts",
"version": "1.0.5",
"license": "MIT",
"main": "blocks/index.js",
"repository": {
"type": "git",
"url": "https://github.com/derweili/block-layouts"
},
"scripts": {
"start": "cross-env BABEL_ENV=default webpack --watch",
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack -p"
},
"devDependencies": {
"@wordpress/babel-plugin-makepot": "^2.1.2",
"@wordpress/babel-preset-default": "^1.2.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"classnames": "^2.2.6",
"cross-env": "^5.1.5",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.19.1",
"webpack": "^3.11.0"
},
"dependencies": {
"react-images": "^1.0.0",
"react-photo-gallery": "^7.0.2"
}
}

View File

@@ -0,0 +1,19 @@
{
"name": "emoji-block-autocomplete",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "cgb-scripts start",
"build": "cgb-scripts build",
"eject": "cgb-scripts eject",
"zip": "node zip.js"
},
"dependencies": {
"bestzip": "^2.1.4",
"cgb-scripts": "1.17.0",
"dom-scroll-into-view": "^1.2.1",
"emoji.json": "^12.0.0",
"fuse.js": "^3.4.5",
"scroll-into-view": "^1.9.7"
}
}

View File

@@ -0,0 +1,25 @@
# Copyright (C) 2019 gitblock — Github Block Plugin
# This file is distributed under the same license as the gitblock — Github Block Plugin package.
msgid ""
msgstr ""
"Project-Id-Version: gitblock — Github Block Plugin 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gitblock\n"
"POT-Creation-Date: 2019-02-04 17:52:19+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
"Last-Translator: Thrijith Thankachan <thrijith13@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: src/init.php:79
msgid "Github OAuth Token"
msgstr ""
#: src/init.php:86
msgid "Enter Github OAuth Token"
msgstr ""
#: src/init.php:104
msgid "Enter your Github OAuth Token to fetch data from Github."
msgstr ""

View File

@@ -0,0 +1,25 @@
## Change log
### 1.2.0
* Dev - Upgraded Wetu API to V8.
* Dev - Added in support for the group size and the tags fields.
* Fix - Updated the 'file_get_contents()' call with 'wp_remote_get()'
* Dev - Coding Standards Updates
* Dev - Added UI enhancements for the Tour Importer Page
* Dev - Moved the settings tab to the importer page.
### 1.1.2
* Dev - Removing the need to index the accommodation and destination items from WETU.
* Dev - Changed the Accommodation and Destination search to use the WETU API Search.
### 1.1.1
* Fix - Tours no longer use the same destination for the featured and the banner image
* Dev - Added in a destination search which searches the cached "List" from the WETU content API
* Dev - Changed the continents taxonomy to only apply to the countries and not the regions
### 1.1.0
* Added compatibility with Tour Operator 1.1
* Fix - Fixed small issues
### 1.0.0
* First Version

View File

@@ -0,0 +1,41 @@
{
"name": "lsx-wetu-importer",
"version": "1.2.0",
"description": "Tour Operators add-on for LSX",
"main": "gulpfile.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://www.lsdev.biz/product/lsx-wetu-importer/"
},
"keywords": [
"lsx",
"addon"
],
"author": "LightSpeed",
"license": "GPL-3.0",
"bugs": {
"url": "https://www.lsdev.biz/product/lsx-wetu-importer/issues"
},
"homepage": "https://www.lsdev.biz/product/lsx-wetu-importer/#readme",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-rtlcss": "^1.0.0",
"gulp-autoprefixer": "^3.1.1",
"gulp-concat": "^2.6.1",
"gulp-gettext": "^0.3.0",
"gulp-jshint": "^2.0.4",
"gulp-clean-css": "^3.10.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sort": "^2.0.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^2.0.1",
"gulp-wp-pot": "^2.0.3",
"jshint": "^2.9.4",
"map-stream": "^0.0.7"
}
}

View File

@@ -0,0 +1,394 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: MailBluster v1.0.0\n"
"POT-Creation-Date: 2019-06-24 17:01+0600\n"
"PO-Revision-Date: 2019-06-15 12:21+0600\n"
"Language-Team: MailBluster <hello@mailbluster.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.2.3\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-KeywordsList: __;_e;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"
"Last-Translator: MailBluster <hello@mailbluster.com>\n"
"Language: en_US\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-mailbluster4wp-admin.php:170
msgid "Settings"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:185
#: admin/class-mailbluster4wp-admin.php:186
msgctxt "mailbluster forms"
msgid "MailBluster"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:187
msgctxt "admin menu"
msgid "MailBluster"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:188
msgctxt "add new on admin bar"
msgid "MailBluster"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:190
msgid "Add New Form"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:191
msgid "New Form"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:192
msgid "Edit Form"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:193
#: admin/class-mailbluster4wp-admin.php:259
msgid "View Form"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:194
msgid "Forms"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:195
msgid "Search Forms"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:196
msgid "Parent Forms:"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:197
msgid "No forms found."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:198
msgid "No forms found in Trash."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:203
msgid "Description."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:238
#: admin/class-mailbluster4wp-admin.php:241
msgid "Form updated."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:239
msgid "Custom field updated."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:240
msgid "Custom field deleted."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:243
#, php-format
msgid "Form restored to revision from %s"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:244
msgid "Form published."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:245
msgid "Form saved."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:246
msgid "Form submitted."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:249
msgid "Form scheduled for:"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:251
msgid "M j, Y @ G:i"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:253
msgid "Form draft updated."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:265
msgid "Preview Form"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:284
msgctxt "mailbluster forms"
msgid "MailBluster Tags"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:285
msgctxt "mailbluster forms"
msgid "MailBluster Tag"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:286
msgctxt "admin menu"
msgid "MailBluster Tags"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:291
msgid "New subscribers will be tagged in MailBluster with these tags."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:326
msgid "Form Title"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:327
msgid "ID"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:328
msgid "Shortcode"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:329
msgid "MailBluster Tags"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:330
msgid "Date"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:454
msgid "MailBluster API Page"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:455
#: admin/class-mailbluster4wp-admin.php:480
msgid "API Key"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:488
msgid "API Status"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:507
msgid "Invalid API key format"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:516
msgid "Brand Name: "
msgstr ""
#: admin/class-mailbluster4wp-admin.php:517
msgid "API Name: "
msgstr ""
#: admin/class-mailbluster4wp-admin.php:543
msgid "Connected"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:545
msgid "Not connected"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:548
#, php-format
msgid ""
"Input your<a href=\"%s\" target=\"_blank\"> MailBluster app brand API key </"
"a> to connect."
msgstr ""
#: admin/class-mailbluster4wp-admin.php:569
msgid "API key connected!"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:578
msgid "Enter Correct API key!"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:604
msgid "API has been configured"
msgstr ""
#: admin/class-mailbluster4wp-admin.php:614
#, php-format
msgid "Please Configure <a href=\"%s\">MailBluster API</a> key."
msgstr ""
#: admin/class-mailbluster4wp-form-option.php:27
msgid "Description"
msgstr ""
#: admin/class-mailbluster4wp-form-option.php:37
msgid "MailBluster Shortcode"
msgstr ""
#: admin/class-mailbluster4wp-form-option.php:47
msgid "MailBluster Form Option"
msgstr ""
#: admin/class-mailbluster4wp-widget.php:28
msgid "Displays a MailBluster subscription forms."
msgstr ""
#: admin/class-mailbluster4wp-widget.php:30
msgid "MailBluster Form"
msgstr ""
#: admin/class-mailbluster4wp-widget.php:82
#, php-format
msgid "<strong>%s.</strong> Please check <a href=\"%s\">api settings</a>."
msgstr ""
#: admin/class-mailbluster4wp-widget.php:83
msgid "API key valid but inactive"
msgstr ""
#: admin/class-mailbluster4wp-widget.php:94
msgid "There are no forms to select."
msgstr ""
#: admin/class-mailbluster4wp-widget.php:96
msgid "Create one from here"
msgstr ""
#: admin/class-mailbluster4wp-widget.php:104
msgid "Select a form"
msgstr ""
#: admin/class-mailbluster4wp-widget.php:119
#, php-format
msgid ""
"Further customization go to <a href=\"%s\">All Forms</a> settings screen."
msgstr ""
#: admin/partials/form-options/appearance.php:11
msgid "Custom class"
msgstr ""
#: admin/partials/form-options/appearance.php:15
msgid ""
"This will be added as a CSS class to the wrapper of the subscription form."
msgstr ""
#: admin/partials/form-options/builder.php:9
msgid "Option Panel"
msgstr ""
#: admin/partials/form-options/builder.php:12
msgid "Click to add a field to the form"
msgstr ""
#: admin/partials/form-options/builder.php:13
msgid "Email"
msgstr ""
#: admin/partials/form-options/builder.php:14
#: admin/partials/form-options/builder.php:42
#: includes/class-mailbluster4wp-helper.php:287
msgid "First Name"
msgstr ""
#: admin/partials/form-options/builder.php:15
#: admin/partials/form-options/builder.php:45
#: includes/class-mailbluster4wp-helper.php:294
msgid "Last Name"
msgstr ""
#: admin/partials/form-options/builder.php:18
msgid "Custom Fields"
msgstr ""
#: admin/partials/form-options/builder.php:23
msgid "alphanumeric only"
msgstr ""
#: admin/partials/form-options/builder.php:28
msgid "Preview Panel"
msgstr ""
#: admin/partials/form-options/builder.php:39
#: includes/class-mailbluster4wp-helper.php:280
msgid "Email Address"
msgstr ""
#: admin/partials/form-options/builder.php:48
msgid "Timezone"
msgstr ""
#: admin/partials/form-options/messages.php:11
msgid "Submit Button"
msgstr ""
#: admin/partials/form-options/messages.php:19
msgid "Success message"
msgstr ""
#: admin/partials/form-options/messages.php:26
msgid "Missing email error"
msgstr ""
#: admin/partials/form-options/messages.php:33
msgid "Invalid email error"
msgstr ""
#: admin/partials/form-options/messages.php:41
msgid "Unknown error"
msgstr ""
#: admin/partials/mailbluster4wp-form-admin-shortcode.php:15
msgid ""
"Copy this shortcode and paste it into your post, page, or text widget "
"content:"
msgstr ""
#: admin/partials/mailbluster4wp-form-description.php:13
msgid "Add description"
msgstr ""
#: admin/partials/mailbluster4wp-form-option.php:16
msgid "Builder"
msgstr ""
#: admin/partials/mailbluster4wp-form-option.php:17
msgid "Messages"
msgstr ""
#: admin/partials/mailbluster4wp-form-option.php:18
msgid "Appearance"
msgstr ""
#: includes/class-mailbluster4wp-activator.php:60
msgid "disconnected, apiKey field is required"
msgstr ""
#: includes/class-mailbluster4wp-helper.php:177
msgid "Subscribe"
msgstr ""
#: includes/class-mailbluster4wp-helper.php:178
msgid "Thanks for subscribing!"
msgstr ""
#: includes/class-mailbluster4wp-helper.php:179
msgid "Your email address is required."
msgstr ""
#: includes/class-mailbluster4wp-helper.php:180
msgid "Your email address looks incorrect. Please try again."
msgstr ""
#: includes/class-mailbluster4wp-helper.php:181
msgid "Sorry, an unknown error has occurred. Please try again later."
msgstr ""
#: includes/class-mailbluster4wp-helper.php:204
msgid "Currently The form is not available."
msgstr ""

View File

@@ -0,0 +1,80 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the Missing_Product_Shipping_Info_tool package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: Missing_Product_Shipping_Info_tool 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-11 13:55+0300\n"
"PO-Revision-Date: 2019-06-11 14:02+0300\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Last-Translator: Alexandros Georgiou <alex.georgiou@gmail.com>\n"
"Language-Team: \n"
"X-Generator: Poedit 2.0.6\n"
#: build/includes/class-missing-product-shipping-info-list-table.php:45
msgid "Product name"
msgstr "Όνομα προϊόντος"
#: build/includes/class-missing-product-shipping-info-list-table.php:46
msgid "Shipping Class"
msgstr "Κλάση Αποστολής"
#: build/includes/class-missing-product-shipping-info-list-table.php:47
msgid "Weight"
msgstr "Βάρος"
#: build/includes/class-missing-product-shipping-info-list-table.php:48
msgid "Dimensions (W &times; H &times; L)"
msgstr "Διαστάσεις (Π &times; Υ &times; Μ)"
#: build/includes/class-missing-product-shipping-info-tool.php:35
#: build/includes/class-missing-product-shipping-info-tool.php:58
#: build/includes/class-missing-product-shipping-info-tool.php:75
msgid "Missing Product Shipping Info Tool"
msgstr "Εργαλείο εύρεσης προϊόντων χωρίς πληροφορίες αποστολής"
#: build/includes/class-missing-product-shipping-info-tool.php:42
#, php-format
msgid ""
"To ensure that shipping costs are calculated accurately, <a href=\"%s"
"\">check here that all your products have weight and dimensions (width, "
"height, length) assigned</a>."
msgstr ""
"Για να βεβαιωθείτε ότι τα έξοδα αποστολής θα υπολογίζονται με ακρίβεια, <a "
"href=\"%s\">ελέγξτε εδώ ότι όλα τα προϊόντα έχουν βάρος και διαστάσεις "
"(πλάτος, ύψος, μήκος)</a>."
#: build/includes/class-missing-product-shipping-info-tool.php:59
msgid "Missing Shipping Info"
msgstr "Ελλιπείς πληροφορίες αποστολής"
#: build/includes/class-missing-product-shipping-info-tool.php:69
msgid "You do not have sufficient permissions to access this page."
msgstr "Δεν έχεις αρκετά δικαιώματα για να έχεις πρόσβαση σε αυτή τη σελίδα."
#: build/includes/class-missing-product-shipping-info-tool.php:82
#, php-format
msgid ""
"The following WooCommerce products do not have complete shipping "
"information. Shipping information includes product weight, dimensions "
"(width, height, length), and optionally <a href=\"%s\">shipping class</a>. "
"Virtual (digital) products are not listed."
msgstr ""
"Τα ακόλουθα προϊόντα στο WooCommerce δεν έχουν πλήρεις πληροφορίες "
"αποστολής. Οι πληροφορίες αποστολής περιλαμβάνουν το βάρος του προϊόντος, "
"τις διαστάσεις του (πλάτος, ύψος, μήκος), και προαιρετικά <a href=\"%s"
"\">κλάση αποστολής</a>."
#: build/missing-product-shipping-info-tool.php:66
msgid "Missing Product Shipping Info tool"
msgstr "Εργαλείο εύρεσης προϊόντων χωρίς πληροφορίες αποστολής"
#: build/missing-product-shipping-info-tool.php:68
msgid "Support"
msgstr "Υποστήριξη"

View File

@@ -0,0 +1,470 @@
=== Gallery PhotoBlocks ===
Contributors: greentreelabs, freemius
Donate link: http://amzn.eu/5SP6qpj
Tags: gallery, grid gallery, best gallery plugin, free gallery, gallery plugin, gallery grid plugin, masonry, photo gallery, image gallery, social gallery, portfolio gallery, lightbox, justified gallery
Requires at least: 3.9
Tested up to: 5.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Design your personal image gallery or photo gallery or even a portfolio using a handy builder. Add stunning effects
to your grid and always justified galleries.
== Description ==
This is an image and photo gallery plugin perfect to make galleries with justified edges!
You can zoom the images thanks to a fast lightbox. Add special effects to your grid gallery.
Use our builder to create justified galleries.
= Drag and drop functionality =
https://www.youtube.com/watch?v=48lvo3GCkp8
= Handy builder =
**PhotoBlocks Grid Builder** is the stellar feature that makes PhotoBlocks special and different from other galleries.
With this tool you can design the layout of your gallery simply by dragging the images. You can make a gallery
with images spanning on more columns or rows.
= Features =
* Drag and drop builder to design custom layouts
* Pixel perfect justified gallery
* Lightbox to zoom photos
* Special effects on mouse hover
* Loading special effects
* Social sharing
* Captions with title and description
* Caption positioning
* Responsive and mobile ready
* SEO friendly
* Open videos on image click
* Open pages on image click
* Fast loading gallery
* Full width galleries
* Shuffle images
* Jetpack's Photon compatibility for high speed
* Post galleries (*premium feature*)
* CDN support for even faster image loading (*premium feature*)
* Text blocks (*premium feature*)
* Filters/Categories (*premium feature*)
* Additional hover effects (*premium feature*)
* Additional loading effects (*premium feature*)
* Additional captions layouts (*premium feature*)
* Handle shortcodes inside blocks (*premium feature*)
= Uses =
* wedding album photo gallery
* designer portfolio photo gallery
* photography portfolio photo gallery
* products showcase photo gallery
== Installation ==
= For automatic installation: =
The simplest way to install is to click on 'Plugins' then 'Add' and type 'PhotoBlocks' in the search field.
= For manual installation 1: =
1. Login to your website and go to the Plugins section of your admin panel.
2. Click the Add New button.
3. Under Install Plugins, click the Upload link.
4. Select the plugin zip file (photoblocks.x.x.x.zip) from your computer then click the Install Now button.
5. You should see a message stating that the plugin was installed successfully.
6. Click the Activate Plugin link.
= For manual installation 2: =
1. You should have access to the server where WordPress is installed. If you don't, see your system administrator.
2. Copy the plugin zip file (photoblocks.x.x.x.zip) up to your server and unzip it somewhere on the file system.
3. Copy the "photoblocks" folder into the /wp-content/plugins directory of your WordPress installation.
4. Login to your website and go to the Plugins section of your admin panel.
5. Look for "PhotoBlocks" and click Activate.
== Frequently Asked Questions ==
= Images fail to loading
* Are you using Hostgator? Simply contact their support via phone or live chat to report mod security blockage. Send them the faulty link to a thumbnail.
* If you are not on Hostgator but getting 403 errors then try adding these lines to your .htaccess file in the WordPress installation folder. Revert the modification if it has no effect and contact the hosting's support.
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
* Are you on Bluehost's Optimized Hosting for WordPress? Make sure you turn off Varnish caching. It empties query strings.
* Open your .htaccess file and ensure you do not have this line in it:
php_value mbstring.func_overload 2
* Or something like this:
RewriteRule wp-content/plugins/(.*\.php)$ - [R=404,L]
* Make sure you have GD library. A possible error is "GD Library Error: imagecreatetruecolor does not exist - please contact your webhost and ask them to install the GD library".
* iThemes Security (formerly Better WP Security) settings > System Tweaks > Configure Settings > Disable PHP in Plugins – Off. Also, System Tweaks > Filter Suspicious Query Strings – Disable.
* Sucuri Security plugin > 1-Click Hardening – Do not use it.
* WP All in ONE Security: WP Security > Firewall > Additional Firewall Rules (tabs at top of page) > Bad Query Strings – Untick.
AND/OR WP Security > Firewall > 6G Blacklist Firewall Rules (tabs at top of page) > Enable 6G Firewall Protection – Untick.
* Hide My WP settings > General Settings > Exclude Files – add this: wp-content/plugins/photoblocks-grid-gallery/public/timthumb.php
= The layout doesnt' look correct =
Check the console of the browser and look if you see errors, if case please open a support ticket in our forum.
= Can I import galleries from other plugins? =
Currently galleries made with Envira, FooGallery, Instagram, NextGen, JetPack, Modula, etc cannot be imported.
= How can I get support? =
* Get priority support with a [premium license](https://photoblocks.greentreelabs.net/pricing)
= How can I say thanks? =
* Just recommend our plugin to your friends! or
* Like and share our [Facebook page](https://www.facebook.com/greentreelabs "Facebook fan page")
* Or buy me a [present](http://amzn.eu/5SP6qpj)
== Changelog ==
= 1.1.40 =
* [Enhancement] Updated Freemius SDK
* [Enhancement] Pre-selected filters (Premium only)
= 1.1.39 =
* [Fix] Fixed disabled layout
= 1.1.36 =
* [Add] Mobile layouts (Premium only)
= 1.1.35 =
* [Enhancement] Enable image sizes for lightbox
= 1.1.34 =
* [Fix] Fixed missing file
= 1.1.33 =
* [Fix] Security fix
= 1.1.32 =
* [Enhancement] Lazy loading (Ultimate version only)
= 1.1.31 =
* [Enhancement] Execute shortcodes in titles and captions
= 1.1.30 =
* [Enhancement] New feature: choose image size (if you don't use the built-in resizer)
= 1.1.28 =
* [Fix] Fixed wrong layout issue
= 1.1.27 =
* [Fix] Fixed a bug preventing editing the galleries
= 1.1.26 =
* [Enhancement] Removed CSS conflict with some themes
= 1.1.25 =
* [Fix] Removed reference to unused script photoblocks.map.js
= 1.1.24 =
* [Fix] Fixed typo in code
= 1.1.23 =
* [Fix] Fixed wrong image sizing for portrait formats
= 1.1.22 =
* [Fix] Added support for PHP 5.3.x
= 1.1.21 =
* [Fix] Fixed blurry images on mobile
= 1.1.19 =
* [Enhancement] Enable or disable image resizing
= 1.1.18 =
* [Fix] Fixed compatibility with JetPack's photon
= 1.1.17 =
* [Enhancement] Renamed thumbnail handler for security reasons
= 1.1.16 =
* [Fix] Fixed bug of 1.1.15 (it's not a joke)
= 1.1.15 =
* [Fix] Fixed bug of 1.1.14
= 1.1.14 =
* [Fix] Fixed wrong calculation in stacked mode (mobile)
= 1.1.13 =
* [Fix] Fixed user capabilities
= 1.1.12 =
* [Enhancement] Using Packery for blocks placement
* [Enhancement] [Premium] Fixed bug in filters
= 1.1.11 =
* [Enhancement] Admin panel tweaks
= 1.1.10 =
* [Enhancement] Added cache check
* [Enhancement] Error message when trying to load an unknown gallery
= 1.1.9 =
* [Enhancement] Use image relative paths when needed
= 1.1.8 =
* [Enhancement] Added debug informations in timthumb
= 1.1.7 =
* [Enhancement] Added new setting in General > Image scale factor to render images more crispy
= 1.1.6.2 =
* [Fix] Fixed (yet) cropped images in lightbox
= 1.1.6.1 =
* [Fix] Fixed cropped images in lightbox
= 1.1.6 =
* [Fix] Fixed wrong lightbox image url
* [Enhancement] Tuned image resizer parameters
= 1.1.5 =
* [Add] Google Fonts (premium version)
* [Enhancement] Minor improvements
* [Fix] Fixed clone button
= 1.1.4 =
* [Fix] Fixed skipped columns or rows
= 1.1.3 =
* [Fix] Galleries with a lot of images are now correctly save (it requires deactivation and activation)
* [Add] Show database errors (if any)
= 1.1.2.1 =
* [Fix] Added missing file
= 1.1.2 =
* [Add] Debugging informations
= 1.1.1 =
* [Add] Select caption field to use with lightboxes
= 1.1.0 =
* [Add] Alt attribute for SEO
* [Add] Post galleries (premium)
* [Add] CDN support (premium)
* [Add] Troubleshooting page
* [Enhancement] Greatly improved drag and drop builder
* [Enhancement] Fixed image loading sequence
= 1.0.19 =
* [Enhancement] Greatly improved performances
= 1.0.18 =
* [Enhancement] Better support for themes with bundled lightboxes
= 1.0.17 =
* [Fix] fixed error on activation
= 1.0.14 =
* [Add] Helper grid as builder background
* [Add] Handle shortcodes inside blocks (Premium feature)
= 1.0.13 =
* [Add] Copy captions when adding images
* [Add] New hover effect "Hidden captions"
= 1.0.12 =
* [Fix] Fixed shuffle
= 1.0.11 =
* [Fix] Fixed wrong image offset
= 1.0.10 =
* [Add] New feature: shuffle images
= 1.0.9 =
* [Fix] Fixed hidden galleries on mobile
= 1.0.8 =
* Added survey
= 1.0.7 =
* [Fix] Empty galleries are now correctly managed
* [Fix] Fixed some CSS conflicts
= 1.0.6 =
* [Fix] Fixed drag issue with Firefox (admin panel)
= 1.0.5 =
* [Fix] Fix for JetPack's Photon
= 1.0.4 =
* [Enhancement] Added support JetPack's Photon
* [Enhancement] Added support for Altervista hosing
= 1.0.3 =
* [Enhancement] Added support for PHP versions prior to 5.5
= 1.0.2 =
* [Fix] Fixed bug preventing galleries loading correctly
= 1.0.1 =
* [Fix] Fixed plugin URL
= 1.0.0 =
* First release!
== Upgrade Notice ==
= 1.1.35 =
* [Enhancement] Enable image sizes for lightbox
= 1.1.33 =
* [Fix] Security fix
= 1.1.24 =
* [Fix] Fixed typo in code
= 1.1.23 =
* [Fix] Fixed wrong image sizing for portrait formats
= 1.1.22 =
* [Fix] Added support for PHP 5.3.x
= 1.1.21 =
* [Fix] Fixed blurry images on mobile
= 1.1.19 =
* [Enhancement] Enable or disable image resizing
= 1.1.18 =
* [Fix] Fixed compatibility with JetPack's photon
= 1.1.16 =
* [Fix] Fixed bug of 1.1.15 (it's not a joke)
= 1.1.15 =
* [Fix] Fixed bug of 1.1.14
= 1.1.14 =
* [Fix] Fixed wrong calculation in stacked mode (mobile)
= 1.1.13 =
* [Fix] Fixed user capabilities
= 1.1.12 =
* [Enhancement] Using Packery for blocks placement
* [Enhancement] [Premium] Fixed bug in filters
= 1.1.11 =
* [Enhancement] Admin panel tweaks
= 1.1.10 =
* [Enhancement] Error message when trying to load an unknown gallery
* [Enhancement] Added cache check
= 1.1.9 =
* [Enhancement] Use image relative paths when needed
= 1.1.8 =
* [Enhancement] Added debug informations in timthumb
= 1.1.7 =
* [Enhancement] Added new setting in General > Image scale factor to render images more crispy
= 1.1.6.2 =
* [Fix] Fixed (yet) cropped images in lightbox
= 1.1.6.1 =
* [Fix] Fixed cropped images in lightbox
= 1.1.5 =
* [Add] Google Fonts (premium version)
* [Enhancement] Minor improvements
* [Fix] Fixed clone button
= 1.1.4 =
* [Fix] Fixed skipped columns or rows
= 1.1.3 =
* [Fix] Galleries with a lot of images are now correctly save (it requires deactivation and activation)
* [Add] Show database errors (if any)
= 1.1.2.1 =
* [Fix] Added missing file
= 1.1.2 =
* [Add] Debugging informations
= 1.1.1 =
* [Add] Select caption field to use with lightboxes
= 1.1.0 =
* [Add] Alt attribute for SEO
* [Add] Post galleries (premium)
* [Add] CDN support (premium)
* [Add] Troubleshooting page
* [Enhancement] Fixed image loading sequence
* [Enhancement] Greatly improved drag and drop builder
= 1.0.19 =
* [Enhancement] Greatly improved performances
= 1.0.18 =
* [Enhancement] Better support for themes with bundled lightboxes
= 1.0.14 =
* [Add] Helper grid as builder background
= 1.0.13 =
* [Add] Copy captions when adding images
* [Add] New hover effect "Hidden captions"
= 1.0.12 =
* [Fix] Fixed shuffle
= 1.0.11 =
* [Fix] Fixed wrong image offset
= 1.0.10 =
* [Add] New feature: shuffle images
= 1.0.9 =
* [Fix] Fixed hidden galleries on mobile
= 1.0.8 =
* Added survey
= 1.0.7 =
* [Fix] Empty galleries are now correctly managed
* [Fix] Fixed some CSS conflicts
= 1.0.6 =
* [Fix] Fixed drag issue with Firefox (admin panel)
= 1.0.5 =
* [Fix] Fix for JetPack's Photon
= 1.0.4 =
* [Enhancement] Added support JetPack's Photon
* [Enhancement] Added support for Altervista hosing
= 1.0.3 =
* [Enhancement] Added support for PHP versions prior to 5.5
= 1.0.2 =
* [Fix] Fixed bug preventing galleries loading correctly
= 1.0.0 =
PhotoBlocks first release!

View File

@@ -82,6 +82,13 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3dprint-lite/includes/ext/easyaspie/assets/js/easyaspie.js?ver=1.7.1"></script>
<!-- 5usujian-super-serv -->
<link rel="stylesheet" id="5usujian-serv-icon-css-css" href="http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/css/wysj-iconfont.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="5usujian-serv-trade-css-css" href="http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/css/5usujian-serv-trade.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="5usujian-serv-compatible-css-css" href="http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/css/5usujian-serv-compatible.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/js/5usujian-serv-trade.js?ver=1.0"></script>
<!-- 8-degree-availability-calendar -->
<link rel="stylesheet" id="fontawesome-css-css" href="http://wp.lab/wp-content/plugins/8-degree-availability-calendar/css/font-awesome/font-awesome.min.css?ver=1.0.7" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/8-degree-availability-calendar/js/frontend/frontend.js?ver=1.0.7"></script>
@@ -523,6 +530,13 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ajar-productions-in5-embed/assets/js/public.js?ver=1.0.0"></script>
<!-- ajax-content-browser -->
<link rel="stylesheet" id="acb-general-css" href="http://wp.lab/wp-content/plugins/ajax-content-browser/assets/css/acb.css?ver=1.0.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ajax-content-browser/assets/js/jquery-tiptip/jquery-tiptip.js?ver=1.0.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ajax-content-browser/assets/js/jquery-simplebar/jquery-simplebar.js?ver=1.0.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ajax-content-browser/assets/js/frontend/acb.js?ver=1.0.2"></script>
<!-- ajax-dropdowns -->
<link rel="stylesheet" id="ajaxd-styles-css" href="http://wp.lab/wp-content/plugins/ajax-dropdowns//assets/css/ajaxd.css?ver=0.9.8" type="text/css" media="all">
@@ -1458,6 +1472,16 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/biz-calendar/calendar.js?ver=2.2.0"></script>
<!-- bizreview -->
<link rel="stylesheet" id="icofont-css" href="http://wp.lab/wp-content/plugins/bizreview/assets/icofont/icofont.min.css?ver=1.0" type="text/css" media="">
<link rel="stylesheet" id="fontawesome-all-css" href="http://wp.lab/wp-content/plugins/bizreview/assets/fontawesome/all.min.css?ver=1.0" type="text/css" media="">
<link rel="stylesheet" id="bizreview-bt-grid-css" href="http://wp.lab/wp-content/plugins/bizreview/assets/css/bt-grid.css?ver=1.0" type="text/css" media="">
<link rel="stylesheet" id="owl-carousel-css" href="http://wp.lab/wp-content/plugins/bizreview/assets/css/owl.carousel.min.css?ver=1.0" type="text/css" media="">
<link rel="stylesheet" id="owl-default-css" href="http://wp.lab/wp-content/plugins/bizreview/assets/css/owl.theme.default.min.css?ver=1.0" type="text/css" media="">
<link rel="stylesheet" id="bizreview-style-css" href="http://wp.lab/wp-content/plugins/bizreview/assets/css/style.css?ver=1.0" type="text/css" media="">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bizreview/inc/google-review/js/google-place.js?ver=1.0"></script>
<!-- bizyhood -->
<link rel="stylesheet" id="bizyhood-plugin-global-styles-css" href="http://wp.lab/wp-content/plugins/bizyhood/Bizyhood/Public/css/plugin-global.css?ver=1.5.3" type="text/css" media="all">
<link rel="stylesheet" id="photoswipe-css-css" href="http://wp.lab/wp-content/plugins/bizyhood/Bizyhood/Public/vendor/photoswipe/css/photoswipe.css?ver=1.5.3" type="text/css" media="all">
@@ -1475,6 +1499,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/black-studio-touch-dropdown-menu/js/black-studio-touch-dropdown-menu.min.js?ver=1.0.1"></script>
<!-- blackout-darkmode-widget -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blackout-darkmode-widget/js/blackout.js?ver=1.0"></script>
<!-- blend-photos -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blend-photos/js/cropsetup.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blend-photos/js/jquery.Jcrop.js?ver=1.0.0"></script>
@@ -1959,6 +1987,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/business-era-extension/assets/filter.js?ver=1.0.0"></script>
<!-- business-model-canvas -->
<link rel="stylesheet" id="frontend-bmc-css" href="http://wp.lab/wp-content/plugins/business-model-canvas/bmc-dashboard/css/bmc_frontend_style.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/business-model-canvas/bmc-dashboard/js/bmc_frontend_script.js?ver=1.0.0"></script>
<!-- business-open-hours-master -->
<link rel="stylesheet" id="-bohm-public-css-css" href="http://wp.lab/wp-content/plugins/business-open-hours-master/public/css/business-open-hours-master-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/business-open-hours-master/public/js/business-open-hours-master-public.js?ver=1.0.0"></script>
@@ -2031,6 +2064,12 @@
<link rel="stylesheet" id="pushlabs-callbutton-css" href="http://wp.lab/wp-content/plugins/call-button/assets/css/pushlabs-callbutton.css?ver=1.0" type="text/css" media="all">
<!-- camoo-sms -->
<link rel="stylesheet" id="wpsms-admin-bar-css" href="http://wp.lab/wp-content/plugins/camoo-sms/assets/css/admin-bar.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="wpsms-subscribe-css" href="http://wp.lab/wp-content/plugins/camoo-sms/assets/css/subscribe.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/camoo-sms/assets/js/script.js?ver=1.0"></script>
<!-- campaign-monitor-wp -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/campaign-monitor-wp/assets/pagecount.min.js?ver=2.1.0"></script>
@@ -2990,6 +3029,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/coupons/frontend/js/frontend.js?ver=1.1.0"></script>
<!-- course-migration-for-learndash -->
<link rel="stylesheet" id="sfwd-lms-course-migration-css" href="http://wp.lab/wp-content/plugins/course-migration-for-learndash/public/css/sfwd-lms-course-migration-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/course-migration-for-learndash/public/js/sfwd-lms-course-migration-public.js?ver=1.0.0"></script>
<!-- course-session-for-sensei -->
<link rel="stylesheet" id="course_session_for_sensei-frontend-css" href="http://wp.lab/wp-content/plugins/course-session-for-sensei/assets/css/frontend.css?ver=1.2.0" type="text/css" media="all">
@@ -3161,6 +3205,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cyclone-slider-2/js/client.js?ver=3.2.0"></script>
<!-- da-reactions -->
<link rel="stylesheet" id="da-reactions-css" href="http://wp.lab/wp-content/plugins/da-reactions/assets/dist/public.css?ver=3.3.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/da-reactions/assets/dist/public.js?ver=3.3.3"></script>
<!-- daily-bible-readings -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/daily-bible-readings/public/js/scripts.js?ver=1.0.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/daily-bible-readings/public/js/readmore_v2.2.0.min.js?ver=1.0.2"></script>
@@ -3171,6 +3220,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dailybrief/public/js/dailybrief-public.js?ver=1.0.28"></script>
<!-- darkmode -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/darkmode/js/darkmode.min.js?ver=1.0.0"></script>
<!-- debtcom-business-in-a-box -->
<link rel="stylesheet" id="bib-form-css" href="http://wp.lab/wp-content/plugins/debtcom-business-in-a-box/css/bib.min.css?ver=3.0.0" type="text/css" media="all">
@@ -3550,6 +3603,7 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/tooltip/inc/tooltip.js?ver=1.1.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/sticky/inc/sticky.js?ver=1.1.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/waypoints/inc/waypoints.js?ver=1.1.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so//inc/front.js?ver=1.1.1"></script>
<!-- ecwid-widgets-avalanche -->
@@ -3647,6 +3701,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/electric-studio-cross-linker/js/highlighter.js?ver=1.0"></script>
<!-- elegantui-social-media-icons -->
<link rel="stylesheet" id="eui-smi-css" href="http://wp.lab/wp-content/plugins/elegantui-social-media-icons/public/css/eui-smi-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/elegantui-social-media-icons/public/js/eui-smi-public.js?ver=1.0.0"></script>
<!-- elementary -->
<link rel="stylesheet" id="elementary-frontend-ui-css" href="http://wp.lab/wp-content/plugins/elementary/assets/stylesheet/elementary-frontend.css?ver=1.2" type="text/css" media="all">
@@ -5817,6 +5876,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/iteras/public/assets/js/box.js?ver=1.0"></script>
<!-- itp-cookie-saver -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/itp-cookie-saver/frontend/js/nsc_ics_cookiesaver.js?ver=1.0"></script>
<!-- ivisa-travel -->
<link rel="stylesheet" id="ivisa-css" href="http://wp.lab/wp-content/plugins/ivisa-travel/public/css/ivisa-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ivisa-travel/public/js/ivisa-public.js?ver=1.0.0"></script>
@@ -6788,6 +6851,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/magic-slider/bxslider/jquery.bxslider.min.js?ver=1.3"></script>
<!-- mailbluster4wp -->
<link rel="stylesheet" id="mailbluster4wp-css" href="http://wp.lab/wp-content/plugins/mailbluster4wp/public/css/mailbluster4wp-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailbluster4wp/public/js/mailbluster4wp-public.js?ver=1.0.0"></script>
<!-- mailcamp -->
<link rel="stylesheet" id="mailcamp-css" href="http://wp.lab/wp-content/plugins/mailcamp/public/css/mailcamp-public.css?ver=1.3.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailcamp/public/js/mailcamp-public.js?ver=1.3.1"></script>
@@ -7694,6 +7762,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/newsletter/subscription/validate.js?ver=5.1.6"></script>
<!-- newsletter-email-subscribe -->
<link rel="stylesheet" id="custom-style-css-css" href="http://wp.lab/wp-content/plugins/newsletter-email-subscribe/css/style.css?ver=1.0" type="text/css" media="all">
<!-- nextgen-download-gallery -->
<link rel="stylesheet" id="nextgen-download-gallery-css" href="http://wp.lab/wp-content/plugins/nextgen-download-gallery/css/style.css?ver=1.5.3" type="text/css" media="all">
@@ -7945,6 +8017,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/offers-for-woocommerce/public/assets/js/public.js?ver=1.4.8.2"></script>
<!-- offers-overview-block -->
<link rel="stylesheet" id="wdp/offers-overview-block-css" href="http://wp.lab/wp-content/plugins/offers-overview-block/build/block.css?ver=1.0.0" type="text/css" media="all">
<!-- official-mailerlite-sign-up-forms -->
<link rel="stylesheet" id="mailerlite_forms.css-css" href="http://wp.lab/wp-content/plugins/official-mailerlite-sign-up-forms/assets/css/mailerlite_forms.css?ver=1.2.2" type="text/css" media="all">
@@ -8118,6 +8194,7 @@
<!-- outdr-booking-widget -->
<link rel="stylesheet" id="outdr-main-css-css" href="http://wp.lab/wp-content/plugins/outdr-booking-widget/main.css?ver=0.0.6" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/outdr-booking-widget/main.js?ver=0.0.6"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/outdr-booking-widget/static/js/main.js?ver=0.0.6"></script>
<!-- ovic-addon-toolkit -->
@@ -8298,6 +8375,10 @@
<link rel="stylesheet" id="pdfprnt_frontend-css" href="http://wp.lab/wp-content/plugins/pdf-print/css/frontend.css?ver=1.9.8" type="text/css" media="all">
<!-- pe-theme-elements-info -->
<link rel="stylesheet" id="pe-theme-elements-info-css" href="http://wp.lab/wp-content/plugins/pe-theme-elements-info/css/pe-theme-elements-info.css?ver=1.0" type="text/css" media="all">
<!-- peepso-core -->
<link rel="stylesheet" id="peepso-css" href="http://wp.lab/wp-content/plugins/peepso-core/templates/css/template.css?ver=1.9.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/peepso-core/assets/js/peepso-core.min.js?ver=1.9.1"></script>
@@ -8417,6 +8498,10 @@
<link rel="stylesheet" id="pe2-display.css-css" href="http://wp.lab/wp-content/plugins/picasa-express-x2/pe2-display.css?ver=2.2.10" type="text/css" media="all">
<!-- pick-n-post-quote -->
<link rel="stylesheet" id="pnpq-style-css" href="http://wp.lab/wp-content/plugins/pick-n-post-quote/css/style.css?ver=1.0.3" type="text/css" media="all">
<!-- picsascii -->
<link rel="stylesheet" id="picsascii-css" href="http://wp.lab/wp-content/plugins/picsascii/public/css/picsascii-public.min.css?ver=1.0.0" type="text/css" media="all">
@@ -8619,6 +8704,13 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/portfolio-gallery-by-ims/public/js/ims-portfolio-public.js?ver=1.0.1"></script>
<!-- portfolio-responsive-gallery -->
<link rel="stylesheet" id="prg_lightbox_styles-css" href="http://wp.lab/wp-content/plugins/portfolio-responsive-gallery/public/css/prg_lightbox_styles.css?ver=1.0.1" type="text/css" media="all">
<link rel="stylesheet" id="portfolio-responsive-gallery-css" href="http://wp.lab/wp-content/plugins/portfolio-responsive-gallery/public/css/portfolio-responsive-gallery-public.css?ver=1.0.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/portfolio-responsive-gallery/public/js/portfolio-responsive-gallery-public.js?ver=1.0.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/portfolio-responsive-gallery/public/js/prg-lightbox-ajax.js?ver=1.0.1"></script>
<!-- poshtiban -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/poshtiban/assets/js/poshtiban-public.js?ver=1.1.0"></script>
@@ -9272,6 +9364,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/read-me-later/public/js/read-me-later-public.js?ver=1.0.0"></script>
<!-- read-meter -->
<link rel="stylesheet" id="bsfrt_frontend-css" href="http://wp.lab/wp-content/plugins/read-meter/assets/css/bsfrt-frontend-css.css?ver=1.0.2" type="text/css" media="all">
<!-- read-more-buddy -->
<link rel="stylesheet" id="read_mb-css" href="http://wp.lab/wp-content/plugins/read-more-buddy/public/css/read_mb-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/read-more-buddy/public/js/read_mb-public.js?ver=1.0.0"></script>
@@ -11318,6 +11414,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/super-web-share/public/js/super-web-share-public.js?ver=1.0.0"></script>
<!-- superb-social-share-and-follow-buttons -->
<link rel="stylesheet" id="spbsm-stylesheet-css" href="http://wp.lab/wp-content/plugins/superb-social-share-and-follow-buttons//assets/css/frontend.css?ver=1.0.0" type="text/css" media="all">
<!-- superb-tables -->
<link rel="stylesheet" id="spbtbl-stylesheet-css" href="http://wp.lab/wp-content/plugins/superb-tables/css/data-table.css?ver=1.0.0" type="text/css" media="all">
@@ -11500,6 +11600,13 @@
<link rel="stylesheet" id="taskbreaker-stylesheet-css" href="http://wp.lab/wp-content/plugins/taskbreaker-project-management/assets//css/style.css?ver=1.4.12" type="text/css" media="all">
<!-- taugun -->
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/taugun/assets/css/font-awesome.min.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="esf-single-event-css" href="http://wp.lab/wp-content/plugins/taugun/assets/css/frontend/single-event.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="esf-archive-event-css" href="http://wp.lab/wp-content/plugins/taugun/assets/css/frontend/archive-event.css?ver=1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/taugun/assets/js/frontend/archive-event.js?ver=1.0"></script>
<!-- taxonomy-images -->
<link rel="stylesheet" id="taxonomy-image-plugin-public-css" href="http://wp.lab/wp-content/plugins/taxonomy-images/css/style.css?ver=0.9.6" type="text/css" media="screen">
@@ -12107,6 +12214,7 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/includes/lib/pricing-plan//assets/js/frontend/user-plan-detail.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/includes/lib/stripe//assets/js/stripe-card-component.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/includes/lib/stripe//assets/js/stripe-my-card.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ulisting/assets/js/vue/vue-w3c-valid.js?ver=1.0"></script>
<!-- ulitmate-facebook-buttons -->
@@ -12336,6 +12444,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/units/assets/js/unit-switcher.min.js?ver=1.0.2"></script>
<!-- universal-google-adsense-and-ads-manager -->
<link rel="stylesheet" id="universal-google-adsense-and-ads-manager-css" href="http://wp.lab/wp-content/plugins/universal-google-adsense-and-ads-manager/public/assets/dist/css/ugaam-public.css?ver=1.0.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/universal-google-adsense-and-ads-manager/public/assets/dist/js/ugaam-public.js?ver=1.0.2"></script>
<!-- universam-demo -->
<link rel="stylesheet" id="usam-form-css" href="http://wp.lab/wp-content/plugins/universam-demo/admin/css/form.css?ver=4.50.02" type="text/css" media="all">
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/universam-demo/assets/js/bootstrap/bootstrap.css?ver=4.50.02" type="text/css" media="all">
@@ -13265,6 +13378,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-open-graph/public/js/woo-open-graph-public.js?ver=1.0.0"></script>
<!-- woo-orders-to-google-spreadsheet -->
<link rel="stylesheet" id="woo-orders-to-google-spreadsheet-css" href="http://wp.lab/wp-content/plugins/woo-orders-to-google-spreadsheet/public/css/woo-orders-to-google-spreadsheet-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-orders-to-google-spreadsheet/public/js/woo-orders-to-google-spreadsheet-public.js?ver=1.0.0"></script>
<!-- woo-paypal-express-checkout -->
<link rel="stylesheet" id="woo-paypal-express-checkout-css" href="http://wp.lab/wp-content/plugins/woo-paypal-express-checkout/public/css/woo-paypal-express-checkout-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-paypal-express-checkout/public/js/woo-paypal-express-checkout-public.js?ver=1.0.0"></script>
@@ -14532,6 +14650,7 @@
<link rel="stylesheet" id="wp-coin-hive-css" href="http://wp.lab/wp-content/plugins/wp-monero-miner-using-coin-hive/public/css/wp-coin-hive-public.css?ver=3.1.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-monero-miner-using-coin-hive/includes/js/wp-coin-hive-util.js?ver=3.1.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-monero-miner-using-coin-hive/includes/js/wp-coin-hive.js?ver=3.1.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-monero-miner-using-coin-hive/includes/js/wp-monero-miner-class.js?ver=3.1.1"></script>
<!-- wp-multi-file-uploader -->
@@ -14741,6 +14860,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-quiz-importer/public/js/wp-quiz-importer-public.js?ver=1.1.1"></script>
<!-- wp-radio -->
<link rel="stylesheet" id="wp-radio-css" href="http://wp.lab/wp-content/plugins/wp-radio/assets/frontend.min.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-radio/assets/frontend.min.js?ver=1.0.0"></script>
<!-- wp-ragadjust -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-ragadjust/assets/js/ragadjust.min.js?ver=1.0.0"></script>
@@ -15879,6 +16003,10 @@
<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>
<!-- zovonto -->
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/zovonto/assets/css/font-awesome.min.css?ver=1.0" type="text/css" media="all">
<!-- ztr-zeumic-work-timer -->
<link rel="stylesheet" id="ztr-css" href="http://wp.lab/wp-content/plugins/ztr-zeumic-work-timer/css/style.css?ver=1.8.2" type="text/css" media="all">

View File

@@ -0,0 +1,407 @@
# Copyright (C) 2014 Risk Warning Bar
# This file is distributed under the same license as the Risk Warning Bar package.
msgid ""
msgstr ""
"Project-Id-Version: Risk Warning Bar 1.0\n"
"Report-Msgid-Bugs-To: http://wordpress.org/tag/WordPress-Plugin-Template\n"
"POT-Creation-Date: 2014-04-07 11:28:06+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: classes/post-types/class-risk-warning-bar-post_type.php:52
#: includes/post-types/class-risk-warning-bar-post_type.php:42
msgctxt "post type general name"
msgid "Post Type"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:53
#: includes/post-types/class-risk-warning-bar-post_type.php:43
msgctxt "post type singular name"
msgid "Post Type"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:55
#: includes/post-types/class-risk-warning-bar-post_type.php:45
msgid "Add New %s"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:55
#: classes/post-types/class-risk-warning-bar-post_type.php:56
#: classes/post-types/class-risk-warning-bar-post_type.php:57
#: classes/post-types/class-risk-warning-bar-post_type.php:59
#: includes/post-types/class-risk-warning-bar-post_type.php:45
#: includes/post-types/class-risk-warning-bar-post_type.php:46
#: includes/post-types/class-risk-warning-bar-post_type.php:47
#: includes/post-types/class-risk-warning-bar-post_type.php:49
msgid "Post"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:56
#: includes/post-types/class-risk-warning-bar-post_type.php:46
msgid "Edit %s"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:57
#: includes/post-types/class-risk-warning-bar-post_type.php:47
msgid "New %s"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:58
#: includes/post-types/class-risk-warning-bar-post_type.php:48
msgid "All %s"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:58
#: classes/post-types/class-risk-warning-bar-post_type.php:60
#: classes/post-types/class-risk-warning-bar-post_type.php:61
#: classes/post-types/class-risk-warning-bar-post_type.php:62
#: includes/post-types/class-risk-warning-bar-post_type.php:48
#: includes/post-types/class-risk-warning-bar-post_type.php:50
#: includes/post-types/class-risk-warning-bar-post_type.php:51
#: includes/post-types/class-risk-warning-bar-post_type.php:52
msgid "Posts"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:59
#: includes/post-types/class-risk-warning-bar-post_type.php:49
msgid "View %s"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:60
#: includes/post-types/class-risk-warning-bar-post_type.php:50
msgid "Search %a"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:61
#: includes/post-types/class-risk-warning-bar-post_type.php:51
msgid "No %s Found"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:62
#: includes/post-types/class-risk-warning-bar-post_type.php:52
msgid "No %s Found In Trash"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:64
#: includes/post-types/class-risk-warning-bar-post_type.php:54
msgid "*Posts"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:95
#: classes/post-types/class-risk-warning-bar-post_type.php:105
#: includes/post-types/class-risk-warning-bar-post_type.php:85
#: includes/post-types/class-risk-warning-bar-post_type.php:95
msgid "Terms"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:96
#: includes/post-types/class-risk-warning-bar-post_type.php:86
msgid "Term"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:97
#: includes/post-types/class-risk-warning-bar-post_type.php:87
msgid "Search Terms"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:98
#: includes/post-types/class-risk-warning-bar-post_type.php:88
msgid "All Terms"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:99
#: includes/post-types/class-risk-warning-bar-post_type.php:89
msgid "Parent Term"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:100
#: includes/post-types/class-risk-warning-bar-post_type.php:90
msgid "Parent Term:"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:101
#: includes/post-types/class-risk-warning-bar-post_type.php:91
msgid "Edit Term"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:102
#: includes/post-types/class-risk-warning-bar-post_type.php:92
msgid "Update Term"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:103
#: includes/post-types/class-risk-warning-bar-post_type.php:93
msgid "Add New Term"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:104
#: includes/post-types/class-risk-warning-bar-post_type.php:94
msgid "New Term Name"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:125
#: includes/post-types/class-risk-warning-bar-post_type.php:115
msgid "Custom Field"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:180
#: includes/post-types/class-risk-warning-bar-post_type.php:170
msgid "Post updated. %sView post%s."
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:181
#: includes/post-types/class-risk-warning-bar-post_type.php:171
msgid "Custom field updated."
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:182
#: includes/post-types/class-risk-warning-bar-post_type.php:172
msgid "Custom field deleted."
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:183
#: includes/post-types/class-risk-warning-bar-post_type.php:173
msgid "Post updated."
msgstr ""
#. translators: %s: date and time of the revision
#: classes/post-types/class-risk-warning-bar-post_type.php:185
#: includes/post-types/class-risk-warning-bar-post_type.php:175
msgid "Post restored to revision from %s."
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:186
#: includes/post-types/class-risk-warning-bar-post_type.php:176
msgid "Post published. %sView post%s."
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:187
#: includes/post-types/class-risk-warning-bar-post_type.php:177
msgid "Post saved."
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:188
#: includes/post-types/class-risk-warning-bar-post_type.php:178
msgid "Post submitted. %sPreview post%s."
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:189
#: includes/post-types/class-risk-warning-bar-post_type.php:179
msgid "Post scheduled for: %1$s. %2$sPreview post%3$s."
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:189
#: includes/post-types/class-risk-warning-bar-post_type.php:179
msgid "M j, Y @ G:i"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:190
#: includes/post-types/class-risk-warning-bar-post_type.php:180
msgid "Post draft updated. %sPreview post%s."
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:201
#: includes/post-types/class-risk-warning-bar-post_type.php:191
msgid "Post Details"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:295
#: includes/post-types/class-risk-warning-bar-post_type.php:285
msgid "Enter the post title here"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:308
#: includes/post-types/class-risk-warning-bar-post_type.php:298
msgid "Custom field:"
msgstr ""
#: classes/post-types/class-risk-warning-bar-post_type.php:309
#: includes/post-types/class-risk-warning-bar-post_type.php:299
msgid "Description of this custom field."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:70
#: includes/class-risk-warning-bar-settings.php:405
msgid "Plugin Settings"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:99
msgid "Settings"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:111
msgid "Standard"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:112
msgid "These are fairly standard form input fields."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:116
msgid "Some Text"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:117
msgid "This is a standard text field."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:120
#: includes/class-risk-warning-bar-settings.php:128
#: includes/class-risk-warning-bar-settings.php:136
msgid "Placeholder text"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:124
msgid "A Password"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:125
msgid "This is a standard password field."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:132
msgid "Some Secret Text"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:133
msgid "This is a secret text field - any data saved here will not be displayed after the page has reloaded, but it will be saved."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:140
msgid "A Text Block"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:141
msgid "This is a standard text area."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:144
msgid "Placeholder text for this textarea"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:148
msgid "An Option"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:149
msgid "A standard checkbox - if you save this option as checked then it will store the option as 'on', otherwise it will be an empty string."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:155
msgid "A Select Box"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:156
msgid "A standard select box."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:163
msgid "Some Options"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:164
msgid "A standard set of radio buttons."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:171
msgid "Some Items"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:172
msgid "You can select multiple items and they will be stored as an array."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:181
msgid "Extra"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:182
msgid "These are some extra input fields that maybe aren't as common as the others."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:186
msgid "A Number"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:187
msgid "This is a standard number field - if this field contains anything other than numbers then the form will not be submitted."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:190
msgid "42"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:194
msgid "Pick a colour"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:195
msgid "This uses WordPress' built-in colour picker - the option is stored as the colour's hex code."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:201
msgid "An Image"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:202
msgid "This will upload an image to your media library and store the attachment ID in the option field. Once you have uploaded an imge the thumbnail will display above these buttons."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:209
msgid "A Multi-Select Box"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:210
msgid "A standard multi-select box - the saved data is stored as an array."
msgstr ""
#: includes/class-risk-warning-bar-settings.php:354
msgid "Upload an image"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:354
msgid "Use image"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:354
msgid "Upload new image"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:355
msgid "Remove image"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:410
msgid "All"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:427
msgid "Save Settings"
msgstr ""
#: includes/class-risk-warning-bar-settings.php:458
#: includes/class-risk-warning-bar-settings.php:467
#: includes/class-risk-warning-bar.php:207
#: includes/class-risk-warning-bar.php:216
msgid "Cheatin&#8217; huh?"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Risk Warning Bar"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "http://www.hughlashbrooke.com/"
msgstr ""
#. Author of the plugin/theme
msgid "Ali Azlan"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://www.hughlashbrooke.com/"
msgstr ""

View File

@@ -0,0 +1,27 @@
{
"name": "simple-urls",
"description": "Development files for the Simple URLs plugin.",
"repository": {
"type": "git",
"url": "https://github.com/studiopress/simple-urls"
},
"dependencies": {},
"devDependencies": {
"node-wp-i18n": "^1.2.3"
},
"scripts": {
"makepot": "wpi18n makepot --exclude=vendor,node_modules",
"addtextdomain": "wpi18n addtextdomain --exclude=vendor,node_modules"
},
"plugin": {
"name": "Simple URLs",
"uri": "https://github.com/studiopress/simple-urls",
"description": "Simple URLs is a complete URL management system that allows you create, manage, and track outbound links from your site by using custom post types and 301 redirects.",
"author": "StudioPress",
"authoruri": "https://www.studiopress.com/",
"version": "0.9.9",
"license": "GPL-2.0+",
"licenseuri": "https://www.gnu.org/licenses/gpl-2.0.html",
"textdomain": "simple-urls"
}
}

View File

@@ -0,0 +1,151 @@
# Copyright (C) 2019 Nathan Rice
# This file is distributed under the GNU General Public License v2.0 (or later).
msgid ""
msgstr ""
"Project-Id-Version: Simple URLs 0.9.9\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-urls\n"
"POT-Creation-Date: 2019-06-19 02:28:51+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"X-Generator: node-wp-i18n 1.2.3\n"
#: includes/class-simple-urls-admin.php:35
msgid "Title"
msgstr ""
#: includes/class-simple-urls-admin.php:36
msgid "Redirect to"
msgstr ""
#: includes/class-simple-urls-admin.php:37
msgid "Permalink"
msgstr ""
#: includes/class-simple-urls-admin.php:38
msgid "Clicks"
msgstr ""
#: includes/class-simple-urls-admin.php:103
msgid "URL Information"
msgstr ""
#: includes/class-simple-urls-admin.php:115
msgid "Redirect URI"
msgstr ""
#: includes/class-simple-urls-admin.php:117
msgid ""
"This is the URL that the Redirect Link you create on this page will "
"redirect to when accessed in a web browser."
msgstr ""
#: includes/class-simple-urls-admin.php:121
#. translators: %d is the counter of clicks.
msgid "This URL has been accessed %d times"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Simple URLs"
msgstr ""
#: includes/class-simple-urls.php:42
msgid "URL"
msgstr ""
#: includes/class-simple-urls.php:43
msgid "Add New"
msgstr ""
#: includes/class-simple-urls.php:44
msgid "Add New URL"
msgstr ""
#: includes/class-simple-urls.php:45
msgid "Edit"
msgstr ""
#: includes/class-simple-urls.php:46
msgid "Edit URL"
msgstr ""
#: includes/class-simple-urls.php:47
msgid "New URL"
msgstr ""
#: includes/class-simple-urls.php:48 includes/class-simple-urls.php:49
msgid "View URL"
msgstr ""
#: includes/class-simple-urls.php:50
msgid "Search URL"
msgstr ""
#: includes/class-simple-urls.php:51
msgid "No URLs found"
msgstr ""
#: includes/class-simple-urls.php:52
msgid "No URLs found in Trash"
msgstr ""
#: includes/class-simple-urls.php:56 includes/class-simple-urls.php:63
#. translators: %s: link for the update
#. translators: %s: URL to view
msgid "URL updated. <a href=\"%s\">View URL</a>"
msgstr ""
#: includes/class-simple-urls.php:57
msgid "Custom field updated."
msgstr ""
#: includes/class-simple-urls.php:58
msgid "Custom field deleted."
msgstr ""
#: includes/class-simple-urls.php:59
msgid "URL updated."
msgstr ""
#: includes/class-simple-urls.php:61
#. translators: %s: date and time of the revision
msgid "Post restored to revision from %s"
msgstr ""
#: includes/class-simple-urls.php:64
msgid "URL saved."
msgstr ""
#: includes/class-simple-urls.php:65
msgid "URL submitted."
msgstr ""
#: includes/class-simple-urls.php:66
msgid "URL scheduled"
msgstr ""
#: includes/class-simple-urls.php:67
msgid "URL draft updated."
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://wordpress.org/plugins/simple-urls/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Simple URLs is a complete URL management system that allows you create, "
"manage, and track outbound links from your site by using custom post types "
"and 301 redirects."
msgstr ""
#. Author of the plugin/theme
msgid "Nathan Rice"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://www.nathanrice.net/"
msgstr ""

View File

@@ -0,0 +1,398 @@
# Copyright (C) 2019 themebeez
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Universal Google AdSense And Ads Manager 1.0.2\n"
"Report-Msgid-Bugs-To: https://themebeez.com/support\n"
"POT-Creation-Date: 2019-06-18 14:51:01+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
"Last-Translator: themebeez <themebeez@gmail.com>\n"
"Language-Team: themebeez <themebeez@gmail.com>\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-Language: English\n"
"X-Poedit-Country: UNITED STATES\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-Poedit-KeywordsList: "
"__;_e;_n;_x;_ex;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_"
"e;esc_html_x;_n_noop;_nx_noop;translate_nooped_plural;\n"
"X-Textdomain-Support: yes\n"
#. Plugin Name of the plugin/theme
msgid "Universal Google AdSense And Ads Manager"
msgstr ""
#: admin/partials/ugaam-admin-display.php:30
msgid ""
"Universal Google Adsense and Ads manager is a flexible easy to use Google "
"Adsense, custom ads & script manager WordPress plugin. Universal Google "
"Adsense and Ads manager ( UGAAM ) allows WordPress users to monetization "
"your website easily. UGAAM supports Google Ads ( including Google auto Ads "
"), Custom image banner ads, other advertisement network based on javascript "
"( Example: mgid, buy sell ads, Bidvertiser, affiliates ads etc )"
msgstr ""
#: admin/partials/ugaam-admin-display.php:42
msgid "Google adsense"
msgstr ""
#: admin/partials/ugaam-admin-display.php:46
msgid ""
"Monetize your website with Google Adsense without any hassle. Start earning "
"just adding your Adsense code from customizer"
msgstr ""
#: admin/partials/ugaam-admin-display.php:57
msgid "Custom banner Ads"
msgstr ""
#: admin/partials/ugaam-admin-display.php:61
msgid ""
"UGAAM is not just limited to Google Adsense, feel the freedom to monetise "
"your website using other ads network too"
msgstr ""
#: admin/partials/ugaam-admin-display.php:72
msgid "Insert scripts"
msgstr ""
#: admin/partials/ugaam-admin-display.php:76
msgid ""
"Wondering how to insert any scripts to either verify your domain or for "
"different reason, UGAAM makes it simple"
msgstr ""
#: admin/partials/ugaam-admin-display.php:85
msgid "Getting started .."
msgstr ""
#: admin/partials/ugaam-admin-display.php:90
msgid "Q.1: Where can I insert Google domain verification code?"
msgstr ""
#: admin/partials/ugaam-admin-display.php:93
msgid ""
"To verify your domian with Google, kindly navigate to Dashboard > "
"Appearance > Customizer > Universal Google AdSense & Ad Manager > "
"Header/Footer Script manager"
msgstr ""
#: admin/partials/ugaam-admin-display.php:96
msgid "Q.2: How can I insert my Google Adsense advertisement code?"
msgstr ""
#: admin/partials/ugaam-admin-display.php:99
msgid ""
"To insert your Google adsense code go to Dashboard > Appearance > "
"Customizer > Universal Google AdSense & Ad Manager"
msgstr ""
#: admin/partials/ugaam-admin-display.php:102
msgid "Q.3: Can I use custom image banner ads?"
msgstr ""
#: admin/partials/ugaam-admin-display.php:105
msgid ""
"Yes, you can do that. In order to upload your custom banner advertisement "
"go to Dashboard > Appearance > Customizer > Universal Google AdSense & Ad "
"Manager."
msgstr ""
#: admin/partials/ugaam-admin-display.php:108
msgid "Q.4: Can I use other advertisement network ads?"
msgstr ""
#: admin/partials/ugaam-admin-display.php:111
msgid ""
"Yes, you can even use to promote affiliation of bluehost, siteground, "
"amazon etc."
msgstr ""
#: admin/partials/ugaam-admin-display.php:114
msgid "Q.5: Do you provide free support?"
msgstr ""
#: admin/partials/ugaam-admin-display.php:117
msgid ""
"Yes, we do. Kindly contact us from <a "
"href=\"https://themebeez.com/support/\">Support page</a> directly or drop "
"your mail at themebeez@gmail.com."
msgstr ""
#: admin/partials/ugaam-admin-display.php:126
msgid "Quick Links ..."
msgstr ""
#: admin/partials/ugaam-admin-display.php:129
msgid "Insert Scripts"
msgstr ""
#: admin/partials/ugaam-admin-display.php:130
msgid "Insert Ads"
msgstr ""
#: admin/partials/ugaam-admin-display.php:131
msgid "UGAAM Documenation"
msgstr ""
#: admin/partials/ugaam-admin-display.php:132
msgid "Get Support"
msgstr ""
#: admin/partials/ugaam-admin-display.php:133
msgid "Rate UGAAM"
msgstr ""
#: includes/customizer/controls/class-customizer-responsive-dimension-control.php:66
msgid "Top"
msgstr ""
#: includes/customizer/controls/class-customizer-responsive-dimension-control.php:66
#: includes/customizer/functions/customizer-choices.php:13
msgid "Right"
msgstr ""
#: includes/customizer/controls/class-customizer-responsive-dimension-control.php:66
msgid "Bottom"
msgstr ""
#: includes/customizer/controls/class-customizer-responsive-dimension-control.php:66
#: includes/customizer/functions/customizer-choices.php:12
msgid "Left"
msgstr ""
#: includes/customizer/functions/customizer-choices.php:11
msgid "None(Default)"
msgstr ""
#: includes/customizer/functions/customizer-choices.php:14
msgid "Center"
msgstr ""
#: includes/customizer/functions/customizer-choices.php:25
#: includes/widgets/class-ugaam-ad-widget.php:161
msgid "Custom Ad"
msgstr ""
#: includes/customizer/functions/customizer-choices.php:26
#: includes/widgets/class-ugaam-ad-widget.php:162
msgid "AdSense Ad"
msgstr ""
#: includes/customizer/functions/customizer-choices.php:37
msgid "Before First Post"
msgstr ""
#: includes/customizer/functions/customizer-choices.php:38
msgid "After Last Post"
msgstr ""
#: includes/customizer/functions/customizer-choices.php:39
msgid "Between Posts"
msgstr ""
#: includes/customizer/functions/customizer-choices.php:50
msgid "Before Post Content"
msgstr ""
#: includes/customizer/functions/customizer-choices.php:51
msgid "After Post Content"
msgstr ""
#: includes/customizer/functions/customizer-choices.php:52
msgid "Within Post Content"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:5
msgid "Show Ad Content"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:6
msgid "Select Ad Alignment"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:7
msgid "Select Ad Type"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:8
msgid "Upload Ad Image"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:9
msgid "Insert Ad Link"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:10
msgid "Insert Ad Script Code - For Large Devices"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:11
msgid "Insert Ad Script Code - For Small Devices"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:12
msgid "Select Ad Postion"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:13
msgid "Show Ad Content After N Posts"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:14
msgid "Show Ad Content After N Paragraphs"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:15
msgid "Repeatedly Show Ad Content"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:16
msgid "Repeatedly Show Ad Content For N Times"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:17
msgid "Repeatedly Show Ad Content After N Posts"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:18
msgid "Repeatedly Show Ad Content After N Paragraphs"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:19
msgid "Enable custom css and margin."
msgstr ""
#: includes/customizer/functions/customizer-fields.php:20
msgid "Custom CSS Class"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:21
msgid "Margin Around Ad"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:22
msgid "Header Script"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:23
msgid "Footer Script"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:27
msgid "Add CSS classes and separate them with a space."
msgstr ""
#: includes/customizer/functions/customizer-fields.php:28
msgid "Set margin around the Ad."
msgstr ""
#: includes/customizer/functions/customizer-fields.php:29
msgid ""
"Add your analytics code, meta tags for website ownership verification and "
"any thing else that should go in the head tag of your website."
msgstr ""
#: includes/customizer/functions/customizer-fields.php:30
msgid "Any scripts and tags that should be added to your website footer."
msgstr ""
#: includes/customizer/functions/customizer-fields.php:42
msgid "Universal Google AdSense &amp; Ad Manager"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:67
msgid "Blog Page"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:74
msgid "Archive Page"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:81
msgid "Single Post/Page"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:88
msgid "Sticky Header Ads"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:95
msgid "Sticky Footer Ads"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:102
msgid "Header/Footer Scripts"
msgstr ""
#: includes/customizer/functions/customizer-fields.php:133
#: includes/customizer/functions/customizer-fields.php:158
#: includes/customizer/functions/customizer-fields.php:183
#: includes/customizer/functions/customizer-fields.php:208
#: includes/customizer/functions/customizer-fields.php:227
msgid ""
"If you want to show same Ad on mobiles as in desktop, paste the above code "
"below "
msgstr ""
#: includes/widgets/class-ugaam-ad-widget.php:16
msgid "UGAAM: Ads and Scripts"
msgstr ""
#: includes/widgets/class-ugaam-ad-widget.php:19
msgid "Displays custom ad or adsense ad."
msgstr ""
#: includes/widgets/class-ugaam-ad-widget.php:150
msgid "Title"
msgstr ""
#: includes/widgets/class-ugaam-ad-widget.php:157
msgid "Ad Type"
msgstr ""
#: includes/widgets/class-ugaam-ad-widget.php:186
msgid "Custom Ad Image"
msgstr ""
#: includes/widgets/class-ugaam-ad-widget.php:213
msgid "Upload"
msgstr ""
#: includes/widgets/class-ugaam-ad-widget.php:214
msgid "Remove"
msgstr ""
#: includes/widgets/class-ugaam-ad-widget.php:220
msgid "Custom Ad Link"
msgstr ""
#: includes/widgets/class-ugaam-ad-widget.php:227
msgid "Ad Script: Desktop &amp; Tablet"
msgstr ""
#: includes/widgets/class-ugaam-ad-widget.php:235
msgid "Ad Script: Mobile"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://themebeez.com/universal-google-adsense-and-ads-manager"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Universal Google AdSense And Ads Manager is a simple, and easy to use "
"Google AdSense and custom advertisement manager for your WordPress websites."
msgstr ""
#. Author of the plugin/theme
msgid "themebeez"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://themebeez.com"
msgstr ""

View File

@@ -0,0 +1,3 @@
/*1.0.0 - 2019.*/
- Release version 1.0.0

View File

@@ -0,0 +1,218 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: CasinoCoin Payments 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-casinocoin-payments\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2019-06-18 20:50+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: Poedit 1.8.7.1\n"
"X-Domain: wc-gateway-csc\n"
#. Plugin Name of the plugin
msgid "CasinoCoin Payments"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/wenusch/woocommerce-casinocoin-payments"
msgstr ""
#. Description of the plugin
msgid "A payment gateway for WooCommerce to accept CasinoCoin payments."
msgstr ""
#. Author of the plugin
msgid "Massimo Wenusch"
msgstr ""
#. Author URI of the plugin
msgid "https://github.com/wenusch"
msgstr ""
#: woocommerce-csc.php:60 woocommerce-csc.php:199
msgid "CSC"
msgstr ""
#: woocommerce-csc.php:61
msgid "Let your customers pay using CasinoCoin."
msgstr ""
#: woocommerce-csc.php:99
msgid "<div class=\"notice notice-error\"><p><b>WooCommerce CasinoCoin Payments</b> does not support the <b>currency</b> your shop is using.</p></div>"
msgstr ""
#: woocommerce-csc.php:107
msgid "<div class=\"notice notice-error\"><p><b>WooCommerce CasinoCoin Payments</b> requires you to specify a <b>CSC Account</b> and your <b>CSCL Webhook</b> details.</p></div>"
msgstr ""
#: woocommerce-csc.php:115
msgid "<div class=\"notice notice-error\"><p>The specified <b>CSC Account</b> and/or <b>CSCL Webhook</b> details are invalid. Please correct these for <b>WooCommerce CasinonCion Payments</b> to work properly.</p></div>"
msgstr ""
#: woocommerce-csc.php:189
msgid "Enable/Disable"
msgstr ""
#: woocommerce-csc.php:191
msgid "Enable CasinoCoin Payments"
msgstr ""
#: woocommerce-csc.php:196
msgid "Title"
msgstr ""
#: woocommerce-csc.php:198
msgid "This controls the title for the payment method the customer sees during checkout."
msgstr ""
#: woocommerce-csc.php:204
msgid "Description"
msgstr ""
#: woocommerce-csc.php:206
msgid "Payment method description that the customer will see on your checkout."
msgstr ""
#: woocommerce-csc.php:207
msgid "Payment instruction will be shown once you've placed your order."
msgstr ""
#: woocommerce-csc.php:212 woocommerce-csc.php:218 woocommerce-csc.php:505
msgid "CSC Account"
msgstr ""
#: woocommerce-csc.php:214
msgid "Please specify the CSC Ledger account where your payments should be sent. This should be an account <b>YOU</b> own and should <b>NOT</b> be an exchange account, since a unique destination tag is generated for each order."
msgstr ""
#: woocommerce-csc.php:220
msgid "Your CSC account where payments should be sent."
msgstr ""
#: woocommerce-csc.php:226
msgid "CSCL Webhook options"
msgstr ""
#: woocommerce-csc.php:228
msgid "In order to create your webhook and process your payments properly, please specify your CSCL Webhooks API key. For more informations how to obtain these keys, please visit <a href=\"https://webhook.casinocoin.services/\">https://webhook.casinocoin.services</a>."
msgstr ""
#: woocommerce-csc.php:232
msgid "API Key"
msgstr ""
#: woocommerce-csc.php:234
msgid "Your CSCL Webhook API key."
msgstr ""
#: woocommerce-csc.php:240
msgid "API Secret"
msgstr ""
#: woocommerce-csc.php:242
msgid "Your CSCL Webhook API secret."
msgstr ""
#: woocommerce-csc.php:248
msgid "Advanced"
msgstr ""
#: woocommerce-csc.php:250
msgid "Leave these untouched unless you really know what you're doing."
msgstr ""
#: woocommerce-csc.php:254
msgid "CSC Node (casinocoind)"
msgstr ""
#: woocommerce-csc.php:256
msgid "Which CSC node to use when checking our balance."
msgstr ""
#: woocommerce-csc.php:263
msgid "Bypass firewall"
msgstr ""
#: woocommerce-csc.php:265
msgid "Use a proxy to bypass your webservers firewall."
msgstr ""
#: woocommerce-csc.php:272
msgid "Exchange"
msgstr ""
#: woocommerce-csc.php:274
msgid "Which exchange to use when fetching the CSC rate."
msgstr ""
#: woocommerce-csc.php:290
msgid "Transaction Limit"
msgstr ""
#: woocommerce-csc.php:292
msgid "The number of transactions to fetch from the ledger each time we check for new payments."
msgstr ""
#: woocommerce-csc.php:496
msgid "CSC payment details"
msgstr ""
#: woocommerce-csc.php:509
msgid "Destination tag"
msgstr ""
#: woocommerce-csc.php:513
msgid "CSC total"
msgstr ""
#: woocommerce-csc.php:517
msgid "CSC received"
msgstr ""
#: woocommerce-csc.php:521
msgid "CSC left to pay"
msgstr ""
#: woocommerce-csc.php:525
msgid "Order status"
msgstr ""
#: class-wccsc-helpers.php:14
msgid "Pending payment"
msgstr ""
#: class-wccsc-helpers.php:16
msgid "Processing (Paid)"
msgstr ""
#: class-wccsc-helpers.php:18
msgid "On hold"
msgstr ""
#: class-wccsc-helpers.php:20
msgid "Completed"
msgstr ""
#: class-wccsc-helpers.php:22
msgid "Cancelled"
msgstr ""
#: class-wccsc-helpers.php:24
msgid "Refunded"
msgstr ""
#: class-wccsc-helpers.php:26
msgid "Failed"
msgstr ""
#: class-wccsc-helpers.php:28
msgid "Unknown"
msgstr ""
#: class-wccsc-helpers.php:30
msgid "Overpaid"
msgstr ""

View File

@@ -0,0 +1,44 @@
{
"name": "wpcw-convertkit",
"version": "1.0.0",
"description": "ConvertKit add-on for WP Courseware. Subscribe your customers to ConvertKit forms, sequences, and tags upon enrollment.",
"license": "GPL-2.0",
"homepage": "https://wordpress.org/plugins/wpcw-convertkit/",
"author": {
"name": "Fly Plugins",
"email": "support@flyplugins.com",
"url": "https://flyplugins.com/"
},
"bugs": {
"url": "https://flyplugins.com/questions/",
"email": "support@flyplugins.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flyplugins/wpcw-convertkit.git"
},
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"axios": "^0.19.0",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"laravel-mix": "^4.0.16",
"postcss-preset-env": "^6.6.0",
"sass": "^1.21.0",
"sass-loader": "^7.1.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"wp-pot": "^1.7.1"
}
}

View File

@@ -0,0 +1,782 @@
# Copyright (C) 2019 Chris J. Zähller / Messenger Web Design
# This file is distributed under the same license as the WP FOFT Loader plugin.
msgid ""
msgstr ""
"Project-Id-Version: WP FOFT Loader 1.0.30\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-foft-loader\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2019-06-29T00:45:06+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.2.0\n"
"X-Domain: wp-foft-loader\n"
#. Plugin Name of the plugin
#: includes/class-wp-foft-loader-settings.php:74
msgid "WP FOFT Loader"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/seezee/WP-FOFTLoader/"
msgstr ""
#. Description of the plugin
msgid "Implements and automates Zach Leatherman's"
msgstr ""
#. Author of the plugin
msgid "Chris J. Zähller / Messenger Web Design"
msgstr ""
#. Author URI of the plugin
msgid "https://messengerwebdesign.com/"
msgstr ""
#: includes/class-wp-foft-loader-upload.php:77
#: includes/class-wp-foft-loader-upload.php:86
#: includes/class-wp-foft-loader-mimes.php:89
#: includes/class-wp-foft-loader-mimes.php:98
#: includes/class-wp-foft-loader-head.php:372
#: includes/class-wp-foft-loader-head.php:381
#: includes/class-wp-foft-loader.php:223
#: includes/class-wp-foft-loader.php:232
#: includes/class-wp-foft-loader-settings.php:982
#: includes/class-wp-foft-loader-settings.php:991
msgid "Cheatin huh?"
msgstr ""
#: includes/lib/class-wp-foft-loader-admin-api.php:104
msgid "Upload new font"
msgstr ""
#: includes/lib/class-wp-foft-loader-admin-api.php:104
msgid "Use font"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:74
msgid "WP FOFT Loader Settings"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:97
msgid "Settings"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:127
#: includes/class-wp-foft-loader-settings.php:386
msgid "Upload"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:128
msgid ""
"\n"
"Upload two files for each web font: a WOFF file and a WOFF2 file. We recommend you use"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:132
#: includes/class-wp-foft-loader-settings.php:266
msgid "Webfont Generator"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:132
msgid "to generate the files. Recommended Font Squirrel settings are:"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:134
#: includes/class-wp-foft-loader-settings.php:268
msgid "Font Formats"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:137
#: includes/class-wp-foft-loader-settings.php:270
msgid "Truetype Hinting"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:138
#: includes/class-wp-foft-loader-settings.php:271
msgid "Keep Existing"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:139
#: includes/class-wp-foft-loader-settings.php:272
msgid "Rendering"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:140
#: includes/class-wp-foft-loader-settings.php:144
#: includes/class-wp-foft-loader-settings.php:273
#: includes/class-wp-foft-loader-settings.php:277
msgid "Default options (leave unchecked)"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:141
#: includes/class-wp-foft-loader-settings.php:274
msgid "Vertical Metrics"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:142
#: includes/class-wp-foft-loader-settings.php:275
msgid "No Adjustment"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:143
#: includes/class-wp-foft-loader-settings.php:276
msgid "Fix Missing Glyphs"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:145
#: includes/class-wp-foft-loader-settings.php:278
msgid "X-height Matching"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:146
#: includes/class-wp-foft-loader-settings.php:154
#: includes/class-wp-foft-loader-settings.php:156
#: includes/class-wp-foft-loader-settings.php:269
#: includes/class-wp-foft-loader-settings.php:279
#: includes/class-wp-foft-loader-settings.php:286
#: includes/class-wp-foft-loader-settings.php:288
msgid "None"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:147
#: includes/class-wp-foft-loader-settings.php:280
msgid "Protection"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:148
#: includes/class-wp-foft-loader-settings.php:281
msgid "Select"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:148
#: includes/class-wp-foft-loader-settings.php:281
msgid "if you are using a commercially licensed font"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:149
#: includes/class-wp-foft-loader-settings.php:282
msgid "Subsetting"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:150
msgid "Basic Subsetting"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:151
#: includes/class-wp-foft-loader-settings.php:285
msgid "OpenType Features"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:152
msgid "Your choice, but we like"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:152
msgid "Keep All Features"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:153
#: includes/class-wp-foft-loader-settings.php:287
msgid "OpenType Flattening"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:157
#: includes/class-wp-foft-loader-settings.php:291
msgid "Advanced Options"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:158
#: includes/class-wp-foft-loader-settings.php:292
msgid "Font Name Suffix"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:159
#: includes/class-wp-foft-loader-settings.php:293
msgid "Em Square Value"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:160
#: includes/class-wp-foft-loader-settings.php:294
msgid "Adjust Glyph Spacing"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:161
#: includes/class-wp-foft-loader-settings.php:295
msgid "Shortcuts"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:162
#: includes/class-wp-foft-loader-settings.php:296
msgid "Remember My Settings"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:165
msgid "Filenames must follow the proper naming convention:"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:168
msgid "The font family base name without style. Case-insensitive. May contain letters, numerals, and underscores but"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:168
msgid "no hyphens or spaces"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:170
msgid "Small caps identifier"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:170
msgid "Optional"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:170
msgid "Append to $family only if it is a small caps variant."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:170
#: includes/class-wp-foft-loader-settings.php:172
msgid "Case-sensitive"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:172
msgid "The font variant. Can be weight, style, or a combination of both."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:174
msgid "Mandatory suffix. Append to"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:176
msgid "The file type"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:176
msgid "or"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:178
msgid "Example"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:178
msgid "for the bold weight, italic style of"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:178
msgid "rename the files to"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:178
#: includes/class-wp-foft-loader-settings.php:304
#: includes/class-wp-foft-loader-settings.php:340
#: includes/class-wp-foft-loader-settings.php:527
#: includes/class-wp-foft-loader-settings.php:562
msgid "and"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:178
msgid "For small caps style families, append"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:178
msgid "case-sensitive"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:178
msgid "to the family name,"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:179
msgid "Allowed weights and styles and their CSS mappings are:"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:181
#: includes/class-wp-foft-loader-settings.php:182
#: includes/class-wp-foft-loader-settings.php:183
#: includes/class-wp-foft-loader-settings.php:184
#: includes/class-wp-foft-loader-settings.php:185
#: includes/class-wp-foft-loader-settings.php:186
#: includes/class-wp-foft-loader-settings.php:187
#: includes/class-wp-foft-loader-settings.php:188
#: includes/class-wp-foft-loader-settings.php:189
#: includes/class-wp-foft-loader-settings.php:190
#: includes/class-wp-foft-loader-settings.php:191
#: includes/class-wp-foft-loader-settings.php:192
#: includes/class-wp-foft-loader-settings.php:193
#: includes/class-wp-foft-loader-settings.php:194
#: includes/class-wp-foft-loader-settings.php:195
#: includes/class-wp-foft-loader-settings.php:196
#: includes/class-wp-foft-loader-settings.php:197
#: includes/class-wp-foft-loader-settings.php:198
msgid "maps to"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:203
msgid "Upload Fonts"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:204
msgid "This will upload a font file to your media library and store the attachment ID in the option field."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:213
#: includes/class-wp-foft-loader-settings.php:346
#: includes/class-wp-foft-loader-settings.php:527
msgid "Optimize"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:214
msgid "Load small subsetted font files before the page fully loads to improve performance."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:214
msgid "This setting works with the Base64 settings in the next tab"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:214
msgid "All of the fields are optional, but if you fill out any of them you should also fill out the corresponding Base64 settings field."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:215
msgid "Enter the names of your Base64 subsetted fonts below. Only the family names are needed, not the styles. Names are case-insensitive. Hyphens and underscores are allowed,"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:215
msgid "but spaces are not"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:217
msgid "Correct"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:218
msgid "all lowercase"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:219
msgid "hyphens and underscores allowed"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:220
msgid "mixed case allowed"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:221
msgid "Incorrect"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:222
msgid "use the family name only; omit the style"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:223
#: includes/class-wp-foft-loader-settings.php:224
msgid "spaces prohibited"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:229
#: includes/class-wp-foft-loader-settings.php:309
#: includes/class-wp-foft-loader-settings.php:487
msgid "Headings"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:230
msgid "Optimize the display font used for high-level headings"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:237
#: includes/class-wp-foft-loader-settings.php:316
#: includes/class-wp-foft-loader-settings.php:495
msgid "Body"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:238
msgid "Optimize body text. This can be a serif or sans-serif font."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:245
#: includes/class-wp-foft-loader-settings.php:323
#: includes/class-wp-foft-loader-settings.php:504
msgid "Other elements"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:246
msgid "Optimize non-body elements"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:246
#: includes/class-wp-foft-loader-settings.php:324
#: includes/class-wp-foft-loader-settings.php:505
msgid "navigation labels, button labels, <abbr>etc.</abbr> A sans-serif font works best for this."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:253
#: includes/class-wp-foft-loader-settings.php:330
#: includes/class-wp-foft-loader-settings.php:513
msgid "Monospaced"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:254
msgid "Optimize monospaced fonts. Used for code examples, preformatted text, and tabular data."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:263
#: includes/class-wp-foft-loader-settings.php:527
msgid "Base64"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:265
msgid "This setting inlines Base64 encoded font in the document head to improve font loading speeds."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:265
msgid "This setting works with the Optimize settings in the previous tab."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:265
msgid "All of the fields are optional, but if you fill out any of them you should also fill out the corresponding Optimize settings field."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:266
msgid "Fonts must be subsetted and encoded to Base64. To subset and encode your fonts, we recommend you use"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:266
msgid "Recommended Font Squirrel settings are:"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:283
msgid "Custom Subsetting"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:283
msgid "with the Unicode Ranges"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:284
msgid "Leave everything else unchecked or blank"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:290
msgid "Base64 Encode"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:299
msgid "The generator will produce a file that looks something like this:"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:304
msgid "Copy and paste the part the part between"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:304
msgid "into the appropriate field below. In this example that would be"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:310
msgid "The display font for high-level headings"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:317
msgid "The body text. This can be a serif or sans-serif font."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:324
msgid "Non-body elements,"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:331
msgid "Monospaced fonts. Used for code examples, preformatted text, and tabular data."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:339
msgid "CSS"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:340
msgid "@import rules are automatically handled by this plugin. You may manually inline your font-related"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:340
msgid "in the document"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:340
msgid "here. Place rules pertaining only to the"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:340
msgid "properties here."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:342
msgid "Stage 1 <abbr>CSS</abbr>"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:343
msgid "Declarations placed in this field will load the"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:343
msgid "Base64 subset"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:345
msgid "Use only the family name followed by"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:345
msgid "(<em>case-insensitive</em>)"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:346
msgid "Family names must match the names you input on the"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:346
#: includes/class-wp-foft-loader-settings.php:386
msgid "screen."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:347
#: includes/class-wp-foft-loader-settings.php:387
msgid "Omit weights and styles from the font name"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:348
#: includes/class-wp-foft-loader-settings.php:388
msgid "All declarations must start with the"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:348
#: includes/class-wp-foft-loader-settings.php:388
msgid "class"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:350
#: includes/class-wp-foft-loader-settings.php:391
msgid "See the"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:350
#: includes/class-wp-foft-loader-settings.php:391
msgid "Documentation screen"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:350
msgid "to view the Stage 1 <abbr>CSS</abbr> that this plugin loads by default."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:352
#: includes/class-wp-foft-loader-settings.php:393
msgid "Incorrect:"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:353
msgid "Missing prefix:"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:358
msgid "Don&rsquo;t include the weight or style"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:362
msgid "Missing"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:362
msgid "Subset"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:367
#: includes/class-wp-foft-loader-settings.php:408
msgid "&ldquo;font-family,&rdquo; &ldquo;font-weight,&rdquo; &ldquo;font-style,&rdquo;"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:368
#: includes/class-wp-foft-loader-settings.php:409
msgid "and &ldquo;font-variant&rdquo; rules only"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:370
#: includes/class-wp-foft-loader-settings.php:412
msgid "Correct:"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:376
msgid "Suffix is case-insensitive"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:383
msgid "Stage 2 <abbr>CSS</abbr>"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:385
msgid "Use only the family name"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:386
msgid "Family names must match the file names for the fonts you uploaded on the"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:389
msgid "For best performance, please"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:389
msgid "minify your <abbr>CSS</abbr></a> before pasting it into the form."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:391
msgid "to view the Stage 2 <abbr>CSS</abbr> that this plugin loads by default."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:394
msgid "Missing class:"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:401
msgid "Don&rsquo;t include style in font name."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:402
msgid "Better yet, omit declaration altogether."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:420
msgid "No need to redeclare the font-family &mdash; all weights map to a single family name"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:430
msgid "Plugin CSS"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:431
msgid "The plugin loads some <abbr>CSS</abbr> by default."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:434
msgid "Default <abbr>CSS</abbr> Off"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:435
msgid "Default <abbr>CSS</abbr> On"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:441
msgid "Font Display"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:442
msgid "Override the"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:442
msgid " property here. The plugin uses"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:442
msgid " by default."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:455
msgid "Stage 1 CSS"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:456
#: includes/class-wp-foft-loader-settings.php:467
msgid "Place <abbr>CSS</abbr> font declarations here."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:459
#: includes/class-wp-foft-loader-settings.php:470
msgid "Example:"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:466
msgid "Stage 2 CSS"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:482
msgid "Font Stack"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:483
msgid "Change the default font fallbacks in case your custom fonts don&rsquo;t load."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:483
msgid "Don&rsquo;t include the names of your default custom fonts here."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:488
msgid "Font stack for display font. Applies to high-level headings"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:496
msgid "Font stack for body text. This can be a serif or sans-serif font."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:505
msgid "Font stack for non-body elements,"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:514
msgid "Font stack for monospaced fonts. Used for code examples, preformatted text, and tabular data."
msgstr ""
#: includes/class-wp-foft-loader-settings.php:524
msgid "Documentation"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:526
msgid "Fonts Stage 1"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:527
msgid "This plugin always loads the following Stage 1 styles. The Stage 1 fonts are inlined, subsetted, base64 fonts. &lt;$bodySubset&gt;, &lt;$altSubset&gt;, &lt;$headingSubset&gt;, and &lt;$monoSubset&gt; correspond to the Body, Other Elements, Headings, and Monospaced font-families configured on the"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:561
msgid "Fonts Stage 2"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:562
msgid "This plugin also loads the following Stage 2 styles. You can disable these styles on the"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:562
msgid "options screen"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:562
msgid "correspond to the Body, Other Elements, Headings, and Monospaced font-families configured on the"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:562
msgid "Optimize screen"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:562
msgid "Font Stack settings screen"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:660
msgid "Video Tutorials"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:897
msgid "WP <abbr>FOFT</abbr> Loader Settings"
msgstr ""
#: includes/class-wp-foft-loader-settings.php:897
msgid "Please <strong>save your changes</strong> before navigating to the next tab. "
msgstr ""
#: includes/class-wp-foft-loader-settings.php:950
msgid "Save Settings"
msgstr ""

View File

@@ -443,3 +443,7 @@ FooBox.ready(function() {
<!-- themify-builder -->
<meta name="builder-styles-css" data-href="https://wp.lab/wp-content/plugins/themify-builder/css/themify-builder-style.min.css?ver=4.5.2" content="builder-styles-css" id="builder-styles-css">

View File

@@ -98,7 +98,7 @@ shared_examples 'WordPress::CustomDirectories' do
end
describe '#content_dir=, #plugins_dir=' do
['wp-content', 'wp-custom'].each do |dir|
%w[wp-content wp-custom].each do |dir|
context "when content_dir = #{dir} and no plugins_dir" do
before { target.content_dir = dir }

View File

@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
s.executables = ['wpscan']
s.require_paths = ['lib']
s.add_dependency 'cms_scanner', '~> 0.5.1'
s.add_dependency 'cms_scanner', '~> 0.5.3'
s.add_development_dependency 'bundler', '>= 1.6'
s.add_development_dependency 'coveralls', '~> 0.8.0'
@@ -29,8 +29,8 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency 'rspec', '~> 3.8.0'
s.add_development_dependency 'rspec-its', '~> 1.3.0'
s.add_development_dependency 'rubocop', '~> 0.71.0'
s.add_development_dependency 'rubocop-performance', '~> 1.3.0'
s.add_development_dependency 'rubocop', '~> 0.72.0'
s.add_development_dependency 'rubocop-performance', '~> 1.4.0'
s.add_development_dependency 'simplecov', '~> 0.16.1'
s.add_development_dependency 'stackprof', '~> 0.2.12'
s.add_development_dependency 'webmock', '~> 3.6.0'