Compare commits
27 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9da326967b | ||
|
|
62600b3a66 | ||
|
|
b236138fb5 | ||
|
|
40c2e9a54b | ||
|
|
a9062db57f | ||
|
|
2621404c5f | ||
|
|
c47211ca79 | ||
|
|
e39a192e8d | ||
|
|
d85035d5ef | ||
|
|
de09a97343 | ||
|
|
a6855345d7 | ||
|
|
a53f88b626 | ||
|
|
7048c82124 | ||
|
|
6aa7cda478 | ||
|
|
ff339b9a8c | ||
|
|
8898cc20fe | ||
|
|
770d1da280 | ||
|
|
6ba4e8a29b | ||
|
|
953ca68495 | ||
|
|
4289dfb37d | ||
|
|
4f6f2f436a | ||
|
|
237979a479 | ||
|
|
2e48968fd3 | ||
|
|
9a0c4a5c8f | ||
|
|
9a011f0007 | ||
|
|
3f907a706f | ||
|
|
9446141716 |
16
.rubocop.yml
16
.rubocop.yml
@@ -4,16 +4,8 @@ AllCops:
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
- 'vendor/**/*'
|
||||
ClassVars:
|
||||
Enabled: false
|
||||
LineLength:
|
||||
Max: 120
|
||||
Lint/UriEscapeUnescape:
|
||||
Enabled: false
|
||||
MethodLength:
|
||||
Max: 20
|
||||
Exclude:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Metrics/AbcSize:
|
||||
Max: 25
|
||||
Metrics/BlockLength:
|
||||
@@ -25,6 +17,14 @@ Metrics/ClassLength:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Metrics/CyclomaticComplexity:
|
||||
Max: 8
|
||||
Metrics/LineLength:
|
||||
Max: 120
|
||||
Metrics/MethodLength:
|
||||
Max: 20
|
||||
Exclude:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Style/ClassVars:
|
||||
Enabled: false
|
||||
Style/Documentation:
|
||||
Enabled: false
|
||||
Style/FormatStringToken:
|
||||
|
||||
@@ -18,7 +18,7 @@ module WPScan
|
||||
target.content_dir = ParsedCli.wp_content_dir if ParsedCli.wp_content_dir
|
||||
target.plugins_dir = ParsedCli.wp_plugins_dir if ParsedCli.wp_plugins_dir
|
||||
|
||||
return if target.content_dir(ParsedCli.detection_mode)
|
||||
return if target.content_dir
|
||||
|
||||
raise Error::WpContentDirNotDetected
|
||||
end
|
||||
|
||||
@@ -69,7 +69,7 @@ module WPScan
|
||||
OptInteger.new(
|
||||
['--plugins-threshold THRESHOLD',
|
||||
'Raise an error when the number of detected plugins via known locations reaches the threshold. ' \
|
||||
'Set to 0 to ignore the threshold.'], default: 100
|
||||
'Set to 0 to ignore the threshold.'], default: 100, advanced: true
|
||||
)
|
||||
]
|
||||
end
|
||||
@@ -98,7 +98,7 @@ module WPScan
|
||||
OptInteger.new(
|
||||
['--themes-threshold THRESHOLD',
|
||||
'Raise an error when the number of detected themes via known locations reaches the threshold. ' \
|
||||
'Set to 0 to ignore the threshold.'], default: 20
|
||||
'Set to 0 to ignore the threshold.'], default: 20, advanced: true
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
@@ -97,9 +97,12 @@ module WPScan
|
||||
# @return [ String, nil ]
|
||||
def display_name_from_body(body)
|
||||
page = Nokogiri::HTML.parse(body)
|
||||
|
||||
# WP >= 3.0
|
||||
page.css('h1.page-title span').each do |node|
|
||||
return node.text.to_s
|
||||
text = node.text.to_s.strip
|
||||
|
||||
return text unless text.empty?
|
||||
end
|
||||
|
||||
# WP < 3.0
|
||||
|
||||
@@ -34,6 +34,8 @@ module WPScan
|
||||
def user_details_from_oembed_data(oembed_data)
|
||||
return unless oembed_data
|
||||
|
||||
oembed_data = oembed_data.first if oembed_data.is_a?(Array)
|
||||
|
||||
if oembed_data['author_url'] =~ %r{/author/([^/]+)/?\z}
|
||||
details = [Regexp.last_match[1], 'Author URL', 90]
|
||||
elsif oembed_data['author_name'] && !oembed_data['author_name'].empty?
|
||||
|
||||
@@ -15,7 +15,9 @@ module WPScan
|
||||
target.in_scope_uris(target.homepage_res) do |uri|
|
||||
next unless uri.to_s =~ item_attribute_pattern(type)
|
||||
|
||||
found << Regexp.last_match[1]
|
||||
slug = Regexp.last_match[1]&.strip
|
||||
|
||||
found << slug unless slug&.empty?
|
||||
end
|
||||
|
||||
uniq ? found.uniq.sort : found.sort
|
||||
@@ -28,7 +30,7 @@ module WPScan
|
||||
def items_from_codes(type, uniq = true)
|
||||
found = []
|
||||
|
||||
target.homepage_res.html.css('script,style').each do |tag|
|
||||
target.homepage_res.html.xpath('//script[not(@src)]|//style[not(@src)]').each do |tag|
|
||||
code = tag.text.to_s
|
||||
next if code.empty?
|
||||
|
||||
@@ -42,7 +44,7 @@ module WPScan
|
||||
#
|
||||
# @return [ Regexp ]
|
||||
def item_attribute_pattern(type)
|
||||
@item_attribute_pattern ||= %r{\A#{item_url_pattern(type)}([^/]+)/}i
|
||||
@item_attribute_pattern ||= %r{#{item_url_pattern(type)}([^/]+)/}i
|
||||
end
|
||||
|
||||
# @param [ String ] type
|
||||
@@ -59,7 +61,7 @@ module WPScan
|
||||
item_dir = type == 'plugins' ? target.plugins_dir : target.content_dir
|
||||
item_url = type == 'plugins' ? target.plugins_url : target.content_url
|
||||
|
||||
url = /#{item_url.gsub(/\A(?:http|https)/i, 'https?').gsub('/', '\\\\\?\/')}/i
|
||||
url = /#{item_url.gsub(/\A(?:https?)/i, 'https?').gsub('/', '\\\\\?\/')}/i
|
||||
item_dir = %r{(?:#{url}|\\?\/#{item_dir.gsub('/', '\\\\\?\/')}\\?/)}i
|
||||
|
||||
type == 'plugins' ? item_dir : %r{#{item_dir}#{type}\\?\/}i
|
||||
|
||||
@@ -101,7 +101,7 @@ module WPScan
|
||||
#
|
||||
# @return [ String ]
|
||||
def parse_style_tag(body, tag)
|
||||
value = body[/^\s*#{Regexp.escape(tag)}:[\t ]*([^\r\n]+)/i, 1]
|
||||
value = body[/#{Regexp.escape(tag)}:[\t ]*([^\r\n\*]+)/i, 1]
|
||||
|
||||
value && !value.strip.empty? ? value.strip : nil
|
||||
end
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
<%= warning_icon %> No WPVulnDB API Token given, as a result vulnerability data has not been output.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/register.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up.
|
||||
<% end -%>
|
||||
|
||||
@@ -8,6 +8,6 @@
|
||||
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpvulndb.com/register."
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up."
|
||||
<% end -%>
|
||||
},
|
||||
@@ -11,7 +11,9 @@ module WPScan
|
||||
module WordPress
|
||||
include CMSScanner::Target::Platform::PHP
|
||||
|
||||
WORDPRESS_PATTERN = %r{/(?:(?:wp-content/(?:themes|(?:mu\-)?plugins|uploads))|wp-includes)/}i.freeze
|
||||
WORDPRESS_PATTERN = %r{/(?:(?:wp-content/(?:themes|(?:mu\-)?plugins|uploads))|wp-includes)/}i.freeze
|
||||
WP_JSON_OEMBED_PATTERN = %r{/wp\-json/oembed/}i.freeze
|
||||
WP_ADMIN_AJAX_PATTERN = %r{\\?/wp\-admin\\?/admin\-ajax\.php}i.freeze
|
||||
|
||||
# These methods are used in the associated interesting_findings finders
|
||||
# to keep the boolean state of the finding rather than re-check the whole thing again
|
||||
@@ -23,27 +25,33 @@ module WPScan
|
||||
# @param [ Symbol ] detection_mode
|
||||
#
|
||||
# @return [ Boolean ]
|
||||
# rubocop:disable Metrics/AbcSize, Metrics/PerceivedComplexity
|
||||
def wordpress?(detection_mode)
|
||||
in_scope_uris(homepage_res) do |uri|
|
||||
return true if uri.path.match(WORDPRESS_PATTERN)
|
||||
return true if WORDPRESS_PATTERN.match?(uri.path) || WP_JSON_OEMBED_PATTERN.match?(uri.path)
|
||||
end
|
||||
|
||||
homepage_res.html.css('meta[name="generator"]').each do |node|
|
||||
return true if /wordpress/i.match?(node['content'])
|
||||
return true if homepage_res.html.css('meta[name="generator"]').any? do |node|
|
||||
/wordpress/i.match?(node['content'])
|
||||
end
|
||||
|
||||
return true unless comments_from_page(/wordpress/i, homepage_res).empty?
|
||||
|
||||
return true if homepage_res.html.xpath('//script[not(@src)]').any? do |node|
|
||||
WP_ADMIN_AJAX_PATTERN.match?(node.text)
|
||||
end
|
||||
|
||||
if %i[mixed aggressive].include?(detection_mode)
|
||||
%w[wp-admin/install.php wp-login.php].each do |path|
|
||||
in_scope_uris(Browser.get_and_follow_location(url(path))).each do |uri|
|
||||
return true if uri.path.match(WORDPRESS_PATTERN)
|
||||
return true if in_scope_uris(Browser.get_and_follow_location(url(path))).any? do |uri|
|
||||
WORDPRESS_PATTERN.match?(uri.path)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
false
|
||||
end
|
||||
# rubocop:enable Metrics/AbcSize, Metrics/PerceivedComplexity
|
||||
|
||||
COOKIE_PATTERNS = {
|
||||
'vjs' => /createCookie\('vjs','(?<c_value>\d+)',\d+\);/i
|
||||
@@ -82,7 +90,7 @@ module WPScan
|
||||
def wordpress_hosted?
|
||||
return true if /\.wordpress\.com$/i.match?(uri.host)
|
||||
|
||||
unless content_dir(:passive)
|
||||
unless content_dir
|
||||
pattern = %r{https?://s\d\.wp\.com#{WORDPRESS_PATTERN}}i.freeze
|
||||
|
||||
uris_from_page(homepage_res) do |uri|
|
||||
|
||||
@@ -13,12 +13,11 @@ module WPScan
|
||||
@plugins_dir = dir.chomp('/')
|
||||
end
|
||||
|
||||
# @param [ Symbol ] detection_mode
|
||||
# @return [ String ] The wp-content directory
|
||||
def content_dir(detection_mode = :mixed)
|
||||
def content_dir
|
||||
unless @content_dir
|
||||
# scope_url_pattern is from CMSScanner::Target
|
||||
pattern = %r{#{scope_url_pattern}([\w\s\-/]+)\\?/(?:themes|plugins|uploads|cache)\\?/}i
|
||||
pattern = %r{#{scope_url_pattern}([\w\s\-/]+?)\\?/(?:themes|plugins|uploads|cache)\\?/}i
|
||||
|
||||
in_scope_uris(homepage_res) do |uri|
|
||||
return @content_dir = Regexp.last_match[1] if uri.to_s.match(pattern)
|
||||
@@ -29,9 +28,7 @@ module WPScan
|
||||
return @content_dir = match[1]
|
||||
end
|
||||
|
||||
unless detection_mode == :passive
|
||||
return @content_dir = 'wp-content' if default_content_dir_exists?
|
||||
end
|
||||
return @content_dir = 'wp-content' if default_content_dir_exists?
|
||||
end
|
||||
|
||||
@content_dir
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.7.1'
|
||||
VERSION = '3.7.3'
|
||||
end
|
||||
|
||||
@@ -166,6 +166,7 @@ describe WPScan::Controller::Core do
|
||||
before do
|
||||
expect(core).to receive(:load_server_module)
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(true)
|
||||
expect(core.target).to receive(:wordpress_hosted?).and_return(false)
|
||||
end
|
||||
|
||||
it 'calls the formatter when started and finished to update the db' do
|
||||
@@ -174,56 +175,6 @@ describe WPScan::Controller::Core do
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a redirect occurs' do
|
||||
before do
|
||||
stub_request(:any, target_url)
|
||||
|
||||
expect(core.target).to receive(:homepage_res)
|
||||
.at_least(1)
|
||||
.and_return(Typhoeus::Response.new(effective_url: redirection, body: ''))
|
||||
end
|
||||
|
||||
context 'to the wp-admin/install.php' do
|
||||
let(:redirection) { "#{target_url}wp-admin/install.php" }
|
||||
|
||||
it 'calls the formatter with the correct parameters and exit' do
|
||||
expect(core.formatter).to receive(:output)
|
||||
.with('not_fully_configured', hash_including(url: redirection), 'core').ordered
|
||||
|
||||
# TODO: Would be cool to be able to test the exit code
|
||||
expect { core.before_scan }.to raise_error(SystemExit)
|
||||
end
|
||||
end
|
||||
|
||||
context 'to something else' do
|
||||
let(:redirection) { 'http://g.com/' }
|
||||
|
||||
it 'raises an error' do
|
||||
expect { core.before_scan }.to raise_error(CMSScanner::Error::HTTPRedirect)
|
||||
end
|
||||
end
|
||||
|
||||
context 'to another path with the wp-admin/install.php in the query' do
|
||||
let(:redirection) { "#{target_url}index.php?a=/wp-admin/install.php" }
|
||||
|
||||
context 'when wordpress' do
|
||||
it 'does not raise an error' do
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(true)
|
||||
|
||||
expect { core.before_scan }.to_not raise_error
|
||||
end
|
||||
end
|
||||
|
||||
context 'when not wordpress' do
|
||||
it 'raises an error' do
|
||||
expect(core.target).to receive(:wordpress?).twice.with(:mixed).and_return(false)
|
||||
|
||||
expect { core.before_scan }.to raise_error(WPScan::Error::NotWordPress)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when hosted on wordpress.com' do
|
||||
let(:target_url) { 'http://ex.wordpress.com' }
|
||||
|
||||
@@ -234,52 +185,106 @@ describe WPScan::Controller::Core do
|
||||
end
|
||||
end
|
||||
|
||||
context 'when wordpress' do
|
||||
before do
|
||||
expect(core).to receive(:load_server_module)
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(true)
|
||||
end
|
||||
context 'when not hosted on wordpress.com' do
|
||||
before { allow(core.target).to receive(:wordpress_hosted?).and_return(false) }
|
||||
|
||||
it 'does not raise any error' do
|
||||
expect { core.before_scan }.to_not raise_error
|
||||
end
|
||||
end
|
||||
context 'when a redirect occurs' do
|
||||
before do
|
||||
stub_request(:any, target_url)
|
||||
|
||||
context 'when not wordpress' do
|
||||
before do
|
||||
expect(core).to receive(:load_server_module)
|
||||
end
|
||||
expect(core.target).to receive(:homepage_res)
|
||||
.at_least(1)
|
||||
.and_return(Typhoeus::Response.new(effective_url: redirection, body: ''))
|
||||
end
|
||||
|
||||
context 'when no --force' do
|
||||
before { expect(core.target).to receive(:maybe_add_cookies) }
|
||||
context 'to the wp-admin/install.php' do
|
||||
let(:redirection) { "#{target_url}wp-admin/install.php" }
|
||||
|
||||
context 'when no cookies added or still not wordpress after being added' do
|
||||
it 'raises an error' do
|
||||
expect(core.target).to receive(:wordpress?).twice.with(:mixed).and_return(false)
|
||||
it 'calls the formatter with the correct parameters and exit' do
|
||||
expect(core.formatter).to receive(:output)
|
||||
.with('not_fully_configured', hash_including(url: redirection), 'core').ordered
|
||||
|
||||
expect { core.before_scan }.to raise_error(WPScan::Error::NotWordPress)
|
||||
# TODO: Would be cool to be able to test the exit code
|
||||
expect { core.before_scan }.to raise_error(SystemExit)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when the added cookies solved it' do
|
||||
it 'does not raise an error' do
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(false).ordered
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(true).ordered
|
||||
context 'to something else' do
|
||||
let(:redirection) { 'http://g.com/' }
|
||||
|
||||
it 'raises an error' do
|
||||
expect { core.before_scan }.to raise_error(CMSScanner::Error::HTTPRedirect)
|
||||
end
|
||||
end
|
||||
|
||||
context 'to another path with the wp-admin/install.php in the query' do
|
||||
let(:redirection) { "#{target_url}index.php?a=/wp-admin/install.php" }
|
||||
|
||||
context 'when wordpress' do
|
||||
it 'does not raise an error' do
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(true)
|
||||
|
||||
expect { core.before_scan }.to_not raise_error
|
||||
end
|
||||
end
|
||||
|
||||
context 'when not wordpress' do
|
||||
it 'raises an error' do
|
||||
expect(core.target).to receive(:wordpress?).twice.with(:mixed).and_return(false)
|
||||
|
||||
expect { core.before_scan }.to raise_error(WPScan::Error::NotWordPress)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when wordpress' do
|
||||
before do
|
||||
expect(core).to receive(:load_server_module)
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(true)
|
||||
end
|
||||
|
||||
it 'does not raise any error' do
|
||||
expect { core.before_scan }.to_not raise_error
|
||||
end
|
||||
end
|
||||
|
||||
context 'when not wordpress' do
|
||||
before do
|
||||
expect(core).to receive(:load_server_module)
|
||||
end
|
||||
|
||||
context 'when no --force' do
|
||||
before { expect(core.target).to receive(:maybe_add_cookies) }
|
||||
|
||||
context 'when no cookies added or still not wordpress after being added' do
|
||||
it 'raises an error' do
|
||||
expect(core.target).to receive(:wordpress?).twice.with(:mixed).and_return(false)
|
||||
|
||||
expect { core.before_scan }.to raise_error(WPScan::Error::NotWordPress)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when the added cookies solved it' do
|
||||
it 'does not raise an error' do
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(false).ordered
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(true).ordered
|
||||
|
||||
expect { core.before_scan }.to_not raise_error
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when --force' do
|
||||
let(:cli_args) { "#{super()} --force" }
|
||||
|
||||
it 'does not raise any error' do
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(false)
|
||||
|
||||
expect { core.before_scan }.to_not raise_error
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when --force' do
|
||||
let(:cli_args) { "#{super()} --force" }
|
||||
|
||||
it 'does not raise any error' do
|
||||
expect(core.target).to receive(:wordpress?).with(:mixed).and_return(false)
|
||||
|
||||
expect { core.before_scan }.to_not raise_error
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -20,7 +20,7 @@ describe WPScan::Controller::CustomDirectories do
|
||||
|
||||
describe '#before_scan' do
|
||||
context 'when the content_dir is not found and not supplied' do
|
||||
before { expect(controller.target).to receive(:content_dir).with(:mixed) }
|
||||
before { expect(controller.target).to receive(:content_dir).and_return(nil) }
|
||||
|
||||
it 'raises an exception' do
|
||||
expect { controller.before_scan }.to raise_error(WPScan::Error::WpContentDirNotDetected)
|
||||
|
||||
@@ -3,14 +3,16 @@
|
||||
describe WPScan::Finders::Plugins::UrlsInHomepage do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
let(:url) { 'http://wp.lab/' }
|
||||
let(:url) { 'https://wp.lab/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('plugins', 'urls_in_homepage') }
|
||||
|
||||
before { target.scope << 'sub.lab' }
|
||||
|
||||
it_behaves_like 'App::Finders::WpItems::URLsInHomepage' do
|
||||
let(:type) { 'plugins' }
|
||||
let(:uniq_links) { true }
|
||||
let(:uniq_codes) { true }
|
||||
let(:expected_from_links) { (1..4).map { |i| "dl-#{i}" } }
|
||||
let(:expected_from_links) { (1..5).map { |i| "dl-#{i}" } }
|
||||
let(:expected_from_codes) { (1..6).map { |i| "dc-#{i}" } }
|
||||
end
|
||||
|
||||
|
||||
@@ -6,6 +6,8 @@ describe WPScan::Finders::Themes::UrlsInHomepage do
|
||||
let(:url) { 'http://wp.lab/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('themes', 'urls_in_homepage') }
|
||||
|
||||
# before { target.scope << 'sub.lab' }
|
||||
|
||||
it_behaves_like 'App::Finders::WpItems::URLsInHomepage' do
|
||||
let(:type) { 'themes' }
|
||||
let(:uniq_links) { true }
|
||||
|
||||
@@ -50,7 +50,7 @@ describe WPScan::Finders::Users::AuthorIdBruteForcing do
|
||||
end
|
||||
|
||||
context 'when no display_name' do
|
||||
['4.1.1', '3.0', '2.9.2'].each do |file|
|
||||
%w[4.9-span-tag 4.1.1 3.0 2.9.2].each do |file|
|
||||
it "returns nil for #{file}-empty.html" do
|
||||
body = File.read(fixtures.join("#{file}-empty.html"))
|
||||
|
||||
|
||||
@@ -19,15 +19,17 @@ describe WPScan::Finders::Users::OembedApi do
|
||||
end
|
||||
|
||||
context 'when a JSON response' do
|
||||
let(:body) { File.read(fixture) }
|
||||
|
||||
context 'when 404' do
|
||||
let(:body) { File.read(fixtures.join('404.json')) }
|
||||
let(:fixture) { fixtures.join('404.json') }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when 200' do
|
||||
context 'when author_url present' do
|
||||
let(:body) { File.read(fixtures.join('200_author_url.json')) }
|
||||
let(:fixture) { fixtures.join('200_author_url.json') }
|
||||
|
||||
it 'returns the expected array of users' do
|
||||
users = finder.aggressive
|
||||
@@ -44,7 +46,7 @@ describe WPScan::Finders::Users::OembedApi do
|
||||
end
|
||||
|
||||
context 'when author_url not present but author_name' do
|
||||
let(:body) { File.read(fixtures.join('200_author_name.json')) }
|
||||
let(:fixture) { fixtures.join('200_author_name.json') }
|
||||
|
||||
it 'returns the expected array of users' do
|
||||
users = finder.aggressive
|
||||
@@ -59,6 +61,12 @@ describe WPScan::Finders::Users::OembedApi do
|
||||
expect(user.interesting_entries).to eql ['http://wp.lab/wp-json/oembed/1.0/embed?url=http://wp.lab/&format=json']
|
||||
end
|
||||
end
|
||||
|
||||
context 'when body is an array' do
|
||||
let(:fixture) { fixtures.join('array.json') }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -10,10 +10,9 @@ describe WPScan::Model::Theme do
|
||||
before { expect(blog).to receive(:content_dir).at_least(1).and_return('wp-content') }
|
||||
|
||||
describe '#new' do
|
||||
before do
|
||||
stub_request(:get, /.*\.css\z/)
|
||||
.to_return(body: File.read(fixtures.join('style.css')))
|
||||
end
|
||||
before { stub_request(:get, /.*\.css\z/).to_return(body: File.read(fixture)) }
|
||||
|
||||
let(:fixture) { fixtures.join('style.css') }
|
||||
|
||||
its(:url) { should eql 'http://wp.lab/wp-content/themes/spec/' }
|
||||
its(:style_url) { should eql 'http://wp.lab/wp-content/themes/spec/style.css' }
|
||||
@@ -34,6 +33,14 @@ describe WPScan::Model::Theme do
|
||||
|
||||
its(:style_url) { should eql opts[:style_url] }
|
||||
end
|
||||
|
||||
context 'when some new lines are stripped' do
|
||||
let(:fixture) { fixtures.join('stripped_new_lines.css') }
|
||||
|
||||
its(:style_name) { should eql 'Divi' }
|
||||
its(:style_uri) { should eql 'http://www.elegantthemes.com/gallery/divi/' }
|
||||
its(:license_uri) { should eql 'http://www.gnu.org/licenses/gpl-2.0.html' }
|
||||
end
|
||||
end
|
||||
|
||||
describe '#version' do
|
||||
|
||||
1479
spec/fixtures/db/dynamic_finders.yml
vendored
1479
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
540
spec/fixtures/dynamic_finders/expected.yml
vendored
540
spec/fixtures/dynamic_finders/expected.yml
vendored
@@ -390,6 +390,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/abcsubmit//assets/css/admin.css?ver=1.1.0
|
||||
confidence: 10
|
||||
about-author-box:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/about-author-box/css/about-author-box.css?ver=1.0.0
|
||||
confidence: 10
|
||||
above-the-fold-optimization:
|
||||
StyleComment:
|
||||
number: 2.9.2
|
||||
@@ -1504,6 +1511,16 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/advanced-twitter-profile-widget/languages/atpw-pl_PL.po,
|
||||
Match: ''ersion: Advanced Twitter Profile Widget 1.0.7'''
|
||||
advanced-widgets-for-elementor:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/advanced-widgets-for-elementor/assets/vendor/css/font-awesome.min.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/advanced-widgets-for-elementor/assets/fonts/style.min.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/advanced-widgets-for-elementor/assets/css/alert.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/advanced-widgets-for-elementor/assets/js/aae.js?ver=1.0.1
|
||||
confidence: 40
|
||||
advanced-wordpress-theme-editor:
|
||||
MetaTag:
|
||||
number: 1.0
|
||||
@@ -2500,6 +2517,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/appointment-form-manager/public/css/style.css?ver=2.1.0
|
||||
- http://wp.lab/wp-content/plugins/appointment-form-manager/public/css/popup.css?ver=2.1.0
|
||||
appointment-scheduling-karenapp:
|
||||
QueryParameter:
|
||||
number: '0.1'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/appointment-scheduling-karenapp/css/schedule-frontend.min.css?ver=0.1
|
||||
- http://wp.lab/wp-content/plugins/appointment-scheduling-karenapp/js/schedule.min.js?ver=0.1
|
||||
confidence: 20
|
||||
appointments:
|
||||
QueryParameter:
|
||||
number: 2.2.3
|
||||
@@ -2921,6 +2946,19 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/audioigniter/player/build/style.css?ver=1.4.1
|
||||
- http://wp.lab/wp-content/plugins/audioigniter/player/build/app.js?ver=1.4.1
|
||||
aurora-heatmap:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/aurora-heatmap/js/reporter.js?ver=1.0.0
|
||||
confidence: 10
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/aurora-heatmap/languages/aurora-heatmap-ja.po,
|
||||
Match: ''"Project-Id-Version: Aurora Heatmap v1.0.0'''
|
||||
ausmed-document-button:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -3147,6 +3185,16 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/avaibook/languages/avaibook-pt_PT.po, Match:
|
||||
''"Project-Id-Version: AvaiBook 1.0.0'''
|
||||
availability-calendar:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/availability-calendar/public/css/styles.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/availability-calendar/public/css/owac.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/availability-calendar/public/css/owac-theme.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/availability-calendar/public/js/owac.js?ver=1.0
|
||||
confidence: 40
|
||||
avangpress:
|
||||
ChangeLog:
|
||||
number: 1.0.1
|
||||
@@ -5809,6 +5857,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/buzz-instagram-feed/js/modernizr.custom.26633.js?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/buzz-instagram-feed/js/jquery.gridrotator.js?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/buzz-instagram-feed/js/frontend.js?ver=1.0.3
|
||||
bwl-advanced-faq-manager-lite:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/bwl-advanced-faq-manager-lite/css/faq-style.css?ver=1.0.0
|
||||
confidence: 10
|
||||
bwp-external-links:
|
||||
QueryParameter:
|
||||
number: 1.1.3
|
||||
@@ -6366,6 +6421,18 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/cbxinstaphotos/public/css/cbxinstaphotos-public.css?ver=1.0.1
|
||||
cbxpetition:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/cbxpetition/assets/js/venobox/venobox.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/cbxpetition/assets/css/cbxpetition-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/cbxpetition/assets/js/venobox/venobox.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/cbxpetition/assets/js/readmore/readmore.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/cbxpetition/assets/js/jquery.validate.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/cbxpetition/assets/js/cbxpetition-public.js?ver=1.0.0
|
||||
confidence: 60
|
||||
cbxpoll:
|
||||
TranslationFile:
|
||||
number: 1.0.5
|
||||
@@ -6535,6 +6602,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/cc-social-buttons/assets/js/script.js?ver=1.0.0
|
||||
confidence: 10
|
||||
cc-travel:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/cc-travel/assets/plugins/ranger/jquery.range-min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/cc-travel/assets/js/script.js?ver=1.0.0
|
||||
confidence: 20
|
||||
ccr-client-testimonials:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -7427,6 +7502,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/cmb2/CHANGELOG.md, Match: ''## [2.3.0 -
|
||||
2017-12-20]'''
|
||||
cn-custom-tabs:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/cn-custom-tabs/public/css/cn-custom-woo-tabs-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/cn-custom-tabs/public/js/cn-custom-woo-tabs-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
cnhk-slideshow:
|
||||
QueryParameter:
|
||||
number: 3.1.1
|
||||
@@ -7855,6 +7938,15 @@ plugins:
|
||||
found_by: Comment (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''WP Audio player plugin v1.9.6'''
|
||||
compare-your-income-moneyarcher:
|
||||
QueryParameter:
|
||||
number: 2.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/compare-your-income-moneyarcher/css/style.css?ver=2.0.0
|
||||
- http://wp.lab/wp-content/plugins/compare-your-income-moneyarcher/js/progress.js?ver=2.0.0
|
||||
- http://wp.lab/wp-content/plugins/compare-your-income-moneyarcher/js/script.js?ver=2.0.0
|
||||
confidence: 30
|
||||
complete-open-graph:
|
||||
Comment:
|
||||
number: 3.0.3
|
||||
@@ -8118,6 +8210,12 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/contact-list/public/contact-list-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/contact-list/public/contact-list-public.js?ver=1.0.0
|
||||
confidence: 40
|
||||
TranslationFile:
|
||||
number: 2.3.5
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/contact-list/languages/contact-list.pot,
|
||||
Match: ''"Project-Id-Version: Contact List 2.3.5'''
|
||||
contact-me-on-zalo:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
@@ -8188,6 +8286,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/contestfriend/contestfriend.pot, Match:
|
||||
''Id-Version: contestfriend for WordPress 1.0'''
|
||||
continue-shopping-anywhere-for-woocommerce:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/continue-shopping-anywhere-for-woocommerce/public/css/continue-shopping-anywhere-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/continue-shopping-anywhere-for-woocommerce/public/js/continue-shopping-anywhere-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
contributer:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -10538,6 +10644,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/easy-social-sharing/languages/easy-social-sharing.pot,
|
||||
Match: ''Project-Id-Version: Easy Social Sharing 1.3.0'''
|
||||
easy-static-maps:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/easy-static-maps/lang/easy-static-maps-it_IT.po,
|
||||
Match: ''"Project-Id-Version: Easy Static Maps 1.0'''
|
||||
easy-support-videos:
|
||||
TranslationFile:
|
||||
number: 1.0.4
|
||||
@@ -12281,6 +12394,14 @@ plugins:
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/fakerpress/package.json, Match: ''0.4.11'''
|
||||
falang:
|
||||
QueryParameter:
|
||||
number: '0.9'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/falang/public/css/falang-public.css?ver=0.9
|
||||
- http://wp.lab/wp-content/plugins/falang/public/js/falang-public.js?ver=0.9
|
||||
confidence: 20
|
||||
falconiform-youtube-widget:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
@@ -13138,6 +13259,17 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/food-and-drink-menu/languages/food-and-drink-menu.pot,
|
||||
Match: ''Project-Id-Version: Food and Drink Menu 1.5.2'''
|
||||
food-to-prep:
|
||||
QueryParameter:
|
||||
number: 0.1.4
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/food-to-prep/assets/css/style.min.css?ver=0.1.4
|
||||
- http://wp.lab/wp-content/plugins/food-to-prep/assets/css/simplePagination.css?ver=0.1.4
|
||||
- http://wp.lab/wp-content/plugins/food-to-prep/assets/js/grid-gallery.min.js?ver=0.1.4
|
||||
- http://wp.lab/wp-content/plugins/food-to-prep/assets/js/add-to-cart.min.js?ver=0.1.4
|
||||
- http://wp.lab/wp-content/plugins/food-to-prep/assets/js/jquery.simplePagination.js?ver=0.1.4
|
||||
confidence: 50
|
||||
food-truck:
|
||||
QueryParameter:
|
||||
number: 1.0.4
|
||||
@@ -13419,6 +13551,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/freelancer-sharing-icons/public/css/freelancer_share_icons-public.css?ver=1.0.0
|
||||
confidence: 10
|
||||
frequency:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/frequency/public/css/frequency-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/frequency/public/js/frequency-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
fresh-podcaster:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -13857,6 +13997,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/generate-thumbnail/public/css/generate-thumbnail-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/generate-thumbnail/public/js/generate-thumbnail-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
generous-world:
|
||||
ChangeLog:
|
||||
number: 1.0.1
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/generous-world/changelog.txt, Match: ''##
|
||||
1.0.1 - 2019-09-20'''
|
||||
genesis-js-no-js:
|
||||
ChangeLog:
|
||||
number: 3.2.1
|
||||
@@ -15508,6 +15655,13 @@ plugins:
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/heart-this/CHANGELOG.md, Match: ''## 0.1.0'''
|
||||
heateor-login:
|
||||
QueryParameter:
|
||||
number: 1.0.3
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/heateor-login/css/public/front.css?ver=1.0.3
|
||||
confidence: 10
|
||||
heateor-open-graph-meta-tags:
|
||||
Comment:
|
||||
number: 1.1.6
|
||||
@@ -16283,6 +16437,15 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/igniteup/includes/css/front-compulsory.css?ver=3.2
|
||||
iks-menu:
|
||||
QueryParameter:
|
||||
number: 1.6.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/iks-menu/assets/css/public.css?ver=1.6.1
|
||||
- http://wp.lab/wp-content/plugins/iks-menu/assets/js/public.js?ver=1.6.1
|
||||
- http://wp.lab/wp-content/plugins/iks-menu/assets/js/menu.js?ver=1.6.1
|
||||
confidence: 30
|
||||
ilannotations:
|
||||
QueryParameter:
|
||||
number: 0.9.0
|
||||
@@ -18068,6 +18231,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/kk-star-ratings/css.css?ver=2.6.4
|
||||
- http://wp.lab/wp-content/plugins/kk-star-ratings/js.min.js?ver=2.6.4
|
||||
confidence: 20
|
||||
klantenvertellen:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/klantenvertellen/public/js/klantenvertellen-public.js?ver=1.0.1
|
||||
confidence: 10
|
||||
klarity-message-action-block:
|
||||
ComposerFile:
|
||||
number: 1.0.2
|
||||
@@ -18908,6 +19078,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/linker/language/linker.pot, Match: ''"Project-Id-Version:
|
||||
Linker 1.2.0'''
|
||||
linkgreen-product-import:
|
||||
QueryParameter:
|
||||
number: 1.0.5
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/linkgreen-product-import/public/css/linkgreen-product-import-public.css?ver=1.0.5
|
||||
- http://wp.lab/wp-content/plugins/linkgreen-product-import/public/js/linkgreen-product-import-public.js?ver=1.0.5
|
||||
confidence: 20
|
||||
linkpaper:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -19461,7 +19639,8 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/lsx-blog-customizer/assets/css/lsx-blog-customizer.css?ver=1.2
|
||||
- http://wp.lab/wp-content/plugins/lsx-blog-customizer/assets/js/vendor/owl.carousel.min.js?ver=1.2
|
||||
- http://wp.lab/wp-content/plugins/lsx-blog-customizer/assets/js/lsx-blog-customizer.min.js?ver=1.2
|
||||
confidence: 50
|
||||
- http://wp.lab/wp-content/plugins/lsx-blog-customizer/assets/js/src/lsx-blog-customizer.js?ver=1.2
|
||||
confidence: 60
|
||||
ChangeLog:
|
||||
number: 1.2.3
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
@@ -20927,6 +21106,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/meteor-slides/css/meteor-slides.css, Match:
|
||||
''Stylesheet for the Meteor Slides 1.5.6 slideshow'''
|
||||
metomic-for-cookies:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/metomic-for-cookies/public/css/metomic-public.css?ver=1.0.0
|
||||
confidence: 10
|
||||
metro-share-social-fonts:
|
||||
QueryParameter:
|
||||
number: 0.2.1
|
||||
@@ -22195,6 +22381,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/nelio-ab-testing/languages/nelio-ab-testing.pot,
|
||||
Match: ''"Project-Id-Version: Nelio A/B Testing 4.6.5'''
|
||||
nelio-compare-images:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/nelio-compare-images/package.json, Match:
|
||||
''1.0.0'''
|
||||
nelio-content:
|
||||
TranslationFile:
|
||||
number: 1.4.4
|
||||
@@ -22398,6 +22591,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/newsletter-optin-box/languages/noptin.pot,
|
||||
Match: ''- Simple Newsletter Subscription Forms 1.0.5'''
|
||||
next-mail-chimp:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/next-mail-chimp/assets/public/css/public-style.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/next-mail-chimp/assets/public/script/subscribe.js?ver=1.0.1
|
||||
confidence: 20
|
||||
nextcellent-gallery-nextgen-legacy:
|
||||
Comment:
|
||||
number: 2.0.66.37
|
||||
@@ -22665,6 +22866,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/no-copy/no-copy.js?ver=1.1.4
|
||||
confidence: 10
|
||||
no-spam-at-all:
|
||||
QueryParameter:
|
||||
number: '1.3'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/no-spam-at-all/assets/css/nsaa_style.css?ver=1.3
|
||||
confidence: 10
|
||||
noakes-menu-manager:
|
||||
ComposerFile:
|
||||
number: 1.5.2
|
||||
@@ -23002,6 +23210,8 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/js/datatables.min.js?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/css/loving-memorials-public.min.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/css/bootstrap.min.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/js/loving-memorials-public.min.js?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/frontend/js/loving-memorials-frontend.min.js?ver=1.0.1
|
||||
confidence: 100
|
||||
object-sync-for-salesforce:
|
||||
ChangeLog:
|
||||
@@ -23290,6 +23500,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/ontario-hst-calculator/cc-ontario-hst-calculator.js?ver=0.1.0
|
||||
confidence: 10
|
||||
opal-estate-packages:
|
||||
ChangeLog:
|
||||
number: 1.0.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/opal-estate-packages/changelog.txt, Match:
|
||||
''= 1.0.0'''
|
||||
opal-estate-pro:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -23298,7 +23515,15 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/infobox.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/opalestate.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/country-select.js?ver=1.0
|
||||
confidence: 30
|
||||
- http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/frontend/googlemaps.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/frontend/property.js?ver=1.0
|
||||
confidence: 50
|
||||
ChangeLog:
|
||||
number: 1.0.4
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/opal-estate-pro/changelog.txt, Match: ''=
|
||||
1.0.4'''
|
||||
open-badge-factory:
|
||||
TranslationFile:
|
||||
number: 1.4.7.5
|
||||
@@ -23575,6 +23800,12 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/ot-flatsome-vertical-menu/assets/css/ot-vertical-menu.css?ver=1.1.0
|
||||
- http://wp.lab/wp-content/plugins/ot-flatsome-vertical-menu/assets/js/ot-vertical-menu.js?ver=1.1.0
|
||||
confidence: 20
|
||||
otm-accessibly:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/otm-accessibly/package.json, Match: ''1.0.0'''
|
||||
otter-blocks:
|
||||
ChangeLog:
|
||||
number: 1.1.5
|
||||
@@ -25487,6 +25718,14 @@ plugins:
|
||||
found_by: Comment (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''Premium SEO Pack Plugin 1.2.005'''
|
||||
prerender:
|
||||
QueryParameter:
|
||||
number: 1.1.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/prerender/public/css/prerender-public.css?ver=1.1.0
|
||||
- http://wp.lab/wp-content/plugins/prerender/public/js/prerender-public.js?ver=1.1.0
|
||||
confidence: 20
|
||||
presbooks-openstax-import:
|
||||
ComposerFile:
|
||||
number: 0.1.3
|
||||
@@ -25639,6 +25878,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/pretty-portfolio/lib/csf/languages/bn_BD.po,
|
||||
Match: ''"Project-Id-Version: Codestar Framework 1.0.0'''
|
||||
prevent-file-access:
|
||||
QueryParameter:
|
||||
number: 1.1.3
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/prevent-file-access/public/css/media-restriction-public.css?ver=1.1.3
|
||||
- http://wp.lab/wp-content/plugins/prevent-file-access/public/js/media-restriction-public.js?ver=1.1.3
|
||||
confidence: 20
|
||||
prices-by-user-role-lite:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
@@ -25715,6 +25962,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/pro-adblock/gads.js?ver=1.2.1
|
||||
- http://wp.lab/wp-content/plugins/pro-adblock/padb-style.css?ver=1.2.1
|
||||
confidence: 30
|
||||
pro-author-review:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/pro-author-review/assets/css/front/author-review.min.css?ver=1.0
|
||||
confidence: 10
|
||||
pro-vip:
|
||||
TranslationFile:
|
||||
number: 0.1.4
|
||||
@@ -25813,6 +26067,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/productdyno/public/css/productdyno-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/productdyno/public/js/productdyno-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
products-boxes-slider-for-woocommerce:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/products-boxes-slider-for-woocommerce/js/uikit.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/products-boxes-slider-for-woocommerce/js/uikit-icons.min.js?ver=1.0.0
|
||||
confidence: 20
|
||||
professional-contact-form:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -26090,6 +26352,15 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/pubsubhubbub/languages/pubsubhubbub.pot,
|
||||
Match: ''Project-Id-Version: WebSub/PubSubHubbub 2.2.1'''
|
||||
puchi-ab-testing:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/puchi-ab-testing/public/css/puchi-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/puchi-ab-testing/public/js/base64.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/puchi-ab-testing/public/js/puchi-public.min.js?ver=1.0.0
|
||||
confidence: 30
|
||||
pud-generator:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -26752,6 +27023,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/real-accessability/real-accessability.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/real-accessability/real-accessability.js?ver=1.0
|
||||
confidence: 20
|
||||
real-category-library-lite:
|
||||
TranslationFile:
|
||||
number: 3.2.6
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/real-category-library-lite/languages/real-category-library-de_DE.po,
|
||||
Match: ''-Version: WP Real Categories Management 3.2.6'''
|
||||
real-content-locker:
|
||||
QueryParameter:
|
||||
number: 1.9.299
|
||||
@@ -29102,6 +29380,14 @@ plugins:
|
||||
found_by: Comment (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''SEO SIMPLE PACK 1.0.9'''
|
||||
seo-slider:
|
||||
QueryParameter:
|
||||
number: 1.0.10
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/seo-slider/assets/styles/styles.css?ver=1.0.10
|
||||
- http://wp.lab/wp-content/plugins/seo-slider/assets/scripts/scripts.js?ver=1.0.10
|
||||
confidence: 20
|
||||
seo-tag-cloud:
|
||||
TranslationFile:
|
||||
number: 1.8.2
|
||||
@@ -29109,6 +29395,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/seo-tag-cloud/lang/seo-tag-cloud.pot, Match:
|
||||
''roject-Id-Version: SEO Tag Cloud Widget 1.8.2'''
|
||||
seo-toolkit:
|
||||
TranslationFile:
|
||||
number: 1.0.1
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/seo-toolkit/languages/seo-toolkit.pot, Match:
|
||||
''"Project-Id-Version: SEO Toolkit 1.0.1'''
|
||||
seo-wordpress:
|
||||
ComposerFile:
|
||||
number: 4.0.9
|
||||
@@ -29567,6 +29860,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/show-external-links/public/css/show-external-links-public.css?ver=1.0.1
|
||||
confidence: 10
|
||||
show-hide-content-for-fusion-builder:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/show-hide-content-for-fusion-builder/languages/show-hide-content-for-fusion-builder.pot,
|
||||
Match: ''n: Show Hide Content for Fusion Builder 1.0.0'''
|
||||
show-me-the-admin:
|
||||
QueryParameter:
|
||||
number: 1.2.1
|
||||
@@ -31206,6 +31506,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/social-mentions/css/front-end.css?ver=1.0.3
|
||||
confidence: 10
|
||||
social-menu:
|
||||
QueryParameter:
|
||||
number: 0.1.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/social-menu/style.css?ver=0.1.0
|
||||
confidence: 10
|
||||
social-nation-itsme-login:
|
||||
QueryParameter:
|
||||
number: 1.0.8
|
||||
@@ -32203,6 +32510,25 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/styles-for-wp-pagenavi-addon/assets/css/sfwppa-style.css?ver=1.0.1
|
||||
confidence: 10
|
||||
styles-selector:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/styles-selector/public/css/styleselector-public.css?ver=1.0.0
|
||||
confidence: 10
|
||||
styling-default-post-flipbox:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/css/fontawesome.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/css/bootstrap.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/css/style.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/js/bootstrap.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/js/jquery-flip.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/js/fsdp-flipbox-script.js?ver=1.0.0
|
||||
confidence: 60
|
||||
stylish-author-bio:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
@@ -33008,6 +33334,18 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/teachpress/js/frontend.js?ver=6.2.1
|
||||
- http://wp.lab/wp-content/plugins/teachpress/styles/teachpress_front.css?ver=6.2.1
|
||||
confidence: 20
|
||||
team-master:
|
||||
QueryParameter:
|
||||
number: 1.0.3
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/team-master/public/css/team-master-public.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/team-master/public/css/bootstrap.min.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/team-master/public/css/font-awesome.min.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/team-master/public/js/popper.min.js?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/team-master/public/js/bootstrap.min.js?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/team-master/public/js/team-master-public.js?ver=1.0.3
|
||||
confidence: 60
|
||||
team-members-block:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
@@ -33615,6 +33953,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/tidings/css/tidings.css?ver=1.0.3
|
||||
confidence: 10
|
||||
tiempo:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/tiempo/public/css/tiempo-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/tiempo/public/js/tiempo-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
time-clock:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
@@ -33656,6 +34002,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/timelines/langs/tl-pt_BR.po, Match: ''"Project-Id-Version:
|
||||
Timelines 1.0'''
|
||||
timezone-conversion-widget:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/timezone-conversion-widget/assets/css/select2.min.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/timezone-conversion-widget/assets/js/select2.min.js?ver=1.0
|
||||
confidence: 20
|
||||
timezonecalculator:
|
||||
MetaTag:
|
||||
number: '3.37'
|
||||
@@ -34056,6 +34410,12 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/tractis-identity-verifications/css/tractis_auth.css?ver=1.4.3
|
||||
confidence: 10
|
||||
traffic:
|
||||
ChangeLog:
|
||||
number: 1.1.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/traffic/CHANGELOG.md, Match: ''## [1.1.0]'''
|
||||
trail-manager:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -34175,6 +34535,14 @@ plugins:
|
||||
found_by: Comment (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''TrendMD v2.4.3'''
|
||||
triagetrak:
|
||||
QueryParameter:
|
||||
number: 2.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/triagetrak/public/css/triage-trak-public.min.css?ver=2.0.0
|
||||
- http://wp.lab/wp-content/plugins/triagetrak/public/js/triage-trak-public.min.js?ver=2.0.0
|
||||
confidence: 20
|
||||
triggerbee:
|
||||
QueryParameter:
|
||||
number: 1.0.4
|
||||
@@ -35106,6 +35474,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/unique-hover-slider-plus/CHANGELOG.md, Match:
|
||||
''## 1.1.2'''
|
||||
unitizr:
|
||||
QueryParameter:
|
||||
number: 1.0.2
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/unitizr/lib/unitizr-public-style.css?ver=1.0.2
|
||||
confidence: 10
|
||||
units:
|
||||
QueryParameter:
|
||||
number: 1.0.2
|
||||
@@ -35233,6 +35608,13 @@ plugins:
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/uploadcare/CHANGELOG.md, Match: ''## [2.6.1]'''
|
||||
upsell-order-bump-offer-for-woocommerce:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/upsell-order-bump-offer-for-woocommerce/languages/upsell-order-bump-offer-for-woocommerce-en_US.po,
|
||||
Match: ''Upsell Order Bump Offer for WooCommerce 1.0.0'''
|
||||
upstream:
|
||||
TranslationFile:
|
||||
number: 1.13.5
|
||||
@@ -35880,6 +36262,19 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/vies-validator/public/css/vies-validator-public.css?ver=1.0.4
|
||||
- http://wp.lab/wp-content/plugins/vies-validator/public/js/vies-validator-public.js?ver=1.0.4
|
||||
confidence: 20
|
||||
vikappointments:
|
||||
ChangeLog:
|
||||
number: '1.1'
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/vikappointments/changelog.md, Match: ''##
|
||||
1.1'''
|
||||
vikbooking:
|
||||
ChangeLog:
|
||||
number: 1.2.7
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/vikbooking/changelog.md, Match: ''## 1.2.7'''
|
||||
vikoder-posts-block:
|
||||
TranslationFile:
|
||||
number: 1.1.0
|
||||
@@ -35975,6 +36370,14 @@ plugins:
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/visualcaptcha/composer.json, Match: ''5.0.6'''
|
||||
visualcomposer:
|
||||
QueryParameter:
|
||||
number: '20.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/visualcomposer/public/dist/front.bundle.css?ver=20.0
|
||||
- http://wp.lab/wp-content/plugins/visualcomposer/public/dist/front.bundle.js?ver=20.0
|
||||
confidence: 20
|
||||
visualizer:
|
||||
QueryParameter:
|
||||
number: 3.0.4
|
||||
@@ -36661,6 +37064,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wdv-about-me-widget/languages/wdv-about-me-widget.pot,
|
||||
Match: ''Project-Id-Version: WDV About Me Widget 1.1.0'''
|
||||
QueryParameter:
|
||||
number: 1.1.3
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wdv-about-me-widget/public/css/wdv-about-me-widget-public.css?ver=1.1.3
|
||||
- http://wp.lab/wp-content/plugins/wdv-about-me-widget/public/js/wdv-about-me-widget-public.js?ver=1.1.3
|
||||
confidence: 20
|
||||
wdv-add-services-and-events:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -37521,6 +37931,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wolfnet-idx-for-wordpress/package.json,
|
||||
Match: ''1.17.3'''
|
||||
wonder-cache:
|
||||
TranslationFile:
|
||||
number: 0.1.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wonder-cache/languages/wonder-cache.pot,
|
||||
Match: ''"Project-Id-Version: Wonder Cache 0.1.0'''
|
||||
wonderm00ns-simple-facebook-open-graph-tags:
|
||||
Comment:
|
||||
number: 2.1.5
|
||||
@@ -38258,6 +38675,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-product-builder/CHANGELOG.txt, Match:
|
||||
''/**1.0.2.2 - 2018.01.29 **/'''
|
||||
woo-product-bundle:
|
||||
TranslationFile:
|
||||
number: 3.7.2
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woo-product-bundle/languages/woo-product-bundle.pot,
|
||||
Match: ''on: WPC Product Bundles for WooCommerce 3.7.2'''
|
||||
woo-product-disable:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -39098,6 +39522,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woocommerce-products-filter/languages/woocommerce-products-filter-es_ES.po,
|
||||
Match: ''#. Filter 1.2.2.1'''
|
||||
QueryParameter:
|
||||
number: 1.2.3
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/woocommerce-products-filter/css/front.css?ver=1.2.3
|
||||
- http://wp.lab/wp-content/plugins/woocommerce-products-filter/js/chosen/chosen.min.css?ver=1.2.3
|
||||
confidence: 20
|
||||
woocommerce-quantity-increment:
|
||||
TranslationFile:
|
||||
number: 1.1.0
|
||||
@@ -39215,6 +39646,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/woocommerce-zooming-image/assets/js/main.js?ver=1.0
|
||||
confidence: 10
|
||||
woodash:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/woodash/i18n/woodash.pot, Match: ''"Project-Id-Version:
|
||||
WooDash 1.0.0'''
|
||||
woolentor-addons:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -40331,6 +40769,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/wp-contact-form7-email-spam-blocker/public/css/contact-form-7-email-spam-blocker-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-contact-form7-email-spam-blocker/public/js/contact-form-7-email-spam-blocker-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wp-content-scheduler-with-range:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-content-scheduler-with-range/assets/css/date_range_style.min.css?ver=1.1
|
||||
- http://wp.lab/wp-content/plugins/wp-content-scheduler-with-range/assets/js/wcswr-frontend.js?ver=1.1
|
||||
confidence: 20
|
||||
wp-cookie-law-info:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -43159,6 +43605,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-soavis/languages/wp-soavis.pot, Match:
|
||||
''"Project-Id-Version: WP_SoaVis 1.2.0'''
|
||||
wp-social-connect:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-social-connect/assets/css/wpsoccon-frontend.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-social-connect/assets/js/wpsoccon-frontend.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wp-social-invitations:
|
||||
QueryParameter:
|
||||
number: 2.1.1
|
||||
@@ -43354,6 +43808,15 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-subscribe/languages/wp-subscribe.pot,
|
||||
Match: ''"Project-Id-Version: WP Subscribe 1.2.6'''
|
||||
wp-subscription-forms:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-subscription-forms/fontawesome/css/all.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-subscription-forms/css/wpsf-frontend.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-subscription-forms/js/wpsf-frontend.js?ver=1.0.0
|
||||
confidence: 30
|
||||
wp-subtitle:
|
||||
ChangeLog:
|
||||
number: '3.2'
|
||||
@@ -43398,6 +43861,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/wp-switch-user/public/css/ace_switch_user-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-switch-user/public/js/ace_switch_user-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wp-sync-dropbox:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-sync-dropbox/public/css/dropsync-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-sync-dropbox/public/js/dropsync-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wp-syntax:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
@@ -44413,6 +44884,20 @@ plugins:
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wphindi/changelog.md, Match: ''## [1.0.4]'''
|
||||
wphobby-ajax-search-for-woocommerce:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wphobby-ajax-search-for-woocommerce/languages/wphobby-woo-ajax-search.pot,
|
||||
Match: ''ect-Id-Version: WooCommerce Ajax Search 1.0.0'''
|
||||
wphobby-pdf-invoices-for-woocommerce:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wphobby-pdf-invoices-for-woocommerce/languages/wphobby-woo-pdf-invoice.pot,
|
||||
Match: ''-Version: WooCommerce PDF Invoice Maker 1.0.0'''
|
||||
wphobby-woocommerce-mini-cart:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -44507,6 +44992,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wpm-email/languages/wpm-email-it_IT.po,
|
||||
Match: ''"Project-Id-Version: WPM-Email 1.0.0'''
|
||||
wpmarathi:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wpmarathi//assets/css/wpmarathi-frontend.css?ver=1.0.0
|
||||
confidence: 10
|
||||
wpmbytplayer:
|
||||
QueryParameter:
|
||||
number: 3.1.7
|
||||
@@ -44764,6 +45256,20 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wpsso-breadcrumbs/languages/wpsso-breadcrumbs.pot,
|
||||
Match: ''ersion: WPSSO Schema Breadcrumbs Markup 1.1.3'''
|
||||
wpsso-faq:
|
||||
TranslationFile:
|
||||
number: 1.0.2
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wpsso-faq/languages/wpsso-faq-fr_FR.po,
|
||||
Match: ''"Project-Id-Version: WPSSO FAQ Manager 1.0.2'''
|
||||
wpsso-inherit-parent-meta:
|
||||
TranslationFile:
|
||||
number: 2.0.2
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wpsso-inherit-parent-meta/languages/wpsso-inherit-parent-meta.pot,
|
||||
Match: ''t-Id-Version: WPSSO Inherit Parent Meta 2.0.2'''
|
||||
wpsso-organization:
|
||||
TranslationFile:
|
||||
number: 1.2.2
|
||||
@@ -44785,6 +45291,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wpsso-ratings-and-reviews/languages/wpsso-ratings-and-reviews.pot,
|
||||
Match: ''t-Id-Version: WPSSO Ratings and Reviews 1.3.4'''
|
||||
wpsso-rest-api:
|
||||
TranslationFile:
|
||||
number: 2.0.3
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wpsso-rest-api/languages/wpsso-rest-api-fr_FR.po,
|
||||
Match: ''"Project-Id-Version: WPSSO REST API 2.0.3'''
|
||||
wpsso-rrssb:
|
||||
QueryParameter:
|
||||
number: 1.6.4
|
||||
@@ -45242,6 +45755,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/yamap-block-gutenberg/assets/block-front.build.js?ver=1.0.0
|
||||
confidence: 10
|
||||
yame-linkinbio:
|
||||
QueryParameter:
|
||||
number: 0.9.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/yame-linkinbio/public/js/linkinbio-public.js?ver=0.9.0
|
||||
confidence: 10
|
||||
yapsody-events-calendar:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -45663,6 +46183,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/zerowp-social-profiles/assets/css/styles.css?ver=1.1.3
|
||||
confidence: 10
|
||||
zi-hide-price-and-add-to-cart-for-woocommerce:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/zi-hide-price-and-add-to-cart-for-woocommerce/public/css/zi-woo-hide-price-cart-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/zi-hide-price-and-add-to-cart-for-woocommerce/public/js/zi-woo-hide-price-cart-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
zigaform-calculator-cost-estimation-form-builder-lite:
|
||||
LinkInHomepage:
|
||||
number: 3.7.8
|
||||
@@ -45693,6 +46221,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/zigaform-form-builder-lite/change_log.txt,
|
||||
Match: ''Version 3.9.8.5'''
|
||||
zim-airtime:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/zim-airtime/public/css/techzim-airtime-public201909070020.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/zim-airtime/public/js/techzim-airtime-public201909111050.js?ver=1.0.0
|
||||
confidence: 20
|
||||
ziyarat-ashura:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
|
||||
@@ -0,0 +1,553 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Aurora Heatmap v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
||||
"POT-Creation-Date: 2019-09-20 16:15+0900\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: R3098 <info@seous.info>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: freemius\n"
|
||||
|
||||
#: aurora-heatmap.php:34 class-aurora-heatmap-basic.php:212
|
||||
#: class-aurora-heatmap-basic.php:213 class-aurora-heatmap-basic.php:311
|
||||
#: class-aurora-heatmap-basic.php:446
|
||||
msgid "Aurora Heatmap"
|
||||
msgstr "Aurora Heatmap"
|
||||
|
||||
#: aurora-heatmap.php:35
|
||||
msgid ""
|
||||
"Beautiful like an aurora! A simple WordPress heatmap that can be completed "
|
||||
"with just a plugin."
|
||||
msgstr ""
|
||||
"オーロラのように美しい、プラグインだけで完結するシンプルな WordPress 用ヒート"
|
||||
"マップです。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:91
|
||||
msgid "Fail to activate. Another version of Aurora Heatmap is already active."
|
||||
msgstr ""
|
||||
"有効化に失敗しました。他のバージョンの Aurora Heatmap が既に有効化されていま"
|
||||
"す。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:227
|
||||
#: premium/class-aurora-heatmap-standard.php:59
|
||||
msgid "Settings"
|
||||
msgstr "設定"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:232
|
||||
msgid "Premium Version Information"
|
||||
msgstr "有料版のご案内"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:237 class-aurora-heatmap-basic.php:252
|
||||
#: premium/class-aurora-heatmap-standard.php:69
|
||||
#: premium/class-aurora-heatmap-standard.php:84
|
||||
msgid "Click"
|
||||
msgstr "クリック"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:242 class-aurora-heatmap-basic.php:257
|
||||
#: premium/class-aurora-heatmap-standard.php:74
|
||||
#: premium/class-aurora-heatmap-standard.php:89
|
||||
msgid "Breakaway"
|
||||
msgstr "離脱"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:247 class-aurora-heatmap-basic.php:262
|
||||
#: premium/class-aurora-heatmap-standard.php:79
|
||||
#: premium/class-aurora-heatmap-standard.php:94
|
||||
msgid "Attention"
|
||||
msgstr "熟読"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:269
|
||||
#: premium/class-aurora-heatmap-standard.php:64
|
||||
msgid "Help"
|
||||
msgstr "ヘルプ"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:328
|
||||
msgid "Updated options."
|
||||
msgstr "設定を更新しました。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:332
|
||||
msgid "Deleted heatmap data."
|
||||
msgstr "ヒートマップデータは削除されました。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:415
|
||||
msgid "PC"
|
||||
msgstr "パソコン"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:421
|
||||
msgid "Mobile"
|
||||
msgstr "モバイル"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:511
|
||||
msgid "<b>Aurora Heatmap</b> has a premium version with extended features."
|
||||
msgstr "<b>Aurora Heatmap</b> は機能を拡張した有料版を用意しています。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:512
|
||||
msgid "If you like this plugin, please consider upgrading!"
|
||||
msgstr ""
|
||||
"本プラグインを気に入っていただけましたら、ぜひ、アップグレードを検討くださ"
|
||||
"い!"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:515
|
||||
msgid "Features comparison"
|
||||
msgstr "機能比較"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:520
|
||||
msgid "Free Version"
|
||||
msgstr "無料版"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:521
|
||||
msgid "Premium Version"
|
||||
msgstr "有料版"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:524
|
||||
msgid "Free Plan"
|
||||
msgstr "フリープラン"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:525
|
||||
msgid "Standard Plan"
|
||||
msgstr "<span class=\"ib\">スタンダード</span><span class=\"ib\">プラン</span>"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:531
|
||||
msgid "Priority Email Support"
|
||||
msgstr "メールサポート"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:532
|
||||
msgid "Click Heatmap"
|
||||
msgstr "クリックヒートマップ"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:533
|
||||
msgid "Breakaway Heatmap"
|
||||
msgstr "離脱ヒートマップ"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:534
|
||||
msgid "Attention Heatmap"
|
||||
msgstr "熟読ヒートマップ"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:535
|
||||
msgid "URL Organization"
|
||||
msgstr "URL 最適化"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:536
|
||||
msgid "Extended Retension Period (6 months)"
|
||||
msgstr "データ保存期間の延長(6か月)"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:537
|
||||
msgid "Update to the Latest Version"
|
||||
msgstr "最新版への更新"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:550
|
||||
msgid "<b>*</b> The free plan is a premium version with no license or expired."
|
||||
msgstr "※ フリープランはライセンス未契約またはライセンス失効の有料版です。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:561
|
||||
msgid "Migrate data to the premium version"
|
||||
msgstr "有料版へのデータ移行"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:563
|
||||
msgid ""
|
||||
"<a href=\"https://market.seous.info/aurora-heatmap/premium\">Get the "
|
||||
"installer</a> of the premium version plugin."
|
||||
msgstr ""
|
||||
"有料版プラグインの <a href=\"https://market.seous.info/aurora-heatmap/premium"
|
||||
"\">インストーラを入手</a>。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:564
|
||||
msgid "<b>Stop</b> the free version plugin."
|
||||
msgstr "無料版プラグインを <b>停止</b>。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:565
|
||||
msgid "<b>Install</b> / <b>activate</b> the installer."
|
||||
msgstr "インストーラの <b>インストール</b>・<b>有効化</b>。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:566
|
||||
msgid ""
|
||||
"<b>User registration</b> / <b>license agreement</b> / <b>update plugin</b>."
|
||||
msgstr "<b>ユーザー登録</b>・<b>ライセンス契約</b>・<b>プラグインの更新</b>。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:567
|
||||
msgid "<b>Delete</b> the free version plugin."
|
||||
msgstr "無料版プラグインの <b>削除</b>。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:577
|
||||
#: premium/class-aurora-heatmap-standard.php:128
|
||||
msgid "1 month"
|
||||
msgstr "1か月"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:578
|
||||
#: premium/class-aurora-heatmap-standard.php:129
|
||||
msgid "3 months"
|
||||
msgstr "3か月"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:579
|
||||
#: premium/class-aurora-heatmap-standard.php:130
|
||||
msgid "6 months"
|
||||
msgstr "6か月"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:583
|
||||
#: premium/class-aurora-heatmap-standard.php:134
|
||||
msgid "High accuracy"
|
||||
msgstr "高精度"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:584
|
||||
#: premium/class-aurora-heatmap-standard.php:135
|
||||
msgid "Standard"
|
||||
msgstr "標準"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:588
|
||||
#: premium/class-aurora-heatmap-standard.php:139
|
||||
msgid "Show"
|
||||
msgstr "表示する"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:589
|
||||
#: premium/class-aurora-heatmap-standard.php:140
|
||||
msgid "Hide"
|
||||
msgstr "表示しない"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:593 class-aurora-heatmap-basic.php:598
|
||||
#: premium/class-aurora-heatmap-standard.php:144
|
||||
#: premium/class-aurora-heatmap-standard.php:149
|
||||
msgid "Integrated"
|
||||
msgstr "統合"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:594 class-aurora-heatmap-basic.php:599
|
||||
#: premium/class-aurora-heatmap-standard.php:145
|
||||
#: premium/class-aurora-heatmap-standard.php:150
|
||||
msgid "individual display"
|
||||
msgstr "別表示"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:615
|
||||
#: premium/class-aurora-heatmap-standard.php:168
|
||||
msgid "Data settings"
|
||||
msgstr "データ設定"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:619
|
||||
#: premium/class-aurora-heatmap-standard.php:172
|
||||
msgid "Retension period"
|
||||
msgstr "保存期間"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:627
|
||||
#: premium/class-aurora-heatmap-standard.php:180
|
||||
msgid "Are you sure you want to delete all the heatmap data?"
|
||||
msgstr "ヒートマップデータをすべて削除してもよろしいですか?"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:627
|
||||
#: premium/class-aurora-heatmap-standard.php:180
|
||||
msgid "Bulk data deletion"
|
||||
msgstr "データ一括削除"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:630
|
||||
#: premium/class-aurora-heatmap-standard.php:183
|
||||
msgid "Display settings"
|
||||
msgstr "表示設定"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:634
|
||||
#: premium/class-aurora-heatmap-standard.php:187
|
||||
msgid "Accuracy"
|
||||
msgstr "精度"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:638
|
||||
#: premium/class-aurora-heatmap-standard.php:191
|
||||
msgid ""
|
||||
"<b>*</b> If the count amount is not enough, please check in standard mode."
|
||||
msgstr "※ カウント量が十分でない場合は標準モードで確認してみてください。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:643
|
||||
#: premium/class-aurora-heatmap-standard.php:196
|
||||
msgid "Count bar"
|
||||
msgstr "カウントバー"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:651
|
||||
#: premium/class-aurora-heatmap-standard.php:204
|
||||
msgid "URL hash"
|
||||
msgstr "URL ハッシュ"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:655
|
||||
#: premium/class-aurora-heatmap-standard.php:208
|
||||
msgid "<code>#top</code> etc."
|
||||
msgstr "<code>#top</code> など。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:661
|
||||
#: premium/class-aurora-heatmap-standard.php:214
|
||||
msgid "URL parameter"
|
||||
msgstr "URL パラメータ"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:665
|
||||
#: premium/class-aurora-heatmap-standard.php:218
|
||||
msgid "<code>?page=2</code>, <code>?utm_source=xxxx</code>, etc."
|
||||
msgstr "<code>?page=2</code> や <code>?utm_source=xxxx</code> など。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:667
|
||||
#: premium/class-aurora-heatmap-standard.php:220
|
||||
msgid ""
|
||||
"<b>*</b> If the default permalink is set <code>?p=123</code>, use it "
|
||||
"individual display."
|
||||
msgstr ""
|
||||
"※ デフォルトパーマリンク設定 <code>?p=123</code> の場合は別表示で使用くださ"
|
||||
"い。"
|
||||
|
||||
#: class-aurora-heatmap-basic.php:671
|
||||
#: premium/class-aurora-heatmap-standard.php:224
|
||||
msgid "Save"
|
||||
msgstr "保存"
|
||||
|
||||
#: class-aurora-heatmap-list.php:71
|
||||
msgctxt "List_Table"
|
||||
msgid "Count"
|
||||
msgstr "Count"
|
||||
|
||||
#: class-aurora-heatmap-list.php:72
|
||||
msgctxt "List_Table"
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#: class-aurora-heatmap-list.php:73
|
||||
msgctxt "List_Table"
|
||||
msgid "Title"
|
||||
msgstr "Title"
|
||||
|
||||
#: class-aurora-heatmap-list.php:74
|
||||
msgctxt "List_Table"
|
||||
msgid "Heatmap"
|
||||
msgstr "Heatmap"
|
||||
|
||||
#: class-aurora-heatmap-list.php:87
|
||||
msgctxt "List_Table"
|
||||
msgid "Delete"
|
||||
msgstr "削除"
|
||||
|
||||
#: class-aurora-heatmap-list.php:172
|
||||
msgid "* Analysis results can only be viewed from a PC."
|
||||
msgstr "※ 解析結果はパソコンからのみ閲覧できます。"
|
||||
|
||||
#: class-aurora-heatmap-list.php:196
|
||||
msgctxt "Table_List"
|
||||
msgid "Check"
|
||||
msgstr "チェック"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:55
|
||||
msgctxt "Free Plan"
|
||||
msgid ""
|
||||
"Due to unlicensed or expired licenses, the premium version features, "
|
||||
"including <b>premium version plugin updates</b>, are limited."
|
||||
msgstr ""
|
||||
"ライセンス未契約または失効のため <b>有料版プラグインの更新</b> を含む有料版の"
|
||||
"機能が制限されています。"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:56
|
||||
#, php-format
|
||||
msgctxt "Free Plan"
|
||||
msgid ""
|
||||
"To use the latest version, we recommend the <a href=\"%s\">lisense "
|
||||
"agreement</a> or the <a href=\"%s\">free version</a>. See the <a href=\"%s"
|
||||
"\">help</a> for details."
|
||||
msgstr ""
|
||||
"最新版をご利用いただくため、<a href=\"%s\">ライセンス契約</a> または <a href="
|
||||
"\"%s\">無料版</a> をおすすめします。詳細は <a href=\"%s\">ヘルプ</a> をご覧く"
|
||||
"ださい。"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:70
|
||||
msgctxt "Free Plan"
|
||||
msgid "About the free plan"
|
||||
msgstr "フリープランについて"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:71
|
||||
msgctxt "Free Plan"
|
||||
msgid "The license has expired, but the free plan can still be used."
|
||||
msgstr ""
|
||||
"現在、ライセンス失効していますが、引き続き無料版としての機能をご利用いただけ"
|
||||
"ます。"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:72
|
||||
msgctxt "Free Plan"
|
||||
msgid ""
|
||||
"However, it is not possible to update to the latest version of the premium "
|
||||
"version, so we recommend that you replace the WordPress.org plugin directory "
|
||||
"with the free version."
|
||||
msgstr ""
|
||||
"ただし、最新版への更新などは行えませんので、WordPress.org プラグインディレク"
|
||||
"トリの無料版への入れ替えをお勧めします。"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:73
|
||||
msgctxt "Free Plan"
|
||||
msgid "It is also possible to take over the current data."
|
||||
msgstr "その際、既存データを引き継ぐことも可能です。"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:75
|
||||
msgctxt "Free Plan"
|
||||
msgid "Migrate data to the free version"
|
||||
msgstr "無料版へのデータ移行"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:77
|
||||
msgctxt "Free Plan"
|
||||
msgid "<b>Stop</b> the premium version plugin."
|
||||
msgstr "有料版プラグインの <b>停止</b>。"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:78
|
||||
msgctxt "Free Plan"
|
||||
msgid ""
|
||||
"<b>Install</b> / <b>activate</b> <a href=\"plugin-install.php?s=aurora-"
|
||||
"heatmap&tab=search&type=term\">the free version</a> plugin."
|
||||
msgstr ""
|
||||
"<a href=\"plugin-install.php?s=aurora-heatmap&tab=search&type=term\">無料版プ"
|
||||
"ラグイン</a> の <b>インストール</b>・<b>有効化</b>。"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:79
|
||||
msgctxt "Free Plan"
|
||||
msgid "<b>Delete</b> the premium version plugin."
|
||||
msgstr "有料版プラグインの <b>削除</b>。"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:83
|
||||
msgctxt "Free Plan"
|
||||
msgid "If you can't receive authentication email"
|
||||
msgstr "認証メールが受け取れない場合"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:84
|
||||
#, php-format
|
||||
msgctxt "Free Plan"
|
||||
msgid ""
|
||||
"Change the email address of <a href=\"profile.php\">%s</a> and restart the "
|
||||
"user registration with the following button."
|
||||
msgstr ""
|
||||
"<a href=\"profile.php\">%s</a> のメールアドレスを変更の上、次のボタンでユー"
|
||||
"ザー登録をやり直してください。"
|
||||
|
||||
#: premium/class-aurora-heatmap-free.php:85
|
||||
msgctxt "Free Plan"
|
||||
msgid "Restart the user registration"
|
||||
msgstr "ユーザー登録をやり直す"
|
||||
|
||||
#~ msgid "Information"
|
||||
#~ msgstr "案内"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<p>ライセンス未契約または失効のため <b>有料版プラグインの更新</b> を含む有"
|
||||
#~ "料版の機能が制限されています。</p>"
|
||||
#~ msgstr ""
|
||||
#~ "<p>ライセンス未契約または失効のため <b>有料版プラグインの更新</b> を含む有"
|
||||
#~ "料版の機能が制限されています。</p>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<p>最新版をご利用いただくため <a href=\"%s\">ライセンス契約</a> または <a "
|
||||
#~ "href=\"%s\">無料版</a> をおすすめします。詳細は <a href=\"%s\">案内タブ</"
|
||||
#~ "a> をご覧ください。</p>"
|
||||
#~ msgstr ""
|
||||
#~ "<p>最新版をご利用いただくため <a href=\"%s\">ライセンス契約</a> または <a "
|
||||
#~ "href=\"%s\">無料版</a> をおすすめします。詳細は <a href=\"%s\">案内タブ</"
|
||||
#~ "a> をご覧ください。</p>"
|
||||
|
||||
#~ msgid "Aurora Heatmap (Installer)"
|
||||
#~ msgstr "Aurora Heatmap (インストーラ)"
|
||||
|
||||
#~ msgid "Important"
|
||||
#~ msgstr "重要事項"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Fail to activate. Another version of <strong>Aurora Heatmap</strong> is "
|
||||
#~ "already active."
|
||||
#~ msgstr ""
|
||||
#~ "有効化に失敗しました。他のバージョンの <strong>Aurora Heatmap</strong> が"
|
||||
#~ "既に有効化されています。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid "Aurora Heatmap (Installer)"
|
||||
#~ msgstr "Aurora Heatmap (インストーラ)"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid "Important"
|
||||
#~ msgstr "重要事項"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid ""
|
||||
#~ "<strong>%s %s</strong> はライセンス契約後のプラグインの更新でご利用いただ"
|
||||
#~ "けます。"
|
||||
#~ msgstr ""
|
||||
#~ "<strong>%s %s</strong> はライセンス契約後のプラグインの更新でご利用いただ"
|
||||
#~ "けます。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid ""
|
||||
#~ "このプラグインはライセンス契約とプラグイン本体の導入を容易にするためのイン"
|
||||
#~ "ストーラです。"
|
||||
#~ msgstr ""
|
||||
#~ "このプラグインはライセンス契約とプラグイン本体の導入を容易にするためのイン"
|
||||
#~ "ストーラです。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid ""
|
||||
#~ "<strong>%s %s</strong> をご希望の方は、本インストーラを <b>停止</b>・<b>削"
|
||||
#~ "除</b> して無料版をご利用ください。"
|
||||
#~ msgstr ""
|
||||
#~ "<strong>%s %s</strong> をご希望の方は、本インストーラを <b>停止</b>・<b>削"
|
||||
#~ "除</b> して無料版をご利用ください。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid "本インストーラをダウンロード・インストール・有効化します。"
|
||||
#~ msgstr "本インストーラをダウンロード・インストール・有効化します。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid "%s より有料版(スタンダードプラン)のライセンス契約を行います。"
|
||||
#~ msgstr "%s より有料版(スタンダードプラン)のライセンス契約を行います。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid "スタンダードプランの <b>[ UPGRADE NOW ]</b> をクリックします。"
|
||||
#~ msgstr "スタンダードプランの <b>[ UPGRADE NOW ]</b> をクリックします。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid "<b>[ Monthly ]</b> または <b>[ Annually ]</b> を選択します。"
|
||||
#~ msgstr "<b>[ Monthly ]</b> または <b>[ Annually ]</b> を選択します。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid ""
|
||||
#~ "クレジットカード または PayPal のお支払い方法を選択して、情報を入力しま"
|
||||
#~ "す。"
|
||||
#~ msgstr ""
|
||||
#~ "クレジットカード または PayPal のお支払い方法を選択して、情報を入力しま"
|
||||
#~ "す。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid "<b>[ Review Order ]</b> ボタンをクリックします。"
|
||||
#~ msgstr "<b>[ Review Order ]</b> ボタンをクリックします。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid ""
|
||||
#~ "確認画面が表示されますので <b>[ Pay & Subscribe ]</b> ボタンをクリック"
|
||||
#~ "して決済します。"
|
||||
#~ msgstr ""
|
||||
#~ "確認画面が表示されますので <b>[ Pay & Subscribe ]</b> ボタンをクリック"
|
||||
#~ "して決済します。"
|
||||
|
||||
#~ msgctxt "Installer"
|
||||
#~ msgid ""
|
||||
#~ "%s より <strong>%s</strong> を最新の <strong>%s %s</strong> に更新します。"
|
||||
#~ msgstr ""
|
||||
#~ "%s より <strong>%s</strong> を最新の <strong>%s %s</strong> に更新します。"
|
||||
|
||||
#~ msgid "Breakaway (Mobile)"
|
||||
#~ msgstr "離脱 (Mobile)"
|
||||
|
||||
#~ msgid "Attention (Mobile)"
|
||||
#~ msgstr "熟読 (Mobile)"
|
||||
|
||||
#~ msgid "perusal (PC)"
|
||||
#~ msgstr "熟読 (PC)"
|
||||
|
||||
#~ msgid "perusal (Mobile)"
|
||||
#~ msgstr "熟読 (Mobile)"
|
||||
|
||||
#~ msgid "Got invalid nonce."
|
||||
#~ msgstr "不正な nonce です。"
|
||||
@@ -0,0 +1,468 @@
|
||||
# Copyright (C) 2019 Anssi Laitila
|
||||
# This file is distributed under the same license as the Contact List plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Contact List 2.3.5\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\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-09-22T22:50:46+03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: contact-list\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-contact-list-admin.php:71
|
||||
msgid "Contact List"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Easily display contact information on your site with this simple plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-contact-list-custom-fields.php:172
|
||||
msgid "Contact Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:72
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:73
|
||||
msgid "Add New Contact"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:74
|
||||
msgid "Edit Contact"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:75
|
||||
#: partials/list-all-contacts.php:106
|
||||
#: partials/list-contacts.php:95
|
||||
#: public/shortcode_contact_list_groups.php:12
|
||||
#: public/class-contact-list-public.php:342
|
||||
msgid "No contacts found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:76
|
||||
msgid "All Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:97
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:98
|
||||
#: admin/class-settings-page.php:92
|
||||
#: admin/class-settings-page.php:96
|
||||
#: admin/class-settings-page.php:301
|
||||
#: public/shortcode_contact_list_form.php:59
|
||||
msgid "First name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:99
|
||||
#: admin/class-settings-page.php:101
|
||||
#: admin/class-settings-page.php:105
|
||||
#: admin/class-settings-page.php:300
|
||||
#: public/shortcode_contact_list_form.php:63
|
||||
msgid "Last name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:100
|
||||
#: admin/class-settings-page.php:110
|
||||
#: admin/class-settings-page.php:114
|
||||
#: public/shortcode_contact_list_form.php:68
|
||||
msgid "Job title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:101
|
||||
#: admin/class-settings-page.php:119
|
||||
#: admin/class-settings-page.php:123
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:102
|
||||
#: admin/class-settings-page.php:128
|
||||
#: admin/class-settings-page.php:132
|
||||
#: public/shortcode_contact_list_form.php:76
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:103
|
||||
#: admin/class-settings-page.php:137
|
||||
#: admin/class-settings-page.php:141
|
||||
#: public/shortcode_contact_list_form.php:80
|
||||
msgid "LinkedIn URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:104
|
||||
#: admin/class-settings-page.php:146
|
||||
#: admin/class-settings-page.php:150
|
||||
#: public/shortcode_contact_list_form.php:84
|
||||
msgid "Twitter URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:105
|
||||
#: admin/class-settings-page.php:155
|
||||
#: admin/class-settings-page.php:159
|
||||
#: public/shortcode_contact_list_form.php:88
|
||||
msgid "Facebook URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:183
|
||||
#: admin/class-contact-list-admin.php:342
|
||||
msgid "Send email to contacts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:184
|
||||
msgid "Send email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:199
|
||||
#: admin/class-contact-list-admin.php:442
|
||||
msgid "How to use the Contact List plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:200
|
||||
msgid "Help / Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:210
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:216
|
||||
#: admin/class-contact-list-admin.php:217
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:218
|
||||
msgid "Search Groups"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:219
|
||||
msgid "All Groups"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:220
|
||||
msgid "Parent Group"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:221
|
||||
msgid "Parent Group:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:222
|
||||
msgid "Edit Group"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:223
|
||||
msgid "Update Group"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:224
|
||||
msgid "Add New Group"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:225
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:226
|
||||
msgid "No groups found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:345
|
||||
msgid "The emails are sent by the plugin developers own server and using <a href=\"https://www.mailgun.com\" target=\"_blank\">Mailgun</a>. The server is a DigitalOcean Droplet hosted in the EU. This method was chosen to ensure reliable mail delivery."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:349
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:354
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:358
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:358
|
||||
msgid "total of"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:358
|
||||
msgid "contacts with email addresses"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:362
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:443
|
||||
msgid "Only contacts, no groups"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:446
|
||||
msgid "Add the contacts via the All Contacts page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:447
|
||||
msgid "Insert the shortcode [contact_list] to the content editor of any page you wish the contact list to appear."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:450
|
||||
msgid "Contacts with groups"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:452
|
||||
msgid "Add the groups via the Groups page. There may be groups under groups (hierarchial groups, 2 or more levels)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:453
|
||||
msgid "Add the contacts via the All Contacts page. You may select the appropriate group(s) at this point."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:454
|
||||
msgid "Insert the shortcode [contact_list_groups] to the content editor of any page you wish the group list to appear. When a user selects a group, then a list of contacts belonging to that group is displayed. Also, if there are subgroups under that group, those will be displayed."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:457
|
||||
msgid "Contacts from specific group"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:459
|
||||
msgid "Insert the shortcode [contact_list_groups group=GROUP_SLUG] to the content editor of any page you wish the contact list to appear. Replace GROUP_SLUG with the appropriate slug that can be found from group management."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:462
|
||||
msgid "Single contact"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:464
|
||||
msgid "Insert the shortcode [contact_list contact=CONTACT_ID] to the content editor of any page you wish the contact to appear. Replace CONTACT_ID with the appropriate id that can be found from contact management. There's a column \"ID\" in the All Contacts -page, which contains the numeric value."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:467
|
||||
msgid "Allow visitors to add new contacts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:469
|
||||
msgid "Insert the shortcode [contact_list_form] to the page you wish the form to appear on."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:470
|
||||
msgid "When a user submits the form, a new contact is saved to the contacts. The status of that contact is \"Pending Review\" and a site administrator must publish/edit/delete the contact."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:475
|
||||
msgid "Send feedback"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:476
|
||||
msgid "Any feedback is welcome. You may contact the author at"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:476
|
||||
msgid "or e-mail directly:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:478
|
||||
msgid "Give a rating for the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:479
|
||||
msgid "Whether it's 1 star or 5 stars, I'm grateful for your rating. You may rate the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:479
|
||||
msgid "here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:481
|
||||
msgid "Send direct feedback to the author"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:482
|
||||
msgid "Fill out the form below to send feedback or questions to the author. Only the information provided below is sent. Thanks!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-contact-list-admin.php:494
|
||||
msgid "Donate to this plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:15
|
||||
msgid "General settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:22
|
||||
msgid "Send an email notify when a contact is added via the public form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:31
|
||||
msgid "Notification recipient email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:40
|
||||
msgid "Display group checkboxes on public form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:49
|
||||
msgid "Sort contact list by"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:58
|
||||
msgid "Change default titles and texts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:65
|
||||
#: admin/class-settings-page.php:69
|
||||
#: public/class-contact-list-public.php:209
|
||||
msgid "Search contacts..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:74
|
||||
#: admin/class-settings-page.php:78
|
||||
#: public/shortcode_contact_list_groups.php:10
|
||||
msgid "Search all contacts..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:83
|
||||
msgid "\"Back\"-link title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:87
|
||||
#: public/shortcode_contact_list_groups.php:74
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:164
|
||||
#: admin/class-settings-page.php:168
|
||||
#: admin/class-settings-page.php:173
|
||||
#: partials/list-all-contacts.php:54
|
||||
#: partials/list-contacts.php:43
|
||||
#: public/shortcode_contact_list_form.php:92
|
||||
#: public/class-contact-list-public.php:151
|
||||
#: public/class-contact-list-public.php:290
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:173
|
||||
#: admin/class-settings-page.php:227
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:173
|
||||
#: admin/class-settings-page.php:227
|
||||
msgid "-title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:182
|
||||
#: admin/class-settings-page.php:186
|
||||
#: public/shortcode_contact_list_form.php:95
|
||||
msgid "Address line 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:191
|
||||
#: admin/class-settings-page.php:195
|
||||
#: public/shortcode_contact_list_form.php:99
|
||||
msgid "Address line 2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:200
|
||||
#: admin/class-settings-page.php:204
|
||||
#: public/shortcode_contact_list_form.php:103
|
||||
msgid "Address line 3"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:209
|
||||
#: admin/class-settings-page.php:213
|
||||
#: public/shortcode_contact_list_form.php:107
|
||||
msgid "Address line 4"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:218
|
||||
#: admin/class-settings-page.php:222
|
||||
#: admin/class-settings-page.php:227
|
||||
#: admin/class-settings-page.php:257
|
||||
#: partials/list-all-contacts.php:74
|
||||
#: partials/list-contacts.php:63
|
||||
#: public/shortcode_contact_list_form.php:142
|
||||
#: public/class-contact-list-public.php:166
|
||||
#: public/class-contact-list-public.php:310
|
||||
msgid "Additional information"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:236
|
||||
msgid "Thank you page / title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:240
|
||||
#: public/shortcode_contact_list_form.php:41
|
||||
msgid "Thank you"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:245
|
||||
msgid "Thank you page / content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:249
|
||||
#: public/shortcode_contact_list_form.php:42
|
||||
msgid "The form was successfully processed and the contents will be reviewed by site administrator before publishing."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:281
|
||||
msgid "By activating this you agree that the email sending is handled by the plugin developers own server and using <a href=\"https://www.mailgun.com\" target=\"_blank\">Mailgun</a>. The server is a DigitalOcean Droplet hosted in the EU. This method was chosen to ensure reliable mail delivery."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:309
|
||||
msgid "You may enter alternative titles and texts here. The values defined here will override the default values."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-settings-page.php:346
|
||||
msgid "Contact List Settings"
|
||||
msgstr ""
|
||||
|
||||
#: public/shortcode_contact_list_groups.php:6
|
||||
#: public/class-contact-list-public.php:204
|
||||
msgid "contact"
|
||||
msgstr ""
|
||||
|
||||
#: public/shortcode_contact_list_groups.php:7
|
||||
#: public/class-contact-list-public.php:205
|
||||
msgid "contacts"
|
||||
msgstr ""
|
||||
|
||||
#: public/shortcode_contact_list_groups.php:8
|
||||
#: public/class-contact-list-public.php:206
|
||||
msgid "found"
|
||||
msgstr ""
|
||||
|
||||
#: public/shortcode_contact_list_groups.php:61
|
||||
#: public/shortcode_contact_list_groups.php:162
|
||||
msgid "There are no contacts in this group."
|
||||
msgstr ""
|
||||
|
||||
#: public/shortcode_contact_list_groups.php:193
|
||||
msgid "There are no groups."
|
||||
msgstr ""
|
||||
|
||||
#: public/shortcode_contact_list_form.php:44
|
||||
msgid "Error processing data."
|
||||
msgstr ""
|
||||
|
||||
#: public/shortcode_contact_list_form.php:65
|
||||
msgid "Please insert at least last name first."
|
||||
msgstr ""
|
||||
|
||||
#: public/shortcode_contact_list_form.php:133
|
||||
msgid "Group(s)"
|
||||
msgstr ""
|
||||
|
||||
#: public/shortcode_contact_list_form.php:156
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,423 @@
|
||||
# Copyright (C) 2019 ReeverWeb - Andrea Carapellucci
|
||||
# This file is distributed under the same license as the Easy Static Maps plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Easy Static Maps 1.0\n"
|
||||
"Report-Msgid-Bugs-To: supporto@reeverweb.it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-06-05T01:34:32+02:00\n"
|
||||
"PO-Revision-Date: 2019-08-28 21:20+0200\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Domain: easy-static-maps\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: it\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: easy-static-maps.php:48
|
||||
msgid "Easy Static Maps"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Easily adds STATIC MAPS to a WP website. Choose between different versions of Google / OpenStreetMap / Bing maps, set map parameters and map markers."
|
||||
msgstr "Aggiunge facilmente mappe statiche ad un sito WP. Scegli tra diverse versioni di mappe di Google / OpenStreetMap / Bing, imposta i parametri e i marker della mappa."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ReeverWeb"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://reeverweb.it/"
|
||||
msgstr ""
|
||||
|
||||
#: easy-static-maps.php:36
|
||||
msgid "NOTICE"
|
||||
msgstr "AVVISO"
|
||||
|
||||
#: easy-static-maps.php:37
|
||||
msgid "Easy Static Maps has been successfully installed and activated. <strong>Easy Static Maps is now present on your WordPress menu. First go to the plugin settings page and follow the instructions to enter the API keys of the web map services you want to use"
|
||||
msgstr "Easy Static Maps è stato installato e attivato con successo. <strong>Easy Static Maps è ora presente nel tuo menù di WordPress. Per prima cosa vai nella pagina dei settaggi del plugin e segui le istruzioni per inserire le chiavi API dei servizi di mappe web che vuoi usare"
|
||||
|
||||
#: easy-static-maps.php:49
|
||||
msgid "Map"
|
||||
msgstr "Mappa"
|
||||
|
||||
#: easy-static-maps.php:50
|
||||
msgid "Add a map"
|
||||
msgstr "Aggiungi una mappa"
|
||||
|
||||
#: easy-static-maps.php:51
|
||||
msgid "Add a new map"
|
||||
msgstr "Aggiungi una nuova mappa"
|
||||
|
||||
#: easy-static-maps.php:52
|
||||
msgid "New map"
|
||||
msgstr "Nuova mappa"
|
||||
|
||||
#: easy-static-maps.php:53
|
||||
msgid "Edit map"
|
||||
msgstr "Modifica la mappa"
|
||||
|
||||
#: easy-static-maps.php:54
|
||||
msgid "Show map"
|
||||
msgstr "Vedi mappa"
|
||||
|
||||
#: easy-static-maps.php:55
|
||||
msgid "All maps"
|
||||
msgstr "Tutte le mappe"
|
||||
|
||||
#: easy-static-maps.php:56
|
||||
msgid "Search maps"
|
||||
msgstr "Cerca le mappe"
|
||||
|
||||
#: easy-static-maps.php:57
|
||||
msgid "No map found"
|
||||
msgstr "Nessuna mappa trovata"
|
||||
|
||||
#: easy-static-maps.php:58
|
||||
msgid "No map found in trash"
|
||||
msgstr "Nessuna mappa trovata nel cestino"
|
||||
|
||||
#: easy-static-maps.php:76
|
||||
msgid "Plugin license key"
|
||||
msgstr "Chiave di licenza del plugin"
|
||||
|
||||
#: easy-static-maps.php:77
|
||||
msgid "General settings"
|
||||
msgstr "Impostazioni generali"
|
||||
|
||||
#: easy-static-maps.php:78
|
||||
msgid "Google Maps API key"
|
||||
msgstr "Chiave API di Google Maps"
|
||||
|
||||
#: easy-static-maps.php:79
|
||||
msgid "OpenStreetMap - Mapquest API key"
|
||||
msgstr "Chiave API di OpenStreetMap - Mapquest"
|
||||
|
||||
#: easy-static-maps.php:80
|
||||
msgid "Bing Maps API key"
|
||||
msgstr "Chiave API di Bing Maps"
|
||||
|
||||
#: easy-static-maps.php:84
|
||||
msgid "The basic version does not require a license key. The basic version does not include custom marker icons, adding lines, paths, circles, colored areas and customizing the map background.<br>To purchase the Pro or Ultimate version"
|
||||
msgstr "La versione basic non richiede una chiave di licenza. La versione basic non include le icone personalizzate per i marker, l'aggiunta di linee, percorsi, cerchi, aree colorate e la personalizzazione dello sfondo della mappa.<br>Per acquistare la versione Pro o Ultimate"
|
||||
|
||||
#: easy-static-maps.php:87
|
||||
msgid "API keys (something similar to a user identification code) are now required by most web map services. Obtain API keys from the web map services you want to use and paste them in these fields to make your maps work"
|
||||
msgstr "Le chiavi API (qualcosa di simile ad un codice di identificazione utente) sono ora richieste dalla maggior parte dei servizi di mappe web. Incollale in questi campi per far funzionare le tue mappe"
|
||||
|
||||
#: easy-static-maps.php:91
|
||||
msgid "To get a Google Maps API key"
|
||||
msgstr "Per ottenere una chiave API di Google Maps"
|
||||
|
||||
#: easy-static-maps.php:95
|
||||
msgid "To get an OpenStreetMap - Mapquest API key"
|
||||
msgstr "Per ottenere una chiave API di OpenStreetMap - Mapquest"
|
||||
|
||||
#: easy-static-maps.php:99
|
||||
msgid "To get a Bing Maps API key"
|
||||
msgstr "Per ottenere una chiave API di Bing Maps"
|
||||
|
||||
#: easy-static-maps.php:103
|
||||
msgid "Easy Static Maps settings"
|
||||
msgstr "Impostazioni di Easy Static Maps"
|
||||
|
||||
#: easy-static-maps.php:115
|
||||
msgid "ESM settings"
|
||||
msgstr "Impostazioni di ESM"
|
||||
|
||||
#: easy-static-maps.php:130
|
||||
msgid "Use this place to center the map. You can indicate a precise street address or just a city or a village. Alternatively, enter the geographical coordinates (latitude and longitude) of the center of the map. Be careful: Bing Maps uses textual address of the map center to automatically set the zoom level (to be able to manually set the zoom level with Bing Maps, write only the latitude and longitude of the center of the map). <strong>To get the coordinates</strong> (latitude and longitude) from a street address you can consult a website like"
|
||||
msgstr "Usa questo luogo come centro della mappa. Puoi indicare un indirizzo stradale preciso o solo una città o un paese. In alternativa inserisci le coordinate geografiche (latitudine e longitudine) del centro della mappa. Fai attenzione: Bing Maps utilizza l'indirizzo testuale del centro della mappa per settare automaticamente il livello di zoom (per settare manualmente il livello di zoom con Bing Maps inserisci solo la latitudine e longitudine del centro della mappa). <strong>Per ottenere le coordinate</strong> (latitudine e longitudine) da un indirizzo stradale puoi consultare un sito web come"
|
||||
|
||||
#: easy-static-maps.php:130 easy-static-maps.php:270
|
||||
msgid "or open Google Maps in your browser and click on a point on the map to know its geographical coordinates"
|
||||
msgstr "oppure puoi aprire Google Maps nel tuo browser e cliccare su un punto della mappa per conoscere le sue coordinate geografiche"
|
||||
|
||||
#: easy-static-maps.php:133
|
||||
msgid "Center position"
|
||||
msgstr "Posizione del centro della mappa"
|
||||
|
||||
#: easy-static-maps.php:136 easy-static-maps.php:305
|
||||
msgid "Country"
|
||||
msgstr "Paese"
|
||||
|
||||
#: easy-static-maps.php:140 easy-static-maps.php:309
|
||||
msgid "State / Region"
|
||||
msgstr "Stato / Regione"
|
||||
|
||||
#: easy-static-maps.php:143
|
||||
msgid "For countries with federal government (such as USA or Germany) write in the second field the state (e.g. Florida). Otherwise, write the region"
|
||||
msgstr "Per i paesi con governo federale (come gli USA o la Germania) scrivi nel secondo campo lo stato (ad es. Florida). Altrimenti scrivi la regione"
|
||||
|
||||
#: easy-static-maps.php:145 easy-static-maps.php:313
|
||||
msgid "City / Village"
|
||||
msgstr "Città / Borgo"
|
||||
|
||||
#: easy-static-maps.php:149 easy-static-maps.php:317
|
||||
msgid "Street address"
|
||||
msgstr "Indirizzo stradale"
|
||||
|
||||
#: easy-static-maps.php:154 easy-static-maps.php:322
|
||||
msgid "OR"
|
||||
msgstr "OPPURE"
|
||||
|
||||
#: easy-static-maps.php:159 easy-static-maps.php:327
|
||||
msgid "Latitude"
|
||||
msgstr "Latitudine"
|
||||
|
||||
#: easy-static-maps.php:163 easy-static-maps.php:332 easy-static-maps.php:409
|
||||
msgid "E.g."
|
||||
msgstr "Ad es."
|
||||
|
||||
#: easy-static-maps.php:163 easy-static-maps.php:331
|
||||
msgid "Longitude"
|
||||
msgstr "Longitudine"
|
||||
|
||||
#: easy-static-maps.php:183
|
||||
msgid "Map service"
|
||||
msgstr "Servizio di mappe"
|
||||
|
||||
#: easy-static-maps.php:191
|
||||
msgid "Map type"
|
||||
msgstr "Tipo di mappa"
|
||||
|
||||
#: easy-static-maps.php:193
|
||||
msgid "Roadmap"
|
||||
msgstr "Mappa stradale"
|
||||
|
||||
#: easy-static-maps.php:194
|
||||
msgid "Satellite"
|
||||
msgstr "Immagini satellitari"
|
||||
|
||||
#: easy-static-maps.php:195
|
||||
msgid "Hybrid"
|
||||
msgstr "Ibrida"
|
||||
|
||||
#: easy-static-maps.php:196
|
||||
msgid "Physical (Google Maps only)"
|
||||
msgstr "Mappa fisica (solo Google Maps)"
|
||||
|
||||
#: easy-static-maps.php:197
|
||||
msgid "Light (OpenStreetMap - Mapquest and Bing Maps only)"
|
||||
msgstr "Light (solo OpenStreetMap - Mapquest e Bing Maps)"
|
||||
|
||||
#: easy-static-maps.php:198
|
||||
msgid "Dark (OpenStreetMap - Mapquest and Bing Maps only)"
|
||||
msgstr "Dark (solo OpenStreetMap - Mapquest e Bing Maps)"
|
||||
|
||||
#: easy-static-maps.php:202
|
||||
msgid "Map zoom level"
|
||||
msgstr "Livello di zoom della mappa"
|
||||
|
||||
#: easy-static-maps.php:229
|
||||
msgid "In Bing Maps the zoom level is only available if the latitude and longitude of the map center are specified"
|
||||
msgstr "Per Bing Maps il livello di zoom è disponibile solo se sono specificati la latitudine e la longitudine del centro della mappa"
|
||||
|
||||
#: easy-static-maps.php:233
|
||||
msgid "Map size"
|
||||
msgstr "Dimensioni della mappa"
|
||||
|
||||
#: easy-static-maps.php:235
|
||||
msgid "Width"
|
||||
msgstr "Larghezza"
|
||||
|
||||
#: easy-static-maps.php:235
|
||||
msgid "Height"
|
||||
msgstr "Altezza"
|
||||
|
||||
#: easy-static-maps.php:235
|
||||
msgid "Default size (in pixels) of the map"
|
||||
msgstr "Dimensioni predefinite (in pixel) della mappa"
|
||||
|
||||
#: easy-static-maps.php:235
|
||||
msgid "Google Maps max map size (not Premium Plan): 640x640"
|
||||
msgstr "Dimensioni massime della mappa di Google Maps (tranne i piani premium): 640x640"
|
||||
|
||||
#: easy-static-maps.php:235
|
||||
msgid "OpenStreetMap - Mapquest max map size: 1920x1920"
|
||||
msgstr "Dimensioni massime della mappa di OpenStreetMap - Mapquest: 1920x1920"
|
||||
|
||||
#: easy-static-maps.php:235
|
||||
msgid "Bing Maps max map size: 2000x1500"
|
||||
msgstr "Dimensioni massime della mappa di Bing Maps: 2000x1500"
|
||||
|
||||
#: easy-static-maps.php:239
|
||||
msgid "Image format"
|
||||
msgstr "Formato dell'immagine"
|
||||
|
||||
#: easy-static-maps.php:241 easy-static-maps.php:345
|
||||
msgid "Google Maps only"
|
||||
msgstr "solo Google Maps"
|
||||
|
||||
#: easy-static-maps.php:242
|
||||
msgid "high quality, larger file size"
|
||||
msgstr "alta qualità, dimensioni del file più grande"
|
||||
|
||||
#: easy-static-maps.php:243
|
||||
msgid "medium quality"
|
||||
msgstr "media qualità"
|
||||
|
||||
#: easy-static-maps.php:244
|
||||
msgid "compressed, smaller file size"
|
||||
msgstr "compresso, dimensioni del file più piccole"
|
||||
|
||||
#: easy-static-maps.php:248
|
||||
msgid "Image quality"
|
||||
msgstr "Qualità dell'immagine"
|
||||
|
||||
#: easy-static-maps.php:250
|
||||
msgid "Low quality (smaller file size)"
|
||||
msgstr "Bassa qualità (dimensioni del file più piccole)"
|
||||
|
||||
#: easy-static-maps.php:251
|
||||
msgid "High quality (larger file size)"
|
||||
msgstr "Alta qualità (dimensione del file più grande)"
|
||||
|
||||
#: easy-static-maps.php:270
|
||||
msgid "Optional. Markers (map pushpins) are useful to highlight the position of a specific place on the map. You can indicate a precise street address or just a city or a village. Alternatively, enter the geographical coordinates of the place where you want the marker to be placed. Be careful: Bing Maps only accepts latitude and longitude (any textual address will be ignored). <strong>To get the coordinates</strong> (latitude and longitude) from a street address you can consult a website like"
|
||||
msgstr "Opzionale. I marker (puntine della mappa) sono utili per evidenziare la posizione di un luogo specifico sulla mappa. Puoi indicare un indirizzo preciso o solo una città o un villaggio. In alternativa inserisci le coordinate geografiche del luogo in cui desideri posizionare il marker. Fai attenzione: Bing Maps accetta solo latitudine e longitudine (qualsiasi indirizzo testuale verrà ignorato). <strong>Per ottenere le coordinate</strong> (latitudine e longitudine) da un indirizzo stradale puoi consultare un sito web come"
|
||||
|
||||
#: easy-static-maps.php:270
|
||||
msgid "You can add <strong>custom marker icons</strong> (such as your business logo) to the map using the Pro and Ultimate version of this plugin"
|
||||
msgstr "Puoi aggiungere nella mappa <strong>marker con icone personalizzate</strong> (come il logo della tua attività) utilizzando la versione Pro e Ultimate di questo plugin"
|
||||
|
||||
#: easy-static-maps.php:273
|
||||
msgid "Number of map markers"
|
||||
msgstr "Numero di marker"
|
||||
|
||||
#: easy-static-maps.php:295
|
||||
msgid "Maximum number of markers that can be added"
|
||||
msgstr "Massimo numero di marker che si possono aggiungere"
|
||||
|
||||
#: easy-static-maps.php:299 easy-static-maps.php:453
|
||||
msgid "Map marker"
|
||||
msgstr "Marker"
|
||||
|
||||
#: easy-static-maps.php:302
|
||||
msgid "Marker position"
|
||||
msgstr "Posizione del marker"
|
||||
|
||||
#: easy-static-maps.php:337
|
||||
msgid "Default marker icon"
|
||||
msgstr "Icona di default del marker"
|
||||
|
||||
#: easy-static-maps.php:340
|
||||
msgid "Marker color"
|
||||
msgstr "Colore del marker"
|
||||
|
||||
#: easy-static-maps.php:341
|
||||
msgid "Google Maps and OpenStreetMap - Mapquest only"
|
||||
msgstr "solo Google Maps e OpenStreetMap - Mapquest"
|
||||
|
||||
#: easy-static-maps.php:344
|
||||
msgid "Marker size"
|
||||
msgstr "Dimensioni del marker"
|
||||
|
||||
#: easy-static-maps.php:345
|
||||
msgid "Tiny"
|
||||
msgstr "Minuscolo"
|
||||
|
||||
#: easy-static-maps.php:346
|
||||
msgid "Small"
|
||||
msgstr "Piccolo"
|
||||
|
||||
#: easy-static-maps.php:347
|
||||
msgid "Mid"
|
||||
msgstr "Medio"
|
||||
|
||||
#: easy-static-maps.php:348
|
||||
msgid "Normal"
|
||||
msgstr "Normale"
|
||||
|
||||
#: easy-static-maps.php:351
|
||||
msgid "Marker label"
|
||||
msgstr "Etichetta del marker"
|
||||
|
||||
#: easy-static-maps.php:352
|
||||
msgid "Optional. A single character to be shown inside the marker (only Bing Maps accepts up to 3 characters). Letters will be capitalized (not in Bing Maps)"
|
||||
msgstr "Un singolo carattere da mostrare all'interno del marcatore (solo Bing Maps accetta fino a 3 caratteri). Le lettere saranno trasformate in maiuscolo (non in Bing Maps)"
|
||||
|
||||
#: easy-static-maps.php:369
|
||||
msgid "Sometimes you have to wait a few seconds for elaboration. If you are not able to view the map preview, verify that you have correctly filled in the fields on this page or check your API keys on the settings page"
|
||||
msgstr "A volte devi aspettare qualche secondo per l'elaborazione dell'anteprima. Se non riesci a visualizzare l'anteprima della mappa verifica di aver compilato correttamente i campi in questa pagina o controlla le chiavi API nella pagina delle impostazioni"
|
||||
|
||||
#: easy-static-maps.php:403 easy-static-maps.php:408
|
||||
msgid "copy to clipboard"
|
||||
msgstr "copia negli appunti"
|
||||
|
||||
#: easy-static-maps.php:404
|
||||
msgid "Copy this shortcode and paste it into the WordPress editor of the post / page where you want the map to be displayed"
|
||||
msgstr "Copia questo shortcode e incollalo nell'editor di WordPress del post/pagina in cui desideri visualizzare la mappa"
|
||||
|
||||
#: easy-static-maps.php:405
|
||||
msgid "Manual use"
|
||||
msgstr "Utilizzo manuale"
|
||||
|
||||
#: easy-static-maps.php:406
|
||||
msgid "Generated map link"
|
||||
msgstr "Link della mappa elaborato"
|
||||
|
||||
#: easy-static-maps.php:409
|
||||
msgid "Inside a HTML document use this link as value for SRC attribute of IMG tag"
|
||||
msgstr "All'interno di un documento HTML utilizza questo link come valore per l'attributo SRC del tag IMG"
|
||||
|
||||
#: easy-static-maps.php:410
|
||||
msgid "Save the preview"
|
||||
msgstr "Salva l'anteprima"
|
||||
|
||||
#: easy-static-maps.php:411
|
||||
msgid "If you are not interested in having a constantly updated map (changes in the roads, borders, more recent satellite images, etc.) you can save on your computer the preview of the map on this page and upload the image file to the WordPress media library. Then use it in your posts as a normal image"
|
||||
msgstr "Se non ti interessa avere una mappa costantemente aggiornata (cambiamenti nelle strade, confini, foto satellitari più recenti, ecc.) puoi salvare sul tuo computer l'anteprima della mappa su questa pagina e caricare il file immagine nella media library di WordPress. Poi puoi usarla nei tuoi post come una normale immagine"
|
||||
|
||||
#: easy-static-maps.php:416 easy-static-maps.php:421 easy-static-maps.php:426
|
||||
#: easy-static-maps.php:431
|
||||
msgid "This additional feature is available only in the <a href=\"https://reeverweb.it/easy-static-maps/\" target=\"_blank\">Pro and Ultimate version</a> of this plugin"
|
||||
msgstr "Questa funzione aggiuntiva è disponibile solo per le <a href=\"https://reeverweb.it/easy-static-maps/\" target=\"_blank\">versioni Pro e Ultimate</a> di questo plugin"
|
||||
|
||||
#: easy-static-maps.php:437
|
||||
msgid "Map center"
|
||||
msgstr "Centro della mappa"
|
||||
|
||||
#: easy-static-maps.php:445
|
||||
msgid "Map settings"
|
||||
msgstr "Impostazioni della mappa"
|
||||
|
||||
#: easy-static-maps.php:453
|
||||
msgid "Map markers"
|
||||
msgstr "Marker della mappa"
|
||||
|
||||
#: easy-static-maps.php:461
|
||||
msgid "Map preview"
|
||||
msgstr "Anteprima mappa"
|
||||
|
||||
#: easy-static-maps.php:469
|
||||
msgid "To use this map"
|
||||
msgstr "Per utilizzare questa mappa"
|
||||
|
||||
#: easy-static-maps.php:477
|
||||
msgid "Add a line / calculated route"
|
||||
msgstr "Aggiungi una linea / percorso calcolato"
|
||||
|
||||
#: easy-static-maps.php:485
|
||||
msgid "Add a colored area"
|
||||
msgstr "Aggiungi un'area colorata"
|
||||
|
||||
#: easy-static-maps.php:493
|
||||
msgid "Add a circle"
|
||||
msgstr "Aggiungi un cerchio"
|
||||
|
||||
#: easy-static-maps.php:501
|
||||
msgid "Custom map styles"
|
||||
msgstr "Personalizza l'aspetto della mappa"
|
||||
|
||||
#: easy-static-maps-pro.php:412
|
||||
msgid "Map link copied in clipboard. Paste it in a SRC attribute of an IMG tag"
|
||||
msgstr "Link della mappa copiato negli appunti. Incollalo in un attributo SRC di un tag IMG"
|
||||
|
||||
#: easy-static-maps-pro.php:412
|
||||
msgid "Shortcode copied in clipboard. Paste it into the WordPress editor of the post / page where you want the map to be displayed"
|
||||
msgstr "Shortcode copiato negli appunti. Incollalo nell'editor di WordPress del post / della pagina in cui desideri visualizzare la mappa"
|
||||
8
spec/fixtures/dynamic_finders/plugin_version/generous-world/change_log/changelog.txt
vendored
Normal file
8
spec/fixtures/dynamic_finders/plugin_version/generous-world/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# Changelog
|
||||
All notable changes to the plugin will be documented in this file.
|
||||
|
||||
## 1.0.0 - 2019-08-24
|
||||
### Initial release
|
||||
|
||||
## 1.0.1 - 2019-09-20
|
||||
### Fixed typos and descriptions
|
||||
44
spec/fixtures/dynamic_finders/plugin_version/nelio-compare-images/composer_file/package.json
vendored
Normal file
44
spec/fixtures/dynamic_finders/plugin_version/nelio-compare-images/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"name": "nelio-compare-images",
|
||||
"version": "1.0.0",
|
||||
"description": "Before & After Image Block for Gutenberg.",
|
||||
"main": "dist/index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/davilera/nelio-compare-images.git"
|
||||
},
|
||||
"keywords": [
|
||||
"before-after",
|
||||
"image",
|
||||
"compare",
|
||||
"images"
|
||||
],
|
||||
"author": "Nelio Software",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"bugs": {
|
||||
"url": "https://github.com/davilera/nelio-compare-images/issues"
|
||||
},
|
||||
"homepage": "https://github.com/davilera/nelio-compare-images#readme",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"check-engines": "wp-scripts check-engines",
|
||||
"check-licenses": "wp-scripts check-licenses",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"lint:pkg-json": "wp-scripts lint-pkg-json",
|
||||
"start": "wp-scripts start",
|
||||
"test:e2e": "wp-scripts test-e2e",
|
||||
"test:unit": "wp-scripts test-unit-js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^5.0.0",
|
||||
"classnames": "^2.2.6",
|
||||
"css-loader": "^3.2.0",
|
||||
"mini-css-extract-plugin": "^0.8.0",
|
||||
"node-sass": "^4.12.0",
|
||||
"postcss-loader": "^3.0.0",
|
||||
"sass-loader": "^8.0.0",
|
||||
"webpack": "^4.41.0",
|
||||
"webpack-rtl-plugin": "^2.0.0"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/opal-estate-packages/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/opal-estate-packages/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 2019-09-14 =
|
||||
* Release
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/opal-estate-pro/change_log/changelog.txt
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/opal-estate-pro/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
= 1.0.4 - 2019-09-20 =
|
||||
* Fixes: Property setings.
|
||||
* Added: Search form: Collapse advanced.
|
||||
|
||||
= 1.0.0 - 2019-09-03 =
|
||||
* Release.
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/otm-accessibly/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/otm-accessibly/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "wordpress-accessibility-plugin",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"repository": "git@github.com:start-jobs/wordpress-accessibility-plugin.git",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
"watch": "rollup -c -w"
|
||||
},
|
||||
"devDependencies": {
|
||||
"resolve": "^1.12.0",
|
||||
"rollup": "^1.20.2",
|
||||
"rollup-plugin-babel": "^4.3.3",
|
||||
"rollup-plugin-commonjs": "^10.1.0",
|
||||
"rollup-plugin-node-resolve": "^5.2.0",
|
||||
"rollup-plugin-terser": "^5.1.1",
|
||||
"@babel/core": "^7.6.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"vanilla-picker": "^2.9.2"
|
||||
}
|
||||
}
|
||||
@@ -133,6 +133,10 @@
|
||||
<link rel="stylesheet" id="admin_abcsubmit_css-css" href="http://wp.lab/wp-content/plugins/abcsubmit//assets/css/admin.css?ver=1.1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- about-author-box -->
|
||||
<link rel="stylesheet" id="about-author-box-css-css" href="http://wp.lab/wp-content/plugins/about-author-box/css/about-author-box.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- academic-bloggers-toolkit -->
|
||||
<link rel="stylesheet" id="abt-css-css" href="http://wp.lab/wp-content/plugins/academic-bloggers-toolkit/css/frontend.css?ver=4.11.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/academic-bloggers-toolkit/js/frontend.js?ver=4.11.3"></script>
|
||||
@@ -489,6 +493,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-theme-search/js/klick-ats-ui.min.js?ver=0.0.1"></script>
|
||||
|
||||
|
||||
<!-- advanced-widgets-for-elementor -->
|
||||
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/advanced-widgets-for-elementor/assets/vendor/css/font-awesome.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="advance-icon-css" href="http://wp.lab/wp-content/plugins/advanced-widgets-for-elementor/assets/fonts/style.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="notifications-css" href="http://wp.lab/wp-content/plugins/advanced-widgets-for-elementor/assets/css/alert.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-widgets-for-elementor/assets/js/aae.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- adventure-bucket-list -->
|
||||
<link rel="stylesheet" id="WP_ABL_Plugin-css" href="http://wp.lab/wp-content/plugins/adventure-bucket-list/public/css/wp-abl-plugin-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/adventure-bucket-list/public/js/wp-abl-plugin-public.js?ver=1.0.0"></script>
|
||||
@@ -851,6 +862,11 @@
|
||||
<link rel="stylesheet" id="afm-popup-style-css" href="http://wp.lab/wp-content/plugins/appointment-form-manager/public/css/popup.css?ver=2.1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- appointment-scheduling-karenapp -->
|
||||
<link rel="stylesheet" id="karenapp_frontend-css" href="http://wp.lab/wp-content/plugins/appointment-scheduling-karenapp/css/schedule-frontend.min.css?ver=0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/appointment-scheduling-karenapp/js/schedule.min.js?ver=0.1"></script>
|
||||
|
||||
|
||||
<!-- appointments -->
|
||||
<link rel="stylesheet" id="appointments-css" href="http://wp.lab/wp-content/plugins/appointments/css/front.css?ver=2.2.3" type="text/css" media="all">
|
||||
|
||||
@@ -1023,6 +1039,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/audioigniter/player/build/app.js?ver=1.4.1"></script>
|
||||
|
||||
|
||||
<!-- aurora-heatmap -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/aurora-heatmap/js/reporter.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ausmed-document-button -->
|
||||
<link rel="stylesheet" id="ausmed-document-button-css" href="http://wp.lab/wp-content/plugins/ausmed-document-button/public/css/ausmed-document-button-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ausmed-document-button/public/js/ausmed-document-button-public.js?ver=1.0.0"></script>
|
||||
@@ -1094,6 +1114,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/autoship-cloud/js/schedule-options.js?ver=1.0.10"></script>
|
||||
|
||||
|
||||
<!-- availability-calendar -->
|
||||
<link rel="stylesheet" id="owac-styles-css" href="http://wp.lab/wp-content/plugins/availability-calendar/public/css/styles.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="owac-slider-css" href="http://wp.lab/wp-content/plugins/availability-calendar/public/css/owac.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="owac-theme-css" href="http://wp.lab/wp-content/plugins/availability-calendar/public/css/owac-theme.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/availability-calendar/public/js/owac.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- awasete-yomitai-for-wordpress -->
|
||||
<link rel="stylesheet" id="awasete-yomitai-css" href="http://wp.lab/wp-content/plugins/awasete-yomitai-for-wordpress/awasete-yomitai.css?ver=1.1.1" type="text/css" media="all">
|
||||
|
||||
@@ -2122,6 +2149,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/buzz-instagram-feed/js/frontend.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- bwl-advanced-faq-manager-lite -->
|
||||
<link rel="stylesheet" id="bwl-advanced-faq-theme-css" href="http://wp.lab/wp-content/plugins/bwl-advanced-faq-manager-lite/css/faq-style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- bwp-external-links -->
|
||||
<link rel="stylesheet" id="bwp-ext-css" href="http://wp.lab/wp-content/plugins/bwp-external-links/css/bwp-external-links.css?ver=1.1.3" type="text/css" media="all">
|
||||
|
||||
@@ -2360,6 +2391,15 @@
|
||||
<link rel="stylesheet" id="cbxinstaphotos-public-css" href="http://wp.lab/wp-content/plugins/cbxinstaphotos/public/css/cbxinstaphotos-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- cbxpetition -->
|
||||
<link rel="stylesheet" id="venobox-css" href="http://wp.lab/wp-content/plugins/cbxpetition/assets/js/venobox/venobox.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="cbxpetition-public-css" href="http://wp.lab/wp-content/plugins/cbxpetition/assets/css/cbxpetition-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cbxpetition/assets/js/venobox/venobox.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cbxpetition/assets/js/readmore/readmore.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cbxpetition/assets/js/jquery.validate.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cbxpetition/assets/js/cbxpetition-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cbxwpreadymix -->
|
||||
<link rel="stylesheet" id="cbxwpreadymix_owlcarousel-css" href="http://wp.lab/wp-content/plugins/cbxwpreadymix/public/vendor/owl-carousel/assets/owl.carousel.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="cbxwpreadymix_owlcarousel_theme-css" href="http://wp.lab/wp-content/plugins/cbxwpreadymix/public/vendor/owl-carousel/assets/owl.theme.default.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
@@ -2436,6 +2476,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cc-social-buttons/assets/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cc-travel -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cc-travel/assets/plugins/ranger/jquery.range-min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cc-travel/assets/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ccr-client-testimonials -->
|
||||
<link rel="stylesheet" id="ccr-ct-style-css" href="http://wp.lab/wp-content/plugins/ccr-client-testimonials/assets/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ccr-client-testimonials/assets/js/bootstrap.js?ver=1.0.0"></script>
|
||||
@@ -2771,6 +2816,11 @@
|
||||
<link rel="stylesheet" id="cm-idin-css" href="http://wp.lab/wp-content/plugins/cm-idin/css/style.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- cn-custom-tabs -->
|
||||
<link rel="stylesheet" id="cn-custom-woo-tabs-css" href="http://wp.lab/wp-content/plugins/cn-custom-tabs/public/css/cn-custom-woo-tabs-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cn-custom-tabs/public/js/cn-custom-woo-tabs-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cnhk-slideshow -->
|
||||
<link rel="stylesheet" id="cnhk-css-css" href="http://wp.lab/wp-content/plugins/cnhk-slideshow/public/assets/css/cnhk-slider.css?ver=3.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cnhk-slideshow/lib/jssor/jssor.slider.mini.js?ver=3.1.1"></script>
|
||||
@@ -2910,6 +2960,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/community-watch/js/public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- compare-your-income-moneyarcher -->
|
||||
<link rel="stylesheet" id="cyi-css" href="http://wp.lab/wp-content/plugins/compare-your-income-moneyarcher/css/style.css?ver=2.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/compare-your-income-moneyarcher/js/progress.js?ver=2.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/compare-your-income-moneyarcher/js/script.js?ver=2.0.0"></script>
|
||||
|
||||
|
||||
<!-- complianz-gdpr -->
|
||||
<link rel="stylesheet" id="cmplz-document-css" href="http://wp.lab/wp-content/plugins/complianz-gdpr/assets/css/document.css?ver=1.1.5" type="text/css" media="all">
|
||||
|
||||
@@ -3047,6 +3103,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/content-views-query-and-display-post-page/public/assets/js/cv.js?ver=1.9.9.5"></script>
|
||||
|
||||
|
||||
<!-- continue-shopping-anywhere-for-woocommerce -->
|
||||
<link rel="stylesheet" id="continue-shopping-anywhere-css" href="http://wp.lab/wp-content/plugins/continue-shopping-anywhere-for-woocommerce/public/css/continue-shopping-anywhere-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/continue-shopping-anywhere-for-woocommerce/public/js/continue-shopping-anywhere-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- contributer -->
|
||||
<link rel="stylesheet" id="contributer_login-css" href="http://wp.lab/wp-content/plugins/contributer//assets/css/main.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/contributer//assets/js/login.js?ver=1.0"></script>
|
||||
@@ -4330,6 +4391,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fakeblock/assets/js/fkblk.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- falang -->
|
||||
<link rel="stylesheet" id="falang-css" href="http://wp.lab/wp-content/plugins/falang/public/css/falang-public.css?ver=0.9" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/falang/public/js/falang-public.js?ver=0.9"></script>
|
||||
|
||||
|
||||
<!-- falconiform-youtube-widget -->
|
||||
<link rel="stylesheet" id="ff-youtube-widget-main-css" href="http://wp.lab/wp-content/plugins/falconiform-youtube-widget/css/youtube.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
@@ -4659,6 +4725,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/foobox-image-lightbox/free/js/foobox.free.min.js?ver=1.2.27"></script>
|
||||
|
||||
|
||||
<!-- food-to-prep -->
|
||||
<link rel="stylesheet" id="food-prep-plugin-style-css" href="http://wp.lab/wp-content/plugins/food-to-prep/assets/css/style.min.css?ver=0.1.4" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="food-prep-pagination-css" href="http://wp.lab/wp-content/plugins/food-to-prep/assets/css/simplePagination.css?ver=0.1.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/food-to-prep/assets/js/grid-gallery.min.js?ver=0.1.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/food-to-prep/assets/js/add-to-cart.min.js?ver=0.1.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/food-to-prep/assets/js/jquery.simplePagination.js?ver=0.1.4"></script>
|
||||
|
||||
|
||||
<!-- food-truck -->
|
||||
<link rel="stylesheet" id="food-truck-style-css" href="http://wp.lab/wp-content/plugins/food-truck/assets/dist/css/main.css?ver=1.0.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/food-truck/assets/dist/js/main.js?ver=1.0.4"></script>
|
||||
@@ -4794,6 +4868,11 @@
|
||||
<link rel="stylesheet" id="freelancer_share_icons-css" href="http://wp.lab/wp-content/plugins/freelancer-sharing-icons/public/css/freelancer_share_icons-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- frequency -->
|
||||
<link rel="stylesheet" id="frequency-css" href="http://wp.lab/wp-content/plugins/frequency/public/css/frequency-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/frequency/public/js/frequency-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- fresh-podcaster -->
|
||||
<link rel="stylesheet" id="fresh-podcaster-css" href="http://wp.lab/wp-content/plugins/fresh-podcaster/public/css/fresh-podcaster-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fresh-podcaster/public/js/fresh-podcaster-public.js?ver=1.0.0"></script>
|
||||
@@ -5535,6 +5614,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/heart-this/js/heartThis.pkgd.min.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- heateor-login -->
|
||||
<link rel="stylesheet" id="heateor_fbl_frontend_style-css" href="http://wp.lab/wp-content/plugins/heateor-login/css/public/front.css?ver=1.0.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- heateor-social-comments -->
|
||||
<link rel="stylesheet" id="heateor-sc-frontend-css-css" href="http://wp.lab/wp-content/plugins/heateor-social-comments/css/front.css?ver=1.4.12" type="text/css" media="all">
|
||||
|
||||
@@ -5841,6 +5924,12 @@
|
||||
<link rel="stylesheet" id="igniteup-front-compulsory-css" href="http://wp.lab/wp-content/plugins/igniteup/includes/css/front-compulsory.css?ver=3.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- iks-menu -->
|
||||
<link rel="stylesheet" id="iksm-public-style-css" href="http://wp.lab/wp-content/plugins/iks-menu/assets/css/public.css?ver=1.6.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/iks-menu/assets/js/public.js?ver=1.6.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/iks-menu/assets/js/menu.js?ver=1.6.1"></script>
|
||||
|
||||
|
||||
<!-- ilannotations -->
|
||||
<link rel="stylesheet" id="Annotations.css-css" href="http://wp.lab/wp-content/plugins/ilannotations/_inc/Annotations.css?ver=0.9.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ilannotations/_inc/detectmobilebrowser.js?ver=0.9.0"></script>
|
||||
@@ -6500,6 +6589,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kk-star-ratings/js.min.js?ver=2.6.4"></script>
|
||||
|
||||
|
||||
<!-- klantenvertellen -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/klantenvertellen/public/js/klantenvertellen-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- klaro-consent-manager -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/klaro-consent-manager/js/klaro-config.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/klaro-consent-manager/js/klaro.min.js?ver=1.0"></script>
|
||||
@@ -6838,6 +6931,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/link-widget-title/public/js/link-widget-title-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- linkgreen-product-import -->
|
||||
<link rel="stylesheet" id="linkgreen-product-import-css" href="http://wp.lab/wp-content/plugins/linkgreen-product-import/public/css/linkgreen-product-import-public.css?ver=1.0.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/linkgreen-product-import/public/js/linkgreen-product-import-public.js?ver=1.0.5"></script>
|
||||
|
||||
|
||||
<!-- linkpaper -->
|
||||
<link rel="stylesheet" id="linkpaper-style-css" href="http://wp.lab/wp-content/plugins/linkpaper/css/lp-style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -7040,6 +7138,7 @@
|
||||
<link rel="stylesheet" id="lsx-blog-customizer-css" href="http://wp.lab/wp-content/plugins/lsx-blog-customizer/assets/css/lsx-blog-customizer.css?ver=1.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lsx-blog-customizer/assets/js/vendor/owl.carousel.min.js?ver=1.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lsx-blog-customizer/assets/js/lsx-blog-customizer.min.js?ver=1.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lsx-blog-customizer/assets/js/src/lsx-blog-customizer.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- lsx-currencies -->
|
||||
@@ -7639,6 +7738,10 @@
|
||||
<link rel="stylesheet" id="wp-igsp-public-css-css" href="http://wp.lab/wp-content/plugins/meta-slider-and-carousel-with-lightbox/assets/css/wp-igsp-public.css?ver=1.1.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- metomic-for-cookies -->
|
||||
<link rel="stylesheet" id="metomic-css" href="http://wp.lab/wp-content/plugins/metomic-for-cookies/public/css/metomic-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- metro-share-social-fonts -->
|
||||
<link rel="stylesheet" id="metroshare-social-fonts-css" href="http://wp.lab/wp-content/plugins/metro-share-social-fonts/css/social.min.css?ver=0.2.1" type="text/css" media="all">
|
||||
|
||||
@@ -8177,6 +8280,11 @@
|
||||
<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">
|
||||
|
||||
|
||||
<!-- next-mail-chimp -->
|
||||
<link rel="stylesheet" id="themedev_mail_settings_css_public-css" href="http://wp.lab/wp-content/plugins/next-mail-chimp/assets/public/css/public-style.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/next-mail-chimp/assets/public/script/subscribe.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- 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">
|
||||
|
||||
@@ -8273,6 +8381,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/no-copy/no-copy.js?ver=1.1.4"></script>
|
||||
|
||||
|
||||
<!-- no-spam-at-all -->
|
||||
<link rel="stylesheet" id="nsaa_style.css-css" href="http://wp.lab/wp-content/plugins/no-spam-at-all/assets/css/nsaa_style.css?ver=1.3" type="text/css" media="All">
|
||||
|
||||
|
||||
<!-- nokaut-offers-box -->
|
||||
<link rel="stylesheet" id="nokaut-offers-box.css-css" href="http://wp.lab/wp-content/plugins/nokaut-offers-box/assets/css/nokaut-offers-box.css?ver=1.3.13" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nokaut-offers-box/assets/js/nokaut-offers-box.js?ver=1.3.13"></script>
|
||||
@@ -8440,6 +8552,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/js/datatables.min.js?ver=1.0.1"></script>
|
||||
<link rel="stylesheet" id="loving-memorials-css" href="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/css/loving-memorials-public.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/css/bootstrap.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/public/js/loving-memorials-public.min.js?ver=1.0.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/obituary-central-newspaper-obituary-editor/frontend/js/loving-memorials-frontend.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- oc-newsletter -->
|
||||
@@ -8524,6 +8638,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/infobox.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/opalestate.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/country-select.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/frontend/googlemaps.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/opal-estate-pro/assets/js/frontend/property.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- open-booking-calendar -->
|
||||
@@ -9427,6 +9543,11 @@
|
||||
<link rel="stylesheet" id="plwao-front-style-css" href="http://wp.lab/wp-content/plugins/preloader-for-website/assets/css/plwao-front.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- prerender -->
|
||||
<link rel="stylesheet" id="prerender-css" href="http://wp.lab/wp-content/plugins/prerender/public/css/prerender-public.css?ver=1.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/prerender/public/js/prerender-public.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- press-events -->
|
||||
<link rel="stylesheet" id="magnific-popup-css" href="http://wp.lab/wp-content/plugins/press-events/assets/css/magnific-popup/magnific-popup.css?ver=1.0.6" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="press-events-general-css" href="http://wp.lab/wp-content/plugins/press-events/assets/css/press-events.css?ver=1.0.6" type="text/css" media="all">
|
||||
@@ -9476,6 +9597,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/test.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- prevent-file-access -->
|
||||
<link rel="stylesheet" id="prevent-file-access-css" href="http://wp.lab/wp-content/plugins/prevent-file-access/public/css/media-restriction-public.css?ver=1.1.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/prevent-file-access/public/js/media-restriction-public.js?ver=1.1.3"></script>
|
||||
|
||||
|
||||
<!-- primer-by-chloedigital -->
|
||||
<link rel="stylesheet" id="primer-by-chloedigital-css" href="http://wp.lab/wp-content/plugins/primer-by-chloedigital/public/css/primer-by-chloedigital-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/primer-by-chloedigital/public/js/primer-by-chloedigital-public.js?ver=1.0.2"></script>
|
||||
@@ -9502,6 +9628,10 @@
|
||||
<link rel="stylesheet" id="pro-adblock-css" href="http://wp.lab/wp-content/plugins/pro-adblock/padb-style.css?ver=1.2.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- pro-author-review -->
|
||||
<link rel="stylesheet" id="pro-author-review-css" href="http://wp.lab/wp-content/plugins/pro-author-review/assets/css/front/author-review.min.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- probotdev-customer-support-faq-chatbot -->
|
||||
<link rel="stylesheet" id="ProBotDev Customer Support FAQ Chatbot-css" href="http://wp.lab/wp-content/plugins/probotdev-customer-support-faq-chatbot/public/css/default.css?ver=0.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/probotdev-customer-support-faq-chatbot/public/js/default.js?ver=0.0.1"></script>
|
||||
@@ -9545,6 +9675,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/productdyno/public/js/productdyno-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- products-boxes-slider-for-woocommerce -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/products-boxes-slider-for-woocommerce/js/uikit.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/products-boxes-slider-for-woocommerce/js/uikit-icons.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- professional-contact-form -->
|
||||
<link rel="stylesheet" id="pcf-front-inputs-css" href="http://wp.lab/wp-content/plugins/professional-contact-form/assets/stylesheets/pcf-front-inputs.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="pcf-front-layout-css" href="http://wp.lab/wp-content/plugins/professional-contact-form/assets/stylesheets/pcf-front-layout.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -9648,6 +9783,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pubmed-posts/script.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- puchi-ab-testing -->
|
||||
<link rel="stylesheet" id="puchi-css" href="http://wp.lab/wp-content/plugins/puchi-ab-testing/public/css/puchi-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/puchi-ab-testing/public/js/base64.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/puchi-ab-testing/public/js/puchi-public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- pud-generator -->
|
||||
<link rel="stylesheet" id="pud-generator-css" href="http://wp.lab/wp-content/plugins/pud-generator/public/css/pud-generator-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pud-generator/public/js/pud-generator-public.js?ver=1.0.0"></script>
|
||||
@@ -10762,6 +10903,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-searchterms-admin/js/public.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- seo-slider -->
|
||||
<link rel="stylesheet" id="seo-slider-css" href="http://wp.lab/wp-content/plugins/seo-slider/assets/styles/styles.css?ver=1.0.10" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-slider/assets/scripts/scripts.js?ver=1.0.10"></script>
|
||||
|
||||
|
||||
<!-- seolat-tool-plus -->
|
||||
<link rel="stylesheet" id="sl-plugin-seo.front-css" href="http://wp.lab/wp-content/plugins/seolat-tool-plus/plugin/seo.front.css?ver=2.0.7" type="text/css" media="all">
|
||||
|
||||
@@ -11592,6 +11738,10 @@
|
||||
<link rel="stylesheet" id="social-mentions-css" href="http://wp.lab/wp-content/plugins/social-mentions/css/front-end.css?ver=1.0.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- social-menu -->
|
||||
<link rel="stylesheet" id="social-menu-css" href="http://wp.lab/wp-content/plugins/social-menu/style.css?ver=0.1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- social-nation-itsme-login -->
|
||||
<link rel="stylesheet" id="social-nation-itsme-login-css" href="http://wp.lab/wp-content/plugins/social-nation-itsme-login/assets/css/social-nation-itsme-login.css?ver=1.0.8" type="text/css" media="all">
|
||||
|
||||
@@ -11967,6 +12117,19 @@
|
||||
<link rel="stylesheet" id="sfwppa-public-style-css" href="http://wp.lab/wp-content/plugins/styles-for-wp-pagenavi-addon/assets/css/sfwppa-style.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- styles-selector -->
|
||||
<link rel="stylesheet" id="styleselector-css" href="http://wp.lab/wp-content/plugins/styles-selector/public/css/styleselector-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- styling-default-post-flipbox -->
|
||||
<link rel="stylesheet" id="fsdp_fontawesome_style-css" href="http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/css/fontawesome.css?ver=1.0.0" type="text/css" media="">
|
||||
<link rel="stylesheet" id="my_bootstrap_style-css" href="http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/css/bootstrap.min.css?ver=1.0.0" type="text/css" media="">
|
||||
<link rel="stylesheet" id="fsdp_custom_style-css" href="http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/css/style.css?ver=1.0.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/js/jquery-flip.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/styling-default-post-flipbox/assets/js/fsdp-flipbox-script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- subpagelister -->
|
||||
<link rel="stylesheet" id="subpagelister_frontend-css" href="http://wp.lab/wp-content/plugins/subpagelister/css/subpagelister.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -12286,6 +12449,15 @@
|
||||
<link type="text/css" href="http://wp.lab/wp-content/plugins/teachpress/styles/teachpress_front.css?ver=6.2.1" rel="stylesheet">
|
||||
|
||||
|
||||
<!-- team-master -->
|
||||
<link rel="stylesheet" id="team-master-css" href="http://wp.lab/wp-content/plugins/team-master/public/css/team-master-public.css?ver=1.0.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="team-masterbootstrap-css-css" href="http://wp.lab/wp-content/plugins/team-master/public/css/bootstrap.min.css?ver=1.0.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="team-masterfont-awesome-css-css" href="http://wp.lab/wp-content/plugins/team-master/public/css/font-awesome.min.css?ver=1.0.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/team-master/public/js/popper.min.js?ver=1.0.3"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/team-master/public/js/bootstrap.min.js?ver=1.0.3"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/team-master/public/js/team-master-public.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- team-ultimate -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/team-ultimate/public/js/team-ultimate-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -12503,6 +12675,11 @@
|
||||
<link rel="stylesheet" id="tidings-css-css" href="http://wp.lab/wp-content/plugins/tidings/css/tidings.css?ver=1.0.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- tiempo -->
|
||||
<link rel="stylesheet" id="tiempo-css" href="http://wp.lab/wp-content/plugins/tiempo/public/css/tiempo-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tiempo/public/js/tiempo-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- time-clock -->
|
||||
<link rel="stylesheet" id="etimeclockwp-public-css-css" href="http://wp.lab/wp-content/plugins/time-clock/assets/css/etimeclockwp-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/time-clock/assets/js/etimeclockwp-date_time.js?ver=1.0.1"></script>
|
||||
@@ -12525,6 +12702,11 @@
|
||||
<link rel="stylesheet" id="timeline-twitter-feed-frontend-css" href="http://wp.lab/wp-content/plugins/timeline-twitter-feed/res/css/timeline-twitter-feed-frontend.css?ver=1.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- timezone-conversion-widget -->
|
||||
<link rel="stylesheet" id="tzc-select2-css-css" href="http://wp.lab/wp-content/plugins/timezone-conversion-widget/assets/css/select2.min.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/timezone-conversion-widget/assets/js/select2.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- tiny-bar -->
|
||||
<link rel="stylesheet" id="hmtb_front_style-css" href="http://wp.lab/wp-content/plugins/tiny-bar/front/style/hmtb_style.css?ver=1.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tiny-bar/front/js/hmtb_script.js?ver=1.0"></script>
|
||||
@@ -12697,6 +12879,11 @@
|
||||
<link rel="stylesheet" id="jquerytreeview_css-css" href="http://wp.lab/wp-content/plugins/treeview-on-contents/css/jquery.treeview.css?ver=0.1.8" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- triagetrak -->
|
||||
<link rel="stylesheet" id="triage-trak-css" href="http://wp.lab/wp-content/plugins/triagetrak/public/css/triage-trak-public.min.css?ver=2.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/triagetrak/public/js/triage-trak-public.min.js?ver=2.0.0"></script>
|
||||
|
||||
|
||||
<!-- triggerbee -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/triggerbee/src/triggerbee.js?ver=1.0.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/triggerbee/src/triggerbee_forms.js?ver=1.0.4"></script>
|
||||
@@ -13134,6 +13321,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/unique-hover-slider-plus/assets/js/script.js?ver=1.1.2"></script>
|
||||
|
||||
|
||||
<!-- unitizr -->
|
||||
<link rel="stylesheet" id="unitizr-public-css" href="http://wp.lab/wp-content/plugins/unitizr/lib/unitizr-public-style.css?ver=1.0.2" type="text/css" media="">
|
||||
|
||||
|
||||
<!-- units -->
|
||||
<link rel="stylesheet" id="unit-switcher-css" href="http://wp.lab/wp-content/plugins/units/assets/css/unit-switcher.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/units/assets/js/unit-switcher.min.js?ver=1.0.2"></script>
|
||||
@@ -13473,6 +13664,11 @@
|
||||
<link rel="stylesheet" id="visual-portfolio-noscript-css" href="http://wp.lab/wp-content/plugins/visual-portfolio/assets/css/noscript.min.css?ver=1.12.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- visualcomposer -->
|
||||
<link rel="stylesheet" id="vcv:assets:front:style-css" href="http://wp.lab/wp-content/plugins/visualcomposer/public/dist/front.bundle.css?ver=20.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/visualcomposer/public/dist/front.bundle.js?ver=20.0"></script>
|
||||
|
||||
|
||||
<!-- visualizer -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/visualizer/js/lib/clipboardjs/clipboard.min.js?ver=3.0.4"></script>
|
||||
|
||||
@@ -13697,6 +13893,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wds-theme-switcher/public/assets/js/public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wdv-about-me-widget -->
|
||||
<link rel="stylesheet" id="publiccss-css" href="http://wp.lab/wp-content/plugins/wdv-about-me-widget/public/css/wdv-about-me-widget-public.css?ver=1.1.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wdv-about-me-widget/public/js/wdv-about-me-widget-public.js?ver=1.1.3"></script>
|
||||
|
||||
|
||||
<!-- wdv-add-services-and-events -->
|
||||
<link rel="stylesheet" id="wdv-add-services-and-events-css" href="http://wp.lab/wp-content/plugins/wdv-add-services-and-events/public/css/wdv-add-services-and-events-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wdv-add-services-and-events/public/js/wdv-add-services-and-events-public.js?ver=1.0.0"></script>
|
||||
@@ -14343,6 +14544,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woocommerce-products-designer/public/js/modal/modal.min.js?ver=3.0.6"></script>
|
||||
|
||||
|
||||
<!-- woocommerce-products-filter -->
|
||||
<link rel="stylesheet" id="woof-css" href="http://wp.lab/wp-content/plugins/woocommerce-products-filter/css/front.css?ver=1.2.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="chosen-drop-down-css" href="http://wp.lab/wp-content/plugins/woocommerce-products-filter/js/chosen/chosen.min.css?ver=1.2.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- woocommerce-zooming-image -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woocommerce-zooming-image/assets/js/main.js?ver=1.0"></script>
|
||||
|
||||
@@ -14794,6 +15000,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-contact-form7-email-spam-blocker/public/js/contact-form-7-email-spam-blocker-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-content-scheduler-with-range -->
|
||||
<link rel="stylesheet" id="content-scheduler-style-1-css" href="http://wp.lab/wp-content/plugins/wp-content-scheduler-with-range/assets/css/date_range_style.min.css?ver=1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-content-scheduler-with-range/assets/js/wcswr-frontend.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- wp-cookie-law-info -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-cookie-law-info/assets/js/jquery.wcl.min.js?ver=1.0"></script>
|
||||
|
||||
@@ -16019,6 +16230,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-soavis/public/js/wp-soavis-public.js?ver=1.2.0"></script>
|
||||
|
||||
|
||||
<!-- wp-social-connect -->
|
||||
<link rel="stylesheet" id="wpsoccon-css" href="http://wp.lab/wp-content/plugins/wp-social-connect/assets/css/wpsoccon-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-social-connect/assets/js/wpsoccon-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-social-invitations -->
|
||||
<link rel="stylesheet" id="wsi-css" href="http://wp.lab/wp-content/plugins/wp-social-invitations/public/assets/css/wsi-public.css?ver=2.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-social-invitations/public/assets/js/wsi-public.js?ver=2.1.1"></script>
|
||||
@@ -16105,6 +16321,12 @@
|
||||
<link rel="stylesheet" id="wp-style-kit-css" href="http://wp.lab/wp-content/plugins/wp-style-kit/wp-style-kit.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-subscription-forms -->
|
||||
<link rel="stylesheet" id="fontawesome-css" href="http://wp.lab/wp-content/plugins/wp-subscription-forms/fontawesome/css/all.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpsf-frontend-style-css" href="http://wp.lab/wp-content/plugins/wp-subscription-forms/css/wpsf-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-subscription-forms/js/wpsf-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-sugarscale -->
|
||||
<link rel="stylesheet" id="wp-sugarscale-css" href="http://wp.lab/wp-content/plugins/wp-sugarscale/public/css/wp-sugarscale-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-sugarscale/public/js/wp-sugarscale-public.js?ver=1.0.0"></script>
|
||||
@@ -16119,6 +16341,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-switch-user/public/js/ace_switch_user-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-sync-dropbox -->
|
||||
<link rel="stylesheet" id="dropsync-css" href="http://wp.lab/wp-content/plugins/wp-sync-dropbox/public/css/dropsync-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-sync-dropbox/public/js/dropsync-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-syntax -->
|
||||
<link rel="stylesheet" id="wp-syntax-css-css" href="http://wp.lab/wp-content/plugins/wp-syntax/css/wp-syntax.css?ver=1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-syntax/js/wp-syntax.js?ver=1.1"></script>
|
||||
@@ -16541,6 +16768,10 @@
|
||||
<link rel="stylesheet" id="wpm-email-css" href="http://wp.lab/wp-content/plugins/wpm-email/public/css/wpm-email-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wpmarathi -->
|
||||
<link rel="stylesheet" id="wpmarathi-frontend-css" href="http://wp.lab/wp-content/plugins/wpmarathi//assets/css/wpmarathi-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wpmbytplayer -->
|
||||
<link rel="stylesheet" id="mb.YTPlayer_css-css" href="http://wp.lab/wp-content/plugins/wpmbytplayer/css/mb.YTPlayer.css?ver=3.1.7" type="text/css" media="screen">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpmbytplayer/js/jquery.mb.YTPlayer.js?ver=3.1.7"></script>
|
||||
@@ -16805,6 +17036,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yamap-block-gutenberg/assets/block-front.build.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- yame-linkinbio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yame-linkinbio/public/js/linkinbio-public.js?ver=0.9.0"></script>
|
||||
|
||||
|
||||
<!-- yapsody-events-calendar -->
|
||||
<link rel="stylesheet" id="yapsody-events-calendar-css" href="http://wp.lab/wp-content/plugins/yapsody-events-calendar/includes/css/main.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yapsody-events-calendar/includes/js/main.js?ver=1.0"></script>
|
||||
@@ -16972,10 +17207,20 @@
|
||||
<link rel="stylesheet" id="zerowp-social-profiles-styles-css" href="http://wp.lab/wp-content/plugins/zerowp-social-profiles/assets/css/styles.css?ver=1.1.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- zi-hide-price-and-add-to-cart-for-woocommerce -->
|
||||
<link rel="stylesheet" id="zi-woo-hide-price-cart-css" href="http://wp.lab/wp-content/plugins/zi-hide-price-and-add-to-cart-for-woocommerce/public/css/zi-woo-hide-price-cart-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zi-hide-price-and-add-to-cart-for-woocommerce/public/js/zi-woo-hide-price-cart-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- zigaform-calculator-cost-estimation-form-builder-lite -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zigaform-calculator-cost-estimation-form-builder-lite/assets/frontend/js/iframe/4.1.1/iframeResizer.min.js?ver=3.9.9.6.8"></script>
|
||||
|
||||
|
||||
<!-- zim-airtime -->
|
||||
<link rel="stylesheet" id="techzim-airtime-css" href="http://wp.lab/wp-content/plugins/zim-airtime/public/css/techzim-airtime-public201909070020.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zim-airtime/public/js/techzim-airtime-public201909111050.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ziyarat-ashura -->
|
||||
<link rel="stylesheet" id="za_css-css" href="http://wp.lab/wp-content/plugins/ziyarat-ashura/css/style.css?ver=1.0.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ziyarat-ashura/js/za-js.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -0,0 +1,214 @@
|
||||
# Copyright (C) 2019 Matthias Guenter
|
||||
# This file is distributed under the same license as the WP Real Categories Management plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Real Categories Management 3.2.6\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/real-category-"
|
||||
"library\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-09-27T08:32:53+02:00\n"
|
||||
"PO-Revision-Date: 2019-09-27 08:53+0200\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: de_DE\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Real Categories Management"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid ""
|
||||
"https://codecanyon.net/item/wordpress-real-category-management-custom-"
|
||||
"category-order-tree-view/13580393"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Organize your WordPress categories in a nice way."
|
||||
msgstr ""
|
||||
"Organisieren Sie Ihre WordPress-Kategorien in einer schönen Art und Weise."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Matthias Guenter"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://matthias-web.com"
|
||||
msgstr ""
|
||||
|
||||
#: dist/real-category-library/inc/general/TaxOrder.class.php:144
|
||||
#: dist/real-category-library-lite/inc/general/TaxOrder.class.php:144
|
||||
#: inc/general/TaxOrder.class.php:144
|
||||
msgid "No categorie found for this post type (%s) / taxonomy (%s)."
|
||||
msgstr ""
|
||||
"Für diesen Beitragstyp (%s) / Taxonomie (%s) wurde keine Kategorie "
|
||||
"gefunden."
|
||||
|
||||
#: dist/real-category-library/inc/general/TaxOrder.class.php:191
|
||||
#: dist/real-category-library-lite/inc/general/TaxOrder.class.php:191
|
||||
#: inc/general/TaxOrder.class.php:191
|
||||
msgid "No current item found."
|
||||
msgstr "Es wurde kein aktuelles Element gefunden."
|
||||
|
||||
#: dist/real-category-library/inc/general/WooCommerce.class.php:20
|
||||
#: dist/real-category-library-lite/inc/general/WooCommerce.class.php:20
|
||||
#: inc/general/WooCommerce.class.php:20
|
||||
msgid "Real Category Management"
|
||||
msgstr ""
|
||||
|
||||
#: dist/real-category-library/inc/general/WooCommerce.class.php:27
|
||||
#: dist/real-category-library-lite/inc/general/WooCommerce.class.php:27
|
||||
#: inc/general/WooCommerce.class.php:27
|
||||
msgid "Product attributes"
|
||||
msgstr "Produktattribute"
|
||||
|
||||
#: dist/real-category-library/inc/general/WooCommerce.class.php:29
|
||||
#: dist/real-category-library-lite/inc/general/WooCommerce.class.php:29
|
||||
#: inc/general/WooCommerce.class.php:29
|
||||
msgid "Enable hierarchical product attributes (recommenend for > 3.x)"
|
||||
msgstr "Hierarchische Produktattribute aktivieren (empfohlen für > 3.x)"
|
||||
|
||||
#: dist/real-category-library/inc/general/WooCommerce.class.php:33
|
||||
#: dist/real-category-library-lite/inc/general/WooCommerce.class.php:33
|
||||
#: inc/general/WooCommerce.class.php:33
|
||||
msgid ""
|
||||
"You are using Real Categories Management Lite, you need Pro to use this "
|
||||
"feature."
|
||||
msgstr ""
|
||||
"Sie verwenden Real Categories Management Lite, Sie benötigen Pro, um diese "
|
||||
"Funktion zu verwenden."
|
||||
|
||||
#: dist/real-category-library/inc/general/WooCommerce.class.php:37
|
||||
#: dist/real-category-library-lite/inc/general/WooCommerce.class.php:37
|
||||
#: dist/real-category-library-lite/inc/overrides/lite/options/ScreenSettings.trait.php:21
|
||||
#: dist/real-category-library-lite/inc/overrides/lite/options/ScreenSettings.trait.php:56
|
||||
#: inc/general/WooCommerce.class.php:37
|
||||
#: inc/overrides/lite/options/ScreenSettings.trait.php:21
|
||||
#: inc/overrides/lite/options/ScreenSettings.trait.php:56
|
||||
msgid "Learn more about Pro (external link)"
|
||||
msgstr "Erfahren Sie mehr über Pro (externer Link)"
|
||||
|
||||
#: dist/real-category-library/inc/overrides/pro/Core.trait.php:41
|
||||
#: inc/overrides/pro/Core.trait.php:41
|
||||
msgid ""
|
||||
"<strong>You have not yet entered the license key</strong>. To receive "
|
||||
"automatic updates, please enter the key in \"Enter license\"."
|
||||
msgstr ""
|
||||
"<strong>Sie haben den Lizenzschlüssel noch nicht eingegeben</strong>. Um "
|
||||
"automatische Updates zu erhalten, geben Sie bitte den Schlüssel in "
|
||||
"\"Lizenz eingeben\" ein."
|
||||
|
||||
#: dist/real-category-library/inc/overrides/pro/general/PageCategory.class.php:35
|
||||
#: dist/real-category-library/inc/overrides/pro/general/PageCategory.class.php:41
|
||||
#: inc/overrides/pro/general/PageCategory.class.php:35
|
||||
#: inc/overrides/pro/general/PageCategory.class.php:41
|
||||
msgid "Page Categories"
|
||||
msgstr "Seiten Kategorien"
|
||||
|
||||
#: dist/real-category-library/inc/overrides/pro/general/PageCategory.class.php:36
|
||||
#: inc/overrides/pro/general/PageCategory.class.php:36
|
||||
msgid "Page Category"
|
||||
msgstr "Seitenkategorie"
|
||||
|
||||
#: dist/real-category-library/inc/overrides/pro/general/PageCategory.class.php:37
|
||||
#: inc/overrides/pro/general/PageCategory.class.php:37
|
||||
msgid "Categories"
|
||||
msgstr "Kategorien"
|
||||
|
||||
#: dist/real-category-library/inc/overrides/pro/options/ScreenSettings.trait.php:17
|
||||
#: dist/real-category-library-lite/inc/overrides/lite/options/ScreenSettings.trait.php:34
|
||||
#: inc/overrides/lite/options/ScreenSettings.trait.php:34
|
||||
#: inc/overrides/pro/options/ScreenSettings.trait.php:17
|
||||
msgid "Advanced Settings for this post type"
|
||||
msgstr "Erweiterte Einstellungen für diesen Beitragstyp"
|
||||
|
||||
#: dist/real-category-library/inc/overrides/pro/options/ScreenSettings.trait.php:22
|
||||
#: dist/real-category-library-lite/inc/overrides/lite/options/ScreenSettings.trait.php:41
|
||||
#: inc/overrides/lite/options/ScreenSettings.trait.php:41
|
||||
#: inc/overrides/pro/options/ScreenSettings.trait.php:22
|
||||
msgid "Tree view"
|
||||
msgstr "Baumansicht"
|
||||
|
||||
#: dist/real-category-library/inc/overrides/pro/options/ScreenSettings.trait.php:27
|
||||
#: dist/real-category-library-lite/inc/overrides/lite/options/ScreenSettings.trait.php:46
|
||||
#: inc/overrides/lite/options/ScreenSettings.trait.php:46
|
||||
#: inc/overrides/pro/options/ScreenSettings.trait.php:27
|
||||
msgid "Avoid page reload (tree view must be active)"
|
||||
msgstr "Seitenneuladen vermeiden (Baumansicht muss aktiv sein)"
|
||||
|
||||
#: dist/real-category-library/inc/rest/Post.class.php:45
|
||||
#: dist/real-category-library-lite/inc/rest/Post.class.php:45
|
||||
#: inc/rest/Post.class.php:45
|
||||
msgid "Something went wrong."
|
||||
msgstr "Etwas ist schief gelaufen."
|
||||
|
||||
#: dist/real-category-library/inc/rest/Service.class.php:86
|
||||
#: dist/real-category-library-lite/inc/rest/Service.class.php:86
|
||||
#: inc/rest/Service.class.php:107
|
||||
msgid "No type or valid taxonomy provided."
|
||||
msgstr "Es wurde kein Typ oder eine gültige Taxonomie angegeben."
|
||||
|
||||
#: dist/real-category-library/inc/rest/Service.class.php:122
|
||||
#: dist/real-category-library-lite/inc/rest/Service.class.php:122
|
||||
#: inc/rest/Service.class.php:143
|
||||
msgid "No type or taxonomy provided."
|
||||
msgstr "Kein Typ oder keine Taxonomie angegeben."
|
||||
|
||||
#: dist/real-category-library/inc/rest/Service.class.php:140
|
||||
#: dist/real-category-library-lite/inc/rest/Service.class.php:140
|
||||
#: inc/rest/Service.class.php:161
|
||||
msgid "The passed term id was not found."
|
||||
msgstr "Die übergebene Kategorie-ID wurde nicht gefunden."
|
||||
|
||||
#: dist/real-category-library/inc/rest/Service.class.php:200
|
||||
#: dist/real-category-library-lite/inc/rest/Service.class.php:200
|
||||
#: inc/rest/Service.class.php:221
|
||||
msgid "Forbidden"
|
||||
msgstr "Nicht erlaubt"
|
||||
|
||||
#: dist/real-category-library/inc/rest/Service.class.php:205
|
||||
#: dist/real-category-library-lite/inc/rest/Service.class.php:205
|
||||
#: inc/rest/Service.class.php:226
|
||||
msgid "Real Categories Management is not active for the current user."
|
||||
msgstr ""
|
||||
"Real Categories Management ist für den aktuellen Benutzer nicht aktiv."
|
||||
|
||||
#: dist/real-category-library/inc/rest/Term.class.php:67
|
||||
#: dist/real-category-library-lite/inc/rest/Term.class.php:67
|
||||
#: inc/rest/Term.class.php:67
|
||||
msgid "The term could not be created (unknown error)."
|
||||
msgstr "Die Kategorie konnte nicht angelegt werden (unbekannter Fehler)."
|
||||
|
||||
#: dist/real-category-library/inc/rest/Term.class.php:101
|
||||
#: dist/real-category-library-lite/inc/rest/Term.class.php:101
|
||||
#: inc/rest/Term.class.php:101
|
||||
msgid "The term does not exist."
|
||||
msgstr "Diese Kategorie existiert nicht."
|
||||
|
||||
#: dist/real-category-library/inc/rest/Term.class.php:105
|
||||
#: dist/real-category-library-lite/inc/rest/Term.class.php:105
|
||||
#: inc/rest/Term.class.php:105
|
||||
msgid "You can not delete the default term."
|
||||
msgstr "Sie können die Standard-Kategorie nicht löschen."
|
||||
|
||||
#: dist/real-category-library-lite/inc/overrides/lite/options/ScreenSettings.trait.php:14
|
||||
#: inc/overrides/lite/options/ScreenSettings.trait.php:14
|
||||
msgid ""
|
||||
"You are using Real Categories Management Lite, you need Pro to activate "
|
||||
"categories for pages."
|
||||
msgstr ""
|
||||
"Sie verwenden Real Categories Management Lite, Sie benötigen Pro, um "
|
||||
"Kategorien für Seiten zu aktivieren."
|
||||
|
||||
#: dist/real-category-library-lite/inc/overrides/lite/options/ScreenSettings.trait.php:49
|
||||
#: inc/overrides/lite/options/ScreenSettings.trait.php:49
|
||||
msgid ""
|
||||
"You are using Real Categories Management Lite, you need Pro to use \"Avoid "
|
||||
"page reload\" and \"Tree view\" for Custom Post Types."
|
||||
msgstr ""
|
||||
"Sie verwenden Real Categories Management Lite, Sie benötigen Pro, um "
|
||||
"\"Seitenreload vermeiden\" und \"Baumansicht\" für benutzerdefinierte "
|
||||
"Beitragsarten zu verwenden."
|
||||
580
spec/fixtures/dynamic_finders/plugin_version/seo-toolkit/translation_file/languages/seo-toolkit.pot
vendored
Normal file
580
spec/fixtures/dynamic_finders/plugin_version/seo-toolkit/translation_file/languages/seo-toolkit.pot
vendored
Normal file
@@ -0,0 +1,580 @@
|
||||
# Copyright (C) 2019 SEO Toolkit
|
||||
# This file is distributed under the same license as the SEO Toolkit plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SEO Toolkit 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/seo-toolkit\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-09-20T12:41:06-05:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: seo-toolkit\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
#: src/Admin/Admin.php:137
|
||||
msgid "SEO Toolkit"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/seo-toolkit"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "SEO Toolkit is a smart plugin that assists you to optimize your website for purposes of SEO easily."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.seo-toolkit.page/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:115
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:136
|
||||
#: src/Admin/Settings/General.php:199
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:158
|
||||
msgid "Social Media Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:159
|
||||
#: src/Admin/Settings/SocialMedia.php:125
|
||||
msgid "Social Media"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:178
|
||||
msgid "XML Sitemaps Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:179
|
||||
#: src/Admin/Settings/Sitemaps.php:107
|
||||
msgid "XML Sitemaps"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:198
|
||||
#: src/Admin/Admin.php:199
|
||||
#: src/Admin/Settings/Editor.php:64
|
||||
msgid "Editor"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Admin.php:211
|
||||
msgctxt "settings screen"
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:62
|
||||
msgid "Search Engine Optimization"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:80
|
||||
#: src/Admin/Settings/Sitemaps.php:168
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:111
|
||||
#: src/Admin/Settings/General.php:263
|
||||
#: src/Admin/Taxonomies.php:90
|
||||
msgid "Document title"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:117
|
||||
#: src/Admin/Settings/General.php:267
|
||||
#: src/Admin/Settings/Options/Description.php:145
|
||||
#: src/Admin/Settings/SocialMedia.php:243
|
||||
#: src/Admin/Settings/SocialMedia.php:306
|
||||
#: src/Admin/Taxonomies.php:100
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:123
|
||||
#: src/Admin/Taxonomies.php:113
|
||||
msgid "Robots"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:135
|
||||
msgid "Do not show a \"Cached\" link in search results."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:143
|
||||
msgid "Do not show a snippet in the search results for this post."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:151
|
||||
msgid "Do not index images on this post."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:249
|
||||
#: src/Admin/Settings/SocialMedia.php:353
|
||||
msgctxt "wp.media"
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:250
|
||||
#: src/Admin/Settings/SocialMedia.php:354
|
||||
msgctxt "wp.media"
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts.php:251
|
||||
#: src/Admin/Settings/General.php:637
|
||||
#: src/Admin/Settings/SocialMedia.php:355
|
||||
msgctxt "wp.media"
|
||||
msgid "Choose Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Facebook.php:62
|
||||
#: src/Loader.php:149
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Facebook.php:83
|
||||
msgid "Facebook Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Facebook.php:89
|
||||
msgid "Facebook Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Facebook.php:95
|
||||
msgid "Facebook Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Facebook.php:97
|
||||
#: src/Admin/Posts/Twitter.php:113
|
||||
#: src/Admin/Settings/General.php:493
|
||||
#: src/Admin/Settings/General.php:510
|
||||
#: src/Admin/Settings/SocialMedia.php:252
|
||||
#: src/Admin/Settings/SocialMedia.php:316
|
||||
msgid "Upload Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Facebook.php:99
|
||||
#: src/Admin/Settings/SocialMedia.php:254
|
||||
msgid "Use images that are at least 1080 pixels in width for best display on high resolution devices. At the minimum, you should use images that are 600 pixels."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Twitter.php:62
|
||||
#: src/Loader.php:150
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Twitter.php:83
|
||||
#: src/Admin/Settings/SocialMedia.php:187
|
||||
#: src/Admin/Settings/SocialMedia.php:276
|
||||
msgid "Twitter Cards"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Twitter.php:86
|
||||
#: src/Admin/Settings/General.php:345
|
||||
#: src/Admin/Settings/Options/Description.php:139
|
||||
#: src/Admin/Settings/Options/Title.php:128
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Twitter.php:89
|
||||
#: src/Admin/Settings/SocialMedia.php:279
|
||||
msgid "Summary Card"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Twitter.php:92
|
||||
#: src/Admin/Settings/SocialMedia.php:282
|
||||
msgid "Summary Card with Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Twitter.php:99
|
||||
msgid "Twitter Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Twitter.php:105
|
||||
msgid "Twitter Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Twitter.php:111
|
||||
msgid "Twitter Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Posts/Twitter.php:115
|
||||
#: src/Admin/Settings/SocialMedia.php:318
|
||||
msgid "URL of image to use in the card. Images must be less than 5MB in size. JPG, PNG, WEBP and GIF formats are supported."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Request.php:66
|
||||
msgid "Security error has occurred."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Request.php:66
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Editor.php:108
|
||||
msgid "Edit robots.txt file"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Editor.php:111
|
||||
#: src/Admin/Settings/General.php:251
|
||||
#: src/Admin/Settings/Sitemaps.php:156
|
||||
#: src/Admin/Settings/SocialMedia.php:171
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Editor.php:127
|
||||
msgid "The robots.txt file does not exist. The file will be created when you save the changes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Editor.php:134
|
||||
msgid "The robots.txt file has been saved."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:242
|
||||
msgid "Title and Meta tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:245
|
||||
msgid "Website Profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:248
|
||||
msgid "Webmasters"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:271
|
||||
msgid "Crawling and Indexing"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:312
|
||||
#: src/Admin/Settings/Options/Description.php:142
|
||||
#: src/Admin/Settings/Options/Title.php:131
|
||||
msgid "Separator"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:316
|
||||
msgid "Special signs can be entered as HTML. Example: <code>&raquo;</code> becomes <code>»</code>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:374
|
||||
msgid "Paginated pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:386
|
||||
msgid "Implementation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:389
|
||||
msgid "Do not implement the values <code>index</code> and <code>index, follow</code>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:395
|
||||
msgid "Protect RSS Feeds"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:398
|
||||
msgid "Prevent indexing of RSS Feeds by search engines."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:432
|
||||
#: src/Admin/Settings/SocialMedia.php:290
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:438
|
||||
msgid "Select the website profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:439
|
||||
msgid "Person"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:440
|
||||
msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:463
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:477
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:490
|
||||
msgid "Picture"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:500
|
||||
msgid "Organization Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:507
|
||||
msgid "Organization Logo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:566
|
||||
msgid "Google"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:569
|
||||
msgid "Get your code in <a href=\"https://search.google.com/search-console/welcome\" target=\"_blank\">Google Search Console</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:574
|
||||
msgid "Bing"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:577
|
||||
msgid "Get your code in <a href=\"https://www.bing.com/toolbox/webmaster\" target=\"_blank\">Bing Webmaster Tools</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:582
|
||||
msgid "Yandex"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:585
|
||||
msgid "Get your code in <a href=\"https://webmaster.yandex.com/welcome/\" target=\"_blank\">Yandex.Webmaster</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:590
|
||||
#: src/Loader.php:154
|
||||
msgid "Pinterest"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:593
|
||||
msgid "Get your code in <a href=\"https://help.pinterest.com/en/business/article/claim-your-website\" target=\"_blank\">Business Profile</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:598
|
||||
msgid "Baidu"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:601
|
||||
msgid "Get your code in <a href=\"https://ziyuan.baidu.com/login/index?u=/site/siteadd\" target=\"_blank\">Baidu Webmaster Tools</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:635
|
||||
msgctxt "wp.media"
|
||||
msgid "Organization Logo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/General.php:636
|
||||
msgctxt "wp.media"
|
||||
msgid "Picture"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Options/Description.php:140
|
||||
#: src/Admin/Settings/Options/Title.php:129
|
||||
msgid "Site title"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Options/Description.php:141
|
||||
#: src/Admin/Settings/Options/Title.php:130
|
||||
msgid "Tagline"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Options/Description.php:143
|
||||
#: src/Admin/Settings/Options/Title.php:132
|
||||
#: src/Admin/Settings/SocialMedia.php:236
|
||||
#: src/Admin/Settings/SocialMedia.php:298
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Options/Description.php:144
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Options/Description.php:146
|
||||
msgid "Biographical info"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Options/Description.php:147
|
||||
#: src/Admin/Settings/Options/Title.php:134
|
||||
#: src/Context.php:97
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Options/Description.php:148
|
||||
#: src/Admin/Settings/Options/Title.php:135
|
||||
#: src/Context.php:100
|
||||
msgid "Error 404"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Options/Description.php:149
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Options/Title.php:133
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Sitemaps.php:150
|
||||
msgid "Sitemaps"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Sitemaps.php:153
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Sitemaps.php:191
|
||||
#: src/Admin/Settings/SocialMedia.php:210
|
||||
#: src/Admin/Settings/SocialMedia.php:264
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Sitemaps.php:202
|
||||
msgid "Maximum URLs per sitemap"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Sitemaps.php:209
|
||||
msgid "Images publishing"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Sitemaps.php:213
|
||||
msgid "Your images can be found in Image Search results."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Sitemaps.php:252
|
||||
msgid "View XML Sitemap"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Sitemaps.php:256
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:168
|
||||
msgid "Social Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:183
|
||||
msgid "Facebook Open Graph"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:222
|
||||
msgid "Facebook Admin ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:224
|
||||
msgid "You can enter multiple Facebook Admin IDs by separating them with a comma."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:229
|
||||
msgid "Facebook App ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:231
|
||||
msgid "In order to use Facebook Insights you must add the app ID to your page. Find the app ID in your <a href=\"https://developers.facebook.com/apps/redirect/dashboard\" target=\"_blank\">App Dashboard</a>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:238
|
||||
msgid "A clear title without mentioning the domain itself."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:245
|
||||
msgid "A brief description of the content, usually between 2 and 4 sentences."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:250
|
||||
#: src/Admin/Settings/SocialMedia.php:313
|
||||
msgid "Image URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:285
|
||||
msgid "With Twitter Cards, you can attach photos and videos to Tweets, helping to drive traffic to your website."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:293
|
||||
msgid "Twitter profile of website (Ex. username or @username)."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:301
|
||||
msgid "Title of content (max 70 characters)."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:308
|
||||
msgid "Description of content (maximum 200 characters)."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/SocialMedia.php:352
|
||||
msgctxt "wp.media"
|
||||
msgid "Logo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Taxonomies.php:81
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Taxonomies.php:84
|
||||
msgid "The following fields are used for SEO purposes."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Taxonomies.php:94
|
||||
msgid "This title is used to display in the search results."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Taxonomies.php:105
|
||||
msgid "This description is used to display in the search results."
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Taxonomies.php:123
|
||||
msgid "Control the crawling and indexing."
|
||||
msgstr ""
|
||||
|
||||
#: src/Context.php:53
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: src/Context.php:56
|
||||
msgid "Blog"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post type label name
|
||||
#: src/Context.php:86
|
||||
msgid "%s archive"
|
||||
msgstr ""
|
||||
|
||||
#: src/Context.php:91
|
||||
msgid "Authors"
|
||||
msgstr ""
|
||||
|
||||
#: src/Context.php:94
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Extensions/WooCommerce.php:72
|
||||
msgid "Shop page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Extensions/WooCommerce.php:199
|
||||
msgid "Short product description"
|
||||
msgstr ""
|
||||
|
||||
#: src/Loader.php:151
|
||||
msgid "Instagram"
|
||||
msgstr ""
|
||||
|
||||
#: src/Loader.php:152
|
||||
msgid "YouTube"
|
||||
msgstr ""
|
||||
|
||||
#: src/Loader.php:153
|
||||
msgid "LinkedIn"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: page number
|
||||
#: src/Title.php:115
|
||||
msgid "Page %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: search term
|
||||
#: src/Title.php:191
|
||||
msgid "Search results for “%s”"
|
||||
msgstr ""
|
||||
|
||||
#: src/Title.php:196
|
||||
msgid "Page not found"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,56 @@
|
||||
# Copyright (C) 2019 Zetamatic
|
||||
# This file is distributed under the same license as the Show Hide Content for Fusion Builder plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Show Hide Content for Fusion Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/show-hide-content-for-fusion-builder\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-09-16T09:09:02+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: show-hide-content-fusion-builder\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Show Hide Content for Fusion Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://zetamatic.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This Plugin generates an extra element for Fusion Builder. It allows you to quickly create a button that shows/hides the content of your website. It helps your website look clean and compact, also allows users to click and see more information if they want. Some advantages of this are: robot defense, confirmation of user intent, page loads faster. It will work for every post, pages and custom post types."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Zetamatic"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://zetamatic.com/shop"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-show-hide-content.php:86
|
||||
msgid "More Tag"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-show-hide-content.php:94
|
||||
msgid "More Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-show-hide-content.php:96
|
||||
msgid "View More"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-show-hide-content.php:97
|
||||
msgid "Add the text that will display on more button."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. URL link.
|
||||
#: show-hide-content-for-fusion-builder.php:54
|
||||
msgid "Show Hide Content for Fusion Builder plugin requires FusionBuilder to be installed and active. Fusion Builder is the visual drag & drop plugin, free with Avada. You can download %s here."
|
||||
msgstr ""
|
||||
22
spec/fixtures/dynamic_finders/plugin_version/traffic/change_log/CHANGELOG.md
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/traffic/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
# Changelog
|
||||
All notable changes to **Traffic** is documented in this *changelog*.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Traffic** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.1.0] - 2019-10-05
|
||||
### Added
|
||||
- It's now possible to use public CDN to serve Traffic scripts and stylesheets (see _Settings | Traffic | Options_).
|
||||
- The option page shows the logging plugin used.
|
||||
### Changed
|
||||
- Better computing of KPIs when no data are collected on the current day.
|
||||
- Cron jobs are now excluded from analytics.
|
||||
- Traffic database table collation is now `utf8_unicode_ci`.
|
||||
- The (nag) update message has now a link to display changelog.
|
||||
### Fixed
|
||||
- Error while creating Traffic database table with utf8mb4 charset for some version of MySQL.
|
||||
- KPIs layout may be jammed by site-wide stylesheets.
|
||||
- PHP notice and warning when trying to count calls when there's no call for current day.
|
||||
- Some typos in tooltips.
|
||||
|
||||
## [1.0.0] - 2019-10-04
|
||||
### Initial release
|
||||
@@ -0,0 +1,821 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Upsell Order Bump Offer for WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-09-27 16:44+0530\n"
|
||||
"PO-Revision-Date: 2019-09-27 16:44+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: makewebbetter\n"
|
||||
"Language: en_US\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: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__;esc_attr_e;esc_attr__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:140
|
||||
#, php-format
|
||||
msgid "Please enter in decimal (%s) format without thousand separators."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:142
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please enter in monetary decimal (%s) format without thousand separators and "
|
||||
"currency symbols."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:143
|
||||
msgid "Please enter in country code with two capital letters."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:144
|
||||
msgid "Please enter in a value less than the regular price."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:148
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:149
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:199
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:200
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:237
|
||||
msgid "Order Bump"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:241
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:244
|
||||
#, php-format
|
||||
msgid ""
|
||||
" the license key before %s or you may risk losing data and the plugin will "
|
||||
"also become dysfunctional."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:260
|
||||
msgid "Upsell Order Bump Offers Pro"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:263
|
||||
#: admin/partials/upsell-order-bump-offer-for-woocommerce-admin-display.php:32
|
||||
msgid "v"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-upsell-order-bump-offer-for-woocommerce-admin.php:476
|
||||
msgid "Order Bump: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:201
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:46
|
||||
msgid "Settings saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:212
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:213
|
||||
msgid "on every Monday"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:214
|
||||
msgid "on every Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:215
|
||||
msgid "on every Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:216
|
||||
msgid "on every Thursday"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:217
|
||||
msgid "on every Friday"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:218
|
||||
msgid "on every Saturday"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:219
|
||||
msgid "on every Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:252
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:126
|
||||
msgid "Live"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:253
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:129
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:261
|
||||
msgid "Name of the Order Bump"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:268
|
||||
msgid "Provide the name of your Order Bump."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:283
|
||||
msgid "Select target product(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:290
|
||||
msgid ""
|
||||
"If any one of these Target Products is checked out then this Order Bump will "
|
||||
"be triggered and the below offer will be shown."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:296
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:449
|
||||
msgid "Search for a product…"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:330
|
||||
msgid "Select target categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:337
|
||||
msgid ""
|
||||
"If any one of these Target categories is checked out then this Order Bump "
|
||||
"will be triggered and the below offer will be shown."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:343
|
||||
msgid "Search for a category…"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:377
|
||||
msgid "Order Bump Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:384
|
||||
msgid "Schedule your Order Bump for specific weekdays."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:411
|
||||
msgid "Order Bump Offer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:436
|
||||
msgid "Offer Section"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:444
|
||||
msgid "Offer Product"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:470
|
||||
msgid "Select the product you want to show as offer."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:478
|
||||
msgid "Offer Price/Discount"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:484
|
||||
msgid "Discount %"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:486
|
||||
msgid "Fixed price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:490
|
||||
msgid "Specify new offer price or discount %"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:510
|
||||
msgid "Appearance"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:514
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:515
|
||||
msgid "Design"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:516
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:542
|
||||
msgid "Dazzling Bliss"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:551
|
||||
msgid "Alluring Lakeside"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:561
|
||||
msgid "Elegant Summers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:576
|
||||
msgid "Bump Offer Box"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:598
|
||||
msgid "Select Border type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:603
|
||||
msgid "Select among different border types for Bump Offer."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:617
|
||||
msgid "No Border"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:618
|
||||
msgid "Solid"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:619
|
||||
msgid "Dashed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:620
|
||||
msgid "Double"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:621
|
||||
msgid "Dotted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:626
|
||||
msgid "----Select Border Type----"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:644
|
||||
msgid "Select Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:649
|
||||
msgid "Select border color for Bump Offer."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:665
|
||||
msgid "Select Top Vertical Spacing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:670
|
||||
msgid "Add top spacing to the Bump Offer Box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:686
|
||||
msgid "Add vertical spacing to the Bump Offer Box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:691
|
||||
msgid "Add bottom spacing to the Bump Offer Box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:712
|
||||
msgid "Discount Section"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:718
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:843
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:909
|
||||
msgid "Select Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:723
|
||||
msgid "Select background color for Discount section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:738
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:789
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:862
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:927
|
||||
msgid "Select Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:743
|
||||
msgid "Select text color for Discount section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:758
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:809
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:881
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:943
|
||||
msgid "Select Text Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:763
|
||||
msgid "Select font size for Discount section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:782
|
||||
msgid "Product Section"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:794
|
||||
msgid "Select text color for Product section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:814
|
||||
msgid "Select font size for Product section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:836
|
||||
msgid "Accept Offer Section"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:848
|
||||
msgid "Select background color for Accept Offer section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:867
|
||||
msgid "Select text color for Accept Offer section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:885
|
||||
msgid "Select font size for Accept Offer section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:903
|
||||
msgid "Offer Description Section"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:913
|
||||
msgid "Select background color for Offer Description section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:931
|
||||
msgid "Select text color for Offer Description section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:947
|
||||
msgid "Select font size for Offer Description section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:970
|
||||
msgid "Discount Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:977
|
||||
msgid "Discount title content. Please use at respective places :"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:979
|
||||
#, php-format
|
||||
msgid "for % discount."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:981
|
||||
msgid "for fixed discount price."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:992
|
||||
msgid "For Discount %"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:997
|
||||
msgid "For Fixed Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1009
|
||||
msgid "Product Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1016
|
||||
msgid "Bump Offer Product description content."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1032
|
||||
msgid " Lead Title "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1037
|
||||
msgid "Bump offer Lead title content."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1057
|
||||
msgid "Offer Description "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1062
|
||||
msgid "Bump Offer description content."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1086
|
||||
msgid "Offer Preview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1106
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:247
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1121
|
||||
msgid "Do you really want to change template layout ?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1122
|
||||
msgid "Changing layout will reset Design settings back to default."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1126
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:120
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-creation.php:1128
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:122
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:79
|
||||
msgid "No Order Bumps added"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:88
|
||||
msgid ""
|
||||
"Only first Order Bump will work. Please activate pro version to make all "
|
||||
"working."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:96
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:97
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:98
|
||||
msgid "Target Product(s) and Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:99
|
||||
msgid "Offers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:100
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:163
|
||||
msgid "No Product(s) added"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:173
|
||||
msgid "Target Categories -"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:195
|
||||
msgid "No Categories added"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:213
|
||||
msgid "No offers Added"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:222
|
||||
msgid "View / Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:225
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:244
|
||||
msgid "+Create New Order Bump"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:252
|
||||
msgid "Want More? Go Pro !!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:266
|
||||
msgid "Stucked to just one order bump? Unlock your power to explore more."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:269
|
||||
msgid ""
|
||||
"Go with our premium version and make unlimited numbers of order bumps. Make "
|
||||
"the most attractive offers with all of your products. Set Relevant offers "
|
||||
"for specific targets which will ensure customer satisfaction and higher "
|
||||
"conversion rates. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-list.php:275
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:95
|
||||
msgid "Upgrade to Premium"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:26
|
||||
msgid "How Order Bump Offer Works and How to Set it Up"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:39
|
||||
msgid "What is Upsell Order Bump Offer for WooCommerce?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:41
|
||||
msgid ""
|
||||
"Upsell Order Bump Offer for WooCommerce allows its users to show exclusive "
|
||||
"special one time offers known as Order Bumps on the checkout page. These "
|
||||
"Order Bumps can be accepted in just a single click which is added instantly "
|
||||
"to customer's existing Order."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:43
|
||||
msgid ""
|
||||
"The Store owner can set the offers specifically for Target Products or "
|
||||
"Categories so that relevant Order Bumps can be offered which are hard to "
|
||||
"resist."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:46
|
||||
msgid ""
|
||||
"Capture Customer’s attention by displaying appealing offers on the checkout "
|
||||
"page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:47
|
||||
msgid ""
|
||||
"Develop Interest for the offer by mentioning how the offer will benefit them "
|
||||
"on their existing purchase."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:48
|
||||
msgid ""
|
||||
"Convince them that this is an Exclusive offer only available here at this "
|
||||
"Discount."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:49
|
||||
msgid "Ask them to Act and Accept the offer."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:56
|
||||
msgid "Premium Plugin Additional Features"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:64
|
||||
msgid "Unlock the power to create unlimited Order Bumps"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:66
|
||||
msgid ""
|
||||
"With our Free version, you have limited access to create just one Order Bump."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:67
|
||||
msgid ""
|
||||
"So, get our Premium version today to create multiple Order Bumps. Introduce "
|
||||
"your customers to the most relevant offers which will benefit them on their "
|
||||
"existing purchase. Give your sales a great boost ahead."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:74
|
||||
msgid "Get Premium Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:79
|
||||
msgid "Receive dedicated 24*7 Phone, Email & Skype support."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-overview.php:84
|
||||
msgid ""
|
||||
"Our Support is ready to assist you regarding any query, issue or feature "
|
||||
"request and if that doesn't help our Technical team will connect with you "
|
||||
"personally and have your query resolved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:32
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:36
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:38
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:34
|
||||
msgid "_after_payment_gateways"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:84
|
||||
msgid "Enable Upsell Order Bumps"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:89
|
||||
msgid "Enable Upsell Order Bump Offer plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:108
|
||||
msgid "Skip for Same Offers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:113
|
||||
msgid "Skip Bump offer if offer product is already present in cart."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:133
|
||||
msgid "Offer Target Dependency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:139
|
||||
msgid "Remove Offer When Target Product is Removed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:140
|
||||
msgid "Keep Offer even When Target is Removed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:148
|
||||
msgid ""
|
||||
"Choose if Bump Offer product should be removed if Target product is removed "
|
||||
"from Cart page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:169
|
||||
msgid "Offer Adaption settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:175
|
||||
msgid "Free Width"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:176
|
||||
msgid "Fixed Width"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:184
|
||||
msgid ""
|
||||
"If Free Width, the Order Bump Offer will adapt to the complete width of it's "
|
||||
"parent location area else it will be fixed."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:205
|
||||
msgid "Offer Location"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:211
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:814
|
||||
msgid "Before Order Summary"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:212
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:819
|
||||
msgid "Before Payment Gateways"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:213
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:824
|
||||
msgid "After Payment Gateways"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:214
|
||||
msgid "Before Place Order Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/mwb-ubo-lite-settings.php:222
|
||||
msgid ""
|
||||
"Choose the location where the Bump Offer will be displayed on the Checkout "
|
||||
"page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/upsell-order-bump-offer-for-woocommerce-admin-display.php:40
|
||||
msgid "Save Order Bump"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/upsell-order-bump-offer-for-woocommerce-admin-display.php:42
|
||||
msgid "Order Bumps List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/upsell-order-bump-offer-for-woocommerce-admin-display.php:44
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/upsell-order-bump-offer-for-woocommerce-admin-display.php:63
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/upsell-order-bump-offer-for-woocommerce-admin-display.php:68
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/upsell-order-bump-offer-for-woocommerce-admin-display.php:123
|
||||
msgid "Connect with Us in one click"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/upsell-order-bump-offer-for-woocommerce-admin-display.php:125
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/upsell-order-bump-offer-for-woocommerce-admin-display.php:127
|
||||
msgid "Regarding any issue, query or feature request for Order Bump Offers."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:295
|
||||
msgid "AT JUST"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:295
|
||||
msgid "!!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:297
|
||||
msgid "off only for you !!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:299
|
||||
msgid "A unique and handy product that perfectly fits your personality."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:301
|
||||
msgid "Hurry up. Get this one time offer !!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:303
|
||||
msgid ""
|
||||
"Hey fella, you can get access to the above offer by just clicking the "
|
||||
"checkbox over there. Add this offer to your order, you will never get such a "
|
||||
"discount on any other place on this site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:829
|
||||
msgid "Before Place order button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:1089
|
||||
msgid "Add this offer to cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-upsell-order-bump-offer-for-woocommerce-global-functions.php:1172
|
||||
msgid "Choose an option"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-upsell-order-bump-offer-for-woocommerce-public.php:183
|
||||
msgid "true"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-upsell-order-bump-offer-for-woocommerce-public.php:202
|
||||
#: public/class-upsell-order-bump-offer-for-woocommerce-public.php:349
|
||||
msgid "added"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-upsell-order-bump-offer-for-woocommerce-public.php:232
|
||||
msgid "removed"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-upsell-order-bump-offer-for-woocommerce-public.php:281
|
||||
msgid "Sorry, this variation is not available."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-upsell-order-bump-offer-for-woocommerce-public.php:296
|
||||
msgid "Out of stock."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-upsell-order-bump-offer-for-woocommerce-public.php:390
|
||||
msgid "Bump Offer"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-upsell-order-bump-offer-for-woocommerce-public.php:390
|
||||
msgid "applied"
|
||||
msgstr ""
|
||||
|
||||
#: upsell-order-bump-offer-for-woocommerce.php:140
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: upsell-order-bump-offer-for-woocommerce.php:162
|
||||
msgid "Go to Docs"
|
||||
msgstr ""
|
||||
|
||||
#: upsell-order-bump-offer-for-woocommerce.php:164
|
||||
msgid "Go Premium"
|
||||
msgstr ""
|
||||
|
||||
#: upsell-order-bump-offer-for-woocommerce.php:234
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: upsell-order-bump-offer-for-woocommerce.php:234
|
||||
msgid " is not activated, Please activate WooCommerce first to activate "
|
||||
msgstr ""
|
||||
|
||||
#: upsell-order-bump-offer-for-woocommerce.php:234
|
||||
msgid "Upsell Order Bump Offer for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: upsell-order-bump-offer-for-woocommerce.php:234
|
||||
msgid "."
|
||||
msgstr ""
|
||||
38
spec/fixtures/dynamic_finders/plugin_version/vikappointments/change_log/changelog.md
vendored
Normal file
38
spec/fixtures/dynamic_finders/plugin_version/vikappointments/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
# Changelog
|
||||
|
||||
### 1.1
|
||||
|
||||
*Release date - 18 September 2019*
|
||||
|
||||
#### New Features
|
||||
|
||||
* Added some reports for the packages orders.
|
||||
* Created the reports also for the services booked.
|
||||
* Closing days can be specified also for some services only.
|
||||
* Custom fields for the employees now support a visual editor.
|
||||
|
||||
#### Improvements
|
||||
|
||||
* Packages are automatically redeemed (if any) also from the back-end when creating a reservation.
|
||||
* Packages are automatically restored after cancelling a reservation from both the sections.
|
||||
* The packages list in the back-end now displays the number of redeemed appointments per package.
|
||||
* Added some placeholders for displaying location details within the reminders.
|
||||
* All the reports can be generated also by number of appointments instead of total amount earned.
|
||||
* Coupon publishing dates can, optionally, refer to the checkin date or to the current date.
|
||||
* The number of participants (when higher than 1) is now reported within all the notification e-mails.
|
||||
* The PayPal form now owns the name and id attributes.
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
* Booking restrictions are not applied when creating a reservation as employee.
|
||||
* The employee name is no more visible within the notification e-mail for customers, in case the employee selection was disabled.
|
||||
* Fixed the way the system detects the default country code in case of multilingual websites.
|
||||
* The payments filter within the back-end is no more visible in case there are no payment gateways.
|
||||
* The parameter used to enable the recurrence for a service is no more visible in case the recurrence is globally turned off.
|
||||
* Some input values have been escaped to prevent XSS attacks.
|
||||
|
||||
### 1.0
|
||||
|
||||
*Release date - 10 July 2019*
|
||||
|
||||
* First stable release of the VikAppointments plugin for WordPress.
|
||||
265
spec/fixtures/dynamic_finders/plugin_version/vikbooking/change_log/changelog.md
vendored
Normal file
265
spec/fixtures/dynamic_finders/plugin_version/vikbooking/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,265 @@
|
||||
# Changelog
|
||||
|
||||
## 1.2.7
|
||||
|
||||
*Release date - 16 September 2019*
|
||||
|
||||
- Fixed minor issues related to the Shortcodes handling functions.
|
||||
|
||||
## 1.2.6
|
||||
|
||||
*Release date - 2 August 2019*
|
||||
|
||||
- Minor CSS fixes.
|
||||
- Various improvements to the framework libraries.
|
||||
|
||||
## 1.2.5
|
||||
|
||||
*Release date - 26 June 2019*
|
||||
|
||||
- Dashboard Ajax navigation between donut charts.
|
||||
- Screen Options for pagination limit.
|
||||
- Various improvements to the framework libraries.
|
||||
|
||||
|
||||
## 1.2.4
|
||||
|
||||
*Release date - 21 June 2019*
|
||||
|
||||
- Minor fix for timezone issue.
|
||||
|
||||
|
||||
## 1.2.3
|
||||
|
||||
*Release date - 10 June 2019*
|
||||
|
||||
- Libraries improvements.
|
||||
- Fixed compatibility issues with Site Health checks.
|
||||
|
||||
|
||||
## 1.2.2
|
||||
|
||||
*Release date - 29 May 2019*
|
||||
|
||||
- Minor fixes for default section language.
|
||||
- Fixed issue with certain editor IDs.
|
||||
|
||||
|
||||
## 1.2.1
|
||||
|
||||
*Release date - 28 May 2019*
|
||||
|
||||
- Minor fix for new MVC structure.
|
||||
|
||||
|
||||
## 1.2.0
|
||||
|
||||
*Release date - 23 May 2019*
|
||||
|
||||
- Major release of the new core framework.
|
||||
- New front-end gallery.
|
||||
- Custom festivities.
|
||||
- Tens of improvements.
|
||||
|
||||
|
||||
## 1.1.7
|
||||
|
||||
*Release date - 17 April 2019*
|
||||
|
||||
- Fixed minor core issues.
|
||||
|
||||
|
||||
## 1.1.6
|
||||
|
||||
*Release date - 14 February 2019*
|
||||
|
||||
- Fixed an issue that could cause multiple email messages to be sent repeatedly.
|
||||
|
||||
|
||||
## 1.1.5
|
||||
|
||||
*Release date - 5 February 2019*
|
||||
|
||||
- Added filters to Shortcodes page.
|
||||
- Enhanced router for multilingual pages.
|
||||
|
||||
|
||||
## 1.1.4
|
||||
|
||||
*Release date - 4 February 2019*
|
||||
|
||||
- Shortcodes now support language tags.
|
||||
- Adjusted some routing rules.
|
||||
|
||||
|
||||
## 1.1.3
|
||||
|
||||
*Release date - 22 January 2019*
|
||||
|
||||
- Fixed a possible issue with the Shortcodes on Windows OS.
|
||||
- Added support to resolve Timezone conflicts.
|
||||
|
||||
|
||||
## 1.1.2
|
||||
|
||||
*Release date - 8 January 2019*
|
||||
|
||||
- Main language auto-detect.
|
||||
- Minor fixes for the Widgets framework.
|
||||
|
||||
|
||||
## 1.1.1
|
||||
|
||||
*Release date - 31 December 2018*
|
||||
|
||||
- Rates Overview can show multiple Pricing Calendar for several rooms.
|
||||
- Generation of custom invoices for different services.
|
||||
|
||||
|
||||
## 1.1.0
|
||||
|
||||
*Release date - 20 December 2018*
|
||||
|
||||
- Major release of the new core framework.
|
||||
|
||||
|
||||
## 1.0.18
|
||||
|
||||
*Release date - 26 November 2018*
|
||||
|
||||
- Room details shortcodes can be used for generic routing.
|
||||
- Datepicker improvements.
|
||||
|
||||
|
||||
## 1.0.17
|
||||
|
||||
*Release date - 16 November 2018*
|
||||
|
||||
- Added support for the new Gutenberg editor and WordPress 5.0.
|
||||
- Improved Shortcodes stability while updating a post.
|
||||
|
||||
|
||||
## 1.0.16
|
||||
|
||||
*Release date - 9 November 2018*
|
||||
|
||||
- Improved Shortcodes generation for params with multiple values.
|
||||
|
||||
|
||||
## 1.0.15
|
||||
|
||||
*Release date - 31 October 2018*
|
||||
|
||||
- Fixed minor issue for parameters with multiple values in Shortcodes.
|
||||
|
||||
|
||||
## 1.0.14
|
||||
|
||||
*Release date - 29 October 2018*
|
||||
|
||||
- Added support for several new currencies in the converter.
|
||||
- New type of Shortcode called "Booking" to rewrite the URLs of the booking details pages.
|
||||
- Various improvements to routing functions and framework
|
||||
|
||||
|
||||
## 1.0.13
|
||||
|
||||
*Release date - 26 September 2018*
|
||||
|
||||
- Added support for all Timezones.
|
||||
- Improved responsiveness for date picker calendars.
|
||||
- Minor core and application fixes.
|
||||
|
||||
|
||||
## 1.0.12
|
||||
|
||||
*Release date - 7 September 2018*
|
||||
|
||||
- Minor core and application fixes for front-end and back-end.
|
||||
|
||||
|
||||
## 1.0.11
|
||||
|
||||
*Release date - 16 July 2018*
|
||||
|
||||
- Shortcodes models can now be accessed also via front-end.
|
||||
|
||||
|
||||
## 1.0.10
|
||||
|
||||
*Release date - 18 June 2018*
|
||||
|
||||
- Improved hooks for Shortcodes usage in posts during drafts saving.
|
||||
|
||||
|
||||
## 1.0.9
|
||||
|
||||
*Release date - 4 June 2018*
|
||||
|
||||
- Minor backward compatibility fixes for PHP <= 5.4.
|
||||
|
||||
|
||||
## 1.0.8
|
||||
|
||||
*Release date - 16 may 2018*
|
||||
|
||||
- Shortcodes processing for third party plugins in descriptions.
|
||||
- Overrides functions for layout files of pages and widgets.
|
||||
|
||||
|
||||
## 1.0.7
|
||||
|
||||
*Release date - 14 may 2018*
|
||||
|
||||
- Automatic mirroring backup of uploaded or generated files (photos, invoices, docs).
|
||||
|
||||
|
||||
## 1.0.6
|
||||
|
||||
*Release date - 8 May 2018*
|
||||
|
||||
- Added support for Multisite network.
|
||||
|
||||
|
||||
## 1.0.5
|
||||
|
||||
*Release date - 27 April 2018*
|
||||
|
||||
- Payment framework extendable with dedicated plugins.
|
||||
|
||||
|
||||
## 1.0.4
|
||||
|
||||
*Release date - 24 April 2018*
|
||||
|
||||
- Automated backup and restore functions for uploaded files (photos, images, logos).
|
||||
- Improvements for upgrading to the Pro version.
|
||||
|
||||
|
||||
## 1.0.3
|
||||
|
||||
*Release date - 23 April 2018*
|
||||
|
||||
- Minor core fixes.
|
||||
|
||||
|
||||
## 1.0.2
|
||||
|
||||
*Release date - 20 April 2018*
|
||||
|
||||
- Unified language files for Widgets, Front-end and Back-end for easier translation.
|
||||
|
||||
|
||||
## 1.0.1
|
||||
|
||||
*Release date - 17 April 2018*
|
||||
|
||||
- Template files and custom CSS files are no longer overridden during updates.
|
||||
- SEO optimizations for custom page titles and metas in front-end.
|
||||
|
||||
|
||||
## 1.0
|
||||
|
||||
*Release date - 10 April 2018*
|
||||
|
||||
- First stable release of the Vik Booking Framework for WordPress.
|
||||
@@ -0,0 +1,61 @@
|
||||
# Copyright (C) 2019 Mustafa Uysal
|
||||
# This file is distributed under the same license as the Wonder Cache package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wonder Cache 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wonder-cache\n"
|
||||
"POT-Creation-Date: 2019-09-22 13:21: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: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.5.4\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#: wonder-cache.php:62
|
||||
msgid "Your site does not support Wonder Cache."
|
||||
msgstr ""
|
||||
|
||||
#: wonder-cache.php:63
|
||||
msgid ""
|
||||
"Your site is currently running WordPress version %1$s, while Wonder Cache "
|
||||
"requires version %2$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: wonder-cache.php:64
|
||||
msgid "Please update your WordPress or deactivate Wonder Cache."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Wonder Cache"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/mustafauysal/wonder-cache"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A simple yet powerful caching plugin. It powers and abilities include: "
|
||||
"superhuman strength and durability."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Mustafa Uysal"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://uysalmustafa.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,731 @@
|
||||
# Copyright (C) 2019 WPclever.net
|
||||
# This file is distributed under the same license as the WPC Product Bundles for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Product Bundles for WooCommerce 3.7.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-product-bundle\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-09-23T07:44:49+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: woo-product-bundle\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Product Bundles for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WPC Product Bundles is a plugin help you bundle a few products, offer them at a discount and watch the sales go up!"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPclever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:69
|
||||
#: index.php:95
|
||||
#: index.php:1113
|
||||
#: index.php:1136
|
||||
msgid "Add to cart"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:75
|
||||
#: index.php:1119
|
||||
msgid "Select options"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:82
|
||||
#: index.php:1125
|
||||
msgid "Read more"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:617
|
||||
msgid "Once Every 5 Minutes"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:759
|
||||
msgid "Product Bundles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:770
|
||||
#: index.php:2093
|
||||
msgid "WPC Product Bundles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:773
|
||||
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:776
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:778
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:780
|
||||
msgid "Discussion"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:787
|
||||
msgid "How to use?"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:791
|
||||
#: index.php:1449
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:795
|
||||
msgid "Tools"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:799
|
||||
#: index.php:1450
|
||||
msgid "Premium Version"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:807
|
||||
msgid "When creating the product, please choose product data is \"Smart Bundle\" then you can see the search field to start search and add products to the bundle."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:819
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:823
|
||||
msgid "Price format"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:826
|
||||
msgid "From min price"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:827
|
||||
msgid "Min price only"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:828
|
||||
msgid "Min - max"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:829
|
||||
msgid "Regular and sale price"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:832
|
||||
msgid "Choose the price format for bundle on the shop page."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:838
|
||||
#: index.php:1849
|
||||
#: index.php:1872
|
||||
#: index.php:2191
|
||||
msgid "Bundled products"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:842
|
||||
#: index.php:1058
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:847
|
||||
msgid "Above the add to cart button"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:851
|
||||
msgid "Below the add to cart button"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:855
|
||||
msgid "Below the title"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:859
|
||||
msgid "Below the price"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:863
|
||||
msgid "Below the excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:867
|
||||
#: index.php:1071
|
||||
msgid "In a new tab"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:871
|
||||
#: index.php:1075
|
||||
msgid "No (hide it)"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:874
|
||||
msgid "Choose the position to show the bundled products list."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:879
|
||||
msgid "Variations selector"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:884
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:888
|
||||
msgid "Use WPC Variations Radio Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:897
|
||||
msgid "Show thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:902
|
||||
#: index.php:917
|
||||
#: index.php:932
|
||||
#: index.php:995
|
||||
#: index.php:1013
|
||||
#: index.php:1169
|
||||
#: index.php:1203
|
||||
#: index.php:1234
|
||||
#: index.php:1249
|
||||
#: index.php:1265
|
||||
#: index.php:1281
|
||||
#: index.php:1297
|
||||
#: index.php:1318
|
||||
#: index.php:1335
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:906
|
||||
#: index.php:921
|
||||
#: index.php:936
|
||||
#: index.php:959
|
||||
#: index.php:982
|
||||
#: index.php:999
|
||||
#: index.php:1021
|
||||
#: index.php:1173
|
||||
#: index.php:1192
|
||||
#: index.php:1207
|
||||
#: index.php:1238
|
||||
#: index.php:1253
|
||||
#: index.php:1269
|
||||
#: index.php:1285
|
||||
#: index.php:1301
|
||||
#: index.php:1322
|
||||
#: index.php:1339
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:912
|
||||
msgid "Show quantity"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:927
|
||||
msgid "Show short description"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:942
|
||||
msgid "Show price"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:947
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:951
|
||||
msgid "Price HTML"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:955
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:965
|
||||
msgid "Link to individual product"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:970
|
||||
msgid "Yes, open in the same tab"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:974
|
||||
msgid "Yes, open in the new tab"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:978
|
||||
msgid "Yes, open quick view popup"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:990
|
||||
msgid "Change image"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1003
|
||||
msgid "Change the main product image when choosing the variation of bundled products."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1008
|
||||
msgid "Change price"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1017
|
||||
msgid "Yes, custom selector"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1028
|
||||
msgid "Change the main product price when choosing the variation of bundled products. It uses JavaScript to change product price so it is very dependent on theme’s HTML. If it cannot find and update the product price, please contact us and we can help you find the right selector or adjust the JS file."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1033
|
||||
msgid "Total text"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1036
|
||||
msgid "Bundle price:"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1040
|
||||
msgid "Saved text"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1043
|
||||
#: index.php:1414
|
||||
msgid "(saved [d])"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1045
|
||||
msgid "Use [d] to show the saved percentage or amount."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1051
|
||||
#: index.php:2199
|
||||
msgid "Bundles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1054
|
||||
msgid "Settings for bundles on the single product page."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1063
|
||||
msgid "Above add to cart button"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1067
|
||||
msgid "Below add to cart button"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1078
|
||||
msgid "Choose the position to show the bundles list."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1084
|
||||
#: index.php:2385
|
||||
msgid "Before text"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1088
|
||||
msgid "The text before bundles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1093
|
||||
#: index.php:2394
|
||||
msgid "After text"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1097
|
||||
msgid "The text after bundles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1102
|
||||
msgid "\"Add to Cart\" button labels"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1105
|
||||
msgid "Leave blank if you want to use the default text and can be translated."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1109
|
||||
msgid "Archive/shop page"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1115
|
||||
msgid "For purchasable bundle."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1121
|
||||
msgid "For purchasable bundle and has variable product(s)."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1127
|
||||
msgid "For un-purchasable bundle."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1132
|
||||
msgid "Single product page"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1141
|
||||
msgid "Cart & Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1145
|
||||
msgid "Cart contents count"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1150
|
||||
msgid "Bundle only"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1154
|
||||
msgid "Bundled products only"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1158
|
||||
msgid "Both bundle and bundled products"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1164
|
||||
msgid "Hide bundle name before bundled products"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1179
|
||||
msgid "Hide bundled products on cart & checkout page"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1184
|
||||
msgid "Yes, just show the main product"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1188
|
||||
msgid "Yes, but show bundled product names under the main product"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1198
|
||||
msgid "Hide bundled products on mini-cart"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1211
|
||||
msgid "Hide bundled products, just show the main product on mini-cart."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1217
|
||||
#: index.php:2248
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1221
|
||||
msgid "Search limit"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1229
|
||||
msgid "Search by SKU"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1244
|
||||
msgid "Search by ID"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1256
|
||||
msgid "Search by ID when only entered the numeric."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1260
|
||||
msgid "Search exact"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1272
|
||||
msgid "Match whole product title or content?"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1276
|
||||
msgid "Search sentence"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1288
|
||||
msgid "Do a phrase search?"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1292
|
||||
msgid "Accept same products"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1304
|
||||
msgid "If yes, a product can be added many times."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1309
|
||||
msgid "Advance"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1313
|
||||
#: index.php:1373
|
||||
msgid "Price sync"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1325
|
||||
msgid "Enable this option to change the bundle price automatically when changing the price of the bundled product. You also can do it by manually on the Tools tab."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1330
|
||||
msgid "Price update"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1342
|
||||
msgid "Enable this option to show the update price tool in each product. Use this tool to update the price for all bundles contain the current product."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1349
|
||||
msgid "Update Options"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1362
|
||||
msgid "Product bundles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1367
|
||||
msgid "View all product bundles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1378
|
||||
msgid "Update price for all bundles"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1381
|
||||
msgid "The bundle price will be updated every 5 minutes automatically, you can click to update immediately."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1409
|
||||
msgid "Please select some product options before adding this bundle to the cart."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1410
|
||||
msgid "Please choose at least one product before adding this bundle to the cart."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1411
|
||||
msgid "Please choose at least [min] in the whole products before adding this bundle to the cart."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1412
|
||||
msgid "Please choose maximum [max] in the whole products before adding this bundle to the cart."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1466
|
||||
msgid "Premium support"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1559
|
||||
msgid "Have an error when adding this bundle to the cart."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1565
|
||||
#: index.php:1582
|
||||
msgid "\"%s\" has not enough stock."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1566
|
||||
#: index.php:1573
|
||||
#: index.php:1583
|
||||
#: index.php:1591
|
||||
msgid "You cannot add this bundle to the cart."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1572
|
||||
msgid "You cannot add another \"%s\" to your cart."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1590
|
||||
msgid "\"%s\" is protected and cannot be purchased."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:1974
|
||||
msgid "(bundled in %s)"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2086
|
||||
msgid "No results found for \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2108
|
||||
msgid "Update price for all bundles contains this product. The progress time based on the number of your bundles."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2111
|
||||
msgid "Update Price"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2115
|
||||
msgid "Invalid product to use this tool!"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2118
|
||||
msgid "This box content just appears after you publish the product."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2162
|
||||
#: index.php:2217
|
||||
msgid "Smart bundle"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2169
|
||||
msgid "Bundled Products"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2250
|
||||
msgid "settings"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2255
|
||||
msgid "searching..."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2257
|
||||
msgid "Type any keyword to search"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2263
|
||||
msgid "Selected"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2292
|
||||
msgid "Regular price"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2298
|
||||
msgid "Fixed price"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2302
|
||||
msgid "Disable auto calculate price?"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2302
|
||||
msgid "If checked, %s click here to set price %s by manually."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2306
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2313
|
||||
msgid "% or amount"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2319
|
||||
msgid "If you fill both, the amount will be used."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2323
|
||||
msgid "Optional products"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2327
|
||||
msgid "Buyer can change the quantity of bundled products?"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2331
|
||||
msgid "Limit of each item"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2335
|
||||
msgid "Use default quantity as min?"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2347
|
||||
msgid "Limit of whole items"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2360
|
||||
msgid "Shipping fee"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2363
|
||||
msgid "Apply to the whole bundle"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2364
|
||||
msgid "Apply to each bundled product"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2369
|
||||
msgid "Manage stock"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2373
|
||||
msgid "Enable stock management at bundle level?"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2377
|
||||
msgid "Custom display price"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2389
|
||||
msgid "The text before bundled products"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2398
|
||||
msgid "The text after bundled products"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2424
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2426
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2431
|
||||
msgid "Default quantity"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2643
|
||||
#: index.php:2685
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2736
|
||||
msgid "The bundle \"%s\" could not be added to your cart from order again button. Please buy it directly."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2874
|
||||
msgid "Choose"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:2880
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:3108
|
||||
msgid "Bundle(s) low in stock"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:3113
|
||||
msgid "%s is low in stock."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:3116
|
||||
msgid "%1$s is low in stock. There are %2$d left."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:3134
|
||||
msgid "Bundle(s) out of stock"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:3139
|
||||
#: index.php:3142
|
||||
msgid "%s is out of stock."
|
||||
msgstr ""
|
||||
72
spec/fixtures/dynamic_finders/plugin_version/woodash/translation_file/i18n/woodash.pot
vendored
Normal file
72
spec/fixtures/dynamic_finders/plugin_version/woodash/translation_file/i18n/woodash.pot
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
# Copyright (C) 2019 WooCart
|
||||
# This file is distributed under the same license as the WooDash plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooDash 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/src\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-09-23T15:26:07+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: woodash\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WooDash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WooDash creates a store-focused sidebar menu and home dashboard to make it easier to access the common WooCommerce features."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WooCart"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "www.woocart.com"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-admin.php:115
|
||||
msgid "WooDash plugin has been activated and provides an easy switcher for two different Dashboards."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-admin.php:154
|
||||
msgid "My Store"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-admin.php:170
|
||||
#: classes/class-admin.php:171
|
||||
msgid "Switch Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-admin.php:240
|
||||
msgid "At a Glance"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-admin.php:241
|
||||
msgid "Activity"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-menu.php:42
|
||||
msgid "Orders"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-menu.php:48
|
||||
msgid "Stock"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-menu.php:54
|
||||
msgid "Customers"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-menu.php:60
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-menu.php:66
|
||||
msgid "All Reports"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,123 @@
|
||||
# Copyright (C) 2019 WooCommerce Ajax Search
|
||||
# This file is distributed under the same license as the WooCommerce Ajax Search package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce Ajax Search 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
||||
"Project-Id-Version: whwas\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language-Team: support@wphobby.com\n"
|
||||
"Report-Msgid-Bugs-To: support@wphobby.com\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: wphobby-woo-ajax-search.php:36
|
||||
msgid "WooCommerce Ajax Search is enabled but not effective. It requires WooCommerce in order to work."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:49
|
||||
msgid "Settings updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:133
|
||||
msgid "Search Input Placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:134
|
||||
msgid "Minimum Characters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:135
|
||||
msgid "Show Loader"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:136
|
||||
msgid "Show More"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:137
|
||||
msgid "Show Clear"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:142
|
||||
msgid "Max number of results"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:143
|
||||
msgid "Show Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:144
|
||||
msgid "Show Price"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:145
|
||||
msgid "Show Product SKU"
|
||||
msgstr ""
|
||||
|
||||
|
||||
#: includes/whwas_admin.php:153
|
||||
msgid "General display settings for WooCommerce Ajax Search."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_admin.php:228
|
||||
msgid "Advanced Settings for Search Result."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_init.php:71
|
||||
msgid "Sale!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_init.php:72
|
||||
msgid "SKU"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_init.php:73
|
||||
msgid "View all results"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_init.php:74
|
||||
msgid "Nothing found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_widget.php:18
|
||||
msgid "WooCommerce Ajax Search Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_widget.php:20
|
||||
msgid "Woo Search"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_widget.php:65
|
||||
msgid "Search..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whwas_widget.php:74
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/general/top.php:8
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/general/top.php:9
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/general/top.php:10
|
||||
msgid "Server Info"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/help/top.php:8
|
||||
msgid "Help & Guide"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/help/top.php:9
|
||||
msgid "Change Log"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,118 @@
|
||||
# Copyright (C) 2019 WooCommerce PDF Invoice Maker
|
||||
# This file is distributed under the same license as the WooCommerce PDF Invoice Maker package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce PDF Invoice Maker 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
||||
"Project-Id-Version: whpdf\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language-Team: support@wphobby.com\n"
|
||||
"Report-Msgid-Bugs-To: support@wphobby.com\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: wphobby-woo-pdf-invoice.php:38
|
||||
msgid "WooCommerce PDF Invoice Maker is enabled but not effective. It requires WooCommerce in order to work."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpdf_admin.php:54
|
||||
msgid "Settings updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpdf_admin.php:138
|
||||
msgid "Vew PDF Behaviour"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpdf_admin.php:139
|
||||
msgid "Shop Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpdf_admin.php:144
|
||||
msgid "Enable Packing Slip"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpdf_admin.php:150
|
||||
msgid "General display settings for PDF invoices."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpdf_admin.php:203
|
||||
msgid "Advanced Settings for PDF Invoices."
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpdf_document.php:263
|
||||
msgid "Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpdf_document.php:268
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpdf_document.php:273
|
||||
msgid "Invoice date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/whpdf_document.php:277
|
||||
msgid "Order Amount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/general/top.php:8
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/general/top.php:9
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/general/top.php:10
|
||||
msgid "Server Info"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/help/top.php:8
|
||||
msgid "Help & Guide"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/sections/help/top.php:9
|
||||
msgid "Change Log"
|
||||
msgstr ""
|
||||
|
||||
#: template/invoice/invoice-details.php:6
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: template/invoice/invoice-details.php:7
|
||||
msgid "Qty"
|
||||
msgstr ""
|
||||
|
||||
#: template/invoice/invoice-details.php:8
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: template/invoice/invoice-details.php:9
|
||||
msgid "Line total"
|
||||
msgstr ""
|
||||
|
||||
#: template/invoice/invoice-details.php:10
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#: template/invoice/invoice-details.php:129
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#: template/invoice/invoice-details.php:134
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#: template/invoice/invoice-details.php:148
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: template/invoice/invoice-footer.php:3
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
268
spec/fixtures/dynamic_finders/plugin_version/wpsso-faq/translation_file/languages/wpsso-faq-fr_FR.po
vendored
Normal file
268
spec/fixtures/dynamic_finders/plugin_version/wpsso-faq/translation_file/languages/wpsso-faq-fr_FR.po
vendored
Normal file
@@ -0,0 +1,268 @@
|
||||
# Copyright (C) 2015 WPSSO App Meta (WPSSO AM)
|
||||
# This file is distributed under the same license as the WPSSO App Meta (WPSSO AM) package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPSSO FAQ Manager 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpsso-faq\n"
|
||||
"POT-Creation-Date: 2019-10-02 09:46-0700\n"
|
||||
"PO-Revision-Date: 2019-10-02 09:46-0700\n"
|
||||
"Last-Translator: JS Morisset <jsm@surniaulula.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: fr_FR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.6\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: lib/gettext-config.php:6
|
||||
msgctxt "plugin description"
|
||||
msgid "Manage FAQ categories with Question and Answer pages."
|
||||
msgstr "Gérez les catégories de FAQ avec pages de questions et réponses."
|
||||
|
||||
#: lib/register.php:123
|
||||
msgid "Categories"
|
||||
msgstr "Catégories"
|
||||
|
||||
#: lib/register.php:124
|
||||
msgid "Category"
|
||||
msgstr "Catégorie"
|
||||
|
||||
#: lib/register.php:125
|
||||
msgctxt "Admin menu name"
|
||||
msgid "Categories"
|
||||
msgstr "Catégories"
|
||||
|
||||
#: lib/register.php:126
|
||||
msgid "All Categories"
|
||||
msgstr "Toutes catégories"
|
||||
|
||||
#: lib/register.php:127
|
||||
msgid "Edit Category"
|
||||
msgstr "Modifier la catégorie"
|
||||
|
||||
#: lib/register.php:128
|
||||
msgid "View Category"
|
||||
msgstr "Voir la catégorie"
|
||||
|
||||
#: lib/register.php:129
|
||||
msgid "Update Category"
|
||||
msgstr "Mettre à jour la catégorie"
|
||||
|
||||
#: lib/register.php:130
|
||||
msgid "Add New Category"
|
||||
msgstr "Ajouter une nouvelle catégorie"
|
||||
|
||||
#: lib/register.php:131
|
||||
msgid "New Category Name"
|
||||
msgstr "Nom de la nouvelle catégorie"
|
||||
|
||||
#: lib/register.php:132
|
||||
msgid "Parent Category"
|
||||
msgstr "Catégorie parente"
|
||||
|
||||
#: lib/register.php:133
|
||||
msgid "Parent Category:"
|
||||
msgstr "Catégorie parente :"
|
||||
|
||||
#: lib/register.php:134
|
||||
msgid "Search Categories"
|
||||
msgstr "Rechercher dans les catégories"
|
||||
|
||||
#: lib/register.php:135
|
||||
msgid "Popular Categories"
|
||||
msgstr "Catégories populaires"
|
||||
|
||||
#: lib/register.php:136
|
||||
msgid "Separate categories with commas"
|
||||
msgstr "Séparez les catégories avec des virgules"
|
||||
|
||||
#: lib/register.php:137
|
||||
msgid "Add or remove categories"
|
||||
msgstr "Ajouter ou retirer des catégories"
|
||||
|
||||
#: lib/register.php:138
|
||||
msgid "Choose from the most used"
|
||||
msgstr "Choisir parmi les plus utilisées"
|
||||
|
||||
#: lib/register.php:139
|
||||
msgid "Not categories found."
|
||||
msgstr "Aucune catégorie trouvée."
|
||||
|
||||
#: lib/register.php:140
|
||||
msgid "← Back to categories"
|
||||
msgstr "← Retour aux catégories"
|
||||
|
||||
#: lib/register.php:144
|
||||
msgctxt "Taxonomy label"
|
||||
msgid "Categories"
|
||||
msgstr "Catégories"
|
||||
|
||||
#: lib/register.php:155
|
||||
msgctxt "Taxonomy description"
|
||||
msgid "Categories for Questions"
|
||||
msgstr "Catégories pour les questions"
|
||||
|
||||
#: lib/register.php:166
|
||||
msgid "Questions"
|
||||
msgstr "Questions"
|
||||
|
||||
#: lib/register.php:167
|
||||
msgid "Question"
|
||||
msgstr "Question"
|
||||
|
||||
#: lib/register.php:168
|
||||
msgid "Add New"
|
||||
msgstr "Ajouter"
|
||||
|
||||
#: lib/register.php:169
|
||||
msgid "Add New Question"
|
||||
msgstr "Ajouter une nouvelle question"
|
||||
|
||||
#: lib/register.php:170
|
||||
msgid "Edit Question"
|
||||
msgstr "Modifier la question"
|
||||
|
||||
#: lib/register.php:171
|
||||
msgid "New Question"
|
||||
msgstr "Nouvelle question"
|
||||
|
||||
#: lib/register.php:172
|
||||
msgid "View Question"
|
||||
msgstr "Voir la question"
|
||||
|
||||
#: lib/register.php:173
|
||||
msgid "View FAQs"
|
||||
msgstr "Voir les FAQs"
|
||||
|
||||
#: lib/register.php:174
|
||||
msgid "Search Questions"
|
||||
msgstr "Rechercher dans les questions"
|
||||
|
||||
#: lib/register.php:175
|
||||
msgid "No questions found"
|
||||
msgstr "Aucune question trouvée"
|
||||
|
||||
#: lib/register.php:176
|
||||
msgid "No questions found in Trash"
|
||||
msgstr "Aucune question trouvée dans la corbeille"
|
||||
|
||||
#: lib/register.php:177
|
||||
msgid "Parent Question:"
|
||||
msgstr "Question parente :"
|
||||
|
||||
#: lib/register.php:178
|
||||
msgid "All Questions"
|
||||
msgstr "Toutes questions"
|
||||
|
||||
#: lib/register.php:179
|
||||
msgid "Question Archives"
|
||||
msgstr "Archives de questions"
|
||||
|
||||
#: lib/register.php:180
|
||||
msgid "Question Attributes"
|
||||
msgstr "Attributs de question"
|
||||
|
||||
#: lib/register.php:181
|
||||
msgid "Insert into answer"
|
||||
msgstr "Insérer dans la réponse"
|
||||
|
||||
#: lib/register.php:182
|
||||
msgid "Uploaded to this question"
|
||||
msgstr "Téléchargé à cette question"
|
||||
|
||||
#: lib/register.php:183
|
||||
msgid "Question Image"
|
||||
msgstr "Image de question"
|
||||
|
||||
#: lib/register.php:184
|
||||
msgid "Set question image"
|
||||
msgstr "Définir l'image de la question"
|
||||
|
||||
#: lib/register.php:185
|
||||
msgid "Remove question image"
|
||||
msgstr "Supprimer l'image de la question"
|
||||
|
||||
#: lib/register.php:186
|
||||
msgid "Use as question image"
|
||||
msgstr "Utiliser comme image de question"
|
||||
|
||||
#: lib/register.php:187
|
||||
msgctxt "Admin menu name"
|
||||
msgid "FAQs"
|
||||
msgstr "FAQs"
|
||||
|
||||
#: lib/register.php:188
|
||||
msgid "Filter questions"
|
||||
msgstr "Filtrer les questions"
|
||||
|
||||
#: lib/register.php:189
|
||||
msgid "Questions list navigation"
|
||||
msgstr "Navigation de la liste des questions"
|
||||
|
||||
#: lib/register.php:190
|
||||
msgid "Questions list"
|
||||
msgstr "Liste des questions"
|
||||
|
||||
#: lib/register.php:191
|
||||
msgctxt "Admin bar name"
|
||||
msgid "Question"
|
||||
msgstr "Question"
|
||||
|
||||
#: lib/register.php:192
|
||||
msgid "Question published."
|
||||
msgstr "Question publiée."
|
||||
|
||||
#: lib/register.php:193
|
||||
msgid "Question published privately."
|
||||
msgstr "Question publiée en privé."
|
||||
|
||||
#: lib/register.php:194
|
||||
msgid "Question reverted to draft."
|
||||
msgstr "Question remis en brouillon."
|
||||
|
||||
#: lib/register.php:195
|
||||
msgid "Question scheduled."
|
||||
msgstr "Question planifiée."
|
||||
|
||||
#: lib/register.php:196
|
||||
msgid "Question updated."
|
||||
msgstr "Question mise à jour."
|
||||
|
||||
#: lib/register.php:200
|
||||
msgctxt "Post type label"
|
||||
msgid "Question"
|
||||
msgstr "Question"
|
||||
|
||||
#: lib/register.php:202
|
||||
msgctxt "Post type description"
|
||||
msgid "Question and Answer"
|
||||
msgstr "Question et Réponse"
|
||||
|
||||
#: wpsso-faq.php:104
|
||||
msgid "The %1$s add-on requires the %2$s plugin — install and activate the %3$s plugin or <a href=\"%4$s\">deactivate the %5$s add-on</a>."
|
||||
msgstr "L'ajout %1$s requiert l'extension %2$s — installer et activer l'extension %3$s ou <a href=\"%4$s\">désactiver l'ajout %5$s</a>."
|
||||
|
||||
#: wpsso-faq.php:198
|
||||
msgid "The %1$s version %2$s add-on requires %3$s version %4$s or newer (version %5$s is currently installed)."
|
||||
msgstr "L'ajout %1$s version %2$s requiert %3$s version %4$s ou plus récente (version %5$s est actuellement installée)."
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WPSSO FAQ Manager"
|
||||
msgstr "WPSSO FAQ Manager"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpsso.com/extend/plugins/wpsso-faq/"
|
||||
msgstr "https://wpsso.com/extend/plugins/wpsso-faq/"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Manage FAQ categories with Question and Answer pages."
|
||||
msgstr "Gérez les catégories de FAQ avec pages de questions et réponses."
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "JS Morisset"
|
||||
msgstr "JS Morisset"
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpsso.com/"
|
||||
msgstr "https://wpsso.com/"
|
||||
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) 2019 WPSSO Inherit Parent Meta
|
||||
# This file is distributed under the same license as the WPSSO Inherit Parent Meta package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPSSO Inherit Parent Meta 2.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpsso-inherit-"
|
||||
"parent-meta\n"
|
||||
"POT-Creation-Date: 2019-MO-DA HO:MI+ZONE\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"
|
||||
|
||||
#: lib/gettext-config.php:6
|
||||
msgctxt "plugin description"
|
||||
msgid ""
|
||||
"Inherit featured and custom images from parents for posts, pages, custom "
|
||||
"post types, categories, tags, and custom taxonomies."
|
||||
msgstr ""
|
||||
|
||||
#: wpsso-inherit-parent-meta.php:106
|
||||
msgid ""
|
||||
"The %1$s add-on requires the %2$s plugin — install and activate the "
|
||||
"%3$s plugin or <a href=\"%4$s\">deactivate the %5$s add-on</a>."
|
||||
msgstr ""
|
||||
|
||||
#: wpsso-inherit-parent-meta.php:142
|
||||
msgid "%1$s requires %2$s version %3$s or higher and has been deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: wpsso-inherit-parent-meta.php:144
|
||||
msgid "Please upgrade %1$s before trying to re-activate the %2$s plugin."
|
||||
msgstr ""
|
||||
|
||||
#: wpsso-inherit-parent-meta.php:230
|
||||
msgid ""
|
||||
"The %1$s version %2$s add-on requires %3$s version %4$s or newer (version "
|
||||
"%5$s is currently installed)."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WPSSO Inherit Parent Meta"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpsso.com/extend/plugins/wpsso-inherit-parent-meta/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Inherit featured and custom images from parents for posts, pages, custom "
|
||||
"post types, categories, tags, and custom taxonomies."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "JS Morisset"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpsso.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,56 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPSSO REST API 2.0.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpsso-rest-api\n"
|
||||
"POT-Creation-Date: 2019-10-02 09:49-0700\n"
|
||||
"PO-Revision-Date: 2019-10-02 09:49-0700\n"
|
||||
"Last-Translator: JS Morisset <jsm@surniaulula.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: fr_FR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.6\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: lib/gettext-config.php:6
|
||||
msgctxt "plugin description"
|
||||
msgid "Enhances the WordPress REST API post, term, and user queries with an array of Social and Search Engine Optimization meta tags and Schema markup."
|
||||
msgstr "Améliore les requêtes post, terme et utilisateur de l'API REST WordPress avec un tableau de balises méta et de balisage Schéma pour les sites sociaux et de recherche."
|
||||
|
||||
#: wpsso-rest-api.php:106
|
||||
msgid "The %1$s add-on requires the %2$s plugin — install and activate the %3$s plugin or <a href=\"%4$s\">deactivate the %5$s add-on</a>."
|
||||
msgstr "L'ajout %1$s requiert l'extension %2$s — installer et activer l'extension %3$s ou <a href=\"%4$s\">désactiver l'ajout %5$s</a>."
|
||||
|
||||
#: wpsso-rest-api.php:142
|
||||
msgid "%1$s requires %2$s version %3$s or higher and has been deactivated."
|
||||
msgstr "%1$s nécessite %2$s version %3$s ou supérieure et a été désactivé."
|
||||
|
||||
#: wpsso-rest-api.php:144
|
||||
msgid "Please upgrade %1$s before trying to re-activate the %2$s plugin."
|
||||
msgstr "SVP mettre à jour %1$s avant d'essayer de réactiver l'extension %2$s."
|
||||
|
||||
#: wpsso-rest-api.php:230
|
||||
msgid "The %1$s version %2$s add-on requires %3$s version %4$s or newer (version %5$s is currently installed)."
|
||||
msgstr "L'ajout %1$s version %2$s requiert %3$s version %4$s ou plus récente (version %5$s est actuellement installée)."
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WPSSO REST API"
|
||||
msgstr "WPSSO REST API"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpsso.com/extend/plugins/wpsso-rest-api/"
|
||||
msgstr "https://wpsso.com/extend/plugins/wpsso-rest-api/"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Enhances the WordPress REST API post, term, and user queries with an array of Social and Search Engine Optimization meta tags and Schema markup."
|
||||
msgstr "Améliore les requêtes post, terme et utilisateur de l'API REST WordPress avec un tableau de balises méta et de balisage Schéma pour les sites sociaux et de recherche."
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "JS Morisset"
|
||||
msgstr "JS Morisset"
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpsso.com/"
|
||||
msgstr "https://wpsso.com/"
|
||||
@@ -7,8 +7,8 @@
|
||||
<link rel="alternate" type="application/rss+xml" title="Example RSS Feed" href="http://wp.lab/feed"/>
|
||||
<script type='text/javascript' src='http://platform.twitter.com/widgets.js?ver=1.0.0'></script>
|
||||
|
||||
<!-- plugins that should be detected -->
|
||||
<link rel='stylesheet' href='http://wp.lab/wp-content/plugins/dl-1/cache/7f81.css?m=12' type='text/css' media='screen'/>
|
||||
<!-- Plugins which should be detected from Links-->
|
||||
<link rel='stylesheet' href='https://wp.lab/wp-content/plugins/dl-1/cache/7f81.css?m=12' type='text/css' media='screen'/>
|
||||
<link rel="stylesheet" href="/wp-content/plugins/dl-2/css/frontend.css?ver=3.9.2"/>
|
||||
|
||||
<script type='text/javascript' src='http://wp.lab/wp-content/plugins/dl-3/s2member-o.php?ws=1'></script>
|
||||
@@ -17,7 +17,17 @@
|
||||
<!-- Duplicate, dl-4 should only be detected once -->
|
||||
<script type='text/javascript' src='/wp-content/plugins/dl-4/main2.js'></script>
|
||||
|
||||
<!-- in scope domain -->
|
||||
<link rel="stylesheet" href="http://sub.lab/wp-content/plugins/dl-5/css/"/>
|
||||
|
||||
<!-- Should not be detected -->
|
||||
<link rel="stylesheet" href="https://wp.lab/wp-content/plugins//css/"/>
|
||||
<link rel="stylesheet" href="http://sub.lab/wp-content/plugins/ /aa/"/>
|
||||
<a href="http://wp.lab/wp-content/plugins/somefile.php">It should not be detected</a>
|
||||
<script type='text/javascript' src='https://out-of-scope.lab/wp-content/plugins/should-not-be-detected/s.js'></script>
|
||||
|
||||
|
||||
<!-- Plugins which should be detected from Code -->
|
||||
|
||||
<style type="text/css">
|
||||
#fancybox-loading.fancybox-ie div {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<link rel='stylesheet' href='http://wp.lab/wp-content/themes/dl-1/style.css?ver=4.1.1' type='text/css' media='all'>
|
||||
|
||||
<img src="http://wp.lab/wp-content/themes/image.png" alt="Should not be detected" />
|
||||
<img src="https://wp.lab/wp-content/themes/image.png" alt="Should not be detected" />
|
||||
|
||||
<style type="text/css">
|
||||
#fancybox-loading.fancybox-ie div {
|
||||
|
||||
20
spec/fixtures/finders/users/author_id_brute_forcing/4.9-span-tag-empty.html
vendored
Normal file
20
spec/fixtures/finders/users/author_id_brute_forcing/4.9-span-tag-empty.html
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<body>
|
||||
<div id="content" class="site-content container">
|
||||
<div class="tie-row main-content-row">
|
||||
<div class="main-content tie-col-md-8 tie-col-xs-12" role="main">
|
||||
<header class="entry-header-outer container-wrapper">
|
||||
<nav id="breadcrumb"><a href="https://xxxx.com/"><span class="fa fa-home" aria-hidden="true"></span> ا</a><em class="delimiter">/</em><span class="current"></span></nav>
|
||||
|
||||
<h1 class="page-title"><span class="vcard"> </span></h1> </header><!-- .entry-header-outer /-->
|
||||
|
||||
|
||||
<div class="mag-box wide-post-box">
|
||||
<div class="container-wrapper">
|
||||
<div class="mag-box-container clearfix">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
6
spec/fixtures/finders/users/oembed_api/array.json
vendored
Normal file
6
spec/fixtures/finders/users/oembed_api/array.json
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
[
|
||||
{
|
||||
"code":"json_no_route",
|
||||
"message":"No route was found matching the URL and request method"
|
||||
}
|
||||
]
|
||||
9
spec/fixtures/models/theme/stripped_new_lines.css
vendored
Normal file
9
spec/fixtures/models/theme/stripped_new_lines.css
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/*!Theme Name: Divi
|
||||
Theme URI: http://www.elegantthemes.com/gallery/divi/
|
||||
Version: 3.29.3
|
||||
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
|
||||
Author: Elegant Themes
|
||||
Author URI: http://www.elegantthemes.com
|
||||
Tags: responsive-layout, one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-background, custom-colors, featured-images, full-width-template, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready
|
||||
License: GNU General Public License v2
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html*/a,abbr,acronym,address,applet,b,big,blockquote,body
|
||||
5
spec/fixtures/target/platform/wordpress/custom_directories/themes_path_plugin_folder.html
vendored
Normal file
5
spec/fixtures/target/platform/wordpress/custom_directories/themes_path_plugin_folder.html
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
<link rel="stylesheet" href="http://ex.lo/wp-content/plugins/wp-lightbox/js/lightbox/themes/default/jquery.lightbox.css" type="text/css" media="all"/>
|
||||
<!--[if IE 6]>
|
||||
<link rel="stylesheet" href="http://ex.lo/wp-content/plugins/wp-lightbox/js/lightbox/themes/default/jquery.lightbox.ie6.css" type="text/css" media="all"/>
|
||||
<![endif]-->
|
||||
5
spec/fixtures/target/platform/wordpress/detection/wp_admin.html
vendored
Normal file
5
spec/fixtures/target/platform/wordpress/detection/wp_admin.html
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<script data-cfasync='false'>
|
||||
//<![CDATA[
|
||||
_SHR_SETTINGS = {"endpoints":{"local_recs_url":"https:\/\/ex.lo\/wp-admin\/admin-ajax.php?action=shareaholic_permalink_related","ajax_url":"http:\/\/ex.lo\/wp-admin\/admin-ajax.php"},"url_components":{"year":"2019","monthnum":"03","day":"16","hour":"21","minute":"02","second":"33","post_id":"8","postname":"post1","category":"uncategorized"}};
|
||||
//]]>
|
||||
</script>
|
||||
2
spec/fixtures/target/platform/wordpress/detection/wp_json_oembed.html
vendored
Normal file
2
spec/fixtures/target/platform/wordpress/detection/wp_json_oembed.html
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
<link rel="alternate" type="application/json+oembed" href="https://ex.lo/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fex.lo%2F" />
|
||||
<link rel="alternate" type="text/xml+oembed" href="http://ex.lo/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fex.lo%2F&format=xml" />
|
||||
@@ -1,2 +1,2 @@
|
||||
[!] No WPVulnDB API Token given, as a result vulnerability data has not been output.
|
||||
[!] You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/register.
|
||||
[!] You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"vuln_api": {
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpvulndb.com/register."
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up."
|
||||
}
|
||||
}
|
||||
@@ -15,7 +15,7 @@ shared_examples WPScan::Target::Platform::WordPress do
|
||||
end
|
||||
|
||||
context 'when pattern/s in the homepage' do
|
||||
%w[default wp_includes only_scripts meta_generator comments mu_plugins].each do |file|
|
||||
%w[default wp_includes only_scripts meta_generator comments mu_plugins wp_admin wp_json_oembed].each do |file|
|
||||
context "when a wordpress page (#{file}.html)" do
|
||||
let(:homepage) { file }
|
||||
|
||||
@@ -152,7 +152,7 @@ shared_examples WPScan::Target::Platform::WordPress do
|
||||
|
||||
context 'when wp-content not detected' do
|
||||
before do
|
||||
expect(target).to receive(:content_dir).with(:passive).and_return(nil)
|
||||
expect(target).to receive(:content_dir).and_return(nil)
|
||||
stub_request(:get, target.url).to_return(body: File.read(fixtures.join(fixture).to_s))
|
||||
end
|
||||
|
||||
@@ -170,7 +170,7 @@ shared_examples WPScan::Target::Platform::WordPress do
|
||||
end
|
||||
|
||||
context 'when wp-content detected' do
|
||||
before { expect(target).to receive(:content_dir).with(:passive).and_return('wp-content') }
|
||||
before { expect(target).to receive(:content_dir).and_return('wp-content') }
|
||||
|
||||
its(:wordpress_hosted?) { should be false }
|
||||
end
|
||||
|
||||
@@ -8,7 +8,8 @@ shared_examples 'WordPress::CustomDirectories' do
|
||||
default: 'wp-content', https: 'wp-content', custom_w_spaces: 'custom content spaces',
|
||||
relative_one: 'wp-content', relative_two: 'wp-content', cache: 'wp-content',
|
||||
in_raw_js: 'wp-content', in_raw_js_escaped: 'wp-content', with_sub_dir: 'app',
|
||||
relative_two_sub_dir: 'cms/wp-content', in_meta_content: 'wp-content'
|
||||
relative_two_sub_dir: 'cms/wp-content', in_meta_content: 'wp-content',
|
||||
themes_path_plugin_folder: 'wp-content'
|
||||
}.each do |file, expected|
|
||||
it "returns #{expected} for #{file}.html" do
|
||||
stub_request(:get, target.url).to_return(body: File.read(fixtures.join("#{file}.html")))
|
||||
@@ -42,35 +43,25 @@ shared_examples 'WordPress::CustomDirectories' do
|
||||
end
|
||||
|
||||
context 'when not found via the homepage' do
|
||||
before { stub_request(:get, target.url).to_return(body: '') }
|
||||
before do
|
||||
stub_request(:get, target.url).to_return(body: '')
|
||||
|
||||
expect(target).to receive(:default_content_dir_exists?).and_return(dir_exist)
|
||||
end
|
||||
|
||||
context 'when default dir does not exist' do
|
||||
let(:dir_exist) { false }
|
||||
|
||||
context 'when detection mode is passive' do
|
||||
it 'returns nil' do
|
||||
expect(target).not_to receive(:default_content_dir_exist?)
|
||||
|
||||
expect(target.content_dir(:passive)).to eql nil
|
||||
expect(target.content_dir).to eql nil
|
||||
end
|
||||
end
|
||||
|
||||
context 'when detection mode is mixed or aggressive' do
|
||||
before { expect(target).to receive(:default_content_dir_exists?).and_return(dir_exist) }
|
||||
context 'when default dir exists' do
|
||||
let(:dir_exist) { true }
|
||||
|
||||
%i[mixed aggressive].each do |mode|
|
||||
context 'when default content dir exists' do
|
||||
let(:dir_exist) { true }
|
||||
|
||||
it 'returns wp-content' do
|
||||
expect(target.content_dir(mode)).to eql 'wp-content'
|
||||
end
|
||||
end
|
||||
|
||||
context 'when default content dir does not exist' do
|
||||
let(:dir_exist) { false }
|
||||
|
||||
it 'returns nil' do
|
||||
expect(target.content_dir(mode)).to eql nil
|
||||
end
|
||||
end
|
||||
it 'returns wp-content' do
|
||||
expect(target.content_dir).to eql 'wp-content'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -26,11 +26,11 @@ Gem::Specification.new do |s|
|
||||
s.add_development_dependency 'bundler', '>= 1.6'
|
||||
s.add_development_dependency 'coveralls', '~> 0.8.0'
|
||||
s.add_development_dependency 'memory_profiler', '~> 0.9.13'
|
||||
s.add_development_dependency 'rake', '~> 12.3'
|
||||
s.add_development_dependency 'rspec', '~> 3.8.0'
|
||||
s.add_development_dependency 'rake', '~> 13.0'
|
||||
s.add_development_dependency 'rspec', '~> 3.9.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.74.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.4.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.75.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.5.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.16.1'
|
||||
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
||||
s.add_development_dependency 'webmock', '~> 3.7.0'
|
||||
|
||||
Reference in New Issue
Block a user