Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d79bc37d3 | ||
|
|
2fae3336ba | ||
|
|
cfb98c5139 | ||
|
|
b0260327c4 | ||
|
|
f65532e347 | ||
|
|
ff574b046c | ||
|
|
97c995b64c | ||
|
|
8361ec97e4 | ||
|
|
7a0bbc0acb | ||
|
|
66f5eca841 | ||
|
|
b53e6d1888 | ||
|
|
4b68fa8b60 | ||
|
|
54770c5a50 | ||
|
|
39fb2167f7 | ||
|
|
c33fef9c98 | ||
|
|
08a1117edf | ||
|
|
e14cbed56e | ||
|
|
56e2ab16cc | ||
|
|
d76d4b70f5 | ||
|
|
e223936a81 | ||
|
|
60d067c421 | ||
|
|
4102cf4688 | ||
|
|
dc977e6630 | ||
|
|
05deabd775 |
23
.rubocop.yml
23
.rubocop.yml
@@ -1,23 +1,14 @@
|
||||
require: rubocop-performance
|
||||
AllCops:
|
||||
NewCops: enable
|
||||
TargetRubyVersion: 2.5
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
- 'vendor/**/*'
|
||||
Layout/EmptyLinesAroundAttributeAccessor:
|
||||
Enabled: true
|
||||
Layout/LineLength:
|
||||
Max: 120
|
||||
Layout/SpaceAroundMethodCallOperator:
|
||||
Enabled: true
|
||||
Lint/DeprecatedOpenSSLConstant:
|
||||
Enabled: true
|
||||
Lint/UriEscapeUnescape:
|
||||
Enabled: false
|
||||
Lint/RaiseException:
|
||||
Enabled: true
|
||||
Lint/StructNewOverride:
|
||||
Enabled: true
|
||||
Metrics/AbcSize:
|
||||
Max: 25
|
||||
Metrics/BlockLength:
|
||||
@@ -28,7 +19,7 @@ Metrics/ClassLength:
|
||||
Exclude:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Metrics/CyclomaticComplexity:
|
||||
Max: 8
|
||||
Max: 10
|
||||
Metrics/MethodLength:
|
||||
Max: 20
|
||||
Exclude:
|
||||
@@ -37,18 +28,8 @@ Style/ClassVars:
|
||||
Enabled: false
|
||||
Style/Documentation:
|
||||
Enabled: false
|
||||
Style/ExponentialNotation:
|
||||
Enabled: true
|
||||
Style/FormatStringToken:
|
||||
Enabled: false
|
||||
Style/HashEachMethods:
|
||||
Enabled: true
|
||||
Style/HashTransformKeys:
|
||||
Enabled: true
|
||||
Style/HashTransformValues:
|
||||
Enabled: true
|
||||
Style/NumericPredicate:
|
||||
Exclude:
|
||||
- 'app/controllers/vuln_api.rb'
|
||||
Style/SlicingWithRange:
|
||||
Enabled: true
|
||||
|
||||
16
Dockerfile
16
Dockerfile
@@ -1,16 +1,16 @@
|
||||
FROM ruby:2.6.3-alpine AS builder
|
||||
FROM ruby:2.7.1-alpine AS builder
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
|
||||
ARG BUNDLER_ARGS="--jobs=8 --without test development"
|
||||
|
||||
RUN echo "gem: --no-ri --no-rdoc" > /etc/gemrc
|
||||
RUN echo "install: --no-document --no-post-install-message\nupdate: --no-document --no-post-install-message" > /etc/gemrc
|
||||
|
||||
COPY . /wpscan
|
||||
|
||||
RUN apk add --no-cache git libcurl ruby-dev libffi-dev make gcc musl-dev zlib-dev procps sqlite-dev && \
|
||||
bundle install --system --clean --no-cache --gemfile=/wpscan/Gemfile $BUNDLER_ARGS && \
|
||||
# temp fix for https://github.com/bundler/bundler/issues/6680
|
||||
rm -rf /usr/local/bundle/cache
|
||||
bundle config force_ruby_platform true && \
|
||||
bundle config disable_version_check 'true' && \
|
||||
bundle config without "test development" && \
|
||||
bundle config path.system 'true' && \
|
||||
bundle install --gemfile=/wpscan/Gemfile --jobs=8
|
||||
|
||||
WORKDIR /wpscan
|
||||
RUN rake install --trace
|
||||
@@ -19,7 +19,7 @@ RUN rake install --trace
|
||||
RUN chmod -R a+r /usr/local/bundle
|
||||
|
||||
|
||||
FROM ruby:2.6.3-alpine
|
||||
FROM ruby:2.7.1-alpine
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
|
||||
RUN adduser -h /wpscan -g WPScan -D wpscan
|
||||
|
||||
@@ -23,27 +23,32 @@ module WPScan
|
||||
]
|
||||
end
|
||||
|
||||
def run
|
||||
return unless ParsedCli.passwords
|
||||
|
||||
if user_interaction?
|
||||
output('@info',
|
||||
msg: "Performing password attack on #{attacker.titleize} against #{users.size} user/s")
|
||||
end
|
||||
|
||||
attack_opts = {
|
||||
def attack_opts
|
||||
@attack_opts ||= {
|
||||
show_progression: user_interaction?,
|
||||
multicall_max_passwords: ParsedCli.multicall_max_passwords
|
||||
}
|
||||
end
|
||||
|
||||
def run
|
||||
return unless ParsedCli.passwords
|
||||
|
||||
begin
|
||||
found = []
|
||||
|
||||
attacker.attack(users, passwords(ParsedCli.passwords), attack_opts) do |user|
|
||||
if user_interaction?
|
||||
output('@info',
|
||||
msg: "Performing password attack on #{attacker.titleize} against #{users.size} user/s")
|
||||
end
|
||||
|
||||
attacker.attack(users, ParsedCli.passwords, attack_opts) do |user|
|
||||
found << user
|
||||
|
||||
attacker.progress_bar.log("[SUCCESS] - #{user.username} / #{user.password}")
|
||||
end
|
||||
rescue Error::NoLoginInterfaceDetected => e
|
||||
# TODO: Maybe output that in JSON as well.
|
||||
output('@notice', msg: e.to_s) if user_interaction?
|
||||
ensure
|
||||
output('users', users: found)
|
||||
end
|
||||
@@ -65,6 +70,8 @@ module WPScan
|
||||
|
||||
case ParsedCli.password_attack
|
||||
when :wp_login
|
||||
raise Error::NoLoginInterfaceDetected unless target.login_url
|
||||
|
||||
Finders::Passwords::WpLogin.new(target)
|
||||
when :xmlrpc
|
||||
raise Error::XMLRPCNotDetected unless xmlrpc
|
||||
@@ -82,7 +89,7 @@ module WPScan
|
||||
if xmlrpc&.enabled? &&
|
||||
xmlrpc.available_methods.include?('wp.getUsersBlogs') &&
|
||||
xmlrpc.method_call('wp.getUsersBlogs', [SecureRandom.hex[0, 6], SecureRandom.hex[0, 4]])
|
||||
.run.body !~ /XML\-RPC services are disabled/
|
||||
.run.body !~ /XML-RPC services are disabled/
|
||||
|
||||
true
|
||||
else
|
||||
@@ -100,8 +107,10 @@ module WPScan
|
||||
else
|
||||
Finders::Passwords::XMLRPC.new(xmlrpc)
|
||||
end
|
||||
else
|
||||
elsif target.login_url
|
||||
Finders::Passwords::WpLogin.new(target)
|
||||
else
|
||||
raise Error::NoLoginInterfaceDetected
|
||||
end
|
||||
end
|
||||
|
||||
@@ -113,15 +122,6 @@ module WPScan
|
||||
acc << Model::User.new(elem.chomp)
|
||||
end
|
||||
end
|
||||
|
||||
# @param [ String ] wordlist_path
|
||||
#
|
||||
# @return [ Array<String> ]
|
||||
def passwords(wordlist_path)
|
||||
@passwords ||= File.open(wordlist_path).reduce([]) do |acc, elem|
|
||||
acc << elem.chomp
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -7,7 +7,7 @@ module WPScan
|
||||
class MuPlugins < CMSScanner::Finders::Finder
|
||||
# @return [ InterestingFinding ]
|
||||
def passive(_opts = {})
|
||||
pattern = %r{#{target.content_dir}/mu\-plugins/}i
|
||||
pattern = %r{#{target.content_dir}/mu-plugins/}i
|
||||
|
||||
target.in_scope_uris(target.homepage_res, '(//@href|//@src)[contains(., "mu-plugins")]') do |uri|
|
||||
next unless uri.path&.match?(pattern)
|
||||
|
||||
@@ -12,8 +12,8 @@ module WPScan
|
||||
location = res.headers_hash['location']
|
||||
|
||||
return unless [200, 302].include?(res.code)
|
||||
return if res.code == 302 && location =~ /wp-login\.php\?action=register/
|
||||
return unless res.code == 200 || res.code == 302 && location =~ /wp-signup\.php/
|
||||
return if res.code == 302 && location&.include?('wp-login.php?action=register')
|
||||
return unless res.code == 200 || res.code == 302 && location&.include?('wp-signup.php')
|
||||
|
||||
target.multisite = true
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ module WPScan
|
||||
|
||||
def passive_from_css_href(res, opts)
|
||||
target.in_scope_uris(res, '//link/@href[contains(., "style.css")]') do |uri|
|
||||
next unless uri.path =~ %r{/themes/([^\/]+)/style.css\z}i
|
||||
next unless uri.path =~ %r{/themes/([^/]+)/style.css\z}i
|
||||
|
||||
return create_theme(Regexp.last_match[1], uri.to_s, opts)
|
||||
end
|
||||
@@ -33,7 +33,7 @@ module WPScan
|
||||
code = tag.text.to_s
|
||||
next if code.empty?
|
||||
|
||||
next unless code =~ %r{#{item_code_pattern('themes')}\\?/style\.css[^"'\( ]*}i
|
||||
next unless code =~ %r{#{item_code_pattern('themes')}\\?/style\.css[^"'( ]*}i
|
||||
|
||||
return create_theme(Regexp.last_match[1], Regexp.last_match[0].strip, opts)
|
||||
end
|
||||
|
||||
@@ -13,7 +13,7 @@ module WPScan
|
||||
|
||||
def valid_credentials?(response)
|
||||
response.code == 302 &&
|
||||
[*response.headers['Set-Cookie']]&.any? { |cookie| cookie =~ /wordpress_logged_in_/i }
|
||||
Array(response.headers['Set-Cookie'])&.any? { |cookie| cookie =~ /wordpress_logged_in_/i }
|
||||
end
|
||||
|
||||
def errored_response?(response)
|
||||
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def valid_credentials?(response)
|
||||
response.code == 200 && response.body =~ /blogName/
|
||||
response.code == 200 && response.body.include?('blogName')
|
||||
end
|
||||
|
||||
def errored_response?(response)
|
||||
|
||||
@@ -22,8 +22,30 @@ module WPScan
|
||||
target.multi_call(methods, cache_ttl: 0).run
|
||||
end
|
||||
|
||||
# @param [ IO ] file
|
||||
# @param [ Integer ] passwords_size
|
||||
# @return [ Array<String> ] The passwords from the last checked position in the file until there are
|
||||
# passwords_size passwords retrieved
|
||||
def passwords_from_wordlist(file, passwords_size)
|
||||
pwds = []
|
||||
added_pwds = 0
|
||||
|
||||
return pwds if passwords_size.zero?
|
||||
|
||||
# Make sure that the main code does not call #sysseek or #count etc
|
||||
# otherwise the file descriptor will be set to somwehere else
|
||||
file.each_line(chomp: true) do |line|
|
||||
pwds << line
|
||||
added_pwds += 1
|
||||
|
||||
break if added_pwds == passwords_size
|
||||
end
|
||||
|
||||
pwds
|
||||
end
|
||||
|
||||
# @param [ Array<Model::User> ] users
|
||||
# @param [ Array<String> ] passwords
|
||||
# @param [ String ] wordlist_path
|
||||
# @param [ Hash ] opts
|
||||
# @option opts [ Boolean ] :show_progression
|
||||
# @option opts [ Integer ] :multicall_max_passwords
|
||||
@@ -33,18 +55,22 @@ module WPScan
|
||||
# TODO: Make rubocop happy about metrics etc
|
||||
#
|
||||
# rubocop:disable all
|
||||
def attack(users, passwords, opts = {})
|
||||
wordlist_index = 0
|
||||
def attack(users, wordlist_path, opts = {})
|
||||
checked_passwords = 0
|
||||
wordlist = File.open(wordlist_path)
|
||||
wordlist_size = wordlist.count
|
||||
max_passwords = opts[:multicall_max_passwords]
|
||||
current_passwords_size = passwords_size(max_passwords, users.size)
|
||||
|
||||
create_progress_bar(total: (passwords.size / current_passwords_size.round(1)).ceil,
|
||||
create_progress_bar(total: (wordlist_size / current_passwords_size.round(1)).ceil,
|
||||
show_progression: opts[:show_progression])
|
||||
|
||||
wordlist.sysseek(0) # reset the descriptor to the beginning of the file as it changed with #count
|
||||
|
||||
loop do
|
||||
current_users = users.select { |user| user.password.nil? }
|
||||
current_passwords = passwords[wordlist_index, current_passwords_size]
|
||||
wordlist_index += current_passwords_size
|
||||
current_users = users.select { |user| user.password.nil? }
|
||||
current_passwords = passwords_from_wordlist(wordlist, current_passwords_size)
|
||||
checked_passwords += current_passwords_size
|
||||
|
||||
break if current_users.empty? || current_passwords.nil? || current_passwords.empty?
|
||||
|
||||
@@ -75,9 +101,9 @@ module WPScan
|
||||
progress_bar.stop
|
||||
break
|
||||
end
|
||||
|
||||
|
||||
begin
|
||||
progress_bar.total = progress_bar.progress + ((passwords.size - wordlist_index) / current_passwords_size.round(1)).ceil
|
||||
progress_bar.total = progress_bar.progress + ((wordlist_size - checked_passwords) / current_passwords_size.round(1)).ceil
|
||||
rescue ProgressBar::InvalidProgressError
|
||||
end
|
||||
end
|
||||
|
||||
@@ -48,7 +48,7 @@ module WPScan
|
||||
#
|
||||
# @return [ String, nil ] The version number detected from the stable tag
|
||||
def from_stable_tag(body)
|
||||
return unless body =~ /\b(?:stable tag|version):\s*(?!trunk)([0-9a-z\.-]+)/i
|
||||
return unless body =~ /\b(?:stable tag|version):\s*(?!trunk)([0-9a-z.-]+)/i
|
||||
|
||||
number = Regexp.last_match[1]
|
||||
|
||||
@@ -59,7 +59,7 @@ module WPScan
|
||||
#
|
||||
# @return [ String, nil ] The best version number detected from the changelog section
|
||||
def from_changelog_section(body)
|
||||
extracted_versions = body.scan(%r{[=]+\s+(?:v(?:ersion)?\s*)?([0-9\.-]+)[ \ta-z0-9\(\)\.\-\/]*[=]+}i)
|
||||
extracted_versions = body.scan(%r{=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[ \ta-z0-9().\-/]*=+}i)
|
||||
|
||||
return if extracted_versions.nil? || extracted_versions.empty?
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ module WPScan
|
||||
|
||||
# @return [ Version ]
|
||||
def style_version
|
||||
return unless Browser.get(target.style_url).body =~ /Version:[\t ]*(?!trunk)([0-9a-z\.-]+)/i
|
||||
return unless Browser.get(target.style_url).body =~ /Version:[\t ]*(?!trunk)([0-9a-z.-]+)/i
|
||||
|
||||
Model::Version.new(
|
||||
Regexp.last_match[1],
|
||||
|
||||
@@ -6,7 +6,7 @@ require_relative 'users/oembed_api'
|
||||
require_relative 'users/rss_generator'
|
||||
require_relative 'users/author_id_brute_forcing'
|
||||
require_relative 'users/login_error_messages'
|
||||
require_relative 'users/yoast_seo_author_sitemap.rb'
|
||||
require_relative 'users/yoast_seo_author_sitemap'
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
|
||||
@@ -37,7 +37,7 @@ module WPScan
|
||||
# usernames from the potential Users found
|
||||
unames = opts[:found].map(&:username)
|
||||
|
||||
[*opts[:list]].each { |uname| unames << uname.chomp }
|
||||
Array(opts[:list]).each { |uname| unames << uname.chomp }
|
||||
|
||||
unames.uniq
|
||||
end
|
||||
|
||||
@@ -13,7 +13,7 @@ module WPScan
|
||||
urls.each do |url|
|
||||
res = Browser.get_and_follow_location(url)
|
||||
|
||||
next unless res.code == 200 && res.body =~ /<dc\:creator>/i
|
||||
next unless res.code == 200 && res.body =~ /<dc:creator>/i
|
||||
|
||||
potential_usernames = []
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ module WPScan
|
||||
found = []
|
||||
|
||||
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
|
||||
username = user_tag.text.to_s[%r{/author/([^\/]+)/}, 1]
|
||||
username = user_tag.text.to_s[%r{/author/([^/]+)/}, 1]
|
||||
|
||||
next unless username && !username.strip.empty?
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ module WPScan
|
||||
#
|
||||
# @return [ Regexp ]
|
||||
def item_code_pattern(type)
|
||||
@item_code_pattern ||= %r{["'\( ]#{item_url_pattern(type)}([^\\\/\)"']+)}i
|
||||
@item_code_pattern ||= %r{["'( ]#{item_url_pattern(type)}([^\\/)"']+)}i
|
||||
end
|
||||
|
||||
# @param [ String ] type
|
||||
@@ -66,9 +66,9 @@ module WPScan
|
||||
item_url = type == 'plugins' ? target.plugins_url : target.content_url
|
||||
|
||||
url = /#{item_url.gsub(/\A(?:https?)/i, 'https?').gsub('/', '\\\\\?\/')}/i
|
||||
item_dir = %r{(?:#{url}|\\?\/#{item_dir.gsub('/', '\\\\\?\/')}\\?/)}i
|
||||
item_dir = %r{(?:#{url}|\\?/#{item_dir.gsub('/', '\\\\\?\/')}\\?/)}i
|
||||
|
||||
type == 'plugins' ? item_dir : %r{#{item_dir}#{type}\\?\/}i
|
||||
type == 'plugins' ? item_dir : %r{#{item_dir}#{type}\\?/}i
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -38,7 +38,7 @@ module WPScan
|
||||
|
||||
# @return [ Array<String> ]
|
||||
def potential_readme_filenames
|
||||
@potential_readme_filenames ||= [*(DB::DynamicFinders::Plugin.df_data.dig(slug, 'Readme', 'path') || super)]
|
||||
@potential_readme_filenames ||= Array((DB::DynamicFinders::Plugin.df_data.dig(slug, 'Readme', 'path') || super))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -45,7 +45,7 @@ module WPScan
|
||||
# @return [ Theme ]
|
||||
def parent_theme
|
||||
return unless template
|
||||
return unless style_body =~ /^@import\surl\(["']?([^"'\)]+)["']?\);\s*$/i
|
||||
return unless style_body =~ /^@import\surl\(["']?([^"')]+)["']?\);\s*$/i
|
||||
|
||||
opts = detection_opts.merge(
|
||||
style_url: url(Regexp.last_match[1]),
|
||||
@@ -101,7 +101,7 @@ module WPScan
|
||||
#
|
||||
# @return [ String ]
|
||||
def parse_style_tag(body, tag)
|
||||
value = body[/#{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
|
||||
|
||||
@@ -39,7 +39,7 @@ module WPScan
|
||||
|
||||
@vulnerabilities = []
|
||||
|
||||
[*db_data['vulnerabilities']].each do |json_vuln|
|
||||
Array(db_data['vulnerabilities']).each do |json_vuln|
|
||||
vulnerability = Vulnerability.load_from_json(json_vuln)
|
||||
@vulnerabilities << vulnerability if vulnerable_to?(vulnerability)
|
||||
end
|
||||
|
||||
@@ -53,7 +53,7 @@ module WPScan
|
||||
|
||||
@vulnerabilities = []
|
||||
|
||||
[*db_data['vulnerabilities']].each do |json_vuln|
|
||||
Array(db_data['vulnerabilities']).each do |json_vuln|
|
||||
@vulnerabilities << Vulnerability.load_from_json(json_vuln)
|
||||
end
|
||||
|
||||
|
||||
@@ -29,5 +29,11 @@ module WPScan
|
||||
' use the --scope option or make sure the --url value given is the correct one'
|
||||
end
|
||||
end
|
||||
|
||||
class NoLoginInterfaceDetected < Standard
|
||||
def to_s
|
||||
'Could not find a login interface to perform the password attack against'
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -11,7 +11,7 @@ module WPScan
|
||||
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super.merge(
|
||||
PARSER: nil, KEY: nil, PATTERN: /(?<v>\d+\.[\.\d]+)/, CONFIDENCE: 70
|
||||
PARSER: nil, KEY: nil, PATTERN: /(?<v>\d+\.[.\d]+)/, CONFIDENCE: 70
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(
|
||||
XPATH: nil, FILES: nil, PATTERN: /(?:v|ver|version)\=(?<v>\d+\.[\.\d]+)/i, CONFIDENCE_PER_OCCURENCE: 10
|
||||
XPATH: nil, FILES: nil, PATTERN: /(?:v|ver|version)=(?<v>\d+\.[.\d]+)/i, CONFIDENCE_PER_OCCURENCE: 10
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(
|
||||
XPATH: nil, PATTERN: /\A(?<v>\d+\.[\.\d]+)/, CONFIDENCE: 60
|
||||
XPATH: nil, PATTERN: /\A(?<v>\d+\.[.\d]+)/, CONFIDENCE: 60
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ module WPScan
|
||||
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(PATTERN: /ver\=(?<v>\d+\.[\.\d]+)/i)
|
||||
@child_class_constants ||= super().merge(PATTERN: /ver=(?<v>\d+\.[.\d]+)/i)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ end
|
||||
#
|
||||
# @return [ Symbol ]
|
||||
def classify_slug(slug)
|
||||
classified = slug.to_s.gsub(/[^a-z\d\-]/i, '-').gsub(/\-{1,}/, '_').camelize.to_s
|
||||
classified = slug.to_s.gsub(/[^a-z\d\-]/i, '-').gsub(/-{1,}/, '_').camelize.to_s
|
||||
classified = "D_#{classified}" if /\d/.match?(classified[0])
|
||||
|
||||
classified.to_sym
|
||||
|
||||
@@ -19,13 +19,13 @@ module WPScan
|
||||
# @return [ Boolean ]
|
||||
def vulnerable?
|
||||
[@wp_version, @main_theme, @plugins, @themes, @timthumbs].each do |e|
|
||||
[*e].each { |ae| return true if ae && ae.vulnerable? } # rubocop:disable Style/SafeNavigation
|
||||
Array(e).each { |ae| return true if ae && ae.vulnerable? } # rubocop:disable Style/SafeNavigation
|
||||
end
|
||||
|
||||
return true unless [*@config_backups].empty?
|
||||
return true unless [*@db_exports].empty?
|
||||
return true unless Array(@config_backups).empty?
|
||||
return true unless Array(@db_exports).empty?
|
||||
|
||||
[*@users].each { |u| return true if u.password }
|
||||
Array(@users).each { |u| return true if u.password }
|
||||
|
||||
false
|
||||
end
|
||||
|
||||
@@ -11,9 +11,9 @@ module WPScan
|
||||
module WordPress
|
||||
include CMSScanner::Target::Platform::PHP
|
||||
|
||||
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
|
||||
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
|
||||
@@ -139,15 +139,16 @@ module WPScan
|
||||
# the first time the method is called, and the effective_url is then used
|
||||
# if suitable, otherwise the default wp-login will be.
|
||||
#
|
||||
# @return [ String ] The URL to the login page
|
||||
# @return [ String, false ] The URL to the login page or false if not detected
|
||||
def login_url
|
||||
return @login_url if @login_url
|
||||
return @login_url unless @login_url.nil?
|
||||
|
||||
@login_url = url('wp-login.php')
|
||||
@login_url = url('wp-login.php') # TODO: url(ParsedCli.login_uri)
|
||||
|
||||
res = Browser.get_and_follow_location(@login_url)
|
||||
|
||||
@login_url = res.effective_url if res.effective_url =~ /wp\-login\.php\z/i && in_scope?(res.effective_url)
|
||||
@login_url = res.effective_url if res.effective_url =~ /wp-login\.php\z/i && in_scope?(res.effective_url)
|
||||
@login_url = false if res.code == 404
|
||||
|
||||
@login_url
|
||||
end
|
||||
|
||||
@@ -104,7 +104,7 @@ module WPScan
|
||||
return @sub_dir unless @sub_dir.nil?
|
||||
|
||||
# url_pattern is from CMSScanner::Target
|
||||
pattern = %r{#{url_pattern}(.+?)/(?:xmlrpc\.php|wp\-includes/)}i
|
||||
pattern = %r{#{url_pattern}(.+?)/(?:xmlrpc\.php|wp-includes/)}i
|
||||
xpath = '(//@src|//@href|//@data-src)[contains(., "xmlrpc.php") or contains(., "wp-includes/")]'
|
||||
|
||||
[homepage_res, error_404_res].each do |page_res|
|
||||
@@ -124,9 +124,9 @@ module WPScan
|
||||
def url(path = nil)
|
||||
return @uri.to_s unless path
|
||||
|
||||
if %r{wp\-content/plugins}i.match?(path)
|
||||
if %r{wp-content/plugins}i.match?(path)
|
||||
path = +path.gsub('wp-content/plugins', plugins_dir)
|
||||
elsif /wp\-content/i.match?(path)
|
||||
elsif /wp-content/i.match?(path)
|
||||
path = +path.gsub('wp-content', content_dir)
|
||||
elsif path[0] != '/' && sub_dir
|
||||
path = "#{sub_dir}/#{path}"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.2'
|
||||
VERSION = '3.8.3'
|
||||
end
|
||||
|
||||
@@ -21,7 +21,7 @@ describe WPScan::Controller::PasswordAttack do
|
||||
|
||||
describe '#users' do
|
||||
context 'when no --usernames' do
|
||||
it 'calles target.users' do
|
||||
it 'calls target.users' do
|
||||
expect(controller.target).to receive(:users)
|
||||
controller.users
|
||||
end
|
||||
@@ -40,10 +40,6 @@ describe WPScan::Controller::PasswordAttack do
|
||||
end
|
||||
end
|
||||
|
||||
describe '#passwords' do
|
||||
xit
|
||||
end
|
||||
|
||||
describe '#run' do
|
||||
context 'when no --passwords is supplied' do
|
||||
it 'does not run the attacker' do
|
||||
@@ -107,15 +103,34 @@ describe WPScan::Controller::PasswordAttack do
|
||||
end
|
||||
|
||||
describe '#attacker' do
|
||||
before do
|
||||
allow(controller.target).to receive(:sub_dir)
|
||||
controller.target.instance_variable_set(:@login_url, nil)
|
||||
end
|
||||
|
||||
context 'when --password-attack provided' do
|
||||
let(:cli_args) { "#{super()} --password-attack #{attack}" }
|
||||
|
||||
context 'when wp-login' do
|
||||
before { stub_request(:get, controller.target.url('wp-login.php')).to_return(status: status) }
|
||||
|
||||
let(:attack) { 'wp-login' }
|
||||
|
||||
it 'returns the correct object' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
context 'when available' do
|
||||
let(:status) { 200 }
|
||||
|
||||
it 'returns the correct object' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
end
|
||||
end
|
||||
|
||||
context 'when not available (404)' do
|
||||
let(:status) { 404 }
|
||||
|
||||
it 'raises an error' do
|
||||
expect { controller.attacker }.to raise_error(WPScan::Error::NoLoginInterfaceDetected)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -172,11 +187,26 @@ describe WPScan::Controller::PasswordAttack do
|
||||
|
||||
context 'when automatic detection' do
|
||||
context 'when xmlrpc_get_users_blogs_enabled? is false' do
|
||||
it 'returns the WpLogin' do
|
||||
before do
|
||||
expect(controller).to receive(:xmlrpc_get_users_blogs_enabled?).and_return(false)
|
||||
stub_request(:get, controller.target.url('wp-login.php')).to_return(status: status)
|
||||
end
|
||||
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
context 'when wp-login available' do
|
||||
let(:status) { 200 }
|
||||
|
||||
it 'returns the WpLogin' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
end
|
||||
end
|
||||
|
||||
context 'when wp-login.php not available' do
|
||||
let(:status) { 404 }
|
||||
|
||||
it 'raises an error' do
|
||||
expect { controller.attacker }.to raise_error(WPScan::Error::NoLoginInterfaceDetected)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -24,11 +24,13 @@ describe WPScan::Finders::Passwords::XMLRPC do
|
||||
</methodResponse>'
|
||||
|
||||
describe '#attack' do
|
||||
let(:wordlist_path) { FINDERS_FIXTURES.join('passwords.txt').to_s }
|
||||
|
||||
context 'when no valid credentials' do
|
||||
before do
|
||||
stub_request(:post, url).to_return(status: status, body: RESPONSE_403_BODY)
|
||||
|
||||
finder.attack(users, %w[pwd])
|
||||
finder.attack(users, wordlist_path)
|
||||
end
|
||||
|
||||
let(:users) { %w[admin].map { |username| WPScan::Model::User.new(username) } }
|
||||
|
||||
2001
spec/fixtures/db/dynamic_finders.yml
vendored
2001
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
695
spec/fixtures/dynamic_finders/expected.yml
vendored
695
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,254 @@
|
||||
# Copyright 2019
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ACh Updates Manager v1.0.0\n"
|
||||
"POT-Creation-Date: 2019-05-29 10:50+0100\n"
|
||||
"PO-Revision-Date: 2019-05-29 10:50+0100\n"
|
||||
"Last-Translator: Ali Chopani <Chopaniali@gmail.com>\n"
|
||||
"Language-Team: A. Ch <Chopaniali@gmail.com>\n"
|
||||
"Report-Msgid-Bugs-To: Ali Chopani <Chopaniali@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Textdomain-Support: yes"
|
||||
"X-Generator: Poedit 2.2\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__;_x;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Language: English\n"
|
||||
"X-Poedit-Country: UNITED STATES\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
|
||||
#: ACh-Updates-Manager.php:5
|
||||
msgid "The ACh Updates and Notices Manager is an easy way to manage all your WordPress updates and notifications with one click! e.g. Disable all updates or notifications, Disable automatic updates, Hide errors and warnings messages, Update themes and plugins from zip file and etc."
|
||||
msgstr ""
|
||||
|
||||
#: ACh-Updates-Manager.php:65
|
||||
msgid "Thanks for installing %1$s v%2$s plugin. Click <a href="%3$s">here</a> to configure plugin settings."
|
||||
msgstr ""
|
||||
|
||||
#: ACh-Updates-Manager.php:75
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: ACh-Updates-Manager.php:86
|
||||
#: includes/acupnm-settings.php:34
|
||||
#: includes/acupnm-settings.php:144
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: ACh-Updates-Manager.php:87
|
||||
msgid "Donate"
|
||||
msgstr ""
|
||||
|
||||
#: ACh-Updates-Manager.php:103
|
||||
#: includes/acupnm-settings.php:27
|
||||
msgid "ACh Updates and Notices Manager"
|
||||
msgstr ""
|
||||
|
||||
#: ACh-Updates-Manager.php:103
|
||||
msgid "Updates Manager"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:28
|
||||
msgid "The ACh Update Manager plugin for WordPress. Manage all your WordPress updates and notifications with one click!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:33
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:44
|
||||
msgid "✔ Disable all WP updates and notifs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:53
|
||||
msgid "Disable all WordPress core, themes, plugins and translations updates and notifications."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:57
|
||||
msgid "✔ Hide all notices from WP dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:66
|
||||
msgid "Disable all notices from the WordPress dashboard. e.g. errors, updates, warning, rate us, license, dismissible and etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:70
|
||||
msgid "✔ Disable plugins updates and notifs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:79
|
||||
msgid "Disable the WordPress plugins updates and notifications."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:83
|
||||
msgid "✔ Disable themes updates and notifs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:92
|
||||
msgid "Disable the WordPress themes updates and notifications."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:96
|
||||
msgid "✔ Disable WP core update and notifs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:105
|
||||
msgid "Disable the WordPress core update and notifications."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:109
|
||||
msgid "✔ Hide WordPress core update notice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:118
|
||||
msgid "Hide WordPress core update notice from WP dashboard."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:122
|
||||
msgid "✔ Update theme and plugin from zip"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:131
|
||||
msgid "This feature allows you to update plugins and themes using a zip file. While upgrading, a backup copy of the old theme or plugin is first created. This allows you to install the old version in case of problems with the new version."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:147
|
||||
msgid "If you need assistance, see our help resources."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:148
|
||||
msgid "Please make a search to find help with your problem, or head over to our support forum to ask a question."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:152
|
||||
msgid "Visit my site"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:155
|
||||
msgid "Send email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:158
|
||||
msgid "Support forum"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:167
|
||||
msgid "About us"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:170
|
||||
msgid "The ACh Updates and Notices Manager is an easy way to manage all your WordPress updates and notifications with one click!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:171
|
||||
msgid "ACh Updates and Notices Manager was developed by <a class="achupnm-link-text" href="https://ach.li" target="_blank">A. Ch</a> and is <a class="achupnm-link-text" href="https://wordpress.org" target="_blank">available for free</a> on WordPress."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:172
|
||||
msgid "We work hard to give you an exceptional premium products and 5 star support. To show your appreciation you can buy us a coffee or simply by sharing or follow us on social media."
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:176
|
||||
msgid "Buy us a coffee"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:177
|
||||
msgid "Like us"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:178
|
||||
msgid "Tweet us"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:179
|
||||
msgid "Rate us"
|
||||
msgstr ""
|
||||
|
||||
#: includes/acupnm-settings.php:191
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-plugin-updater.php:41
|
||||
msgid "Upgrading the plugin…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-plugin-updater.php:42
|
||||
msgid "Backing up the old version of the plugin…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-plugin-updater.php:88
|
||||
msgid "A backup zip file of the old plugin version can be downloaded <a href="%1$s">here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-plugin-updater.php:98
|
||||
msgid "Moving the old version of the plugin to a new directory…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-plugin-updater.php:114
|
||||
msgid "Unable to find a new directory name to move the old version of the plugin to. No backup will be created."
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-plugin-updater.php:120
|
||||
msgid "Moved the old version of the plugin to a new plugin directory named %1$s. This directory should be backed up and removed from the site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-plugin-updater.php:122
|
||||
msgid "Unable to move the old version of the plugin to a new directory. No backup will be created."
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-plugin-updater.php:142
|
||||
msgid "A plugin backup can not be created since a destination path for the backup file could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-plugin-updater.php:167
|
||||
msgid "A plugin backup can not be created as creation of the zip file failed with the following error: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-plugin-updater.php:174
|
||||
msgid "Plugin Backup - %1$s - %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-theme-updater.php:41
|
||||
msgid "Upgrading the theme…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-theme-updater.php:42
|
||||
msgid "Backing up the old version of the theme…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-theme-updater.php:60
|
||||
msgid "A backup zip file of the old theme version can be downloaded <a href="%1$s">here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-theme-updater.php:70
|
||||
msgid "Moving the old version of the theme to a new directory…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-theme-updater.php:91
|
||||
msgid "Unable to find a new directory name to move the old version of the theme to. No backup will be created."
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-theme-updater.php:97
|
||||
msgid "Moved the old version of the theme to a new theme directory named %1$s. This directory should be backed up and removed from the site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-theme-updater.php:99
|
||||
msgid "Unable to move the old version of the theme to a new directory. No backup will be created."
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-theme-updater.php:119
|
||||
msgid "A theme backup can not be created since a destination path for the backup file could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-theme-updater.php:148
|
||||
msgid "A theme backup can not be created as creation of the zip file failed with the following error: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/easy-update/ach-theme-updater.php:155
|
||||
msgid "Theme Backup - %1$s - %2$s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,42 @@
|
||||
# Copyright (C) 2020 Acowebs
|
||||
# This file is distributed under the same license as the Product Labels For Woocommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Product Labels For Woocommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocomerce-sales-badge\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-09T05:22:44+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: aco-product-labels-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
msgid "Product Labels For Woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://acowebs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acoplw-backend.php:130
|
||||
#: includes/class-acoplw-backend.php:144
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acoplw-backend.php:132
|
||||
#: includes/class-acoplw-backend.php:145
|
||||
msgid "Product Lists"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-acoplw-backend.php:134
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/affiliatewp-blocks/composer_file/package.json
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/affiliatewp-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "affiliatewp-blocks",
|
||||
"version": "1.0.1",
|
||||
"description": "Blocks for AffiliateWP.",
|
||||
"author": "Sandhills Development, LLC",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^7.2.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/icons": "^1.4.0",
|
||||
"@wordpress/url": "^2.14.0",
|
||||
"classnames": "^2.2.6",
|
||||
"lodash": "^4.17.15",
|
||||
"trailing-slash-it": "^0.3.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,316 @@
|
||||
# Copyright (C) 2020 Konstantin Kröpfl
|
||||
# This file is distributed under the same license as the Attachment Usage plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Attachment Usage 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/attachment-usage\n"
|
||||
"POT-Creation-Date: 2020-07-01 17:28+0200\n"
|
||||
"PO-Revision-Date: 2020-07-01 17:28+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.12\n"
|
||||
"X-Domain: attachment-usage\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Attachment Usage"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/attachment-usage/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"This plugin shows the usage of attachments (posts, widgets, products) on the "
|
||||
"website."
|
||||
msgstr ""
|
||||
"Dieses Plugin zeigt die Verwendung von Anhängen (Beiträge, Widgets, "
|
||||
"Produkten) auf der Website an."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Konstantin Kröpfl"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "#"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-attachment-usage-admin.php:135
|
||||
#: admin/classes/attachment-list-table.php:13
|
||||
#: includes/class-attachment-usage.php:214
|
||||
msgid "Attachment Usages"
|
||||
msgstr "Anhang-Verwendung"
|
||||
|
||||
#: admin/class-attachment-usage-admin.php:155
|
||||
msgid "No valid Ajax request"
|
||||
msgstr "keine gültige Ajax Anfrage"
|
||||
|
||||
#: admin/class-attachment-usage-admin.php:163
|
||||
msgid "No valid Attachment Id sent"
|
||||
msgstr "keine gültige Anhangs-Id übermittelt"
|
||||
|
||||
#: admin/classes/attachment-item-usage-db-controller.php:67
|
||||
#: admin/classes/attachment-list-table.php:29
|
||||
msgid "found"
|
||||
msgstr "gefunden"
|
||||
|
||||
#: admin/classes/attachment-item-usage-db-controller.php:69
|
||||
#: admin/classes/attachment-list-table.php:27
|
||||
msgid "not-found"
|
||||
msgstr "nicht gefunden"
|
||||
|
||||
#: admin/classes/fetch-button-content-helper.php:18
|
||||
#: admin/js/attachment-usage-media-library-behavior.js:62
|
||||
msgid "Fetch Attachment Usage"
|
||||
msgstr "Anhang aktualisieren"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:25
|
||||
msgid "(in widget)"
|
||||
msgstr "(in Widget)"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:26
|
||||
msgid "Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:31
|
||||
msgid "(in product category)"
|
||||
msgstr "(in Produktkategorie)"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:32
|
||||
msgid "Product Category"
|
||||
msgstr "Produktkategorie"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:37
|
||||
msgid "(in product gallery)"
|
||||
msgstr "(in Produktgalerie)"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:38
|
||||
msgid "Product Attachment"
|
||||
msgstr "Produktanhang"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:43
|
||||
msgid "(in product content)"
|
||||
msgstr "(in Produktinhalt)"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:44
|
||||
msgid "Product Content"
|
||||
msgstr "Produktinhalt"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:49
|
||||
msgid "(in post content)"
|
||||
msgstr "(in Beitragsinhalt)"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:50
|
||||
msgid "Post Content"
|
||||
msgstr "Beitraginhalt"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:55
|
||||
msgid "(in page content)"
|
||||
msgstr "(in Seiteninhalt)"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:56
|
||||
msgid "Page Content"
|
||||
msgstr "Seiteninhalt"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:61
|
||||
msgid "(thumbnail)"
|
||||
msgstr "(Miniaturbild)"
|
||||
|
||||
#: admin/classes/output_setting/attachment-output-setting-factory.php:62
|
||||
msgid "Post Attachment"
|
||||
msgstr "Beitraganhang"
|
||||
|
||||
#: admin/classes/result_builder/result-builder-controller.php:36
|
||||
msgid "Attachment not found"
|
||||
msgstr "Anhang nicht gefunden"
|
||||
|
||||
#: admin/settings_page/elements/validators/email-validator.php:9
|
||||
msgid "No valid Email"
|
||||
msgstr "keine gültige E-Mail"
|
||||
|
||||
#: admin/settings_page/elements/validators/file-validator.php:9
|
||||
msgid "The entered data is no valid attachment id"
|
||||
msgstr "keine gültige Anhangs-Id"
|
||||
|
||||
#: admin/settings_page/elements/validators/number-validator.php:9
|
||||
msgid "The entered data is not valid - just numbers"
|
||||
msgstr "Daten sind nicht gültig - nur Zahlen"
|
||||
|
||||
#: admin/settings_page/elements/validators/string-validator.php:12
|
||||
msgid "The entered data is not valid - just text"
|
||||
msgstr "Daten sind nicht gültig - nur Text"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/options.php:8
|
||||
msgid "Attachment Usage Settings"
|
||||
msgstr "Attachment Usage Einstellungen"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:15
|
||||
msgid ""
|
||||
"On this page you can modify the appearance and the way how the plugin does "
|
||||
"the lookup. The relevant pages (media upload pages) are referred as:<br> <a "
|
||||
"href=\"%1$s\" target=\"_blank\">Media Grid</a> & <a href=\"%2$s\" target="
|
||||
"\"_blank\">Media List</a>"
|
||||
msgstr ""
|
||||
"Auf dieser Seite kann man die Erscheinung und die Art wie das Plugin nach "
|
||||
"Daten sucht bearbeiten. Die relevanten Seiten (Medienübersichtsseiten) "
|
||||
"werden folgendermaßen bezeichnet: <br> <a href=\"%1$s\" target=\"_blank"
|
||||
"\">Medien-Grid</a> & <a href=\"%2$s\" target=\"_blank\">Medien-Liste</a>"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:25
|
||||
msgid "General Settings"
|
||||
msgstr "Generelle Einstellungen"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:29
|
||||
msgid ""
|
||||
"This section provides general settings, which impacts only the appearance of "
|
||||
"the usage status."
|
||||
msgstr ""
|
||||
"Dieser Abschnitt bietet generelle Einstellungen, welche lediglich die "
|
||||
"Erscheinungsweise des Plugins verändert."
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:38
|
||||
msgid "Performance Settings"
|
||||
msgstr "Performance Einstellungen"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:42
|
||||
msgid ""
|
||||
"This section provides settings for performance, which might have a "
|
||||
"significant impact on the loading time of the media upload pages.</br> If "
|
||||
"you have a rather small site (little number of pages, a few attachments) you "
|
||||
"will not notice a huge difference by switching between the options."
|
||||
msgstr ""
|
||||
"Dieser Abschnitt bietet Performance-Einstellungen, welche sich "
|
||||
"möglicherweise spürbar auf die Ladezeit der Medienbibliothek auf der \"Media "
|
||||
"Upload\" Seite ausüben kann.</br>Falls eine eher kleine Website (geringe "
|
||||
"Anzahl von Seiten, wenig hochgeladen Anhänge) vorhanden ist, werden die "
|
||||
"Änderung kaum spürbar sein."
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:56
|
||||
msgid "Display Attachment Usage Color"
|
||||
msgstr "Farbanzeige für Anhang-Verwendung"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:62
|
||||
msgid ""
|
||||
"By enabling this option, the media grid items will have a colored border "
|
||||
"depending on their usage. Red implies nothing found, whereas green shows an "
|
||||
"usage"
|
||||
msgstr ""
|
||||
"Nach Aktivierung erhalten die Kacheln eine farbige Umrandung in Abhängigkeit "
|
||||
"ihrer Verwendung. Rot steht für nicht gefunden, wohingegen Grün eine "
|
||||
"Verwendung signalisiert."
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:69
|
||||
msgid "Display color"
|
||||
msgstr "Farbe anzeigen"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:70
|
||||
msgid "Hide color"
|
||||
msgstr "Farbe nicht anzeigen"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:78
|
||||
msgid "Filter attachment list by usage"
|
||||
msgstr "Anhänge nach Verwendung sortieren"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:84
|
||||
msgid ""
|
||||
"By enabling this option, the media list view will contain a sortable column, "
|
||||
"which allows to sort the attachments by their usage status (found/not-"
|
||||
"found). This can be helpful to get an overview about not used attachments.</"
|
||||
"br> Furthermore it is important to note that by enabling this option the "
|
||||
"process of saving the relevant information changes and this can lead to "
|
||||
"longer loading times on the media upload pages depending on the overall "
|
||||
"amount of attachments and size of the website."
|
||||
msgstr ""
|
||||
"Nach Aktivierung enthält die Medien-Liste eine sortierbare Spalte, welche es "
|
||||
"ermöglicht Anhänge nach deren Verwendung (gefunden/nicht gefunden) zu "
|
||||
"sortieren. Dies kann hilfreich sein um einen Überblick über nicht verwendete "
|
||||
"Anhänge zu erhalten. </br> Zusätzlich ist es wichtig anzumerken, dass durch "
|
||||
"Verwendung dieser Option sich der Prozess wie Daten in der Datenbank "
|
||||
"gespeichert werden verändert und dies unter Umständen zu längeren Ladezeiten "
|
||||
"auf der Medienübersichtsseite führen kann. Dies ist auch von der Anzahl der "
|
||||
"Anhänge und der Größe der Website abhängig."
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:96
|
||||
msgid "Make media column sortable"
|
||||
msgstr "Medienspalte sortierbar machen"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:97
|
||||
msgid "Do not make media column sortable"
|
||||
msgstr "Medienspalte nicht sortierbar machen"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:105
|
||||
msgid "Sync Attachment Usage on media upload site"
|
||||
msgstr "Synchronisierung der Anhang-Verwendung auf Medienübersichtsseite"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:111
|
||||
msgid ""
|
||||
"By enabling this option, the attachment relevant data will be fetched as "
|
||||
"soon as the media upload pages is opened. By disabling this option, a button "
|
||||
"on the page will trigger the lookup process when clicked."
|
||||
msgstr ""
|
||||
"Nach Aktivierung werden die Verwendungen der Anhänge beim Laden der "
|
||||
"Medienübersichtsseite aktualisiert. Nach Deaktivierung wird ein Button für "
|
||||
"die Aktualisierung auf der Medienübersichtsseite angezeigt."
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:119
|
||||
msgid "Auto-sync attachments usage on page visit"
|
||||
msgstr ""
|
||||
"automatische Synchronisierung der Anhänge beim Aufruf der "
|
||||
"Medienübersichtsseite"
|
||||
|
||||
#: admin/settings_page/pages/attachment_usage_page/page_elements.php:120
|
||||
msgid "Do not auto-sync attachments usage"
|
||||
msgstr ""
|
||||
"keine automatische Synchronisierung der Anhänge beim Aufruf der "
|
||||
"Medienübersichtsseite"
|
||||
|
||||
#: admin/settings_page/setting-string-helper.php:8
|
||||
msgid "Field \"%s\" is required"
|
||||
msgstr "Feld \"%s\" ist verpflichtend"
|
||||
|
||||
#: admin/settings_page/setting-string-helper.php:9
|
||||
msgid "Do not change value of field \"%s\""
|
||||
msgstr "ändere nicht den Wert von Feld \"%s\""
|
||||
|
||||
#: admin/settings_page/setting-string-helper.php:19
|
||||
msgid "Field is required"
|
||||
msgstr "Feld ist verpflichtend"
|
||||
|
||||
#: admin/settings_page/setting-string-helper.php:20
|
||||
msgid "Do not change value of field"
|
||||
msgstr "Ändere nicht den Wert des Feldes"
|
||||
|
||||
#: admin/settings_page/templates/pages/menu_page.php:16
|
||||
#: admin/settings_page/templates/pages/tabbed_menu_page.php:31
|
||||
msgid "Fields marked with * are required"
|
||||
msgstr "Felder mit einem * sind verpflichtend"
|
||||
|
||||
#: admin/settings_page/templates/pages/menu_page.php:19
|
||||
msgid "Save Settings"
|
||||
msgstr "Einstellungen speichen"
|
||||
|
||||
#: admin/settings_page/templates/settings/fields/file.php:7
|
||||
msgid "Upload File"
|
||||
msgstr "Datei hochladen"
|
||||
|
||||
#: admin/settings_page/templates/settings/fields/file.php:14
|
||||
msgid "Remove File"
|
||||
msgstr "Datei entfernen"
|
||||
|
||||
#: admin/settings_page/templates/settings/fields/image.php:8
|
||||
msgid "Upload Image"
|
||||
msgstr "Bild hochladen"
|
||||
|
||||
#: admin/settings_page/templates/settings/fields/image.php:11
|
||||
msgid "Remove Image"
|
||||
msgstr "Bild entfernen"
|
||||
|
||||
#: admin/js/attachment-usage-media-frame.js:19
|
||||
#: admin/js/attachment-usage-media-frame.js:25
|
||||
msgid "Choose Attachment"
|
||||
msgstr "Anhang entfernen"
|
||||
@@ -0,0 +1,179 @@
|
||||
# Copyright (C) 2020 Bluehost
|
||||
# This file is distributed under the GPL V2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Bluehost Site Migrator 1.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/bluehost-site-migrator\n"
|
||||
"POT-Creation-Date: 2020-06-24 20:12:32+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: wp-vue-i18n 1.1.4\n"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Bluehost Site Migrator"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-page.php:14
|
||||
msgid "Site Migrator"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-rest-can-we-migrate-controller.php:66
|
||||
#: includes/class-rest-manifest-controller.php:146
|
||||
#: includes/class-rest-migration-id-controller.php:59
|
||||
#: includes/class-rest-migration-package-controller.php:194
|
||||
msgid "Sorry, you are not allowed to access this endpoint."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-rest-manifest-controller.php:126
|
||||
msgid "An error occured when delivering the migration payload."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCheckCompatibility.vue:5
|
||||
msgid "Let's get this truck rolling:"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCheckCompatibility.vue:7
|
||||
msgid "First we'll check to see if your website is compatible."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCheckCompatibility.vue:8
|
||||
msgid "If it's compatible, we'll transfer your site."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCheckCompatibility.vue:9
|
||||
msgid "And then send you a link for review."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCheckCompatibility.vue:12
|
||||
msgid "Check Compatibility"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCheckCompatibility.vue:62
|
||||
msgid "Checking environment..."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCheckCompatibility.vue:63
|
||||
msgid "Checking plugins..."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCheckCompatibility.vue:64
|
||||
msgid "Checking themes..."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCheckCompatibility.vue:65
|
||||
msgid "Checking configuration..."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCompatible.vue:4
|
||||
msgid "Looks like we're compatible!"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCompatible.vue:5
|
||||
msgid "Next, let's transfer your site."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCompatible.vue:7
|
||||
msgid ""
|
||||
"Please wait to make changes to your website until the transfer is "
|
||||
"completely done. For now, leave your DNS and domain the same as well."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageCompatible.vue:9
|
||||
msgid "Start Transfer"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageComplete.vue:6
|
||||
msgid "Welcome to the Bluehost family!"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageComplete.vue:9
|
||||
msgid ""
|
||||
"You've transferred your website to Bluehost. Now we just need to get it set "
|
||||
"up on your Bluehost account so you can review it."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageComplete.vue:17
|
||||
msgid "Login to Bluehost"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageComplete.vue:21
|
||||
msgid "Don't have an account?"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageComplete.vue:27
|
||||
msgid "Create account"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageError.vue:5
|
||||
msgid "It looks like your site didn't transfer."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageError.vue:8
|
||||
msgid ""
|
||||
"We might have gotten disconnected, or there could be something else going "
|
||||
"on. Let's figure it out."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageError.vue:12
|
||||
msgid "Call us at 888-401-4678"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageError.vue:15
|
||||
msgid "Try Again"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageIncompatible.vue:7
|
||||
msgid "That didn't work:"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageIncompatible.vue:8
|
||||
msgid "Let's bring in the pros."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageIncompatible.vue:12
|
||||
msgid ""
|
||||
"This can happen if you have a multisite, alternate directory structures, or "
|
||||
"certain themes or plugins. The transfer might require some extra steps, or "
|
||||
"we might need to look at other options."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageIncompatible.vue:15
|
||||
msgid "Give us a call at 888-401-4678."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageTransfer.vue:4
|
||||
msgid "Transferring your website"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageTransfer.vue:8
|
||||
msgid "Cancel Transfer"
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageTransfer.vue:32
|
||||
msgid "Preparing to generate package files..."
|
||||
msgstr ""
|
||||
|
||||
#: source/components/PageTransfer.vue:63
|
||||
msgid "Packaging %s..."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/bluehost-site-migrator"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Quickly and easily migrate your website to Bluehost."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Bluehost"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.bluehost.com/"
|
||||
msgstr ""
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/cloudtables/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/cloudtables/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "cloudtables-wordpress",
|
||||
"version": "1.0.0",
|
||||
"description": "CloudTables easy integration plug-in for WordPress",
|
||||
"main": "block.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": [
|
||||
"cloudtables",
|
||||
"wordpress"
|
||||
],
|
||||
"author": "SpryMedia Ltd",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "9.1.0"
|
||||
}
|
||||
}
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/codepile/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/codepile/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 1.0.0 =
|
||||
16 Jun 2020
|
||||
* Initial release
|
||||
@@ -46,6 +46,10 @@ Ahalogy wordpress plugin [version 2.1.0] is installed but Client ID not set
|
||||
<!-- This site is powered by All In One WP Solution Plugin v3.2.9.6 - Download: https://wordpress.org/plugins/all-in-one-wp-solution -->
|
||||
|
||||
|
||||
<!-- angwp -->
|
||||
<!-- Ads on this site are served by Adning v1.5.1 - adning.com -->
|
||||
|
||||
|
||||
<!-- ank-simplified-ga -->
|
||||
<!-- Google Analytics is disabled, Reason: GA ID is not set (v1.4.2)-->
|
||||
<!-- GA Tracking ends (v1.4.2) -->
|
||||
@@ -1190,3 +1194,7 @@ s0.parentNode.insertBefore(s1,s0);
|
||||
|
||||
|
||||
|
||||
<!-- provesource -->
|
||||
<!-- Start of Async ProveSource Code (Wordpress / Woocommerce v2.1.0) -->
|
||||
|
||||
|
||||
|
||||
15
spec/fixtures/dynamic_finders/plugin_version/cornell-notes/change_log/changelog.txt
vendored
Normal file
15
spec/fixtures/dynamic_finders/plugin_version/cornell-notes/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
== Cornell Notes Changelog ==
|
||||
1.0.3
|
||||
* Changed name for clarity to `Cornell Notes Gutenberg Block`
|
||||
* changed Github repo URL
|
||||
|
||||
1.0.2
|
||||
* Readme edits
|
||||
* Corrected `register_block_type` reference in `init.php`
|
||||
|
||||
1.0.1
|
||||
* Changed styling for increased backwards compatibility with older versions of Gutenberg
|
||||
* Added assets for the WordPress plugin Repo
|
||||
|
||||
1.0
|
||||
*Initial release into the wild
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/cornell-notes/composer_file/package.json
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/cornell-notes/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "cornell-notes-gutenberg-block",
|
||||
"version": "1.0.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.0",
|
||||
"mem": ">=4.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,89 @@
|
||||
# Copyright (C) 2020 Chris Ebbinger
|
||||
# This file is distributed under the same license as the Corona VAT Germany plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Corona VAT Germany 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ce_corona_tax\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-06-29T16:45:10+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: cect\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: ce_corona_tax.php:229
|
||||
msgid "Corona VAT Germany"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ebbinger.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adjusts the WooCommerce VAT rates (19% -> 16% / 7% -> 5%) for period beginning from 2020-07-01 and resets the tax rates after 2020-12-31."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Chris Ebbinger"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:158
|
||||
msgid "Tax Reduce Date already passed and the automated action was executed immediately."
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:163
|
||||
msgid "Tax Restore Date already passed and the automated action was executed immediately."
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:230
|
||||
msgid "Corona VAT Germany Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:236
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:237
|
||||
msgid "Select the tax classes that should be adjusted automatically. Separate multiple entries with a comma (<code>, </code>). The following classes are defined in WooCommerce:"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:241
|
||||
msgid "Standard Tax Classes<br>(previously 19%)"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:246
|
||||
msgid "Reduced Tax Classes<br>(previously 7%)"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:252
|
||||
msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:253
|
||||
msgid "Choose the timing for the tax changes. The changes will be executed during the first visit of the website after the given time."
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:257
|
||||
msgid "Reduce Tax Date"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:258
|
||||
msgid "Choose when the tax rate will be reduced."
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:264
|
||||
msgid "Restore Tax Date"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:265
|
||||
msgid "Choose when the original tax rate will be restored."
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:282
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,163 @@
|
||||
# Copyright (C) 2020 Idan Neeman
|
||||
# This file is distributed under the same license as the Crypto Payments Woo plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Crypto Payments Woo 1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/Crypto-Payments-Woo\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-06-05T23:55:11+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: WCP_I18N_DOMAIN\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Crypto Payments Woo"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/Idan-Neeman/Crypto-Payments-Woo"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Accept Bitcoin/FairCoin payment from WooCommerce store without help of middle man! Receive payment instantly and directly to your own coin address (generate on-the-fly by Electrum) without rotating to 3rd party wallet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Idan Neeman"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/Idan-Neeman"
|
||||
msgstr ""
|
||||
|
||||
#: class-wp-osa.php:753
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: class-wp-osa.php:762
|
||||
msgid "BTC Gateway Settings"
|
||||
msgstr ""
|
||||
|
||||
#: class-wp-osa.php:771
|
||||
msgid "FAIR Gateway Settings"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-checkout-template.php:69
|
||||
msgid "Verifying payment..."
|
||||
msgstr ""
|
||||
|
||||
#: wcp-checkout-template.php:70
|
||||
msgid "Error!"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-checkout-template.php:71
|
||||
msgid "Verify payment in <span id=\"check-time\">60</span> seconds"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-checkout-template.php:72
|
||||
msgid "✅ Payment received!"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:68
|
||||
#: wcp-crypto-gateway-fair.php:75
|
||||
msgid "Payment Instructions, original template (for reference):<br />"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:80
|
||||
msgid "Please send your Bitcoin BTC payment as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:84
|
||||
#: wcp-crypto-gateway-fair.php:91
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:94
|
||||
msgid "Bitcoin Address"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:104
|
||||
#: wcp-crypto-gateway-fair.php:111
|
||||
msgid "QR code"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:114
|
||||
#: wcp-crypto-gateway-fair.php:121
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:119
|
||||
msgid "Waiting for payment (include {{{BITCOINS_CONFIRMATIONS}}} confirmations)..."
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:121
|
||||
msgid "Check balance in"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:121
|
||||
#: wcp-crypto-gateway-fair.php:128
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:128
|
||||
#: wcp-crypto-gateway-fair.php:135
|
||||
msgid "Please note:"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:131
|
||||
#: wcp-crypto-gateway-fair.php:138
|
||||
msgid "We are not responsible for lost funds if you send anything other than FAIR"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:132
|
||||
#: wcp-crypto-gateway-fair.php:139
|
||||
msgid "You must initiate a payment within 1 hour, or your order may be cancelled"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-btc.php:133
|
||||
msgid "As soon as your payment is received in full you will receive email confirmation with order delivery details."
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-fair.php:26
|
||||
msgid "FairCoin"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-fair.php:72
|
||||
msgid "Specific instructions given to the customer to complete Faircoins payment.<br />You may change it, but make sure these tags will be present: <b>{{{FAIRCOINS_AMOUNT}}}</b>, <b>{{{FAIRCOINS_ADDRESS}}}</b>, <b>{{{FAIRCOINS_PAY_URL}}}</b> and <b>{{{EXTRA_INSTRUCTIONS}}}</b> as these tags will be replaced with customer - specific payment details."
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-fair.php:87
|
||||
msgid "Please send your Faircoin FAIR payment as follows:"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-fair.php:101
|
||||
msgid "FairCoin Address"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-fair.php:126
|
||||
msgid "Waiting for payment..."
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-fair.php:128
|
||||
msgid "Verifying payment in"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-fair.php:137
|
||||
msgid "The chosen payment method accepts ONLY FairCoin! Any other payments (Bitcoin, LiteCoin etc) will not process and the funds will be lost forever!"
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway-fair.php:140
|
||||
msgid "As soon as your payment is verified, we will send you a confirmation e-mail with order delivery details."
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway.php:53
|
||||
msgid "You may send payments from multiple accounts to reach the total required."
|
||||
msgstr ""
|
||||
|
||||
#: wcp-crypto-gateway.php:314
|
||||
msgid "Please, proceed to the next screen to see necessary payment details."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 02 April 2020 =
|
||||
|
||||
* Initial release
|
||||
@@ -0,0 +1,218 @@
|
||||
# Copyright (C) 2020 Nawawi Jamili
|
||||
# This file is distributed under the same license as the Docket Cache plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Docket Cache 20.07.09\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/docket-cache\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-10T15:23:23+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: docket-cache\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/src/Plugin.php:280
|
||||
msgid "Docket Cache"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A file-based persistent WordPress Object Cache stored as a plain PHP code."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Nawawi Jamili"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://rutweb.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:30
|
||||
#: includes/src/Plugin.php:279
|
||||
msgid "Docket Object Cache"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:33
|
||||
#: includes/admin/page.php:41
|
||||
#: includes/admin/page.php:102
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:34
|
||||
msgid "Debug Log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:35
|
||||
#: includes/admin/page.php:86
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:45
|
||||
#: includes/admin/page.php:106
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:50
|
||||
msgid "OPCache"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:55
|
||||
msgid "PHP Memory Limit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:60
|
||||
msgid "WP Memory Limit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:66
|
||||
msgid "Cache Size"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:74
|
||||
msgid "Enable Object Cache"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:76
|
||||
msgid "Flush Cache"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:77
|
||||
msgid "Disable Object Cache"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:88
|
||||
msgid "Configuration Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:89
|
||||
msgid "To adjust the configuration, please see the <a href=\"https://github.com/nawawi/docket-cache#configuration-options\" rel=\"noopener\" target=\"_blank\">configuration options</a> for a full list."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:91
|
||||
msgid "WP-CLI Commands"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:92
|
||||
msgid "To use the WP-CLI commands, please see the <a href=\"https://github.com/nawawi/docket-cache#wp-cli-commands\" rel=\"noopener\" target=\"_blank\">WP-CLI commands</a> for a full list."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:110
|
||||
msgid "Log File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:115
|
||||
msgid "Log Data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:116
|
||||
msgid "Not available"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/page.php:129
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/CLI/Command.php:85
|
||||
msgid "Docket object cache already enabled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/CLI/Command.php:89
|
||||
msgid "An unknown object cache drop-in was found. To use Docket object cache, run: wp docket-cache update-dropin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/CLI/Command.php:93
|
||||
#: includes/src/Plugin.php:411
|
||||
msgid "Object cache enabled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/CLI/Command.php:96
|
||||
#: includes/src/Plugin.php:414
|
||||
msgid "Object cache could not be enabled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/CLI/Command.php:112
|
||||
#: includes/src/CLI/Command.php:157
|
||||
msgid "No object cache drop-in found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/CLI/Command.php:116
|
||||
msgid "An unknown object cache drop-in was found. To use Docket run: wp docket-cache update-dropin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/CLI/Command.php:120
|
||||
#: includes/src/Plugin.php:417
|
||||
msgid "Object cache disabled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/CLI/Command.php:123
|
||||
#: includes/src/Plugin.php:420
|
||||
msgid "Object cache could not be disabled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/CLI/Command.php:140
|
||||
#: includes/src/Plugin.php:429
|
||||
msgid "Updated object cache drop-in and enabled Docket object cache."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/CLI/Command.php:142
|
||||
msgid "Object cache drop-in could not be updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Plugin.php:46
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Plugin.php:47
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Plugin.php:48
|
||||
msgid "Not Available"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Plugin.php:49
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Plugin.php:151
|
||||
msgid "WP_Filesystem not available"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: path name
|
||||
#: includes/src/Plugin.php:241
|
||||
msgid "Invalid setting for DOCKET_CACHE_PATH: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: url
|
||||
#: includes/src/Plugin.php:315
|
||||
msgid "The Docket Object Cache drop-in is outdated. Please <a href=\"%s\">update it now</a>"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: url
|
||||
#: includes/src/Plugin.php:319
|
||||
msgid "An unknown object cache drop-in was found. To use Docket, <a href=\"%s\" class=\"button button-secondary button-large\">please replace it now</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Plugin.php:403
|
||||
msgid "This plugin requires PHP 7.2 or greater."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Plugin.php:423
|
||||
msgid "Object cache was flushed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Plugin.php:426
|
||||
msgid "Object cache could not be flushed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Plugin.php:432
|
||||
msgid "Docket object cache drop-in could not be updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Plugin.php:450
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
2732
spec/fixtures/dynamic_finders/plugin_version/duogeek-blocks/translation_file/languages/dggb-blocks.pot
vendored
Normal file
2732
spec/fixtures/dynamic_finders/plugin_version/duogeek-blocks/translation_file/languages/dggb-blocks.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,3 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0 =
|
||||
@@ -0,0 +1,51 @@
|
||||
# Copyright (C) 2020 SomewhereWarm
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gift Cards - Coupon Input 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://woocommerce.com/my-account/create-a-ticket/\n"
|
||||
"POT-Creation-Date: 2020-06-05 11:10:11+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: gift-cards-coupon-input.php:108
|
||||
msgid ""
|
||||
"<strong>Gift Cards – Coupon Input</strong> requires <a href=\"%1$s\" "
|
||||
"target=\"_blank\">WooCommerce Gift Cards</a> version <strong>%2$s</strong> "
|
||||
"or higher."
|
||||
msgstr ""
|
||||
|
||||
#: gift-cards-coupon-input.php:154
|
||||
msgid "Gift Card code applied successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: gift-cards-coupon-input.php:161
|
||||
msgid "Gift Card not found."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Gift Cards - Coupon Input"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://woocommerce.com/products/gift-cards"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Mini-extension for WooCommerce Gift Cards that allows you to use the "
|
||||
"default coupon form to apply and redeem gift cards."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SomewhereWarm"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://somewherewarm.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,799 @@
|
||||
# Copyright (C) 2020 GutenGeek
|
||||
# This file is distributed under the same license as the GutenGeek plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GutenGeek 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gutengeek\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-06-10T08:17:24+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: gutengeek\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
#: inc/Block_Factory.php:160
|
||||
msgid "GutenGeek"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://gutengeek.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Advanced gutenberg everything you need for gutenberg editor"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Abstracts/Post_Block.php:27
|
||||
#: inc/Blocks/Post_Carousel.php:40
|
||||
#: inc/Blocks/Post_Grid.php:48
|
||||
#: inc/Blocks/Post_Masonry.php:42
|
||||
#: inc/Blocks/Post_Timeline.php:50
|
||||
msgid "Load More"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Abstracts/Post_Block.php:50
|
||||
#: inc/Blocks/Post_Carousel.php:63
|
||||
#: inc/Blocks/Post_Grid.php:71
|
||||
#: inc/Blocks/Post_Masonry.php:65
|
||||
#: inc/Blocks/Post_Timeline.php:73
|
||||
#: inc/Tables/CustomFontsTable.php:276
|
||||
#: inc/Tables/CustomIconsTable.php:215
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Abstracts/Post_Block.php:52
|
||||
#: inc/Blocks/Post_Carousel.php:65
|
||||
#: inc/Blocks/Post_Grid.php:73
|
||||
#: inc/Blocks/Post_Masonry.php:67
|
||||
#: inc/Blocks/Post_Timeline.php:75
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin.php:90
|
||||
msgid "The %1$sGutenGeek%2$s plugin requires %1$sGutenberg%2$s plugin installed & activated."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin.php:99
|
||||
msgid "Activate Gutenberg"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin.php:106
|
||||
msgid "Install Gutenberg"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:36
|
||||
msgid "No Theme specified"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:54
|
||||
msgid "Theme Successfully Activated"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:64
|
||||
#: inc/Admin/Ajax.php:80
|
||||
#: inc/Admin/Ajax.php:116
|
||||
#: inc/Admin/Ajax.php:143
|
||||
msgid "You don't have permission to access this page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:86
|
||||
msgid "Key is not exists"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:91
|
||||
msgid "Value is invalid!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:100
|
||||
#: inc/Admin/Ajax.php:127
|
||||
msgid "Settings updated successfull"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:121
|
||||
msgid "Global settings cannot empty"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:202
|
||||
msgid "Sorry, we couldn't any templates."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:208
|
||||
msgid "Sorry, we couldn't find the match. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:215
|
||||
#: inc/Admin/Ajax.php:280
|
||||
msgid "Opp! Your request got too far. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:232
|
||||
msgid "You don't have permission to import"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:248
|
||||
msgid "Section/Page not found. Maybe its removed from remote server. Please contact us to more details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:333
|
||||
msgid "You don't have permission to remove this item"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:338
|
||||
msgid "Item not found! :("
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Ajax.php:344
|
||||
msgid "Delete item failed. Try again later!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Menu.php:40
|
||||
msgid "About GutenGeek"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Menu.php:41
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Menu.php:51
|
||||
msgid "Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Menu.php:77
|
||||
msgid "You don’t have permission to access this page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Admin/Menu.php:94
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:142
|
||||
msgid "Unique identifier for the resource."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:148
|
||||
msgid "Body typography"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:155
|
||||
msgid "H1 typography"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:162
|
||||
msgid "H2 typography"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:169
|
||||
msgid "H3 typography"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:176
|
||||
msgid "H4 typography"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:183
|
||||
msgid "H5 typography"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:190
|
||||
msgid "H6 typography"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:197
|
||||
msgid "Row Container Width"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:204
|
||||
msgid "Row Gutter"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:211
|
||||
msgid "Button Default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:218
|
||||
#: inc/Api.php:246
|
||||
msgid "Button Primary"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:225
|
||||
msgid "Button Secondary"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:232
|
||||
msgid "Button Warning"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:239
|
||||
msgid "Button INfo"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:253
|
||||
msgid "Button Danger"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:271
|
||||
msgid "GutenGeek google font meta field"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:280
|
||||
msgid "GutenGeek css of the post"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:290
|
||||
msgid "GutenGeek global post settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:522
|
||||
msgid "Button typography"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:529
|
||||
msgid "Button border radius"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:536
|
||||
msgid "Button border radius hover"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:543
|
||||
#: inc/Api.php:550
|
||||
msgid "Button border"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:557
|
||||
msgid "Box Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:564
|
||||
msgid "Box Shadow Hover"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:571
|
||||
msgid "Button color."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:577
|
||||
msgid "Button color hover."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Api.php:583
|
||||
#: inc/Api.php:589
|
||||
msgid "Button background."
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/Core.php:77
|
||||
msgid "Generate post css failed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Blocks/Cf7.php:49
|
||||
#: inc/Blocks/Gravity_Form.php:45
|
||||
#: inc/Blocks/Mailchimp.php:43
|
||||
msgid "Select Form"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Blocks/Cf7.php:61
|
||||
msgid "You have not added any Contact Form 7 yet."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Blocks/Cf7.php:109
|
||||
msgid "Please select a valid Contact Form 7."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Blocks/Gravity_Form.php:57
|
||||
msgid "You have not added any Gravity Forms yet."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Blocks/Gravity_Form.php:74
|
||||
msgid "Please select a valid Gravity Form."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Blocks/Mailchimp.php:55
|
||||
msgid "You have not added any Mailchimp Forms yet."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Blocks/Mailchimp.php:72
|
||||
msgid "Please select a valid Mailchimp Form."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Block_Factory.php:198
|
||||
msgid "You don't have permission."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Block_Factory.php:208
|
||||
msgid "Captcha validate failed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Block_Factory.php:213
|
||||
msgid "Captcha validation error"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Block_Factory.php:219
|
||||
msgid "Email submited successful"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Block_Factory.php:220
|
||||
msgid "Oops! Email submitted failed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Block_Factory.php:221
|
||||
msgid "This field is required"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:118
|
||||
msgid "Full"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:609
|
||||
msgctxt "shapes"
|
||||
msgid "Curly"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:617
|
||||
msgctxt "shapes"
|
||||
msgid "Curved"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:625
|
||||
msgctxt "shapes"
|
||||
msgid "Multiple"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:633
|
||||
msgctxt "shapes"
|
||||
msgid "Slashes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:642
|
||||
msgctxt "shapes"
|
||||
msgid "Squared"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:650
|
||||
msgctxt "shapes"
|
||||
msgid "Wavy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:658
|
||||
#: inc/functions.php:788
|
||||
msgctxt "shapes"
|
||||
msgid "Zigzag"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:666
|
||||
msgctxt "shapes"
|
||||
msgid "Arrows"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:674
|
||||
msgctxt "shapes"
|
||||
msgid "Pluses"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:682
|
||||
msgctxt "shapes"
|
||||
msgid "Rhombus"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:690
|
||||
msgctxt "shapes"
|
||||
msgid "Parallelogram"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:698
|
||||
msgctxt "shapes"
|
||||
msgid "Rectangles"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:707
|
||||
msgctxt "shapes"
|
||||
msgid "Dots"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:716
|
||||
msgctxt "shapes"
|
||||
msgid "Fir Tree"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:725
|
||||
msgctxt "shapes"
|
||||
msgid "Half Rounds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:734
|
||||
msgctxt "shapes"
|
||||
msgid "Leaves"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:743
|
||||
msgctxt "shapes"
|
||||
msgid "Stripes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:752
|
||||
msgctxt "shapes"
|
||||
msgid "Squares"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:761
|
||||
msgctxt "shapes"
|
||||
msgid "Trees"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:770
|
||||
msgctxt "shapes"
|
||||
msgid "Tribal"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:779
|
||||
msgctxt "shapes"
|
||||
msgid "X"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:1056
|
||||
msgid "Icon not found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:1136
|
||||
msgid "Mask 01"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:1142
|
||||
msgid "Mask 02"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:1148
|
||||
msgid "Mask 03"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.php:1154
|
||||
msgid "Mask 04"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Import_Factory.php:64
|
||||
msgid "Name invalid"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Import_Factory.php:68
|
||||
msgid "Processer invalid"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Module.php:77
|
||||
msgid "Module name not found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:45
|
||||
#: inc/Modules/CustomFonts.php:46
|
||||
#: inc/Modules/CustomFonts.php:86
|
||||
msgid "Custom Fonts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:65
|
||||
msgid "Fonts per page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:87
|
||||
#: inc/Modules/CustomIcons.php:83
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:136
|
||||
#: inc/Modules/CustomIcons.php:246
|
||||
msgid "Invalid nonce"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:189
|
||||
msgid "The font name is already taken"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:215
|
||||
msgid "Can not update font"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:297
|
||||
msgid "Error processing font file"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:332
|
||||
#: inc/Modules/CustomFonts.php:374
|
||||
#: inc/Modules/CustomIcons.php:130
|
||||
#: inc/Modules/CustomIcons.php:194
|
||||
msgid "Permission denied."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:391
|
||||
#: inc/Modules/CustomIcons.php:458
|
||||
msgid "%s was move to trash"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:406
|
||||
#: inc/Modules/CustomIcons.php:473
|
||||
msgid "%s was restored"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:421
|
||||
#: inc/Modules/CustomIcons.php:502
|
||||
msgid "%s was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:447
|
||||
#: inc/Modules/CustomFonts.php:454
|
||||
msgid "was updated successfull"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomFonts.php:450
|
||||
msgid "was created successfull"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomIcons.php:55
|
||||
#: inc/Modules/CustomIcons.php:56
|
||||
#: inc/Modules/CustomIcons.php:82
|
||||
msgid "Custom Icons"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomIcons.php:172
|
||||
#: inc/Modules/CustomIcons.php:220
|
||||
msgid "%s was updated successfull"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomIcons.php:276
|
||||
msgid "Missing .zip file or can not upload."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomIcons.php:305
|
||||
msgid "Can not update icon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomIcons.php:371
|
||||
msgid "%d icons trashed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomIcons.php:387
|
||||
msgid "%d icons was re-published"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomIcons.php:416
|
||||
msgid "%d icons was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomIcons.php:565
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomIcons.php:604
|
||||
msgid "Incompatible archive"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/CustomIcons.php:650
|
||||
msgid "The zip file provided is not supported!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/Icon_Sets/Fontastic.php:16
|
||||
msgid "Fontastic"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/Icon_Sets/Fontastic.php:75
|
||||
msgid "fontastic"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/Icon_Sets/Icomoon.php:16
|
||||
msgid "Icomoon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Modules/Icon_Sets/Icomoon.php:89
|
||||
msgid "icomoon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Plugin.php:212
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:27
|
||||
#: inc/Tables/CustomFontsTable.php:48
|
||||
#: inc/Tables/CustomFontsTable.php:278
|
||||
#: inc/Tables/CustomIconsTable.php:25
|
||||
#: inc/Tables/CustomIconsTable.php:48
|
||||
#: inc/Tables/CustomIconsTable.php:221
|
||||
msgid "Trash"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:31
|
||||
#: inc/Tables/CustomFontsTable.php:54
|
||||
#: inc/Tables/CustomIconsTable.php:29
|
||||
#: inc/Tables/CustomIconsTable.php:56
|
||||
msgid "Restore"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:32
|
||||
#: inc/Tables/CustomFontsTable.php:55
|
||||
#: inc/Tables/CustomIconsTable.php:30
|
||||
#: inc/Tables/CustomIconsTable.php:59
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:47
|
||||
#: inc/Tables/CustomIconsTable.php:46
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:101
|
||||
msgid "%s fonts trashed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:125
|
||||
msgid "%s fonts was re-published"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:149
|
||||
msgid "%s fonts was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:156
|
||||
msgid "No fonts found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:168
|
||||
msgid "Font Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:169
|
||||
msgid "Font Example"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomFontsTable.php:277
|
||||
#: inc/Tables/CustomIconsTable.php:219
|
||||
msgid "Published"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomIconsTable.php:118
|
||||
msgid "No icons set."
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomIconsTable.php:129
|
||||
msgid "Icon Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomIconsTable.php:130
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Tables/CustomIconsTable.php:131
|
||||
msgid "Count"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s template
|
||||
#: inc/template-functions.php:82
|
||||
msgid "%s does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: inc/template-functions.php:99
|
||||
msgid "action_args should not be overwritten when calling gutengeek_get_template."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: VERSION. Only visible to screen readers.
|
||||
#: views/admin/about.php:9
|
||||
msgid "Welcome to <span class=\"highlight\">GutenGeek</span> - Version <span class=\"highlight\">%s</span>"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:17
|
||||
msgid "Powerful Gutenburg Toolkit"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:20
|
||||
msgid "Opal Logo"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:35
|
||||
msgid "GutenGeek Core Features"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:38
|
||||
msgid "Global page settings(typography, color, ...)"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:39
|
||||
msgid "Predefined sections"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:40
|
||||
msgid "Modern layout packs"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:41
|
||||
msgid "Highly customizable row columns"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:42
|
||||
msgid "Row full backgrounds style"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:43
|
||||
msgid "Drag column resizing"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:44
|
||||
msgid "Shape divider"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:45
|
||||
msgid "Device specific responsive controls"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:46
|
||||
msgid "Unlimited Google fonts"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:47
|
||||
msgid "Classic & gradient color and background"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:48
|
||||
msgid "Built-in animation"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:49
|
||||
msgid "Box-shadow"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:50
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:51
|
||||
msgid "Advanced Typography"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:52
|
||||
msgid "Font Awesome 5 icon picker"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:53
|
||||
msgid "Divider flexiable"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:54
|
||||
msgid "Templates Library"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:55
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/about.php:59
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: views/templates/blocks/post-timeline.php:33
|
||||
msgid "No posts found"
|
||||
msgstr ""
|
||||
|
||||
#: views/templates/blocks/post-timeline/title.php:17
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
#: views/templates/blocks/post/button.php:11
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: views/templates/blocks/post/meta.php:25
|
||||
msgid "By"
|
||||
msgstr ""
|
||||
|
||||
#: views/templates/blocks/post/meta.php:43
|
||||
msgid "%d Comment"
|
||||
msgid_plural "%d Comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: views/templates/blocks/post/pagination.php:30
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: views/templates/blocks/post/pagination.php:65
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,122 @@
|
||||
# Copyright (C) 2020 Chris Hardie
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Harmonizely Booking Product 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/harmonizely-booking-product\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-06-03T23:10:02+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha-192d356\n"
|
||||
"X-Domain: harmonizely-booking-product\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Harmonizely Booking Product"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Creates a Harmonizely appointment booking product type for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Chris Hardie"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://chrishardie.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:118
|
||||
msgid "must be activated to use this plugin. Visit your plugins page to activate."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:139
|
||||
#: admin/class-harmonizely-booking-product-admin.php:157
|
||||
msgid "Harmonizely Bookings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:159
|
||||
msgid "The following options are used to configure Harmonizely Bookings."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:161
|
||||
msgid "To refresh the available meeting types from your account, save this settings page again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:167
|
||||
msgid "Harmonizely API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:168
|
||||
#: admin/class-harmonizely-booking-product-admin.php:171
|
||||
msgid "The API key generated for your Harmonizely account"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:173
|
||||
msgid "Visit the Integrations page in your Harmonizely account."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:329
|
||||
msgid "Harmonizely Booking"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:340
|
||||
msgid "Harmonizely Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:403
|
||||
msgid "Select a meeting type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:408
|
||||
msgid "Meeting Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:413
|
||||
msgid "Select the Harmonizely Meeting Type that the purchase of this product will grant access to."
|
||||
msgstr ""
|
||||
|
||||
#. translators: error message for maximum quantity of booking product type reached
|
||||
#: admin/class-harmonizely-booking-product-admin.php:492
|
||||
msgid "Only %1$d of this type of product allowed per order."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:582
|
||||
#: admin/class-harmonizely-booking-product-admin.php:608
|
||||
msgid "Error retrieving scheduling URL from Harmonizely"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:600
|
||||
msgid "Scheduling URL from Harmonizely"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:644
|
||||
msgid "Regenerate Harmonizely scheduling link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:684
|
||||
#: admin/class-harmonizely-booking-product-admin.php:692
|
||||
msgid "Schedule an appointment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:685
|
||||
#: admin/class-harmonizely-booking-product-admin.php:693
|
||||
msgid "This order grants scheduling access."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:686
|
||||
#: admin/class-harmonizely-booking-product-admin.php:695
|
||||
msgid "Schedule Now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:717
|
||||
msgid "The configured Harmonizely API key is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:728
|
||||
msgid "No valid meeting types available from the Harmonizely API."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,35 @@
|
||||
=== HCGroup Shipping for Woocommerce ===
|
||||
|
||||
== Archived Changelog Entries ==
|
||||
|
||||
This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable.
|
||||
For the latest changes, please see the "Changelog" section of the [readme.txt file](https://plugins.svn.wordpress.org/hcgroup-shipping-for-woocommerce/trunk/readme.txt).
|
||||
|
||||
= 2.0.0 =
|
||||
*Release Date - 10 July 2020*
|
||||
|
||||
* 2.0 is a mayor update. Fixed bugs on update + new fuctions for orders status
|
||||
|
||||
= 1.0.7 =
|
||||
* Fixed bugs on update , created only function
|
||||
|
||||
= 1.0.6 =
|
||||
* Fixed bugs on address not set
|
||||
|
||||
= 1.0.5 =
|
||||
* Fixed bugs on address and states on send url with get
|
||||
|
||||
= 1.0.4 =
|
||||
* Change price shipping for get subtotal price
|
||||
|
||||
= 1.0.3 =
|
||||
* Bug timeout external server and hide carrier on response -1
|
||||
|
||||
= 1.0.2 =
|
||||
* New options, post sale service and delivery
|
||||
|
||||
= 1.0.1 =
|
||||
* Update compability wordpress 5.3 and php 7.4
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release.
|
||||
@@ -0,0 +1,155 @@
|
||||
# Copyright (C) 2020 andl
|
||||
# This file is distributed under the same license as the Integration of Allegro and WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Integration of Allegro and WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/dotandl/integration-allegro-woocommerce/issues\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-06T15:15:07+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: waint\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: woocommerce-allegro-integration.php:481
|
||||
#: woocommerce-allegro-integration.php:482
|
||||
#: woocommerce-allegro-integration.php:510
|
||||
msgid "Integration of Allegro and WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/dotandl/integration-allegro-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Plugin that syncs products' availability between WooCommerce and Allegro"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "andl"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/dotandl"
|
||||
msgstr ""
|
||||
|
||||
#: sync.php:32
|
||||
#: sync.php:51
|
||||
#: sync.php:70
|
||||
#: sync.php:89
|
||||
#: sync.php:111
|
||||
#: sync.php:162
|
||||
msgid "Could not link to Allegro. See the logs for more information"
|
||||
msgstr ""
|
||||
|
||||
#: sync.php:188
|
||||
msgid "Linked to Allegro successfully"
|
||||
msgstr ""
|
||||
|
||||
#: sync.php:214
|
||||
msgid "Could not refresh the token. Try to remove the app from linked apps in Allegro settings and link it again."
|
||||
msgstr ""
|
||||
|
||||
#: sync.php:235
|
||||
msgid "Could not refresh the token. Try to fill in Client ID and/or Secret field(s)"
|
||||
msgstr ""
|
||||
|
||||
#: sync.php:269
|
||||
msgid "Could not refresh the token. See the logs for more information"
|
||||
msgstr ""
|
||||
|
||||
#: sync.php:636
|
||||
#: sync.php:686
|
||||
msgid "Could not sync products. See the logs for more information"
|
||||
msgstr ""
|
||||
|
||||
#: sync.php:656
|
||||
#: sync.php:706
|
||||
msgid "Products synced successfully"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:364
|
||||
msgid "Allegro API settings"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:371
|
||||
msgid "Bindings"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:378
|
||||
msgid "Allegro Client ID"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:386
|
||||
msgid "Allegro Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:394
|
||||
msgid "WooCommerce <-> Allegro Bindings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Address the Allegro Apps page, Plugin options page's base URL
|
||||
#: woocommerce-allegro-integration.php:411
|
||||
msgid "Go to <a href=\"%1$s\" target=\"_blank\">apps.developer.allegro.pl</a> and create new web app. In \"Redirect URI\" type <code>%2$s</code>. Then copy Client ID & Client Secret and paste them here."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:425
|
||||
msgid "Get ID of product from WooCommerce and Allegro and bind them here."
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:448
|
||||
msgid "Toggle visbility"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:464
|
||||
msgid "WooCommerce Product ID"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:465
|
||||
msgid "Allegro Product ID"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:502
|
||||
msgid "Settings saved"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:512
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:513
|
||||
#: woocommerce-allegro-integration.php:549
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:527
|
||||
msgid "Save settings"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:536
|
||||
msgid "Link to Allegro"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:539
|
||||
msgid "Sync WooCommerce -> Allegro"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:542
|
||||
msgid "Sync Allegro -> WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:550
|
||||
msgid "Debug info"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:552
|
||||
msgid "Download log file"
|
||||
msgstr ""
|
||||
|
||||
#: woocommerce-allegro-integration.php:553
|
||||
msgid "Clean log file"
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/jvm-details-summary/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/jvm-details-summary/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "jvm-details-summary-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.0"
|
||||
}
|
||||
}
|
||||
289
spec/fixtures/dynamic_finders/plugin_version/light-lms-quizz/translation_file/languages/it.po
vendored
Normal file
289
spec/fixtures/dynamic_finders/plugin_version/light-lms-quizz/translation_file/languages/it.po
vendored
Normal file
@@ -0,0 +1,289 @@
|
||||
# Copyright (C) 2020 Pieter Hoekstra
|
||||
# This file is distributed under the same license as the Light LMS plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Light LMS 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/light-lms-quizz\n"
|
||||
"POT-Creation-Date: 2020-06-17T16:56:05+02:00\n"
|
||||
"PO-Revision-Date: 2020-06-17 17:07+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"X-Domain: light-lms\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Light LMS Quizz"
|
||||
msgstr "Light LMS Quiz"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Gutenberg blocks for lightning fast answers to interactive questions"
|
||||
msgstr "Blocchi all'editor Gutenberg per domande interattive"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Pieter Hoekstra"
|
||||
msgstr ""
|
||||
|
||||
#: ligth-lms-quizz.php:111
|
||||
msgid "Q & A"
|
||||
msgstr "Domande e risposte"
|
||||
|
||||
#: blocks/register_blocks.js:69
|
||||
msgid "Multiple choice (3)"
|
||||
msgstr "Domande a scelta multipla (3)"
|
||||
|
||||
#: blocks/register_blocks.js:71
|
||||
msgid "Multiple choice (5)"
|
||||
msgstr "Domande a scelta multipla (5)"
|
||||
|
||||
#: blocks/register_blocks.js:73
|
||||
msgid "Multiple choice (10)"
|
||||
msgstr "Domande a scelta multipla (10)"
|
||||
|
||||
#: blocks/register_blocks.js:100
|
||||
msgid "Right"
|
||||
msgstr "Giusto"
|
||||
|
||||
#: blocks/register_blocks.js:104
|
||||
msgid "Wrong"
|
||||
msgstr "Sbagliata"
|
||||
|
||||
#: blocks/register_blocks.js:112
|
||||
msgid "Right or wrong?"
|
||||
msgstr "Corretto o sbagliato?"
|
||||
|
||||
#: blocks/register_blocks.js:210
|
||||
msgid "Question ..."
|
||||
msgstr "Domanda ..."
|
||||
|
||||
#: blocks/register_blocks.js:224
|
||||
msgid "Answer 1"
|
||||
msgstr "Risposta 1"
|
||||
|
||||
#: blocks/register_blocks.js:240
|
||||
msgid "Answer 2"
|
||||
msgstr "Risposta 2"
|
||||
|
||||
#: blocks/register_blocks.js:256
|
||||
msgid "Answer 3"
|
||||
msgstr "Risposta 3"
|
||||
|
||||
#: blocks/register_blocks.js:278
|
||||
msgid "Answer 4"
|
||||
msgstr "Risposta 4"
|
||||
|
||||
#: blocks/register_blocks.js:294
|
||||
msgid "Answer 5"
|
||||
msgstr "Risposta 5"
|
||||
|
||||
#: blocks/register_blocks.js:316
|
||||
msgid "Answer 6"
|
||||
msgstr "Risposta 6"
|
||||
|
||||
#: blocks/register_blocks.js:332
|
||||
msgid "Answer 7"
|
||||
msgstr "Risposta 7"
|
||||
|
||||
#: blocks/register_blocks.js:348
|
||||
msgid "Answer 8"
|
||||
msgstr "Risposta 8"
|
||||
|
||||
#: blocks/register_blocks.js:364
|
||||
msgid "Answer 9"
|
||||
msgstr "Risposta 9"
|
||||
|
||||
#: blocks/register_blocks.js:380
|
||||
msgid "Answer 10"
|
||||
msgstr "Risposta 10"
|
||||
|
||||
#: blocks/register_blocks.js:397
|
||||
msgid "Yes"
|
||||
msgstr "Si"
|
||||
|
||||
#: blocks/register_blocks.js:400
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
#: blocks/register_blocks.js:404
|
||||
msgid "Must choose exactly 2"
|
||||
msgstr "Bisogna scegliere esattamente 2"
|
||||
|
||||
#: blocks/register_blocks.js:412
|
||||
msgid "Must choose exactly 3"
|
||||
msgstr "Bisogna scegliere esattamente 3"
|
||||
|
||||
#: blocks/register_blocks.js:416
|
||||
msgid "Must choose exactly 4"
|
||||
msgstr "Bisogna scegliere esattamente 4"
|
||||
|
||||
#: blocks/register_blocks.js:426
|
||||
msgid "Must choose exactly 5"
|
||||
msgstr "Bisogna scegliere esattamente 5"
|
||||
|
||||
#: blocks/register_blocks.js:430
|
||||
msgid "Must choose exactly 6"
|
||||
msgstr "Bisogna scegliere esattamente 6"
|
||||
|
||||
#: blocks/register_blocks.js:434
|
||||
msgid "Must choose exactly 7"
|
||||
msgstr "Bisogna scegliere esattamente 7"
|
||||
|
||||
#: blocks/register_blocks.js:445
|
||||
msgid "Answer settings"
|
||||
msgstr "Impostazione per la risposta"
|
||||
|
||||
#: blocks/register_blocks.js:448
|
||||
msgid "Answer"
|
||||
msgstr "Risposta"
|
||||
|
||||
#: blocks/register_blocks.js:449
|
||||
msgid "The right answer (1 or more letters)"
|
||||
msgstr "La risposta corretta (1 o più lettere)"
|
||||
|
||||
#: blocks/register_blocks.js:458
|
||||
msgid "Multiple answers"
|
||||
msgstr "Risposte multiple"
|
||||
|
||||
#: blocks/register_blocks.js:459
|
||||
msgid "Can multiple answers be chosen?"
|
||||
msgstr "È possibile scegliere più risposte?"
|
||||
|
||||
#: blocks/register_blocks.js:469
|
||||
msgid "Hint to the question"
|
||||
msgstr "Suggerimento per la domanda"
|
||||
|
||||
#: blocks/register_blocks.js:470
|
||||
msgid "The text as a hint above the choices"
|
||||
msgstr "Il testo come suggerimento sopra le scelte"
|
||||
|
||||
#: blocks/register_blocks.js:479
|
||||
msgid "Button text"
|
||||
msgstr "Testo del pulsante"
|
||||
|
||||
#: blocks/register_blocks.js:480
|
||||
msgid "The text of the button to click on"
|
||||
msgstr "Il testo sul pulsante"
|
||||
|
||||
#: blocks/register_blocks.js:489 blocks/register_blocks.js:526
|
||||
msgid "Feedback when right"
|
||||
msgstr "Feedback quando la risposta è corretto"
|
||||
|
||||
#: blocks/register_blocks.js:490
|
||||
msgid "The feedback to show with a right answer"
|
||||
msgstr "Il feedback da mostrare con una risposta corretta"
|
||||
|
||||
#: blocks/register_blocks.js:500 blocks/register_blocks.js:536
|
||||
msgid "Feedback when wrong"
|
||||
msgstr "Il feedback quando la risposta è sbagliato"
|
||||
|
||||
#: blocks/register_blocks.js:501
|
||||
msgid "The feedback to show with a wrong answer"
|
||||
msgstr "Il feedback da mostrare con una risposta sbagliata"
|
||||
|
||||
#: blocks/register_blocks.js:511
|
||||
msgid "Classes"
|
||||
msgstr "Classi"
|
||||
|
||||
#: blocks/register_blocks.js:516
|
||||
msgid "Form"
|
||||
msgstr "Modulo"
|
||||
|
||||
#: blocks/register_blocks.js:517
|
||||
msgid "The css class to apply to the form element"
|
||||
msgstr "La classe css da applicare all'elemento modulo"
|
||||
|
||||
#: blocks/register_blocks.js:527
|
||||
msgid "The css class to apply to the feedback after right answer"
|
||||
msgstr "La classe css da applicare al feedback con una risposta corretta"
|
||||
|
||||
#: blocks/register_blocks.js:537
|
||||
msgid "The css class to apply to the feedback after wrong answer"
|
||||
msgstr "La classe css da applicare al feedback con una risposta sbagliata"
|
||||
|
||||
#: blocks/register_blocks.js:545
|
||||
msgid "Colors : "
|
||||
msgstr "Colori : "
|
||||
|
||||
#: blocks/register_blocks.js:547
|
||||
msgid " ... with right answer"
|
||||
msgstr " … con una risposta corretta"
|
||||
|
||||
#: blocks/register_blocks.js:550
|
||||
msgid "Feedback right background color"
|
||||
msgstr "Colore di sfondo del feedback con una risposta corretta"
|
||||
|
||||
#: blocks/register_blocks.js:557
|
||||
msgid "Feedback right text color"
|
||||
msgstr "Colore del testo del feedback con una risposta corretta"
|
||||
|
||||
#: blocks/register_blocks.js:563 blocks/register_blocks.js:564
|
||||
#: blocks/register_blocks.js:592 blocks/register_blocks.js:593
|
||||
msgid "White"
|
||||
msgstr "Bianco"
|
||||
|
||||
#: blocks/register_blocks.js:568 blocks/register_blocks.js:569
|
||||
#: blocks/register_blocks.js:597 blocks/register_blocks.js:598
|
||||
msgid "Black"
|
||||
msgstr "Nero"
|
||||
|
||||
#: blocks/register_blocks.js:576
|
||||
msgid " ... with wrong answer"
|
||||
msgstr " ... con una risposta sbagliata"
|
||||
|
||||
#: blocks/register_blocks.js:579
|
||||
msgid "Feedback wrong background color"
|
||||
msgstr "Colore di sfondo del feedback con una risposta sbagliata"
|
||||
|
||||
#: blocks/register_blocks.js:586
|
||||
msgid "feedback wrong text color"
|
||||
msgstr "colore del testo del feedback con una risposta sbagliata"
|
||||
|
||||
#: blocks/register_blocks.js:778 blocks/register_blocks.js:814
|
||||
#: blocks/register_blocks.js:850
|
||||
msgid "Learning in progress"
|
||||
msgstr "Apprendimento in corso"
|
||||
|
||||
#: blocks/register_blocks.js:779 blocks/register_blocks.js:815
|
||||
#: blocks/register_blocks.js:851
|
||||
msgid "question"
|
||||
msgstr "domanda"
|
||||
|
||||
#: blocks/register_blocks.js:779 blocks/register_blocks.js:815
|
||||
#: blocks/register_blocks.js:851
|
||||
msgid "multiple choice"
|
||||
msgstr "scelta multipla"
|
||||
|
||||
#: js/evaluate_questions.js:116
|
||||
msgid "Multiple answers can be given :"
|
||||
msgstr "Si può dare risposte multiple:"
|
||||
|
||||
#: js/evaluate_questions.js:118
|
||||
msgid "Choose two of the following :"
|
||||
msgstr "Scegli due dei seguenti:"
|
||||
|
||||
#: js/evaluate_questions.js:120
|
||||
msgid "Choose three of the following :"
|
||||
msgstr "Scegli tre dei seguenti:"
|
||||
|
||||
#: js/evaluate_questions.js:122
|
||||
msgid "Choose four of the following :"
|
||||
msgstr "Scegli quattro dei seguenti:"
|
||||
|
||||
#: js/evaluate_questions.js:124
|
||||
msgid "Choose five of the following :"
|
||||
msgstr "Scegli cinque dei seguenti:"
|
||||
|
||||
#: js/evaluate_questions.js:126
|
||||
msgid "Choose six of the following :"
|
||||
msgstr "Scegli sei dei seguenti:"
|
||||
|
||||
#: js/evaluate_questions.js:128
|
||||
msgid "Choose seven of the following :"
|
||||
msgstr "Scegli sette dei seguenti:"
|
||||
|
||||
#~ msgid "Choose one or more of the following :"
|
||||
#~ msgstr "Scegli una o più delle seguenti opzioni:"
|
||||
@@ -0,0 +1,75 @@
|
||||
# Copyright (C) 2020 mailartery
|
||||
# This file is distributed under the same license as the Mailartery plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mailartery 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailartery\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-06-03T20:57:54+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: mailartery\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Mailartery"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WordPress newsletter plugin. Use this: [mailartery_newsletter] shortcode to display the subscription form."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "mailartery"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/mailartery/"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:36
|
||||
msgid "Thanks for subscribing!"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:38
|
||||
msgid "Email not subscribe"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:41
|
||||
msgid "Your email already exist"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:45
|
||||
msgid "Please enter an email address"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:49
|
||||
msgid "nonce verification failed"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:73
|
||||
msgid "subscribe"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:145
|
||||
msgid "export to csv"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:153
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:154
|
||||
msgid "EMAIL ADRRESS"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:155
|
||||
msgid "STATUS"
|
||||
msgstr ""
|
||||
|
||||
#: mailartery.php:156
|
||||
msgid "CREATED DATE"
|
||||
msgstr ""
|
||||
792
spec/fixtures/dynamic_finders/plugin_version/moolamojo/translation_file/moolamojo.pot
vendored
Normal file
792
spec/fixtures/dynamic_finders/plugin_version/moolamojo/translation_file/moolamojo.pot
vendored
Normal file
@@ -0,0 +1,792 @@
|
||||
# Copyright (C) 2020 MoolaMojo
|
||||
# This file is distributed under the same license as the MoolaMojo package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MoolaMojo 0.7.3\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/moolamojo\n"
|
||||
"POT-Creation-Date: 2020-07-09 12:09:41+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: controllers/actions.php:27
|
||||
msgid "When user registers in the site"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/actions.php:28
|
||||
msgid "When user logs in (assigned no more than once per day)"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/actions.php:29
|
||||
msgid "When user publishes a post (or post is approved)"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/actions.php:30
|
||||
msgid "When user posts a comment"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/actions.php:31
|
||||
msgid "When user clicks on a link made with %s shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/buttons.php:136
|
||||
msgid "You can't buy more of this."
|
||||
msgstr ""
|
||||
|
||||
#: controllers/buttons.php:142
|
||||
msgid "You have not enough currency to pay for this."
|
||||
msgstr ""
|
||||
|
||||
#: controllers/packages.php:32
|
||||
msgid "User not found."
|
||||
msgstr ""
|
||||
|
||||
#: controllers/packages.php:38
|
||||
msgid "The amount of %s %d has been manually awarded to %s."
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:15 views/packages.html.php:5
|
||||
msgid "%d of %s for %s"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:16 controllers/shortcodes.php:36
|
||||
#: controllers/shortcodes.php:121 views/packages.html.php:5
|
||||
#: views/packages.html.php:20
|
||||
msgid "Buy now!"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:35
|
||||
msgid "%d %s for %s"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:51
|
||||
msgid "Purchasing a package of virtual currency"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:52
|
||||
msgid "You are about to purchase %d of %s for %s%s"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:53
|
||||
msgid "Payment options:"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:54
|
||||
msgid "%d of %s"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:122
|
||||
msgid "Unnamed"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:139 views/levels.html.php:31
|
||||
#: views/orders.html.php:62 views/packages.html.php:66
|
||||
#: views/products.html.php:19
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:148 controllers/shortcodes.php:176
|
||||
msgid "N/a"
|
||||
msgstr ""
|
||||
|
||||
#: controllers/shortcodes.php:155
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: models/basic.php:108
|
||||
msgid "Moola Mojo"
|
||||
msgstr ""
|
||||
|
||||
#: models/basic.php:109
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: models/basic.php:111
|
||||
msgid "Currency Packages"
|
||||
msgstr ""
|
||||
|
||||
#: models/basic.php:113 views/orders.html.php:24
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: models/basic.php:114
|
||||
msgid "Sell products"
|
||||
msgstr ""
|
||||
|
||||
#: models/basic.php:115
|
||||
msgid "Orders"
|
||||
msgstr ""
|
||||
|
||||
#: models/basic.php:116
|
||||
msgid "Levels"
|
||||
msgstr ""
|
||||
|
||||
#: models/basic.php:117
|
||||
msgid "Transactions"
|
||||
msgstr ""
|
||||
|
||||
#: models/basic.php:118
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: models/user.php:11
|
||||
msgid "Not enough balance"
|
||||
msgstr ""
|
||||
|
||||
#: models/user.php:21
|
||||
msgid "%s balance"
|
||||
msgstr ""
|
||||
|
||||
#: views/actions.html.php:2 views/help.html.php:26
|
||||
msgid "Manage Actions"
|
||||
msgstr ""
|
||||
|
||||
#: views/actions.html.php:4
|
||||
msgid ""
|
||||
"You can reward virtual currency for various actions that users do in your "
|
||||
"site. If you want other actions to be added (including actions from popular "
|
||||
"WP plugins), <a href=\"%s\" target=\"_blank\">please request in the forum</"
|
||||
"a>. Rewarding points from custom plugins is also super easy. <a href=\"%s\" "
|
||||
"target=\"_blank\">Learn here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: views/actions.html.php:8 views/history.html.php:10
|
||||
#: views/products.html.php:12
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: views/actions.html.php:8
|
||||
msgid "Amount of %s"
|
||||
msgstr ""
|
||||
|
||||
#: views/actions.html.php:11
|
||||
msgid "%s reward:"
|
||||
msgstr ""
|
||||
|
||||
#: views/actions.html.php:16
|
||||
msgid "Save Actions"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:2 views/products.html.php:2
|
||||
msgid "Generate Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:3 views/products.html.php:3
|
||||
msgid "Existing Products/Services"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:7
|
||||
msgid "Sell Products or Services"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:9
|
||||
msgid ""
|
||||
"Use the shortcode generator to generate buttons that let you charge virtual "
|
||||
"currency for any kind of products or services."
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:10
|
||||
msgid ""
|
||||
"The orders made will be visible in the Orders page. Paying with the button "
|
||||
"will also call a default + optional custom action to allow integration with "
|
||||
"other plugins. Read more here."
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:12
|
||||
msgid "All shortcode attributes are optional"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:15
|
||||
msgid "Amount of virtual currency to charge:"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:16
|
||||
msgid "Button text (value):"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:17
|
||||
msgid "Product / service name:"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:18
|
||||
msgid "CSS classes"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:19
|
||||
msgid "Confirmation required"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:20
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:21
|
||||
msgid "Javasript Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:22
|
||||
msgid "HTML checkbox element"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:25
|
||||
msgid "Store in Orders database"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:26 views/button-generator.html.php:36
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:27 views/button-generator.html.php:37
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:30
|
||||
msgid "URL to redirect after processing:"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:32
|
||||
msgid "Same user can buy the same product or service this many times:"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:33
|
||||
msgid "Enter 0 for unlimited. We will check orders by product / service name."
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:35
|
||||
msgid "Generate form tags"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:39
|
||||
msgid ""
|
||||
"Set this to \"No\" ONLY if you want to embed the button into existing POST "
|
||||
"form on your site. Otherwise let us generate the form tags or the button "
|
||||
"will simply not work."
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:41
|
||||
msgid "Button name:"
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:42
|
||||
msgid ""
|
||||
"Unique name is required if you want to use several buttons in the same form."
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:45
|
||||
msgid ""
|
||||
"Store this product or service for reference and reusing the button code."
|
||||
msgstr ""
|
||||
|
||||
#: views/button-generator.html.php:50
|
||||
msgid "Generate Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:2
|
||||
msgid "MoolaMojo User Manual"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:4
|
||||
msgid "MoolaMojo is a plugin for virtual currency in WordPress. It lets you:"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:6
|
||||
msgid ""
|
||||
"Award currency for various user actions like logging in, posting a comment, "
|
||||
"publishing a post, etc"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:7
|
||||
msgid ""
|
||||
"Sell products or services for virtual currency. Just generate shortcode for "
|
||||
"a button - it is super easy!"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:8
|
||||
msgid "Define user level based on the currency they own."
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:9
|
||||
msgid ""
|
||||
"The easiest possible integration with other plugins lets developers charge "
|
||||
"or award MoolaMojo virtual currency for their actions. We will provide a "
|
||||
"page with integrated plugins soon!"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:12
|
||||
msgid "Setting it up"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:14
|
||||
msgid ""
|
||||
"After installing the plugin go to the <a href=\"%s\">Settings</a> page for "
|
||||
"initial configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:17
|
||||
msgid ""
|
||||
"Select the name of your currency. We suggest several names but you can use "
|
||||
"your own."
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:18
|
||||
msgid ""
|
||||
"You can allow users to purchase virtual currency with real money. If you "
|
||||
"select this, after saving you will see the options to setup your payment "
|
||||
"settings."
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:19
|
||||
msgid ""
|
||||
"Allow users to check out virtual currency for real money. This will let "
|
||||
"users send you check out requests which you can handle manually."
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:22
|
||||
msgid "Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:23
|
||||
msgid ""
|
||||
"- displays the currently logged in user credit balance. You can pass "
|
||||
"attribute \"user_id\" to show the balance of other user."
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:24
|
||||
msgid "- Generates clickable link which can reward credits for clicking on it."
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:28
|
||||
msgid ""
|
||||
"<a href=\"%s\">This page</a> lets you setup the virtual currency which will "
|
||||
"be awarded when user completes various actions. More actions may and will be "
|
||||
"added in the future versions of the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:30
|
||||
msgid "Selling Products and Services"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:32
|
||||
msgid ""
|
||||
"Selling products is as easy as creating a shortcode for \"Buy\" button! When "
|
||||
"user purchases the product they will be charged the associated points. If "
|
||||
"you choose to store the order you will be able to see it in your Orders page "
|
||||
"and fulfill it. But this is not all. The plugin will fire action that can be "
|
||||
"used for automated handling the order via any custom plugin or theme "
|
||||
"function. For more information check our <a href=\"%s\" target=\"_blank"
|
||||
"\">online documentation</a>, section \"Catch button actions\"."
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:34
|
||||
msgid "Manage Levels"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:36 views/levels.html.php:4
|
||||
msgid ""
|
||||
"You can create any number of user levels and have a level assigned to user "
|
||||
"when they reach certain virtual currency balance. Levels can be reversible - "
|
||||
"this defines whether the user will lose their level when their balance falls "
|
||||
"below the required amount, or a level once earned is never lost."
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:38
|
||||
msgid "There is also a shortcode which can be used to display the user level."
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:40
|
||||
msgid "Integration To WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: views/help.html.php:42
|
||||
msgid ""
|
||||
"This plugin has built-in integration to WooCommerce which allows you to sell "
|
||||
"virtual currency packages as WooCommerce products. <a href=\"%s\" target="
|
||||
"\"_blank\">Learn more here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:2
|
||||
msgid "Transactions History"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:7
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:7
|
||||
msgid "Date / time"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:8 views/history.html.php:9
|
||||
msgid "Amount %s"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:11
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:23
|
||||
msgid "earned"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:26
|
||||
msgid "manually assigned"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:29
|
||||
msgid "purchased package"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:37
|
||||
msgid "for publishing a post"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:39
|
||||
msgid "for logging in"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:40
|
||||
msgid "for registration"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:50
|
||||
msgid "[previous page]"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:52
|
||||
msgid "[next page]"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:55
|
||||
msgid "Show me a button to cleanup the whole history."
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:57
|
||||
msgid "Warning: this action cannot be reversed!"
|
||||
msgstr ""
|
||||
|
||||
#: views/history.html.php:58
|
||||
msgid "Yes, clear the translation history log"
|
||||
msgstr ""
|
||||
|
||||
#: views/levels.html.php:2
|
||||
msgid "Manage User Levels"
|
||||
msgstr ""
|
||||
|
||||
#: views/levels.html.php:6
|
||||
msgid ""
|
||||
"Use the following shortcode to display the user level: %s. If you pass a "
|
||||
"number to the argument user_login, the shortcode will display the level of "
|
||||
"that user. When left empty, it displays the level of the currently logged "
|
||||
"user."
|
||||
msgstr ""
|
||||
|
||||
#: views/levels.html.php:9 views/levels.html.php:17
|
||||
msgid "Level name:"
|
||||
msgstr ""
|
||||
|
||||
#: views/levels.html.php:9 views/levels.html.php:17
|
||||
msgid "Required %s:"
|
||||
msgstr ""
|
||||
|
||||
#: views/levels.html.php:10 views/levels.html.php:19
|
||||
msgid "Reversible"
|
||||
msgstr ""
|
||||
|
||||
#: views/levels.html.php:11
|
||||
msgid "Add Level"
|
||||
msgstr ""
|
||||
|
||||
#: views/levels.html.php:20 views/packages.html.php:18
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: views/levels.html.php:21 views/orders.html.php:44 views/packages.html.php:19
|
||||
#: views/products.html.php:19
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:2
|
||||
msgid "Moola Mojo Options"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:6
|
||||
msgid "Currency name:"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:12
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:16
|
||||
msgid "Allow users to purchase packages of virtual currency with real money"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:19
|
||||
msgid "Allow users to checkout virtual currency for real money"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:22
|
||||
msgid "Set exchange rate: 1 virtual currency = "
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:29 views/options.html.php:50
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:34
|
||||
msgid "Save Options"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:42
|
||||
msgid "Payment Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:44
|
||||
msgid "Payment currency:"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:54
|
||||
msgid ""
|
||||
"Here you can specify payment methods that you will accept to sell packages "
|
||||
"of virtual currency."
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:56
|
||||
msgid "Accept PayPal"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:59
|
||||
msgid "Use Paypal in sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:60
|
||||
msgid "Your Paypal ID:"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:61
|
||||
msgid "After payment go to:"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:62
|
||||
msgid ""
|
||||
"When left blank it goes to the course page. If you enter specific full URL, "
|
||||
"the user will be returned to that URL."
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:64
|
||||
msgid ""
|
||||
"Note: Paypal IPN will not work if your site is behind a \"htaccess\" login "
|
||||
"box or running on localhost. Your site must be accessible from the internet "
|
||||
"for the IPN to work. In cases when IPN cannot work you need to use Paypal "
|
||||
"PDT."
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:66
|
||||
msgid ""
|
||||
"Use Paypal PDT instead of IPN (<a href=\"%s\" target=\"_blank\">Why and how</"
|
||||
"a>)"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:69
|
||||
msgid "Paypal PDT Token:"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:73
|
||||
msgid "Accept Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:76
|
||||
msgid "Your Public Key:"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:77
|
||||
msgid "Your Secret Key:"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:80
|
||||
msgid "Accept other payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:81
|
||||
msgid ""
|
||||
"This option lets you paste your own button HTML code or other manual "
|
||||
"instructions, for example bank wire. These payments will have to be "
|
||||
"processed manually unless you can build your own script to verify them."
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:84
|
||||
msgid ""
|
||||
"Enter text or HTML code for payment button(s). You can use the following "
|
||||
"variables: {{item-id}}, {{item-name}}, {{user-id}}, {{amount}}."
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:91
|
||||
msgid "Save payment settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/options.html.php:94
|
||||
msgid "View payments errorlog"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:2
|
||||
msgid "Manage Orders"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:5
|
||||
msgid "There are no orders at this time."
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:10
|
||||
msgid "Order statuses:"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:12
|
||||
msgid "<b>Pending:</b> the order is not paid successfully for some reason."
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:13
|
||||
msgid ""
|
||||
"<b>Paid:</b> by default all orders made through MoolaMojo are stored with "
|
||||
"this status. It means the customer has paid the required points but their "
|
||||
"product or service is not yet delivered."
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:14
|
||||
msgid ""
|
||||
"<b>Completed:</b> the status when you have delivered the product or service "
|
||||
"to the customer."
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:19
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:20
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:21
|
||||
msgid "Product/service"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:22
|
||||
msgid "Date/time"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:23
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:29
|
||||
msgid "%1$s (%2$s)"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:35
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:36
|
||||
msgid "Paid"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:37
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:53
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: views/orders.html.php:56
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:2
|
||||
msgid "Manage Currency Packages"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:4
|
||||
msgid ""
|
||||
"Here you can create packages of virtual currency that user can purchase for "
|
||||
"real money. You can use the shortcode %s to display automatically generated "
|
||||
"table with the packages. There are also individual \"buy now\" button "
|
||||
"shortcodes for each package if you prefer to craft your own page for selling "
|
||||
"them."
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:8 views/packages.html.php:16
|
||||
msgid "Amount virtual currency:"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:8 views/packages.html.php:16
|
||||
msgid "Price in %s:"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:10
|
||||
msgid "Add Package"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:21
|
||||
msgid "Package ID: %d"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:30
|
||||
msgid "Manually award %s to user"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:31
|
||||
msgid ""
|
||||
"This allows you to assign some virtual currency to any user in your site "
|
||||
"without them to purchase the package."
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:36
|
||||
msgid "WP user login or email address:"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:37
|
||||
msgid "Select package:"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:39
|
||||
msgid "%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:42
|
||||
msgid "Award currency"
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:51
|
||||
msgid "Please enter numeric amount of virtual currency to be sold."
|
||||
msgstr ""
|
||||
|
||||
#: views/packages.html.php:57
|
||||
msgid "Please enter numeric price of the package (real currency)."
|
||||
msgstr ""
|
||||
|
||||
#: views/products.html.php:7
|
||||
msgid "Manage Products and Services"
|
||||
msgstr ""
|
||||
|
||||
#: views/products.html.php:11
|
||||
msgid "Product/Service Name"
|
||||
msgstr ""
|
||||
|
||||
#: views/products.html.php:11
|
||||
msgid "Price in %s"
|
||||
msgstr ""
|
||||
|
||||
#: views/products.html.php:18
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: views/products.html.php:23 views/products.html.php:26
|
||||
msgid "previous page"
|
||||
msgstr ""
|
||||
|
||||
#: views/products.html.php:30
|
||||
msgid "You have not stored any products or services yet."
|
||||
msgstr ""
|
||||
784
spec/fixtures/dynamic_finders/plugin_version/mybooker/translation_file/languages/mybooker-da_DK.po
vendored
Normal file
784
spec/fixtures/dynamic_finders/plugin_version/mybooker/translation_file/languages/mybooker-da_DK.po
vendored
Normal file
@@ -0,0 +1,784 @@
|
||||
# Copyright (C) 2019 Stefan Tran
|
||||
# This file is distributed under the same license as the MyBooker plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MyBooker 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mybooker\n"
|
||||
"POT-Creation-Date: 2019-06-25T08:04:02+00:00\n"
|
||||
"PO-Revision-Date: 2019-06-26 17:57+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: da_DK\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.3\n"
|
||||
"X-Domain: mybooker\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "MyBooker"
|
||||
msgstr "MyBooker"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://pixelmade.dk"
|
||||
msgstr "http://pixelmade.dk"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Stefan Tran"
|
||||
msgstr "Stefan Tran"
|
||||
|
||||
#: includes/booking.php:33 includes/booking.php:37
|
||||
msgid "Your shortcode or the form was not setup correctly, please check again"
|
||||
msgstr "Din shortcode eller formen er ikke opsat korrekt, venligst tjek igen"
|
||||
|
||||
#: includes/booking.php:57 includes/admin-settings.php:356
|
||||
#: includes/admin-booking-items-list.php:58
|
||||
msgid "USD"
|
||||
msgstr "USD"
|
||||
|
||||
#: includes/booking.php:58 includes/admin-settings.php:357
|
||||
#: includes/admin-booking-items-list.php:59
|
||||
msgid "EURO"
|
||||
msgstr "EURO"
|
||||
|
||||
#: includes/booking.php:59 includes/admin-settings.php:358
|
||||
msgid "DKK"
|
||||
msgstr "DKK"
|
||||
|
||||
#: includes/booking.php:95 includes/admin-booking-item.php:86
|
||||
msgid "Guest"
|
||||
msgstr "Gæst"
|
||||
|
||||
#: includes/booking.php:96
|
||||
msgid "Member"
|
||||
msgstr "Medlem"
|
||||
|
||||
#: includes/booking-entry.php:87
|
||||
msgid "Could not delete booking"
|
||||
msgstr "Kunne ikke slette bookningen"
|
||||
|
||||
#: includes/booking-entry.php:90 includes/booking-entry.php:119
|
||||
msgid "Your booking have been deleted"
|
||||
msgstr "Din bookning er blevet slettet"
|
||||
|
||||
#: includes/booking-entry.php:121
|
||||
msgid "can not delete slot"
|
||||
msgstr "kan ikke slette tidspunkt"
|
||||
|
||||
#: includes/booking-entry.php:262
|
||||
msgid "Please enter your name"
|
||||
msgstr "Skriv dit navn"
|
||||
|
||||
#: includes/booking-entry.php:265
|
||||
msgid "Please enter your email"
|
||||
msgstr "Skriv din email"
|
||||
|
||||
#: includes/booking-entry.php:267
|
||||
msgid "E-Mail is in wrong format"
|
||||
msgstr "E-mail er ikke i korrekt format"
|
||||
|
||||
#: includes/booking-entry.php:271 includes/booking-entry.php:554
|
||||
#: includes/booking-entry.php:561
|
||||
msgid "Please select a time"
|
||||
msgstr "Vælg tidspunkt"
|
||||
|
||||
#: includes/booking-entry.php:390
|
||||
msgid ""
|
||||
"Your last booking reach limitation, please contact admin for more detail"
|
||||
msgstr ""
|
||||
"Din seneste bookning har nået en begrænsning, venligst kontakt sidens "
|
||||
"administrator for flere detaljer"
|
||||
|
||||
#: includes/booking-entry.php:395
|
||||
msgid "Your booking is duplicated, please refresh the page and try again"
|
||||
msgstr "Dobbeltbookning, venligst genopfrisk siden og prøv igen"
|
||||
|
||||
#: includes/booking-entry.php:402
|
||||
msgid "The email was used with a member, please try to login and continue"
|
||||
msgstr "Forsøg venligst at logge ind for at fortsætte"
|
||||
|
||||
#: includes/booking-entry.php:407
|
||||
msgid "The email is not yours, please use the registered email to book"
|
||||
msgstr "Brug venligst den registrerede email til at booke"
|
||||
|
||||
#: includes/booking-entry.php:436 includes/booking-entry.php:637
|
||||
msgid "Item was successfully saved"
|
||||
msgstr "Produktet blev gemt"
|
||||
|
||||
#: includes/booking-entry.php:439
|
||||
msgid "There was an error while saving item"
|
||||
msgstr "Der opstod en fejl i forsøget på at gemme dit produkt"
|
||||
|
||||
#: includes/booking-entry.php:448
|
||||
msgid "Item was successfully updated"
|
||||
msgstr "Produktet blev opdateret"
|
||||
|
||||
#: includes/booking-entry.php:450
|
||||
msgid "There was an error while updating item"
|
||||
msgstr "Der opstod en fejl i forsøget på at opdatere dit produkt"
|
||||
|
||||
#: includes/booking-entry.php:533
|
||||
msgid "Maximum active bookings allowed: %s"
|
||||
msgstr "Du kan ikke booke mere end %s slot(s)."
|
||||
|
||||
#: includes/booking-entry.php:534
|
||||
msgid "You can only select within %s day(s)."
|
||||
msgstr "Du kan kun vælge inden for %s day(s)."
|
||||
|
||||
#: includes/booking-entry.php:543
|
||||
msgid "Please select a date"
|
||||
msgstr "Vælg dato"
|
||||
|
||||
#: includes/booking-entry.php:543 includes/booking-item.php:870
|
||||
msgid "Today"
|
||||
msgstr "I dag"
|
||||
|
||||
#: includes/booking-entry.php:547 includes/booking-item.php:861
|
||||
msgid "Please select"
|
||||
msgstr "Vælg enhed"
|
||||
|
||||
#: includes/booking-entry.php:565
|
||||
msgid "Enter your details"
|
||||
msgstr "Skriv dine oplysninger"
|
||||
|
||||
#: includes/booking-entry.php:566 includes/admin-booking-entry.php:188
|
||||
msgid "Your name"
|
||||
msgstr "Dit navn"
|
||||
|
||||
#: includes/booking-entry.php:595
|
||||
msgid "Your e-mail"
|
||||
msgstr "Din e-mail"
|
||||
|
||||
#: includes/booking-entry.php:599
|
||||
msgid "Message"
|
||||
msgstr "Kommentar til din booking"
|
||||
|
||||
#: includes/booking-entry.php:629
|
||||
msgid "Booking details"
|
||||
msgstr "Booking opsummering"
|
||||
|
||||
#: includes/booking-entry.php:630
|
||||
msgid "Your booking"
|
||||
msgstr "Enhed navn"
|
||||
|
||||
#: includes/booking-entry.php:631
|
||||
msgid "Booking cost"
|
||||
msgstr "Enhed pris"
|
||||
|
||||
#: includes/booking-entry.php:632
|
||||
msgid "Number of bookings"
|
||||
msgstr "Antal bookninger"
|
||||
|
||||
#: includes/booking-entry.php:633
|
||||
msgid "Total price"
|
||||
msgstr "Pris i alt"
|
||||
|
||||
#: includes/booking-entry.php:644
|
||||
msgid "Book"
|
||||
msgstr "Book"
|
||||
|
||||
#: includes/booking-entry.php:746 includes/admin-booking-entries-list.php:197
|
||||
msgid "#"
|
||||
msgstr "#"
|
||||
|
||||
#: includes/booking-entry.php:747 includes/admin-booking-entries-list.php:200
|
||||
msgid "Item"
|
||||
msgstr "Produkt"
|
||||
|
||||
#: includes/booking-entry.php:748 includes/admin-booking-entry.php:115
|
||||
msgid "Total slots"
|
||||
msgstr "Pladser i alt"
|
||||
|
||||
#: includes/booking-entry.php:752
|
||||
msgid "Created date"
|
||||
msgstr "Oprettet dato"
|
||||
|
||||
#: includes/booking-entry.php:774 includes/admin-booking-entries-list.php:165
|
||||
#: includes/admin-booking-items-list.php:87
|
||||
msgid "Delete"
|
||||
msgstr "Slet"
|
||||
|
||||
#: includes/booking-entry.php:784
|
||||
msgid "Delete all"
|
||||
msgstr "Slet alle"
|
||||
|
||||
#: includes/booking-entry.php:792
|
||||
msgid "Please login to view the page"
|
||||
msgstr "Log ind for at se siden"
|
||||
|
||||
#: includes/admin-settings.php:33
|
||||
msgid "Booking Form Configuration"
|
||||
msgstr "Opsætning af Booking formular"
|
||||
|
||||
#: includes/admin-settings.php:40
|
||||
msgid "Non bookable text."
|
||||
msgstr "Utilgængelig tekst"
|
||||
|
||||
#: includes/admin-settings.php:56
|
||||
msgid "Booking Email Configuration"
|
||||
msgstr "Opsætning af e-mail"
|
||||
|
||||
#: includes/admin-settings.php:63
|
||||
msgid "From e-mail"
|
||||
msgstr "Send e-mail fra"
|
||||
|
||||
#: includes/admin-settings.php:71
|
||||
msgid "Also Send E-mail To"
|
||||
msgstr "Send også e-mail til"
|
||||
|
||||
#: includes/admin-settings.php:79
|
||||
msgid "From Name"
|
||||
msgstr "Afsenders navn"
|
||||
|
||||
#: includes/admin-settings.php:87
|
||||
msgid "Email subject"
|
||||
msgstr "E-mail emne"
|
||||
|
||||
#: includes/admin-settings.php:95
|
||||
msgid "Email Message"
|
||||
msgstr "E-mail besked"
|
||||
|
||||
#: includes/admin-settings.php:103
|
||||
msgid "Booking Payment Method Configuration"
|
||||
msgstr "Opsætning af betalingsmetode"
|
||||
|
||||
#: includes/admin-settings.php:110
|
||||
msgid "Stripe API Key"
|
||||
msgstr "Stripe API Key"
|
||||
|
||||
#: includes/admin-settings.php:118
|
||||
msgid "Stripe API Secret"
|
||||
msgstr "Stripe API Secret"
|
||||
|
||||
#: includes/admin-settings.php:126
|
||||
msgid "Enable Test Mode"
|
||||
msgstr "Aktiver test tilstand"
|
||||
|
||||
#: includes/admin-settings.php:134
|
||||
msgid "Stripe API Test Key"
|
||||
msgstr "Stripe API Test Key"
|
||||
|
||||
#: includes/admin-settings.php:142
|
||||
msgid "Stripe API Test Secret"
|
||||
msgstr "Stripe API Test Secret"
|
||||
|
||||
#: includes/admin-settings.php:151
|
||||
msgid "Default Currency"
|
||||
msgstr "Standard valuta"
|
||||
|
||||
#: includes/admin-settings.php:158
|
||||
msgid "Select Currency"
|
||||
msgstr "Vælg valuta"
|
||||
|
||||
#: includes/admin-settings.php:183 includes/admin-settings.php:193
|
||||
#: includes/admin.php:23
|
||||
msgid "Bookings"
|
||||
msgstr "Bookninger"
|
||||
|
||||
#: includes/admin-settings.php:260
|
||||
msgid "Short text"
|
||||
msgstr "Kort tekst"
|
||||
|
||||
#: includes/admin-settings.php:263
|
||||
msgid "Long text"
|
||||
msgstr "Lang tekst"
|
||||
|
||||
#: includes/admin-settings.php:265
|
||||
msgid "Message text for unavailable slot"
|
||||
msgstr "Besked ved utilgængelige timer"
|
||||
|
||||
#: includes/admin-settings.php:274
|
||||
msgid "Enter the email you want to display as "from" in the email send"
|
||||
msgstr "Skriv dine oplysninger."
|
||||
|
||||
#: includes/admin-settings.php:283
|
||||
msgid "Please enter \"Bcc\" email."
|
||||
msgstr "Skriv din email."
|
||||
|
||||
#: includes/admin-settings.php:293
|
||||
msgid "Enter the name you want to display as from in the email send"
|
||||
msgstr "Afsenders navn"
|
||||
|
||||
#: includes/admin-settings.php:302
|
||||
msgid "Enter the subject for the email send"
|
||||
msgstr "Email emne"
|
||||
|
||||
#: includes/admin-settings.php:311
|
||||
msgid ""
|
||||
"You can use tags to add booking details into the email message content.<br /> Allowed "
|
||||
"tags : <em>[booking_email], [booking_name], [booking_datetime], [item_name], "
|
||||
"[price], [slots], [total]</em>"
|
||||
msgstr ""
|
||||
"Du kan bruge tags til at tilføje detaljer i email indholdet.<br /> Tilladte "
|
||||
"tags: <em>[booking_email], [booking_name], [booking_datetime], [item_name], "
|
||||
"[price], [slots], [total]</em>"
|
||||
|
||||
#: includes/admin-settings.php:365
|
||||
msgid "Please add email configuration to setup booking email transaction"
|
||||
msgstr ""
|
||||
"Tilføj venligst e-mail-konfiguration for at konfigurere booking-e-mail-"
|
||||
"transaktionen"
|
||||
|
||||
#: includes/admin-settings.php:370
|
||||
msgid ""
|
||||
"Please create Stripe API details and add here to use with booking public "
|
||||
"functions"
|
||||
msgstr ""
|
||||
"Tilføj Stripe API detaljer for at bruge Stripe i forbindelse med betaling"
|
||||
|
||||
#: includes/admin-settings.php:374
|
||||
msgid "Select default currency for booking public functions"
|
||||
msgstr "Vælg standard valuta"
|
||||
|
||||
#: includes/admin-settings.php:402 templates/__page.php:5
|
||||
msgid "Booking Email"
|
||||
msgstr "Booking e-mail"
|
||||
|
||||
#: includes/admin-settings.php:403 templates/__page.php:6
|
||||
msgid "Payment Methods"
|
||||
msgstr "Betalingsmetoder"
|
||||
|
||||
#: includes/admin-settings.php:428 includes/admin-booking-entry.php:156
|
||||
msgid "Save"
|
||||
msgstr "Gem"
|
||||
|
||||
#: includes/admin-booking-entries-list.php:40
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
#: includes/admin-booking-entries-list.php:139
|
||||
msgid "No booked entry yet"
|
||||
msgstr "Ingen bookninger endnu"
|
||||
|
||||
#: includes/admin-booking-entries-list.php:164
|
||||
msgid "View"
|
||||
msgstr "Vis"
|
||||
|
||||
#: includes/admin-booking-entries-list.php:198
|
||||
#: includes/admin-booking-entry.php:89 includes/admin-booking-entry.php:184
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#: includes/admin-booking-entries-list.php:199
|
||||
#: includes/admin-booking-entry.php:193
|
||||
msgid "E-Mail"
|
||||
msgstr "Email"
|
||||
|
||||
#: includes/admin-booking-entries-list.php:201
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#: includes/admin-booking-entries-list.php:202
|
||||
msgid "Slot"
|
||||
msgstr "Time"
|
||||
|
||||
#: includes/admin-booking-entries-list.php:203
|
||||
#: includes/admin-booking-entry.php:132
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: includes/admin-booking-entries-list.php:204
|
||||
#: includes/admin-booking-items-list.php:123
|
||||
msgid "Date"
|
||||
msgstr "Dato"
|
||||
|
||||
#: includes/admin-booking-item.php:43
|
||||
msgid "Item: #%d"
|
||||
msgstr "Produkt: #%d"
|
||||
|
||||
#: includes/admin-booking-item.php:45 includes/booking-item.php:162
|
||||
msgid "Add New Item"
|
||||
msgstr "Tilføj nyt produkt"
|
||||
|
||||
#: includes/admin-booking-item.php:66
|
||||
msgid "Item details"
|
||||
msgstr "Produkt detaljer"
|
||||
|
||||
#: includes/admin-booking-item.php:67
|
||||
msgid "Please enter item details"
|
||||
msgstr "Skriv detaljer for din bookning"
|
||||
|
||||
#: includes/admin-booking-item.php:72
|
||||
msgid "Price per slot"
|
||||
msgstr "Pris per enhed"
|
||||
|
||||
#: includes/admin-booking-item.php:81
|
||||
msgid "Available for"
|
||||
msgstr "Tilgængelig for"
|
||||
|
||||
#: includes/admin-booking-item.php:87
|
||||
msgid "Member (Login)"
|
||||
msgstr "Medlem (login)"
|
||||
|
||||
#: includes/admin-booking-item.php:104
|
||||
msgid "Maximum bookable slot(s) per user per day. Leave blank for no maximum settings."
|
||||
msgstr "Maksimale antal bookninger per time"
|
||||
|
||||
#: includes/admin-booking-item.php:108
|
||||
msgid "Sets a maximum for bookable slots per day for any user. This setting overrides any settings for maximum bookable slot per guest or member. Leave blank for no maximum settings."
|
||||
msgstr "Maksimale antal bookninger per bruger per dag"
|
||||
|
||||
#: includes/admin-booking-item.php:113 includes/admin-booking-item.php:123
|
||||
msgid "Maximum booking slot allowed"
|
||||
msgstr "Maksimale antal bookninger tilladt"
|
||||
|
||||
#: includes/admin-booking-item.php:117
|
||||
msgid "per guest"
|
||||
msgstr "per gæst"
|
||||
|
||||
#: includes/admin-booking-item.php:118
|
||||
msgid "Sets a maximum for bookable slots per day for a guest user. Set to ‘0’ (zero) for not allowing guests to make a booking. Leave blank for no maximum settings."
|
||||
msgstr "Maksimale antal bookninger per gæst"
|
||||
|
||||
#: includes/admin-booking-item.php:127
|
||||
msgid "per member"
|
||||
msgstr "per medlem"
|
||||
|
||||
#: includes/admin-booking-item.php:128
|
||||
msgid "Sets a maximum for bookable slots per day for a member user. Set to ‘0’ (zero) for not allowing members to make a booking. Leave blank for no maximum settings."
|
||||
msgstr "Maksimale antal bookninger per medlem"
|
||||
|
||||
#: includes/admin-booking-item.php:133
|
||||
msgid "Booking range for guests"
|
||||
msgstr "Maksimal booking periode for gæster"
|
||||
|
||||
#: includes/admin-booking-item.php:137 includes/admin-booking-item.php:147
|
||||
msgid "day(s)"
|
||||
msgstr "dag(e)"
|
||||
|
||||
#: includes/admin-booking-item.php:138
|
||||
msgid "Sets a maximum period (days) counted from ‘today’ where it is possible for a guest to make a booking. Leave blank for no maximum settings."
|
||||
msgstr "Gæster kan kun booke inden for denne periode"
|
||||
|
||||
#: includes/admin-booking-item.php:143
|
||||
msgid "Booking range for members"
|
||||
msgstr "Maksimal booking periode for medlemmer"
|
||||
|
||||
#: includes/admin-booking-item.php:148
|
||||
msgid "Sets a maximum period (days) counted from 'today' where it is possible for a member to make a booking. Leave blank for no maximum settings."
|
||||
msgstr "Medlemmer kan kun booke inden for denne periode"
|
||||
|
||||
#: includes/admin-booking-item.php:160
|
||||
msgid "Non bookable days. Select any day(s) where bookings cannot be made. This setting repeats itself and stops at the set ‘Stop date’ (see below) if set "
|
||||
msgstr "Utilgængelig ugedag "
|
||||
|
||||
#: includes/admin-booking-item.php:166
|
||||
msgid "Monday"
|
||||
msgstr "Mandag"
|
||||
|
||||
#: includes/admin-booking-item.php:167
|
||||
msgid "Tuesday"
|
||||
msgstr "Tirsdag"
|
||||
|
||||
#: includes/admin-booking-item.php:168
|
||||
msgid "Wednesday"
|
||||
msgstr "Onsdag"
|
||||
|
||||
#: includes/admin-booking-item.php:169
|
||||
msgid "Thursday"
|
||||
msgstr "Torsdag"
|
||||
|
||||
#: includes/admin-booking-item.php:170
|
||||
msgid "Friday"
|
||||
msgstr "Fredag"
|
||||
|
||||
#: includes/admin-booking-item.php:171
|
||||
msgid "Saturday"
|
||||
msgstr "Lørdag"
|
||||
|
||||
#: includes/admin-booking-item.php:172
|
||||
msgid "Sunday"
|
||||
msgstr "Søndag"
|
||||
|
||||
#: includes/admin-booking-item.php:186
|
||||
msgid "Stop date for Non bookable days. From the Stop date and going forward Non bookable days becomes bookable again."
|
||||
msgstr "Stop ved"
|
||||
|
||||
#: includes/admin-booking-item.php:197
|
||||
msgid "Close Date"
|
||||
msgstr "Lukkedato"
|
||||
|
||||
#: includes/admin-booking-item.php:205 includes/admin-booking-item.php:220
|
||||
#: includes/admin-booking-item.php:238 includes/admin-booking-item.php:258
|
||||
msgid "From"
|
||||
msgstr "Fra"
|
||||
|
||||
#: includes/admin-booking-item.php:208 includes/admin-booking-item.php:223
|
||||
#: includes/admin-booking-item.php:240 includes/admin-booking-item.php:260
|
||||
msgid "To"
|
||||
msgstr "Til"
|
||||
|
||||
#: includes/admin-booking-item.php:235
|
||||
msgid "Open Hours for booking"
|
||||
msgstr "Åbningstid"
|
||||
|
||||
#: includes/admin-booking-item.php:246
|
||||
msgid "Booking duration."
|
||||
msgstr "Varighed af bookning"
|
||||
|
||||
#: includes/admin-booking-item.php:250
|
||||
msgid "Minute"
|
||||
msgstr "Minut"
|
||||
|
||||
#: includes/admin-booking-item.php:255
|
||||
msgid "Non bookable time"
|
||||
msgstr "Pause"
|
||||
|
||||
#: includes/admin-booking-item.php:262
|
||||
msgid "Select a time period during the day where bookings cannot be made. This setting repeats itself and will effect all following day(s) from "today"."
|
||||
msgstr "Vælg start og sluttidspunkt for pause"
|
||||
|
||||
#: includes/admin-booking-item.php:317
|
||||
msgid "Invalid nonce specified"
|
||||
msgstr "Ugyldig specifikation"
|
||||
|
||||
#: includes/admin-booking-item.php:317
|
||||
msgid "Error"
|
||||
msgstr "Fejl"
|
||||
|
||||
#: includes/admin-booking-item.php:367 includes/admin-booking-entry.php:30
|
||||
msgid "Items deleted: %d"
|
||||
msgstr "Produkt(er) slettet"
|
||||
|
||||
#: includes/admin-booking-item.php:371 includes/booking-item.php:157
|
||||
#: includes/booking-item.php:183
|
||||
msgid "Booking Item"
|
||||
msgstr "Booking produkt"
|
||||
|
||||
#: includes/admin-booking-item.php:372 includes/admin-booking-entry.php:35
|
||||
msgid "Add new"
|
||||
msgstr "Tilføj ny"
|
||||
|
||||
#: includes/booking-email.php:109
|
||||
msgid "Could not send email, please check plugin settings"
|
||||
msgstr "Kunne ikke sende email, tjek venligst indstillingerne"
|
||||
|
||||
#: includes/booking-email.php:112
|
||||
msgid "Could find entry"
|
||||
msgstr "Kunne ikke finde det ønskede resultat"
|
||||
|
||||
#: includes/admin-booking-items-list.php:51
|
||||
msgid "min"
|
||||
msgstr "minimum"
|
||||
|
||||
#: includes/admin-booking-items-list.php:86
|
||||
msgid "Edit"
|
||||
msgstr "Ret"
|
||||
|
||||
#: includes/admin-booking-items-list.php:119
|
||||
#: includes/admin-booking-entry.php:96
|
||||
msgid "Item Name"
|
||||
msgstr "Enhed navn"
|
||||
|
||||
#: includes/admin-booking-items-list.php:120
|
||||
msgid "Price"
|
||||
msgstr "Pris"
|
||||
|
||||
#: includes/admin-booking-items-list.php:121
|
||||
msgid "Max per slot"
|
||||
msgstr "Maksimum per plads"
|
||||
|
||||
#: includes/admin-booking-items-list.php:122
|
||||
msgid "Duration"
|
||||
msgstr "Varighed"
|
||||
|
||||
#: includes/admin-booking-entry.php:34
|
||||
msgid "Booking Entries"
|
||||
msgstr "Booking poster"
|
||||
|
||||
#: includes/admin-booking-entry.php:78
|
||||
msgid "Item not found"
|
||||
msgstr "Enhed ikke fundet"
|
||||
|
||||
#: includes/admin-booking-entry.php:82
|
||||
msgid "Booking Entry"
|
||||
msgstr "Booking post"
|
||||
|
||||
#: includes/admin-booking-entry.php:83
|
||||
msgid "back to list"
|
||||
msgstr "tilbage til listen"
|
||||
|
||||
#: includes/admin-booking-entry.php:90
|
||||
msgid "E-mail"
|
||||
msgstr "E-mail"
|
||||
|
||||
#: includes/admin-booking-entry.php:97
|
||||
msgid "Booking Type"
|
||||
msgstr "Booking type"
|
||||
|
||||
#: includes/admin-booking-entry.php:101
|
||||
msgid "Booked Slots"
|
||||
msgstr "Bookede pladser"
|
||||
|
||||
#: includes/admin-booking-entry.php:117
|
||||
msgid "Item Price"
|
||||
msgstr "Enhed pris"
|
||||
|
||||
#: includes/admin-booking-entry.php:118
|
||||
msgid "Total Cost"
|
||||
msgstr "Pris i alt"
|
||||
|
||||
#: includes/admin-booking-entry.php:121
|
||||
msgid "Payment Method"
|
||||
msgstr "Betalingsmetoder"
|
||||
|
||||
#: includes/admin-booking-entry.php:122
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransaktion"
|
||||
|
||||
#: includes/admin-booking-entry.php:197
|
||||
msgid "Your E-Mail"
|
||||
msgstr "Din e-mail"
|
||||
|
||||
#: includes/admin.php:34 includes/admin.php:35
|
||||
msgid "Add Entry"
|
||||
msgstr "Tilføj post"
|
||||
|
||||
#: includes/admin.php:45 includes/admin.php:46
|
||||
msgid "Booking Items"
|
||||
msgstr "Booking produkter"
|
||||
|
||||
#: includes/admin.php:55 includes/admin.php:56 includes/booking-item.php:163
|
||||
msgid "Add Item"
|
||||
msgstr "Tilføj produkt"
|
||||
|
||||
#: includes/admin.php:66 mybooker.php:151
|
||||
msgid "Settings"
|
||||
msgstr "Indstillinger"
|
||||
|
||||
#: includes/admin.php:110
|
||||
msgid "Add Form"
|
||||
msgstr "Tilføj form"
|
||||
|
||||
#: includes/admin.php:113
|
||||
msgid "Add Booking Form"
|
||||
msgstr "Tilføj booking form"
|
||||
|
||||
#: includes/booking-item.php:154
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Booking Items"
|
||||
msgstr "Booking produkter"
|
||||
|
||||
#: includes/booking-item.php:155
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Booking Item"
|
||||
msgstr "Booking produkt"
|
||||
|
||||
#: includes/booking-item.php:158
|
||||
msgid "Items Archives"
|
||||
msgstr "Arkiv"
|
||||
|
||||
#: includes/booking-item.php:159
|
||||
msgid "Form Attributes"
|
||||
msgstr "Form egenskaber"
|
||||
|
||||
#: includes/booking-item.php:160
|
||||
msgid "Parent Form:"
|
||||
msgstr "Forældre form:"
|
||||
|
||||
#: includes/booking-item.php:161
|
||||
msgid "All Items"
|
||||
msgstr "Alle produkter"
|
||||
|
||||
#: includes/booking-item.php:164
|
||||
msgid "New Item"
|
||||
msgstr "Nyt produkt"
|
||||
|
||||
#: includes/booking-item.php:165
|
||||
msgid "Edit Item"
|
||||
msgstr "Rediger produkt"
|
||||
|
||||
#: includes/booking-item.php:166
|
||||
msgid "Update Item"
|
||||
msgstr "Opdater produkt"
|
||||
|
||||
#: includes/booking-item.php:167
|
||||
msgid "View Item"
|
||||
msgstr "Vis produkt"
|
||||
|
||||
#: includes/booking-item.php:168
|
||||
msgid "View Items"
|
||||
msgstr "Vis produkter"
|
||||
|
||||
#: includes/booking-item.php:169
|
||||
msgid "Search Items"
|
||||
msgstr "Søg produkter"
|
||||
|
||||
#: includes/booking-item.php:170
|
||||
msgid "Not found"
|
||||
msgstr "Ikke fundet"
|
||||
|
||||
#: includes/booking-item.php:171
|
||||
msgid "Not found in Trash"
|
||||
msgstr "Ikke fundet i skraldespand"
|
||||
|
||||
#: includes/booking-item.php:172
|
||||
msgid "Featured Image"
|
||||
msgstr "Fremhævet billede"
|
||||
|
||||
#: includes/booking-item.php:173
|
||||
msgid "Set featured image"
|
||||
msgstr "Indstil til fremhævet billede"
|
||||
|
||||
#: includes/booking-item.php:174
|
||||
msgid "Remove featured image"
|
||||
msgstr "Fjern fremhævet billede"
|
||||
|
||||
#: includes/booking-item.php:175
|
||||
msgid "Use as featured image"
|
||||
msgstr "Brug som fremhævet billede"
|
||||
|
||||
#: includes/booking-item.php:176
|
||||
msgid "Insert into item"
|
||||
msgstr "Indsæt i produkt"
|
||||
|
||||
#: includes/booking-item.php:177
|
||||
msgid "Uploaded to this item"
|
||||
msgstr "Uploadet til produkt"
|
||||
|
||||
#: includes/booking-item.php:178
|
||||
msgid "Items list"
|
||||
msgstr "Produktliste"
|
||||
|
||||
#: includes/booking-item.php:179
|
||||
msgid "Items list navigation"
|
||||
msgstr "Produktliste navigation"
|
||||
|
||||
#: includes/booking-item.php:180
|
||||
msgid "Filter Items list"
|
||||
msgstr "Filtrer produktliste"
|
||||
|
||||
#: includes/booking-item.php:802 includes/booking-item.php:862
|
||||
msgid "Booked"
|
||||
msgstr "Booket"
|
||||
|
||||
#: includes/booking-item.php:860
|
||||
msgid "N/A"
|
||||
msgstr "N/A"
|
||||
|
||||
#: includes/booking-item.php:863
|
||||
msgid "Please wait..."
|
||||
msgstr "Vent venligst..."
|
||||
|
||||
#: includes/booking-item.php:864
|
||||
msgid "There is an unexpected issue, please contact admin for more detail"
|
||||
msgstr ""
|
||||
"Der opstod en uventet fejl, kontakt sidens administrator for mere information"
|
||||
|
||||
#: includes/booking-item.php:869
|
||||
msgid "Done"
|
||||
msgstr "Færdig"
|
||||
|
||||
#: includes/booking-item.php:873
|
||||
msgid "Show a different month"
|
||||
msgstr "Vis en anden måned"
|
||||
|
||||
#: includes/booking-item.php:877
|
||||
msgid "Next"
|
||||
msgstr "Næste"
|
||||
|
||||
#: includes/booking-item.php:878
|
||||
msgid "Prev"
|
||||
msgstr "Forrige"
|
||||
@@ -0,0 +1,234 @@
|
||||
# nuevecubica
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nuevecubica | Custom Login Page 1.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/nuevecubica-custom-login-page\n"
|
||||
"POT-Creation-Date: 2020-06-08 17:54:21+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"\"last-Translator:: alex vaught\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: admin/admin-menu.php:12
|
||||
msgid "Custom Login"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-callbacks.php:15
|
||||
msgid "These settings enable you to customize the WP Login page title."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-callbacks.php:20
|
||||
msgid "These settings enable you to customize the WP Login screen."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-callbacks.php:25
|
||||
msgid "These settings enable you to customize the WP Login message Section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-callbacks.php:30
|
||||
msgid "These settings enable you to customize the WP Login background."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-callbacks.php:35
|
||||
msgid "These settings enable you to customize the WP Login Forms."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-callbacks.php:40
|
||||
msgid "These settings enable you to customize the WP Login form links."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:54
|
||||
msgid "Customize Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:61
|
||||
msgid "Customize Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:68
|
||||
msgid "Customize Background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:75
|
||||
msgid "Customize Forms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:82
|
||||
msgid "Customize Links"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:116
|
||||
msgid "Custom link text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:120
|
||||
msgid "Custom link text of the header logo above the login form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:126
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:130
|
||||
msgid "Custom URL for the login logo link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:135
|
||||
msgid "Custom Logo Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:139
|
||||
msgid "Custom image for the login logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:161
|
||||
msgid "Custom Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:165
|
||||
msgid "Custom text and/or markup"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:170
|
||||
msgid "Custom message color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:174
|
||||
msgid "Custom message Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:186
|
||||
msgid "Custom page background color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:190
|
||||
msgid "Custom background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:195 admin/settings-register.php:199
|
||||
msgid "Custom page image background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:211
|
||||
msgid "Form color background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:215
|
||||
msgid "Form background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:221
|
||||
msgid "Form label color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:225
|
||||
msgid "Form text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:231
|
||||
msgid "Form input text color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:235
|
||||
msgid "Form input text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:240
|
||||
msgid "Form input bg color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:244 admin/settings-register.php:253
|
||||
msgid "Form input BG Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:249
|
||||
msgid "Form border radius"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:258
|
||||
msgid "Form box shadow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:262
|
||||
msgid "Form box shadow generator"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:273
|
||||
msgid "Custom link text color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:277
|
||||
msgid "Form link text color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:282
|
||||
msgid "Custom link background color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:286
|
||||
msgid "Form link bg color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:291
|
||||
msgid "Custom link background padding"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:295
|
||||
msgid "Form link background padding in pixels"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:301
|
||||
msgid "Custom link border radius"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-register.php:305
|
||||
msgid "Form link border radius in pixels"
|
||||
msgstr ""
|
||||
|
||||
#: nuevecubica-custom-login-page.php:89
|
||||
msgid "Powered by nuevecubica"
|
||||
msgstr ""
|
||||
|
||||
#: nuevecubica-custom-login-page.php:94
|
||||
msgid "<h1>Custom login page</h1><p>make with love</p><small>----------</small>"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "nuevecubica | Custom Login Page"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://nuevecubica.net/product/custom-login-page"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"nuevecubica |<strong> Custom Login Page</strong> is an excellent WordPress "
|
||||
"<strong>Login Page Customizer plugin </strong>. You can change the logo, "
|
||||
"customize the message, change the color background, change the login and "
|
||||
"password container of the login page, and much more."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Alex Vaught"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.nuevecubica.dev"
|
||||
msgstr ""
|
||||
54
spec/fixtures/dynamic_finders/plugin_version/oauth2-server/composer_file/package.json
vendored
Normal file
54
spec/fixtures/dynamic_finders/plugin_version/oauth2-server/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"name": "wp-plugin-builder",
|
||||
"version": "1.0.0",
|
||||
"description": "A Plugin builder for Wordpress like Laravel",
|
||||
"author": "Md Abu Ahsan Basir <maab.career@gmail.com>",
|
||||
"license": "GPLv2",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "webpack --watch --progress --hide-modules",
|
||||
"dev": "webpack -d --mode development",
|
||||
"build": "webpack -p --mode production",
|
||||
"watch": "webpack --watch",
|
||||
"watch-poll": "webpack --watch --watch-poll",
|
||||
"prod": "webpack --mode production"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.19.2",
|
||||
"bootstrap": "^4.5.0",
|
||||
"jquery": "^3.5.1",
|
||||
"js-cookie": "^2.2.1",
|
||||
"popper.js": "^1.16.1",
|
||||
"sweetalert2": "^9.13.1",
|
||||
"toastr": "^2.1.4",
|
||||
"vform": "^1.0.1",
|
||||
"vue": "^2.6.10",
|
||||
"vue-context": "^5.2.0",
|
||||
"vue-i18n": "^8.17.7",
|
||||
"vue-meta": "^2.3.3",
|
||||
"vue-router": "^3.1.3",
|
||||
"vuex": "^3.4.0",
|
||||
"vuex-router-sync": "^5.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.6.4",
|
||||
"@babel/preset-env": "latest",
|
||||
"babel-loader": "^8.0.6",
|
||||
"css-loader": "^3.2.0",
|
||||
"file-loader": "^4.2.0",
|
||||
"html-webpack-plugin": "^3.2.0",
|
||||
"html-webpack-template": "^6.2.0",
|
||||
"less": "^3.10.3",
|
||||
"less-loader": "^5.0.0",
|
||||
"mini-css-extract-plugin": "^0.8.0",
|
||||
"node-sass": "^4.14.1",
|
||||
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
||||
"sass-loader": "^8.0.2",
|
||||
"terser-webpack-plugin": "^2.2.1",
|
||||
"url-loader": "^2.2.0",
|
||||
"vue-loader": "^15.7.1",
|
||||
"vue-template-compiler": "^2.6.10",
|
||||
"webpack": "^4.41.2",
|
||||
"webpack-cli": "^3.3.9"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,155 @@
|
||||
# Copyright (C) 2020 Ogulo - 360° Tour
|
||||
# This file is distributed under the GPLv2 or later (license.txt).
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ogulo - 360° Tour 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://ogulo.com\n"
|
||||
"POT-Creation-Date: 2020-06-02 23:05:12+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Ogulo - 360° Tour <support@ogulo.com>\n"
|
||||
"Language-Team: ENGLISH <support@ogulo.com>\n"
|
||||
"X-Generator: Eazy Po 0.9.5.3\n"
|
||||
|
||||
|
||||
#: admin/class-ogulo-360-tour-admin.php:68
|
||||
msgid "Ogulo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ogulo-360-tour-admin.php:83
|
||||
#: admin/class-ogulo-360-tour-admin.php:115
|
||||
msgid "You are not authorized to access this process."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-shortcode.php:64
|
||||
msgid "Click here to choose a tour"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-shortcode.php:93
|
||||
msgid "Sorry we could not find this tour in our list."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-shortcode.php:99
|
||||
msgid "Tour id should not be empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-shortcode.php:104
|
||||
msgid "Unauthorized Access."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:44
|
||||
#: includes/class-ogulo-360-tour-widget.php:45
|
||||
msgid "ogulo Tours"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:103
|
||||
msgid "New title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:163
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:167
|
||||
msgid "Show Tour:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:170
|
||||
msgid "Select a tour"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:181
|
||||
msgid "Width:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:185
|
||||
msgid "Width in:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:188
|
||||
#: includes/class-ogulo-360-tour-widget.php:203
|
||||
msgid "px (Pixels)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:189
|
||||
#: includes/class-ogulo-360-tour-widget.php:204
|
||||
msgid "% (Percentage)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:196
|
||||
msgid "Height:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ogulo-360-tour-widget.php:200
|
||||
msgid "Height in:"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/settings.php:19
|
||||
msgid "My Tours"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/settings.php:20 view/admin/settings.php:28
|
||||
msgid "Activation"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/settings.php:29
|
||||
msgid ""
|
||||
"Please enter your Ogulo API key to activate the plugin and connect it to "
|
||||
"your ogulo alpha account."
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/settings.php:31
|
||||
msgid "Your API key"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/settings.php:37
|
||||
msgid "Important Notice"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/settings.php:38
|
||||
msgid ""
|
||||
"Here follows a text and pictures as well as a button to order the subdoman "
|
||||
"extension if the customer does not have this."
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/settings.php:41
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/settings.php:42
|
||||
msgid "Wait..."
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/tours.php:19 view/admin/tours.php:28
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/tours.php:20 view/admin/tours.php:29
|
||||
msgid "Tour"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/tours.php:21 view/admin/tours.php:30
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/tours.php:22 view/admin/tours.php:31
|
||||
msgid "Embed as URL"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/tours.php:23 view/admin/tours.php:32
|
||||
msgid "Embed as shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/tours.php:43
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/settings.php:15
|
||||
msgid "How to embed Tours"
|
||||
msgstr ""
|
||||
|
||||
#: view/admin/settings.php:16
|
||||
msgid "The following videos show how to use Ogulo tours in your Wordpress quickly and easily."
|
||||
msgstr ""
|
||||
401
spec/fixtures/dynamic_finders/plugin_version/optinmonster/change_log/CHANGELOG.md
vendored
Normal file
401
spec/fixtures/dynamic_finders/plugin_version/optinmonster/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,401 @@
|
||||
# Changelog
|
||||
All notable changes to the OptinMonster plugin will be documented in this file.
|
||||
|
||||
### 1.9.9
|
||||
* Fix issue where if multiple post tags were selected, popups and other campaigns would only appear on the first tag selected.
|
||||
* Fix campaign shortcode suggestion in admin being incorrect.
|
||||
* Full security audit to patch any potential issues.
|
||||
|
||||
### 1.9.8
|
||||
* Fix compatibility with AMP.
|
||||
* Update compatibility with popular caching plugins.
|
||||
* Update to make all strings translatable.
|
||||
* Fix bug where phone numbers wouldn't save when using MailPoet.
|
||||
* Remove old jQuery dependencies.
|
||||
* Update internal notices to be more friendly with other plugins.
|
||||
|
||||
### 1.9.7
|
||||
* Update the OptinMonster API JS URL.
|
||||
* Update trustpulse menu title.
|
||||
|
||||
### 1.9.6
|
||||
* You can now use Gravity Forms AJAX submissions and form validation with your OptinMonster campaigns.
|
||||
* Update admin notices to use the recommended classes
|
||||
|
||||
### 1.9.5
|
||||
* Add support for www domains in Api.js embed code.
|
||||
* Improve MailPoet error outputs.
|
||||
|
||||
### 1.9.4
|
||||
* Fix issue where site settings were not being retrieved properly.
|
||||
|
||||
### 1.9.3
|
||||
* Additional improvements to output of Api.js URL in embed code.
|
||||
|
||||
### 1.9.2
|
||||
* Improve output of Api.js URL in embed code.
|
||||
|
||||
### 1.9.1
|
||||
* Fix issue where closing Cyber Monday notification would not prevent it from showing again.
|
||||
|
||||
### 1.9.0
|
||||
* Improves compatibility when WordPress is installed in a subdirectory or uses multisite with paths.
|
||||
* Bump the minimum, required, version of WooCommerce to 3.2. Any installs below this version will not have WooCommerce support.
|
||||
* Address some incompatibilities with the MailPoet plugin.
|
||||
* Includes some notifications regarding holiday/sale promotions.
|
||||
|
||||
### 1.8.4
|
||||
* Minor update: Added a new filter for action links.
|
||||
|
||||
### 1.8.3
|
||||
* Improved logic to prevent welcome screen from showing in the wrong context.
|
||||
|
||||
### 1.8.2
|
||||
* Fix issue where the WooCommerce cart object wasn't always available.
|
||||
* Fix issue where top floating bars would cover the WP admin bar for logged in users.
|
||||
|
||||
### 1.8.1
|
||||
* Fix issue with backwards compatibility with PHP 5.4 or lower, and WordPress 4.0 or lower.
|
||||
|
||||
### 1.8.0
|
||||
* New campaigns that are fetched from OptinMonster will be enabled by default.
|
||||
* API Keys can now be added with a click-based authentication flow
|
||||
* Add a REST API endpoint that can be used to refresh campaigns
|
||||
* Fix issues where the OptinMonster campaign preview wouldn't load if the campaign was not already active.
|
||||
|
||||
### 1.7.0
|
||||
* Add additional WooCommerce support.
|
||||
|
||||
### 1.6.9
|
||||
* Fixed an issue where saving to MailPoet may fail on pages where only shortcodes are used to embed campaigns.
|
||||
|
||||
### 1.6.8
|
||||
* Fix issue with backwards compatibility with PHP 5.3 or lower.
|
||||
|
||||
### 1.6.7
|
||||
* Fix issue with backwards compatibility with PHP 5.4 or lower, and WordPress 4.0 or lower.
|
||||
|
||||
### 1.6.6
|
||||
* Fixed an issue where campaign refresh would deactivate live campaigns, and remove their settings
|
||||
|
||||
### 1.6.5
|
||||
* Users who have not entered an API key into will now be redirected to the OptinMonster welcome page instead of the OptinMonster settings page
|
||||
* Added a pointer to the Admin Dashboard if an API Key is not entered
|
||||
* Added pagination to the API requests when refreshing campaigns
|
||||
* Additional fixes for future improvements to OptinMonster
|
||||
|
||||
### 1.6.4
|
||||
* Updated the API domain URL.
|
||||
|
||||
### 1.6.3
|
||||
* Improved searching when adding advanced rules for posts/pages/tags.
|
||||
* Add `optin_monster_pre_store_options` filter to allow users to override which campaigns are imported.
|
||||
|
||||
### 1.6.2
|
||||
* Fix issue where the "Automatically add after post setting" was not working properly after changes in 1.6.0.
|
||||
|
||||
### 1.6.1
|
||||
* Fix dashboard notice showing at incorrect times.
|
||||
|
||||
### 1.6.0
|
||||
* Add widget option, "Apply Advanced Output Settings?". If checked, widget will follow the advanced settings rules for the campaign (found in the Output Settings for the campaign).
|
||||
* Fix bug where advanced settings would not apply to inline after-post campaigns.
|
||||
* Update the inline/automatic setting language to make the new behavior more explicit.
|
||||
|
||||
### 1.5.3
|
||||
* "Display the campaign automatically after blog posts" setting no longer selected by default for inline campaigns.
|
||||
* Fix inline campaigns showing in some scenarios, even when "Display the campaign automatically after blog posts" is NOT checked.
|
||||
|
||||
### 1.5.2
|
||||
* Fixed potential privilege escalation bug.
|
||||
* Bumped for 5.0.
|
||||
|
||||
### 1.5.1
|
||||
* Fixed a possible security issue with admin notices.
|
||||
* Updated outdated URLs in the admin.
|
||||
|
||||
### 1.5.0
|
||||
* Refactored WordPress rules system, and a new `[optin-monster]` shortcode parameter, `followrules=true`. This means if you have specific WordPress display rules (e.g. which categories/posts/pages to display the campaign), and use the shortcode to output the campaign, you can have the shortcode follow the rules you have setup. Example shortcode usage: `[optin-monster slug="XXXXXXXXXXXXXXXXXXXX" followrules=true]`
|
||||
|
||||
### 1.4.2
|
||||
* Fixed a bug that caused issues with PHP versions under 5.6.
|
||||
|
||||
### 1.4.1
|
||||
* Include a file that was missing in 1.4.0. Sorry!
|
||||
|
||||
### 1.4.0
|
||||
* Updated to work with OptinMonster 5.0 campaigns.
|
||||
* Fix PHP notices.
|
||||
|
||||
### 1.3.5
|
||||
* Fix issue where shortcodes in campaigns would not be parsed until the campaigns were refreshed a second time.
|
||||
|
||||
### 1.3.4
|
||||
* Updated the API url to reflect the new endpoint.
|
||||
|
||||
### 1.3.3
|
||||
* Fixed an issue that prevented campaigns from showing on some custom taxonomy terms.
|
||||
* Performance improvements when retrieving, and determining when to display, campaigns.
|
||||
* All URLs updated to use HTTPS.
|
||||
* Updated notifications.
|
||||
|
||||
### 1.3.2
|
||||
* Fixed issue where campaigns of an "advanced age" may not work in the plugin.
|
||||
|
||||
### 1.3.1
|
||||
* Fixed missing files in WordPress.org repository.
|
||||
|
||||
### 1.3.0
|
||||
* Is it "campaign"? Or "optin"? No, it's definitely "campaign".
|
||||
* OptinMonster now works with the shiny new MailPoet 3.
|
||||
* We're feeling a little lighter after removing some deprecated code.
|
||||
|
||||
### 1.2.2
|
||||
* Updated API calls to always be done over HTTPS.
|
||||
* Updated error responses from the OptinMonster API to be more informative.
|
||||
|
||||
### 1.2.1
|
||||
* Added additional checks during save routines for user capabilities.
|
||||
|
||||
### 1.2.0
|
||||
* Added additional support for WooCommerce display settings.
|
||||
* Updated language for legacy migrations.
|
||||
* Fixed a multisite activation issue.
|
||||
|
||||
### 1.1.9
|
||||
* Updated version numbers to prevent possible asset caching errors.
|
||||
|
||||
### 1.1.8
|
||||
* Fixed possible undefined errors for API credentials.
|
||||
|
||||
### 1.1.7
|
||||
* Updated the API script domain for adblock.
|
||||
* Added new authentication method for the new OptinMonster REST API.
|
||||
|
||||
### 1.1.6.2
|
||||
* Fixed undefined index errors when API responses returned an error.
|
||||
|
||||
### 1.1.6.1
|
||||
* General plugin enhancements and bug fixes.
|
||||
|
||||
### 1.1.6
|
||||
* Compatibility updates for WordPress 4.7.
|
||||
|
||||
### 1.1.5.9
|
||||
* Added the async attribute to the OptinMonster API script output for improved performance.
|
||||
* Fixed a bug that caused the debugging report to not properly grab shortcodes.
|
||||
* Added helper to remove faulty admin scripts from the OptinMonster settings area that would cause things to fail in some cases.
|
||||
|
||||
### 1.1.5.8
|
||||
* Fixed bug that caused the MailPoet integration to fail in some scenarios.
|
||||
|
||||
### 1.1.5.7
|
||||
* Improved checks for when to output and localize the OptinMonster API script.
|
||||
|
||||
### 1.1.5.6
|
||||
* Fixed bug that caused people to have to define two constants to set the OptinMonster license key in config files.
|
||||
|
||||
### 1.1.5.5
|
||||
* Fixed bug that redirected people already using the plugin to the Welcome screen on update.
|
||||
|
||||
### 1.1.5.4
|
||||
* Fixed bug that caused issues with viewing the Welcome screen.
|
||||
|
||||
### 1.1.5.3
|
||||
* Fixed issue with notices appearing oddly on OM screens.
|
||||
* Updated support video.
|
||||
|
||||
### 1.1.5.2
|
||||
* Fixed bug with post category selections causing campaigns to load globally.
|
||||
|
||||
### 1.1.5.1
|
||||
* Improved welcome screen for new installs.
|
||||
* Bug fixes and enhancements.
|
||||
|
||||
### 1.1.5
|
||||
* Campaigns will now load on the archive pages of individual taxonomies (if selected) by default.
|
||||
* Clarified language regarding how the "load exclusively on" and "never load optin on" settings work.
|
||||
* Removed after post optins from RSS feeds.
|
||||
* Removed the test mode setting in favor of using the "show only to logged-in users" setting for testing campaign output.
|
||||
* When going live, campaigns will load globally by default unless other advanced output settings are specified.
|
||||
* Automatically adding an after post optin after a post is now checked on by default for new after post campaigns.
|
||||
* Added a new "Support" tab with a helpful video, links to documentation and ability to send support details when submitting a ticket.
|
||||
* Migration tab is now only shown if the old plugin exists on the site.
|
||||
* Added helpful tooltips in various areas of the admin.
|
||||
* Moved all advanced output rules into a toggle field to make working with output settings easier.
|
||||
* Fixed the clear local cookies function (it actually works now!).
|
||||
* Removed the confusing Delete button - campaigns should be deleted from the app.
|
||||
* Added an inline shortcode "copy to clipboard" button for after post campaigns.
|
||||
* Improved shortcode processing - it is now automated (no longer need to enter in a setting) and supports non self-closing shortcodes!
|
||||
* Improved individual campaign action links by always making them visible.
|
||||
|
||||
### 1.1.4.7
|
||||
* Updated compatibility for WordPress 4.6.
|
||||
|
||||
### 1.1.4.6
|
||||
* Removed shortcode ajax method that could possibly be exploited by other plugins to run malicious shortcode.
|
||||
|
||||
### 1.1.4.5
|
||||
* Added new feature to allow reviews to be given for OptinMonster.
|
||||
|
||||
### 1.1.4.4
|
||||
* Allow API credentials to be force resaved to clean out stale messages about accounts being expired or invalid.
|
||||
|
||||
### 1.1.4.3
|
||||
* Fixed API script getting cached by CloudFlare Rocket Loader.
|
||||
* Fixed omhide=true conflicting with MonsterLinks in some cases.
|
||||
* Fixed pre 4.1 installs getting incorrect API ID.
|
||||
* Updated Readme so OptinMonster App and account requirement is clearly stated.
|
||||
|
||||
### 1.1.4.2
|
||||
* Added Welcome page on first install.
|
||||
* Updated error messages.
|
||||
* Updated debug code for better error handling.
|
||||
|
||||
### 1.1.4.1
|
||||
* Added No-Cache headers on API requests.
|
||||
|
||||
### 1.1.4
|
||||
* Fixed bug with adblock.
|
||||
* Added new API script with easier updates.
|
||||
|
||||
### 1.1.3.9
|
||||
* Fixed conflict with jQuery and Modernizr when the optin object was not set properly.
|
||||
|
||||
### 1.1.3.8
|
||||
* Fixed bug with canvas slide-in not being able to be closed.
|
||||
|
||||
### 1.1.3.7
|
||||
* Fixed issue with contact forms not displaying properly in optins. [See this doc on how to update shortcode support in your optins.](https://optinmonster.com/docs/how-to-use-wordpress-shortcodes-with-optinmonster/ "How to use WordPress shortcodes with OptinMonster" )
|
||||
|
||||
### 1.1.3.6
|
||||
* Fixed possible issue with sending empty names that caused bugs with provider integrations.
|
||||
|
||||
### 1.1.3.5
|
||||
* Fixed JS error with analytics if GA was not yet defined.
|
||||
|
||||
### 1.1.3.4
|
||||
* Fixed bug with analytics tracking causing user sessions to be skewed.
|
||||
* Fixed bug with fullscreen optins and mobile optins conflicting.
|
||||
* Mobile optins now work for both mobile and tablet devices. Desktop optins work exclusively for desktop.
|
||||
* Various bug fixes and improvements.
|
||||
|
||||
### 1.1.3.3
|
||||
* Fixed bug where fullscreen wouldn't work on mobile if exit intent setting was checked.
|
||||
* Fixed bug with analytics not tracking if multiple spaces were contained in a campaign name.
|
||||
* Fixed bug with clearing local cookies not working in some instances.
|
||||
|
||||
### 1.1.3.2
|
||||
* Fixed bug where shortcode would not parse for optins inserted via widget, shortcode or template tag.
|
||||
* Fixed bug where Mailpoet helper would not output for optins inserted via widget, shortcode or template tag.
|
||||
|
||||
### 1.1.3.1
|
||||
* Fixed issues revolving around split tests not loading properly for mobile devices.
|
||||
|
||||
### 1.1.3
|
||||
* Fixed bug with freezing and not working in IE10/11.
|
||||
|
||||
### 1.1.2.7
|
||||
* Fixed erroneous alert on screen.
|
||||
|
||||
### 1.1.2.6
|
||||
* Fixed bug with lightbox and mobile optins in API script.
|
||||
|
||||
### 1.1.2.5
|
||||
* Fixed bug with GA not tracking data.
|
||||
* Added 13 new mobile themes!
|
||||
|
||||
### 1.1.2.4
|
||||
* Fixed bug with cookies and split tests.
|
||||
* Fixed bug with allowing split tests to be made primary.
|
||||
|
||||
### 1.1.2.3
|
||||
* Added support for a new optin type - fullscreen optins!
|
||||
* Fixed a bug with embedded HubSpot forms.
|
||||
* Fixed bug where dropdown options would not show on Safari for post targeting.
|
||||
|
||||
### 1.1.2.2
|
||||
* Fixed issue with API script not grabbing checkbox and radio fields properly inside an optin.
|
||||
|
||||
### 1.1.2.1
|
||||
* Fixed issue for defining API url with function before filters can be applied to it.
|
||||
|
||||
### 1.1.2
|
||||
* Fixed display error when multiple taxonomy terms were selected for an optin.
|
||||
* Added selection of scheduled posts in optin output settings.
|
||||
|
||||
### 1.1.1
|
||||
* Added option to move floating bar to top of the page. No custom CSS needed!
|
||||
* Added option for a privacy statement below optin form.
|
||||
* Added option to exclude by page slug
|
||||
* Shortcode parsing now available for all optin types.
|
||||
* Various bug fixes
|
||||
|
||||
### 1.1.0.5
|
||||
* Added ability to pause parent campaigns from the app.
|
||||
|
||||
### 1.1.0.4
|
||||
* Fixed bug that caused paused split tests to continue to run.
|
||||
* Fixed bug with passing optin data to a redirect URL with query args.
|
||||
* Added ability to submit lightbox optin forms with the enter button.
|
||||
|
||||
### 1.1.0.3
|
||||
* Fixed bug that caused site verification to fail.
|
||||
|
||||
### 1.1.0.2
|
||||
* Added support for assigning multiple domains to a single optin.
|
||||
* Added unique optin slug on Overview screen to make life easier.
|
||||
|
||||
### 1.1.0.1
|
||||
* Fixed fixed bug with bounce rate in GA.
|
||||
|
||||
### 1.1.0
|
||||
* Fixed focus bug.
|
||||
|
||||
### 1.0.0.9
|
||||
* Fixed analytics bug that caused bounce rates to go whacky in GA.
|
||||
* Fixed "powered by" link placement when using display effects.
|
||||
* Added focus effect for input fields when an optin is loaded.
|
||||
|
||||
### 1.0.0.8
|
||||
* Clear out global cookie when clearing local cookies.
|
||||
* Fixed bug with not loading in IE7-9.
|
||||
* Fixed bug with placeholder shims not working in IE7-9.
|
||||
* Fixed bug with GA clashes when using multiple tracking scripts on a page.
|
||||
|
||||
### 1.0.0.7
|
||||
* Fixed bug with possible duplicate submissions in some configurations.
|
||||
* Added enhanced conversion tracking with GA.
|
||||
|
||||
### 1.0.0.6
|
||||
* Added a dedicated edit output settings link for each optin.
|
||||
|
||||
### 1.0.0.5
|
||||
* Fixed bug with passing lead data to redirect URLs.
|
||||
* Added improved UX by being able to create and edit optins from the plugin itself.
|
||||
|
||||
### 1.0.0.4
|
||||
* Fixed another error with plugin update deploy.
|
||||
|
||||
### 1.0.0.3
|
||||
* Fixed error with deploy.
|
||||
|
||||
### 1.0.0.2
|
||||
* Fixed bug with API script.
|
||||
|
||||
### 1.0.0.1
|
||||
* The "Go Live" link now enables an optin and sets the global/automatic loading setting as well.
|
||||
* Fixed bug with not being able to uncheck clearing local cookies on optin save.
|
||||
* Added extra XSS security checks with `esc_url_raw`.
|
||||
* Added version number beside plugin header title for easy version checking.
|
||||
|
||||
### 1.0.0
|
||||
* Fixed bug with exclusive/never settings not showing previously selected pages.
|
||||
* Fixed bug with API script and loading social services for specific popup types.
|
||||
* Removed unused updater class reference and code.
|
||||
|
||||
### 0.9.9
|
||||
* Fix error with loading old API script.
|
||||
|
||||
### 0.9.8
|
||||
* Initial release.
|
||||
15
spec/fixtures/dynamic_finders/plugin_version/pdf-block/composer_file/package.json
vendored
Normal file
15
spec/fixtures/dynamic_finders/plugin_version/pdf-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "pdfb",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/components": "^9.9.0",
|
||||
"@wordpress/icons": "^2.3.0",
|
||||
"cgb-scripts": "1.23.0"
|
||||
}
|
||||
}
|
||||
204
spec/fixtures/dynamic_finders/plugin_version/pinpoint-free/translation_file/languages/pinpoint.pot
vendored
Normal file
204
spec/fixtures/dynamic_finders/plugin_version/pinpoint-free/translation_file/languages/pinpoint.pot
vendored
Normal file
@@ -0,0 +1,204 @@
|
||||
# Copyright (C) 2020 Justinas B.
|
||||
# This file is distributed under the same license as the Pinpoint Free plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pinpoint Free 1.2.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pinpoint-free\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-08T14:31:50+03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: pinpoint\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Pinpoint Free"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://pinpoint.generalsemantics.lt/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add interactive clickable color pins ontop of your photos."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Justinas B."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://just.beinorius.lt/"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.client.js:119
|
||||
#: dist/pinpoint.editor.js:1199
|
||||
msgid "(no content)"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:288
|
||||
msgid "Pin color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:310
|
||||
msgid "Stamp color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:333
|
||||
#: dist/pinpoint.editor.js:344
|
||||
msgid "Stamp"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:353
|
||||
#: dist/pinpoint.editor.js:366
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:375
|
||||
msgid "Link target"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:386
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:389
|
||||
msgid "New window"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:399
|
||||
msgid "Trigger"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:410
|
||||
msgid "Hover"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:413
|
||||
msgid "Click"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:423
|
||||
#: dist/pinpoint.editor.js:436
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:445
|
||||
#: dist/pinpoint.editor.js:458
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:467
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:495
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:543
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:552
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:555
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:558
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:561
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:564
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:574
|
||||
msgid "Shape"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:583
|
||||
msgid "Circle"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:586
|
||||
msgid "Square"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:596
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:607
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:610
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:617
|
||||
msgid "Pin settings"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:624
|
||||
msgid "Pin style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:631
|
||||
msgid "Pin delete"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:636
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:644
|
||||
msgid "Choose a pin to edit."
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:1185
|
||||
msgid "FREE version limit reached. Buy pro for unlimited pins."
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:1214
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:1232
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:1242
|
||||
msgid "Add pin"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:1257
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:1470
|
||||
msgid "Pinpoint image"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:1475
|
||||
msgid "marker"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:1475
|
||||
msgid "pin"
|
||||
msgstr ""
|
||||
|
||||
#: dist/pinpoint.editor.js:1475
|
||||
msgid "photo"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,13 @@
|
||||
*** Product Recommendation Quiz for WooCommerce ***
|
||||
|
||||
2020-06-21 - version 1.0.3
|
||||
* Dev - Pass channel parameter to server
|
||||
|
||||
2020-06-20 - version 1.0.2
|
||||
* Fix - Store URL host bug
|
||||
|
||||
2020-06-19 - version 1.0.1
|
||||
* Dev - Added HTTPS/SSL verification
|
||||
|
||||
2020-06-06 - version 1.0.0
|
||||
* Dev - Initial release
|
||||
@@ -155,6 +155,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/academic-bloggers-toolkit/js/frontend.js?ver=4.11.3"></script>
|
||||
|
||||
|
||||
<!-- acc-conditional-typo -->
|
||||
<link rel="stylesheet" id="acc-conditional-typo-css" href="http://wp.lab/wp-content/plugins/acc-conditional-typo/public/css/acc-conditional-typo-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/acc-conditional-typo/public/js/acc-conditional-typo-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- accessibility-help-button -->
|
||||
<link rel="stylesheet" id="aa-call-css" href="http://wp.lab/wp-content/plugins/accessibility-help-button/public/css/aa-call-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/accessibility-help-button/public/js/aa-call-public.js?ver=1.0.0"></script>
|
||||
@@ -1476,6 +1481,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/badger//js/badger.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- bangladeshi-payment-gateways -->
|
||||
<link rel="stylesheet" id="bdpg-public-css" href="http://wp.lab/wp-content/plugins/bangladeshi-payment-gateways/assets/public/css/bdpg-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/bangladeshi-payment-gateways/assets/public/js/bdpg-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- banner-system -->
|
||||
<link rel="stylesheet" id="css-banner-system-css" href="http://wp.lab/wp-content/plugins/banner-system/assets/css/banner-system.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/banner-system/assets/js/frontend-banner-system.js?ver=1.0.0"></script>
|
||||
@@ -2147,6 +2157,11 @@
|
||||
<link rel="stylesheet" id="bookwize-integrated-css" href="http://wp.lab/wp-content/plugins/bookwize-integrated-cinnamon/public/css/bookwize-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- boost360-for-doctors -->
|
||||
<link rel="stylesheet" id="boost360-for-doctors-css" href="http://wp.lab/wp-content/plugins/boost360-for-doctors/public/css/boost360-for-doctors-public.css?ver=1.1.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/boost360-for-doctors/public/js/boost360-for-doctors-public.js?ver=1.1.2"></script>
|
||||
|
||||
|
||||
<!-- boostify-header-footer-builder -->
|
||||
<link rel="stylesheet" id="boostify-hf-nav-menu-css-css" href="http://wp.lab/wp-content/plugins/boostify-header-footer-builder/assets/css/elementor/nav-menu.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="boostify-hf-search-css" href="http://wp.lab/wp-content/plugins/boostify-header-footer-builder/assets/css/elementor/search.css?ver=1.0.3" media="all">
|
||||
@@ -3248,6 +3263,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/codup-woocommerce-custom-fields/lib/codupads/scripts/adscript.js?ver=1.1.1.7"></script>
|
||||
|
||||
|
||||
<!-- coinqvest -->
|
||||
<link rel="stylesheet" id="coinqvest-css" href="http://wp.lab/wp-content/plugins/coinqvest/inc/frontend/css/coinqvest.modal.css?ver=0.0.4" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/coinqvest/inc/frontend/js/coinqvest.modal.min.js?ver=0.0.4"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/coinqvest/inc/frontend/js/coinqvest-frontend-ajax-handler.js?ver=0.0.4"></script>
|
||||
|
||||
|
||||
<!-- colored-vote-polls -->
|
||||
<link rel="stylesheet" id="wpcvp_css-css" href="http://wp.lab/wp-content/plugins/colored-vote-polls/css/style.css?ver=1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/colored-vote-polls/js/formtips.js?ver=1.1"></script>
|
||||
@@ -3843,6 +3864,12 @@
|
||||
<link rel="stylesheet" id="cwprp-layouts-css" href="http://wp.lab/wp-content/plugins/curatewp-related-posts/assets/dist/layouts.build.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- currency-switcher -->
|
||||
<link rel="stylesheet" id="currency-switcher-css" href="http://wp.lab/wp-content/plugins/currency-switcher/css/front.css?ver=1.1.5" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/currency-switcher/js/jquery.ddslick.min.js?ver=1.1.5"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/currency-switcher/js/front.js?ver=1.1.5"></script>
|
||||
|
||||
|
||||
<!-- currencyr -->
|
||||
<link rel="stylesheet" id="currencyr-core-css" href="http://wp.lab/wp-content/plugins/currencyr/assets/css/currencyr.css?ver=1.0.4" media="all">
|
||||
<link rel="stylesheet" id="currencyr-css" href="http://wp.lab/wp-content/plugins/currencyr/assets/css/themes/light/light.css?ver=1.0.4" media="all">
|
||||
@@ -3893,6 +3920,11 @@
|
||||
<link rel="stylesheet" id="stylesheet-css" href="http://wp.lab/wp-content/plugins/custom-team-manager/css/stylesheet.css?ver=2.4.1" media="all">
|
||||
|
||||
|
||||
<!-- custom-testimonial-slider -->
|
||||
<link rel="stylesheet" id="testimonial-css" href="http://wp.lab/wp-content/plugins/custom-testimonial-slider/css/custom-testimonial.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/custom-testimonial-slider/js/custom-testimonial.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- custom-twitter-feeds -->
|
||||
<link rel="stylesheet" id="ctf_styles-css" href="http://wp.lab/wp-content/plugins/custom-twitter-feeds/css/ctf-styles.css?ver=1.2.7" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-twitter-feeds/js/ctf-scripts.js?ver=1.2.7"></script>
|
||||
@@ -4040,6 +4072,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/devvn-image-hotspot/frontend/js/jquery.ihotspot.min.js?ver=1.1.4"></script>
|
||||
|
||||
|
||||
<!-- di-blocks -->
|
||||
<link rel="stylesheet" id="di-blocks-editor-front-style-css" href="http://wp.lab/wp-content/plugins/di-blocks/dist/blocks.style.build.css?ver=1.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/di-blocks/assets/js/animate.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- dictation-speech-recognition -->
|
||||
<link rel="stylesheet" id="dictation-css" href="http://wp.lab/wp-content/plugins/dictation-speech-recognition/css/dictation.css?ver=1.0.1" media="all">
|
||||
|
||||
@@ -4373,6 +4410,17 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-post-series/assets/js/scripts.js?ver=1.1.2"></script>
|
||||
|
||||
|
||||
<!-- easy-product-catalog -->
|
||||
<link rel="stylesheet" id="coreft-catalog-styles-css" href="http://wp.lab/wp-content/plugins/easy-product-catalog/styles/coreft-catalog-styles.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="imageviewer-css" href="http://wp.lab/wp-content/plugins/easy-product-catalog/styles/imageviewer.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="nivo-lightbox-css" href="http://wp.lab/wp-content/plugins/easy-product-catalog/styles/nivo-lightbox.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="owl-carousel-css" href="http://wp.lab/wp-content/plugins/easy-product-catalog/styles/owl-carousel.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-product-catalog/scripts/imageviewer.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-product-catalog/scripts/nivo-lightbox.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-product-catalog/scripts/owl.carousel.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-product-catalog/scripts/coreft-catalog-main-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- easy-property-listings -->
|
||||
<link rel="stylesheet" id="epl-css-lib-css" href="http://wp.lab/wp-content/plugins/easy-property-listings/lib/assets/css/style-structure.css?ver=3.1.19" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="epl-style-css" href="http://wp.lab/wp-content/plugins/easy-property-listings/lib/assets/css/style.css?ver=3.1.19" type="text/css" media="all">
|
||||
@@ -4440,6 +4488,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-up-sell-for-woocommerce/public/js/eus-for-woocommerce-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- easy-vote -->
|
||||
<link rel="stylesheet" id="easy-vote-css" href="http://wp.lab/wp-content/plugins/easy-vote/public/css/easy-vote.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="easy-vote-map-css" href="http://wp.lab/wp-content/plugins/easy-vote/public/css/easy-vote.css.map?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- easy-widget-columns -->
|
||||
<link rel="stylesheet" id="easy-widget-columns-css" href="http://wp.lab/wp-content/plugins/easy-widget-columns/public/css/easy-widget-columns-public.css?ver=1.2.1" type="text/css" media="all">
|
||||
|
||||
@@ -4499,6 +4552,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/inc/echelon.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- economic-market-news -->
|
||||
<script src="http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio-wp.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ecwid-widgets-avalanche -->
|
||||
<link rel="stylesheet" id="sjf_et_styles-css" href="http://wp.lab/wp-content/plugins/ecwid-widgets-avalanche/inc/css/styles.css?ver=1.6.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ecwid-widgets-avalanche/inc/js/scripts.js?ver=1.6.1"></script>
|
||||
@@ -5258,6 +5315,11 @@
|
||||
<link rel="stylesheet" id="tektonic-file-upload-circle-css-css" href="http://wp.lab/wp-content/plugins/file-uploader-tektonic-solutions/css/tektonic-file-upload-circle.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- filter-for-divi -->
|
||||
<link rel="stylesheet" id="df-style-css" href="http://wp.lab/wp-content/plugins/filter-for-divi/df-style.css?ver=0.9.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/filter-for-divi/df-script.js?ver=0.9.0"></script>
|
||||
|
||||
|
||||
<!-- filter-sorter -->
|
||||
<link rel="stylesheet" id="filter_sorter-css" href="http://wp.lab/wp-content/plugins/filter-sorter/public/css/filter_sorter-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/filter-sorter/public/js/filter_sorter-public.js?ver=1.0.0"></script>
|
||||
@@ -5437,6 +5499,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/floating-window-music-player/js/load.js?ver=3.1.5"></script>
|
||||
|
||||
|
||||
<!-- floating-wishlist-for-woo -->
|
||||
<link rel="stylesheet" id="woo-floating-wishlist-css" href="http://wp.lab/wp-content/plugins/floating-wishlist-for-woo/public/css/woo-floating-wishlist-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/floating-wishlist-for-woo/public/js/skinny.cookies.js?ver=1.0.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/floating-wishlist-for-woo/public/js/woo-floating-wishlist-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- flopictime -->
|
||||
<link rel="stylesheet" id="pictimewp-css" href="http://wp.lab/wp-content/plugins/flopictime/public/css/pictimewp-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="pt-fonts-icons-css" href="http://wp.lab/wp-content/plugins/flopictime/admin/assets/icons-fonts/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -6332,6 +6400,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gridable/public/js/gridable-scripts.js?ver=1.2.2"></script>
|
||||
|
||||
|
||||
<!-- grit-taxonomy-filter -->
|
||||
<link rel="stylesheet" id="grit_taxonomy_filter-css" href="http://wp.lab/wp-content/plugins/grit-taxonomy-filter/public/css/grit-taxonomy-filter-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/grit-taxonomy-filter/public/js/grit-taxonomy-filter-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- groovy-menu-free -->
|
||||
<link rel="stylesheet" id="groovy-menu-style-css" href="http://wp.lab/wp-content/plugins/groovy-menu-free/assets/style/frontend.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/groovy-menu-free/assets/js/frontend.js?ver=1.0.1"></script>
|
||||
@@ -6539,10 +6612,19 @@
|
||||
<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">
|
||||
|
||||
|
||||
<!-- heimu -->
|
||||
<link rel="stylesheet" id="heimu-css" href="http://wp.lab/wp-content/plugins/heimu/heimu.css?ver=1.1.2" media="all">
|
||||
|
||||
|
||||
<!-- hello-bar-wp -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hello-bar-wp/assets/js/frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- hello-i-am-here -->
|
||||
<link rel="stylesheet" id="hello-here-css" href="http://wp.lab/wp-content/plugins/hello-i-am-here/public/css/hello-here-public.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/hello-i-am-here/public/js/hello-here-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- helloasso -->
|
||||
<link rel="stylesheet" id="hello-asso-css" href="http://wp.lab/wp-content/plugins/helloasso/public/css/hello-asso-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/helloasso/public/js/hello-asso-public.js?ver=1.0.2"></script>
|
||||
@@ -6980,6 +7062,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/imu-calculator/includes/js/imu_calculator.js?ver=1.1.5"></script>
|
||||
|
||||
|
||||
<!-- inactive-tab-message -->
|
||||
<script src="http://wp.lab/wp-content/plugins/inactive-tab-message/public/js/inactive-tab-messages-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- inboundwp-lite -->
|
||||
<link rel="stylesheet" id="ibwp-font-awesome-css" href="http://wp.lab/wp-content/plugins/inboundwp-lite/assets/css/font-awesome.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ibwp-public-style-css" href="http://wp.lab/wp-content/plugins/inboundwp-lite/assets/css/ibwp-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
@@ -7843,6 +7929,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/legacy-google-calendar-events/js/gce-script.js?ver=2.4.1"></script>
|
||||
|
||||
|
||||
<!-- legalweb-cloud -->
|
||||
<link rel="stylesheet" id="legalweb-cloud-css" href="http://wp.lab/wp-content/plugins/legalweb-cloud/public/css/legalweb-cloud-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/legalweb-cloud/public/js/legalweb-cloud-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- leira-access -->
|
||||
<link rel="stylesheet" id="leira-access-css" href="http://wp.lab/wp-content/plugins/leira-access/public/css/leira-access-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/leira-access/public/js/leira-access-public.js?ver=1.0.0"></script>
|
||||
@@ -7901,6 +7992,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/light-comment-form/light-comment-form.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- light-lms-quizz -->
|
||||
<link rel="stylesheet" id="frontend_css-css" href="http://wp.lab/wp-content/plugins/light-lms-quizz//css/frontend.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- light-weight-cookie-popup -->
|
||||
<link rel="stylesheet" id="cookie-pop-style-css" href="http://wp.lab/wp-content/plugins/light-weight-cookie-popup/css/ab-cookie-popup.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/light-weight-cookie-popup/js/ab-cookie-popup.min.js?ver=1.0.0"></script>
|
||||
@@ -8098,6 +8193,17 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/localtime/localtime.js?ver=1.2.1"></script>
|
||||
|
||||
|
||||
<!-- location-finder -->
|
||||
<link rel="stylesheet" id="location-finder-bootstrap-liw-css" href="http://wp.lab/wp-content/plugins/location-finder/public/css/bootstrap-liw.min.css?ver=1.1.1" media="all">
|
||||
<link rel="stylesheet" id="location-finder-fontawesome-css" href="http://wp.lab/wp-content/plugins/location-finder/public/css/fontawesome.min.css?ver=1.1.1" media="all">
|
||||
<link rel="stylesheet" id="location-finder-featherlight-css" href="http://wp.lab/wp-content/plugins/location-finder/public/css/featherlight.min.css?ver=1.1.1" media="all">
|
||||
<link rel="stylesheet" id="location-finder-featherlight-gallery-css" href="http://wp.lab/wp-content/plugins/location-finder/public/css/featherlight.gallery.min.css?ver=1.1.1" media="all">
|
||||
<link rel="stylesheet" id="location-finder-css" href="http://wp.lab/wp-content/plugins/location-finder/public/css/location-finder-public.css?ver=1.1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/location-finder/public/js/featherlight.min.js?ver=1.1.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/location-finder/public/js/featherlight.gallery.js?ver=1.1.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/location-finder/public/js/location-finder-public.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- location-module-for-contact-form-7 -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/location-module-for-contact-form-7/js/gmaps.min.js?ver=1.1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/location-module-for-contact-form-7/js/cf7-location-module.min.js?ver=1.1.0"></script>
|
||||
@@ -8187,6 +8293,11 @@
|
||||
<link rel="stylesheet" id="ls_bw_style-css" href="http://wp.lab/wp-content/plugins/loomisoft-button-widget/css/style.css?ver=1.2.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- loopfeedback -->
|
||||
<link rel="stylesheet" id="loop-feedback-css" href="http://wp.lab/wp-content/plugins/loopfeedback/public/css/loop-feedback-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/loopfeedback/public/js/loop-feedback-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- loops-n-slides -->
|
||||
<link rel="stylesheet" id="loopsns-loop-css" href="http://wp.lab/wp-content/plugins/loops-n-slides/_inc/css/loopsns-loop.css?ver=1.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/loops-n-slides/_inc/js/loopsns-loop.js?ver=1.1.1"></script>
|
||||
@@ -9374,11 +9485,22 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/my-faves/public/js/myfaves-public.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- my-idx-home-search -->
|
||||
<link rel="stylesheet" id="homeasap-search-css" href="http://wp.lab/wp-content/plugins/my-idx-home-search/public/css/homeasap-search-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/my-idx-home-search/public/js/homeasap-search-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- my-restaurant-reviews -->
|
||||
<link rel="stylesheet" id="my_restaurant_reviews-css" href="http://wp.lab/wp-content/plugins/my-restaurant-reviews/public/css/mrr-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/my-restaurant-reviews/public/js/mrr-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- my-social-feed -->
|
||||
<link rel="stylesheet" id="ifree-style-css" href="http://wp.lab/wp-content/plugins/my-social-feed/public/assets/css/style.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/my-social-feed/public/assets/js/jquery.instagramFeed.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/my-social-feed/public/assets/js/instagramFeed.custom.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- myanmar-unipress -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myanmar-unipress/_inc/js/rabbit.js?ver=1.1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myanmar-unipress/_inc/js/bunny.js?ver=1.1.0"></script>
|
||||
@@ -9507,6 +9629,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/new-popular-posts-widget/public/js/new-popular-posts-widget-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- news-and-blog-designer-bundle -->
|
||||
<link rel="stylesheet" id="wpoh-fontawesome-css-css" href="http://wp.lab/wp-content/plugins/news-and-blog-designer-bundle/assets/css/font-awesome.min.css?ver=1.1" media="all">
|
||||
<link rel="stylesheet" id="slick-style-css" href="http://wp.lab/wp-content/plugins/news-and-blog-designer-bundle/assets/css/nbdb-slick.css?ver=1.1" media="all">
|
||||
<link rel="stylesheet" id="nbdb-custom-style-css" href="http://wp.lab/wp-content/plugins/news-and-blog-designer-bundle/assets/css/nbdb-custom.css?ver=1.1" media="all">
|
||||
|
||||
|
||||
<!-- news-bar -->
|
||||
<link rel="stylesheet" id="news-bar-frontend-css" href="http://wp.lab/wp-content/plugins/news-bar/assets/css/frontend.css?ver=2.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="news-bar-frontend-skin-css" href="http://wp.lab/wp-content/plugins/news-bar/assets/skins/.css?ver=2.0.0" type="text/css" media="all">
|
||||
@@ -9894,6 +10022,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/offsprout-page-builder/builder/app/build/js/public.js?ver=2.11"></script>
|
||||
|
||||
|
||||
<!-- ogulo-360-tour -->
|
||||
<link rel="stylesheet" id="ogulo-360-tour-css" href="http://wp.lab/wp-content/plugins/ogulo-360-tour/public/css/ogulo-360-tour-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/ogulo-360-tour/public/js/ogulo-360-tour-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- olevmedia-shortcodes -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/olevmedia-shortcodes/assets/js/shortcodes.js?ver=1.1.9"></script>
|
||||
|
||||
@@ -9958,6 +10091,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/open-external-links-in-new-window/oelinw.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- open-in-new-tab-internal-link -->
|
||||
<link rel="stylesheet" id="ndh-ointil-css" href="http://wp.lab/wp-content/plugins/open-in-new-tab-internal-link/public/css/ndh-ointil-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/open-in-new-tab-internal-link/public/js/ndh-ointil-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- open-source-emoji -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/open-source-emoji/pub/js/emoji.min.js?theme=android&ver=1.0.6"></script>
|
||||
|
||||
@@ -10163,6 +10301,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page2images-visual-link/js/p2i.thumbnails.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- pagemagic-page-lists -->
|
||||
<link rel="stylesheet" id="page-list-style-css" href="http://wp.lab/wp-content/plugins/pagemagic-page-lists/css/page-list.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- pagenator -->
|
||||
<link rel="stylesheet" id="pagenator-plugin-styles-css" href="http://wp.lab/wp-content/plugins/pagenator/public/assets/css/pagenator.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pagenator/public/assets/js/public.js?ver=1.0.0"></script>
|
||||
@@ -11101,6 +11243,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/product-qa-for-woocommerce/public/js/faq-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- product-recommendation-quiz-for-ecommerce -->
|
||||
<link rel="stylesheet" id="product-recommendation-quiz-for-ecommerce-css" href="http://wp.lab/wp-content/plugins/product-recommendation-quiz-for-ecommerce/public/css/product-recommendation-quiz-for-ecommerce-public.css?ver=1.0.3" media="all">
|
||||
|
||||
|
||||
<!-- product-review -->
|
||||
<link rel="stylesheet" id="product-review-css" href="http://wp.lab/wp-content/plugins/product-review/public/assets/css/product-review-public.css?ver=1.2.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="product-review-responsive-css" href="http://wp.lab/wp-content/plugins/product-review/public/assets/css/responsive.css?ver=1.2.3" type="text/css" media="all">
|
||||
@@ -11652,6 +11798,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/recurly-subscription/public/js/rs-additional-methods.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- red-balloon-frontend-suite -->
|
||||
<script src="http://wp.lab/wp-content/plugins/red-balloon-frontend-suite/js/rb-vertical-equaliser.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/red-balloon-frontend-suite/js/rb-autotype.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/red-balloon-frontend-suite/js/rb-dropcap.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- redirect-pagespost-with-shortcode -->
|
||||
<link rel="stylesheet" id="pi_redirect_shortcode-css" href="http://wp.lab/wp-content/plugins/redirect-pagespost-with-shortcode/public/css/pi_redirect_shortcode-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/redirect-pagespost-with-shortcode/public/js/pi_redirect_shortcode-public.js?ver=1.0.0"></script>
|
||||
@@ -11841,6 +11993,13 @@
|
||||
<link rel="stylesheet" id="responsive-pricing-table-css" href="http://wp.lab/wp-content/plugins/responsive-pricing-table/assets/css/style.css?ver=1.2.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- responsive-team-showcase -->
|
||||
<link rel="stylesheet" id="wpos-slick-style-css" href="http://wp.lab/wp-content/plugins/responsive-team-showcase/rts-assets/css/slick.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="wpoh-magnific-css-css" href="http://wp.lab/wp-content/plugins/responsive-team-showcase/rts-assets/css/magnific-popup.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="rts-public-style-css" href="http://wp.lab/wp-content/plugins/responsive-team-showcase/rts-assets/css/rts-costum.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="wpoh-font-awesome-css" href="http://wp.lab/wp-content/plugins/responsive-team-showcase/rts-assets/css/font-awesome.min.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- responsive-video-ultimate -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/responsive-video-ultimate/js/jquery.fitvids.js?ver=1.0"></script>
|
||||
|
||||
@@ -11879,6 +12038,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/restaurant-cafe-addon-for-elementor/assets/js/scripts.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- restaurant-link -->
|
||||
<link rel="stylesheet" id="Restaurant link-css" href="http://wp.lab/wp-content/plugins/restaurant-link/public/css/restaurant-link-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/restaurant-link/public/js/restaurant-link-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- restaurantpress -->
|
||||
<link rel="stylesheet" id="restaurantpress-layout-css" href="http://wp.lab/wp-content/plugins/restaurantpress/assets/css/restaurantpress-layout.css?ver=1.6.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="restaurantpress-smallscreen-css" href="http://wp.lab/wp-content/plugins/restaurantpress/assets/css/restaurantpress-smallscreen.css?ver=1.6.0" type="text/css" media="only screen and (max-width: 768px)">
|
||||
@@ -12618,6 +12782,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shared-whiteboard/helper.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- shareon -->
|
||||
<link rel="stylesheet" id="shareon-css-css" href="http://wp.lab/wp-content/plugins/shareon/shareon.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/shareon/shareon.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sharethis-reviews -->
|
||||
<link rel="stylesheet" id="share-this-reviews-review-css" href="http://wp.lab/wp-content/plugins/sharethis-reviews/css/sharethisreviews.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sharethis-reviews/js/review.js?ver=1.0.0"></script>
|
||||
@@ -13003,6 +13172,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-post-gmaps/inc/ressources/spgm-map.min.js?ver=3.2"></script>
|
||||
|
||||
|
||||
<!-- simple-reading-progress-bar -->
|
||||
<link rel="stylesheet" id="srpb-css" href="http://wp.lab/wp-content/plugins/simple-reading-progress-bar/css/srpb.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/simple-reading-progress-bar/js/srpb_scripts.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- simple-responsive-images -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-responsive-images//ressources/js/responsive.min.js?ver=1.0.3"></script>
|
||||
|
||||
@@ -13193,6 +13367,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/skyboot-portfolio-gallery/assests/js/isotope.pkgd.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- slatre -->
|
||||
<link rel="stylesheet" id="slatre-css" href="http://wp.lab/wp-content/plugins/slatre/public/css/slatre-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/slatre/public/js/slatre-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- slicewp -->
|
||||
<link rel="stylesheet" id="slicewp-style-css" href="http://wp.lab/wp-content/plugins/slicewp/assets/css/style-front-end.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/slicewp/assets/js/script-tracking.js?ver=1.0.0"></script>
|
||||
@@ -13783,6 +13962,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/status-buddy/public/js/status-buddy-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- stax-buddy-builder -->
|
||||
<link rel="stylesheet" id="stax-buddy-builder-front-css" href="http://wp.lab/wp-content/plugins/stax-buddy-builder/assets/css/index.min.css?ver=1.0.1" media="all">
|
||||
|
||||
|
||||
<!-- stay-alive -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stay-alive/assets/js/stay-alive.js?ver=2.4.8"></script>
|
||||
|
||||
@@ -13829,6 +14012,8 @@
|
||||
<!-- sticky-banner -->
|
||||
<link rel="stylesheet" id="hdsb-stickybanner-style-css" href="http://wp.lab/wp-content/plugins/sticky-banner/css/hdsb-stickybanner.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sticky-banner/js/hdsb-stickybanner.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="hdsb-stickybanner-style-css" href="http://wp.lab/wp-content/plugins/sticky-banner/assets/css/stickybanner.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sticky-banner/assets/js/stickybanner.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sticky-block -->
|
||||
@@ -14147,6 +14332,13 @@
|
||||
<link rel="stylesheet" id="wptg-styles-css" href="http://wp.lab/wp-content/plugins/table-generator/css/style.css?ver=1.3.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- table-genie -->
|
||||
<link rel="stylesheet" id="table-genie-css" href="http://wp.lab/wp-content/plugins/table-genie/public/css/table-genie-public.css?ver=1.0.5" media="all">
|
||||
<link rel="stylesheet" id="tbg-badge-css-css" href="http://wp.lab/wp-content/plugins/table-genie/public/css/table-genie-badges.css?ver=1.0.5" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/table-genie/public/js/tbg-public.js?ver=1.0.5"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/table-genie/public/js/tbg-shared.js?ver=1.0.5"></script>
|
||||
|
||||
|
||||
<!-- table-maker -->
|
||||
<link rel="stylesheet" id="wpsm-comptable-styles-css" href="http://wp.lab/wp-content/plugins/table-maker/css/style.css?ver=1.6" type="text/css" media="all">
|
||||
|
||||
@@ -15216,6 +15408,14 @@
|
||||
<link rel="stylesheet" id="unik-pricing-table-css" href="http://wp.lab/wp-content/plugins/unik-ultimate-pricing-table/assets/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- unikname-connect -->
|
||||
<link rel="stylesheet" id="the_champ_frontend_css-css" href="http://wp.lab/wp-content/plugins/unikname-connect/css/front.css?ver=8.0.0" media="all">
|
||||
<link rel="stylesheet" id="the_champ_sharing_default_svg-css" href="http://wp.lab/wp-content/plugins/unikname-connect/css/share-svg.css?ver=8.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/unikname-connect/js/front/social_login/general.js?ver=8.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/unikname-connect/js/front/facebook/sdk.js?ver=8.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/unikname-connect/js/front/facebook/commenting.js?ver=8.0.0"></script>
|
||||
|
||||
|
||||
<!-- unipress-api -->
|
||||
<link rel="stylesheet" id="unipress-api-css" href="http://wp.lab/wp-content/plugins/unipress-api//css/unipress.css?ver=1.17.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/unipress-api//js/unipress.js?ver=1.17.3"></script>
|
||||
@@ -15445,6 +15645,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vc-mailchimp/assets/js/frontend.js?ver=2.1.0"></script>
|
||||
|
||||
|
||||
<!-- vd-my-header-footer -->
|
||||
<link rel="stylesheet" id="vd-release-css" href="http://wp.lab/wp-content/plugins/vd-my-header-footer/lib/css/visual-designer-release.min.css?ver=1.02-1592642824" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/vd-my-header-footer/includes/js/mhf-public.js?ver=1.02-1592642824"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/vd-my-header-footer/lib/js/visual-designer-release.min.js?ver=1.02-1592642824"></script>
|
||||
|
||||
|
||||
<!-- vdpetform -->
|
||||
<link rel="stylesheet" id="vdpetform-css" href="http://wp.lab/wp-content/plugins/vdpetform/public/css/vdpetform-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vdpetform/public/js/vdpetform-public.js?ver=1.0.1"></script>
|
||||
@@ -15801,6 +16007,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-product-videos/public/js/woocommerce-product-videos-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wc-products-coming-soon -->
|
||||
<link rel="stylesheet" id="wc-products-coming-soon-css" href="http://wp.lab/wp-content/plugins/wc-products-coming-soon/public/css/wc-products-coming-soon-public.css?ver=0.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wc-products-coming-soon/public/js/wc-products-coming-soon-public.js?ver=0.0.1"></script>
|
||||
|
||||
|
||||
<!-- wc-products-slider -->
|
||||
<link rel="stylesheet" id="wcps_wcps-slider-3d-gallery-demo-css" href="http://wp.lab/wp-content/plugins/wc-products-slider/public/css/wcps-slider-3d-gallery-demo.css?ver=1.0.3" media="">
|
||||
<link rel="stylesheet" id="wcps_wcps-slider-3d-gallery-style-css" href="http://wp.lab/wp-content/plugins/wc-products-slider/public/css/wcps-slider-3d-gallery-style.css?ver=1.0.3" media="">
|
||||
@@ -15893,6 +16104,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wdv-mailchimp-ajax/public/js/wdv-mailchimp-ajax-public.js?ver=2.0.4"></script>
|
||||
|
||||
|
||||
<!-- wdv-one-page-docs -->
|
||||
<link rel="stylesheet" id="wdv-one-page-docs-css" href="http://wp.lab/wp-content/plugins/wdv-one-page-docs/public/css/wdv-one-page-docs-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wdv-one-page-docs-public-styles-css" href="http://wp.lab/wp-content/plugins/wdv-one-page-docs/includes/wdv-one-page/dist/wdv-one-page/styles.03f479e3f712f361267f.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wdv-one-page-docs/public/js/wdv-one-page-docs-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- we-the-people -->
|
||||
<link rel="stylesheet" id="we-the-people-css" href="http://wp.lab/wp-content/plugins/we-the-people/assets/dist/css/we-the-people.css?ver=2.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="we-the-people-twentyfifteen-css" href="http://wp.lab/wp-content/plugins/we-the-people/assets/dist/css/twentyfifteen.css?ver=2.0" type="text/css" media="all">
|
||||
@@ -16013,6 +16230,9 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/js/wshop.min.js?ver=1.0.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/js/jquery-loading.min.js?ver=1.0.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/js/wshop.js?ver=1.0.2"></script>
|
||||
<link rel="stylesheet" id="xhweb-css" href="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/css/xunhuweb-plugins-base.css?ver=1.0.2" media="all">
|
||||
<link rel="stylesheet" id="xhweb-wshop-css" href="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/css/wechat-shop.css?ver=1.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wechat-shop-download/assets/js/xunhu-plugins-custom.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- wechat-social-login -->
|
||||
@@ -16171,6 +16391,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/widz/assets/js/front.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wikimotive-clickup-task-forms-free -->
|
||||
<link rel="stylesheet" id="clickup-task-forms-css" href="http://wp.lab/wp-content/plugins/wikimotive-clickup-task-forms-free/public/css/clickup-task-forms-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wikimotive-clickup-task-forms-free/public/js/clickup-task-forms-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wiloke-twitter-feed -->
|
||||
<link rel="stylesheet" id="pi_widget-css" href="http://wp.lab/wp-content/plugins/wiloke-twitter-feed/source/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -16717,6 +16942,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/worldtides-widget/public/js/worldtides-public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wow-carousel-for-divi-lite -->
|
||||
<link rel="stylesheet" id="wdcl-module-core-css" href="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/includes/modules/ModulesCore/style.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="wdcl-slick-css" href="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/vendor/slick/slick.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="wdcl-slick-theme-css" href="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/vendor/slick/slick-theme.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/vendor/slick/slick.min.js?ver=1.0.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/js/main.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- wowquestionnaire -->
|
||||
<link rel="stylesheet" id="wow-questionnaire-fontawesome-css" href="http://wp.lab/wp-content/plugins/wowquestionnaire/public/vendor/font-awesome/css/font-awesome.min.css?ver=1.2.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wow-questionnaire-sweetalert-css" href="http://wp.lab/wp-content/plugins/wowquestionnaire/public/vendor/sweetalert2/sweetalert2.min.css?ver=1.2.8" type="text/css" media="all">
|
||||
@@ -17209,6 +17442,11 @@
|
||||
<link rel="stylesheet" id="wp-dispensary-css" href="http://wp.lab/wp-content/plugins/wp-dispensary/public/css/wp-dispensary-public.min.css?ver=1.9.14" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-display-faq -->
|
||||
<link rel="stylesheet" id="wfp-front-style-css" href="http://wp.lab/wp-content/plugins/wp-display-faq/assets/css/wfp-front-style.css?ver=1.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-display-faq/assets/js/wfp-front-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-distraction-free-view -->
|
||||
<link rel="stylesheet" id="overlay-css" href="http://wp.lab/wp-content/plugins/wp-distraction-free-view/assets/css/overlay.css?ver=1.4" type="text/css" media="all">
|
||||
|
||||
@@ -17975,6 +18213,15 @@
|
||||
<link rel="stylesheet" id="wp-obituary-css-css" href="http://wp.lab/wp-content/plugins/wp-obituary/assets/css/wp-obituary-styles.css?ver=2.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-offers -->
|
||||
<link rel="stylesheet" id="tippy-css" href="http://wp.lab/wp-content/plugins/wp-offers/assets/css/tippy.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wp-offers-frontend-css" href="http://wp.lab/wp-content/plugins/wp-offers/assets/css/wp-offers-frontend.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-offers/assets/js/clipboard.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-offers/assets/js/popper.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-offers/assets/js/tippy.umd.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-offers/assets/js/wp-offers-frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-online-users-stats -->
|
||||
<link rel="stylesheet" id="wp-online-users-stats-css" href="http://wp.lab/wp-content/plugins/wp-online-users-stats/public/css/wp-online-users-stats-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-online-users-stats/public/js/wp-online-users-stats-public.js?ver=1.0.0"></script>
|
||||
@@ -18756,6 +19003,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-viber-contact-button-lite/js/wpvcbL-frontend.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- wp-viewworks -->
|
||||
<link rel="stylesheet" id="wp-viewworks-css" href="http://wp.lab/wp-content/plugins/wp-viewworks/public/css/public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-viewworks/public/js/jamie.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-viewworks/public/js/public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-vimeoplayer -->
|
||||
<link rel="stylesheet" id="mb.vimeo_player_css-css" href="http://wp.lab/wp-content/plugins/wp-vimeoplayer/css/jquery.mb.vimeo_player.min.css?ver=1.1.6" type="text/css" media="screen">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-vimeoplayer/js/jquery.mb.vimeo_player.js?ver=1.1.6"></script>
|
||||
@@ -19137,6 +19390,11 @@
|
||||
<link rel="stylesheet" id="wpstores-te-css" href="http://wp.lab/wp-content/plugins/wpstores-theme-enhancer/lib/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wpsultan-debug -->
|
||||
<link rel="stylesheet" id="wpsultan-debug-css" href="http://wp.lab/wp-content/plugins/wpsultan-debug/public/css/wpsultan-debug-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wpsultan-debug/public/js/wpsultan-debug-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpsupercountdown -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpsupercountdown/wpsc.js?ver=0.8.15"></script>
|
||||
|
||||
@@ -19492,6 +19750,15 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ziyarat-ashura/js/za-js.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- zone-cookie -->
|
||||
<link rel="stylesheet" id="zone-cookie-css" href="http://wp.lab/wp-content/plugins/zone-cookie/public/css/zone-cookie-public.css?ver=1.0.4" media="all">
|
||||
<link rel="stylesheet" id="zone-cookie-cookieconsentcss-css" href="http://wp.lab/wp-content/plugins/zone-cookie/public/css/cookieconsent/cookieconsent.min.css?ver=1.0.4" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/zone-cookie/public/js/zone-cookie-public.js?ver=1.0.4"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/zone-cookie/public/js/cookieconsent/script.js?ver=1.0.4"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/zone-cookie/public/js/cookieconsent/cookieconsent.min.js?ver=1.0.4"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/zone-cookie/public/js/zone-cookie-public-ajax.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- zone-marker -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zone-marker/public/js/gil-zone-marker.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,240 @@
|
||||
# Copyright (C) 2020 Bengal Studio
|
||||
# This file is distributed under the same license as the Reviews for Easy Digital Downloads package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Reviews for Easy Digital Downloads 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/easy-digital-downloads-reviews\n"
|
||||
"POT-Creation-Date: 2020-06-19 07:43:25+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-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"
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-meta-boxes.php:46
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:34
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:47
|
||||
msgid "Download Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:52
|
||||
msgid "Enable Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:53
|
||||
msgid "Enable download reviews."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:58
|
||||
msgid "Enable Verification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:59
|
||||
msgid "Reviews can only be left by \"verified owners\"."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:64
|
||||
msgid "Verification Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:65
|
||||
msgid "Show \"verified owner\" label on customer reviews."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:70
|
||||
msgid "Download Ratings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:75
|
||||
msgid "Enable Ratings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:76
|
||||
msgid "Enable star ratings on reviews."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:81
|
||||
msgid "Ratings Required?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-edd-reviews-admin-settings.php:82
|
||||
msgid "Star ratings should be required, not optional."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-edd-reviews-comments.php:68
|
||||
msgid "Please rate the download."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-edd-reviews-extension-activation.php:49
|
||||
msgid "This plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-edd-reviews-extension-activation.php:83
|
||||
msgid " requires %1$sEasy Digital Downloads%2$s. Please activate it to continue."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-edd-reviews-extension-activation.php:85
|
||||
msgid " requires %1$sEasy Digital Downloads%2$s. Please install it to continue."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-edd-reviews.php:65
|
||||
msgid "Cloning is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-edd-reviews.php:74
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/edd-reviews-core-functions.php:35
|
||||
#. translators: %s template
|
||||
msgid "%s does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/edd-reviews-core-functions.php:51
|
||||
msgid "action_args should not be overwritten when calling edd_reviews_get_template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/edd-reviews-template-functions.php:103
|
||||
#: includes/edd-reviews-template-functions.php:128
|
||||
#. translators: %s: rating
|
||||
msgid "Rated %s out of 5"
|
||||
msgstr ""
|
||||
|
||||
#: includes/edd-reviews-template-functions.php:125
|
||||
#. translators: 1: rating 2: rating count
|
||||
msgid "Rated %1$s out of 5 based on %2$s customer rating"
|
||||
msgid_plural "Rated %1$s out of 5 based on %2$s customer ratings"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: templates/single-download/review-meta.php:27
|
||||
msgid "Your review is awaiting approval"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download/review-meta.php:37
|
||||
msgid "verified owner"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:40
|
||||
#. translators: 1: title.
|
||||
msgid "One review for “%1$s”"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:66
|
||||
msgid "Reviews are closed."
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:83
|
||||
#. translators: %s is product title
|
||||
msgid "Write a Review"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:83
|
||||
msgid "Be the first to review “%s”"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:85
|
||||
#. translators: %s is product title
|
||||
msgid "Leave a Reply to %s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:86
|
||||
msgid "Post Review"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:92
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:98
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:121
|
||||
#. translators: %s opening and closing link tags respectively
|
||||
msgid "You must be %1$slogged in%2$s to post a review."
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:126
|
||||
msgid "Your rating"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:128
|
||||
msgid "Rate…"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:129
|
||||
msgid "Perfect"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:130
|
||||
msgid "Good"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:131
|
||||
msgid "Average"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:132
|
||||
msgid "Not that bad"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:133
|
||||
msgid "Very poor"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:139
|
||||
msgid "Your review"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:148
|
||||
msgid "Only logged in customers who have purchased this product may leave a review."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Reviews for Easy Digital Downloads"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://bengal-studio.com/plugins/reviews-for-easy-digital-downloads"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Reviews for Easy Digital Downloads allows your customers to submit reviews "
|
||||
"with a 1-5 star rating on your website and helps to increase sales for your "
|
||||
"business."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Bengal Studio"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://bengal-studio.com"
|
||||
msgstr ""
|
||||
|
||||
#: templates/single-download-reviews.php:46
|
||||
#. translators: 1: comment count number, 2: title.
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s review for “%2$s”"
|
||||
msgid_plural "%1$s reviews for “%2$s”"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/spottercommt-xml-feed/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/spottercommt-xml-feed/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
--- Version: 1.0.0 ---
|
||||
Initial Release
|
||||
@@ -0,0 +1,6 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [1.0.0] - 2020-05-28
|
||||
### Added
|
||||
- First Version
|
||||
@@ -0,0 +1,151 @@
|
||||
# Copyright (C) 2020 Ederson Peka
|
||||
# This file is distributed under the same license as the Unlimited Page Sidebars plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Unlimited Page Sidebars 0.2.5\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/unlimited-page-sidebars\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-06-15T14:30:35-03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: unlimited-page-sidebars.php:112
|
||||
#: unlimited-page-sidebars.php:430
|
||||
msgid "Unlimited Page Sidebars"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://ederson.peka.nom.br"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allows assigning one specific widget area (sidebar) to each page or post."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ederson Peka"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/edersonpeka/"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:49
|
||||
msgid "Custom Sidebar #%1$d"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:55
|
||||
msgid "This \"virtual\" sidebar is hidden by default. It should show up only in the pages or posts that select it on the \"Custom Sidebar\" section."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:68
|
||||
msgid "Deprecated Custom Sidebar #%1$d"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:69
|
||||
msgid "This \"virtual\" sidebar is deprecated. It was left here so you can transfer its widgets to any new custom sidebar. After that, you can get rid of these deprecated sidebars in plugin's options screen."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:111
|
||||
#: unlimited-page-sidebars.php:311
|
||||
msgid "Unlimited Page Sidebars Options"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:133
|
||||
msgid "Inform new sidebar name:"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:134
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:135
|
||||
msgid "Removing a custom sidebar is a permanent action. Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:143
|
||||
msgid "Sidebar added successfully."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:144
|
||||
#: unlimited-page-sidebars.php:172
|
||||
msgid "Sidebar name can't be empty."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:145
|
||||
#: unlimited-page-sidebars.php:174
|
||||
#: unlimited-page-sidebars.php:204
|
||||
#: unlimited-page-sidebars.php:226
|
||||
msgid "Not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:171
|
||||
msgid "Sidebar renamed successfully."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:173
|
||||
#: unlimited-page-sidebars.php:203
|
||||
msgid "No sidebar id specified."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:202
|
||||
msgid "Sidebar removed successfully."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:242
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:282
|
||||
msgid "delete"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:320
|
||||
msgid "Sidebars:"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:328
|
||||
#: unlimited-page-sidebars.php:334
|
||||
msgid "No sidebar created yet."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:338
|
||||
msgid "New sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:344
|
||||
msgid "Enable on post types:"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:356
|
||||
msgid "Deprecated Option"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:357
|
||||
msgid "As you had sidebars set up in a version prior than 0.2.5, this option is still displayed. After you create new custom sidebars above, you should transfer to them your widgets from the old deprecated ones. After that, you can come here and set this option to 0 (zero). Then this field must disappear for good."
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:358
|
||||
msgid "Number of Optional Sidebars:"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:370
|
||||
msgid "Update Options"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:450
|
||||
msgid "Custom Sidebars"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:464
|
||||
msgid "Sidebar <em>%s</em>:"
|
||||
msgstr ""
|
||||
|
||||
#: unlimited-page-sidebars.php:468
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
119
spec/fixtures/dynamic_finders/plugin_version/wp-featherlight-disabled/change_log/CHANGELOG.md
vendored
Normal file
119
spec/fixtures/dynamic_finders/plugin_version/wp-featherlight-disabled/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
## 1.3.3
|
||||
This is primarily a maintenance release.
|
||||
|
||||
Here's a full list of what's changed since the last release:
|
||||
- Tweak: Change metabox title
|
||||
|
||||
|
||||
## 1.3.2
|
||||
Release to downgrade Featherlight verison until all bugs are worked out.
|
||||
|
||||
- Dev: Updated [Featherlight](https://github.com/noelboss/featherlight/) to `1.7.13`
|
||||
|
||||
## 1.3.1
|
||||
This is primarily a maintenance release, but one new feature has been added. Display the option to disable the lightbox in Gutenberg!
|
||||
|
||||
Here's a full list of what's changed since the last release:
|
||||
|
||||
- Feature: Add back metabox in sidebar
|
||||
- Dev: Updated [Featherlight](https://github.com/noelboss/featherlight/) to `1.7.14`
|
||||
|
||||
## 1.3.0
|
||||
While primarily a maintenance release, one new feature has been added. WP Featherlight now supports Gutenberg galleries.
|
||||
|
||||
Here's a full list of what's changed since the last release:
|
||||
|
||||
- Feature: Gutenberg support
|
||||
- Tweak: General code cleanup in plugin
|
||||
- Dev: Updated [Featherlight](https://github.com/noelboss/featherlight/) to `1.7.13`
|
||||
- Change of ownership
|
||||
|
||||
## 1.2.0
|
||||
This is primarily a maintenance release, but one new feature has been added. HTML in captions is now supported!
|
||||
|
||||
Here's a full list of what's changed since the last release:
|
||||
|
||||
- Feature: Allowed HTML to be displayed in lightbox image captions
|
||||
- Dev: Updated [Featherlight](https://github.com/noelboss/featherlight/) to `1.7.9`
|
||||
- Dev: Updated [jQuery Detect Swipe](http://github.com/marcandre/detect_swipe) to `2.1.4`
|
||||
|
||||
## 1.1.0
|
||||
Thanks to some changes implemented in the core featherlight script, the accessibility of WP Featherlight is now significantly improved. Lightboxed elements now have more appropriate focus management for screen readers and the close button is more accessible.
|
||||
|
||||
This update also fixes a potential plugin compatibly problem in the WordPress admin. In version 1.0, it was possible under unusual circumstances for the plugin to throw a fatal error when attempting to add the disable checkbox to the publish metabox.
|
||||
|
||||
- Tweak: Improved accessibility (accessible close button, better focus management)
|
||||
- Fix: Prevented a fatal error that could happen when another plugin unsets the WP_Post object on the publish metabox.
|
||||
- Dev: Updated [Featherlight](https://github.com/noelboss/featherlight/) to `1.7.0`
|
||||
|
||||
## 1.0.0
|
||||
Even though this is a major version change, this is primarily a maintenance release. The reason for the jump to 1.0.0 is because we've changed some code which could break backwards compatibility with custom extensions and integrations.
|
||||
|
||||
If you're just using the plugin on your site and haven't customized it or paid anyone to customize it for you, you should be able to update without any issues.
|
||||
|
||||
If you're a developer and have written custom code extending the PHP side of WP Featherlight, be sure to test your code before updating.
|
||||
|
||||
Under the hood, we've [deprecated some internal methods](https://github.com/cipherdevgroup/wp-featherlight/search?utf8=%E2%9C%93&q=_deprecated_function) which could potentially break custom code which extends WP Featherlight. The changes are primarily limited to class initialization, so unless you were doing something specific to that, it's unlikely that you'll run into issues.
|
||||
|
||||
- Tweak: Improved transition between images within galleries
|
||||
- Tweak: Moved our disable lightbox checkbox into the publish meta box to streamline the admin
|
||||
- Tweak: Made styles more aggressive to ensure elements look consistent across different themes by default
|
||||
- Fix: Reduced false positives for URLs that use image extensions but don't actually link to an image
|
||||
- Dev: Updated [Featherlight](https://github.com/noelboss/featherlight/) to `1.5.1`
|
||||
- Dev: Updated [jQuery Detect Swipe](http://github.com/marcandre/detect_swipe) to `2.1.3`
|
||||
- Dev: Deprecated some internal methods
|
||||
- Dev: Reorganized how classes are instantiated and plugin actions are fired
|
||||
|
||||
## 0.3.0
|
||||
|
||||
There are quite a few internal changes in the plugin for this release, plus some nice new features and improvements on the front-end. We've streamlined everything as much as possible and also added support for some languages other than English! Here's a breakdown of everything that's changed:
|
||||
|
||||
### New Features
|
||||
- Automatic captioning for WordPress images and gallery items (Including Jetpack Galleries)
|
||||
- Spanish language translation
|
||||
|
||||
### Enhancements
|
||||
- Updated [Featherlight](https://github.com/noelboss/featherlight/) to `1.3.3`
|
||||
- Improved gallery styles on desktop and mobile devices
|
||||
- Streamlined overall styles
|
||||
- Added SVG icons for more visual consistency across various platforms
|
||||
- Simplified the text used in the admin metabox to ease translations (props @toscho)
|
||||
|
||||
### Bug Fixes
|
||||
- Improved handling of images when certain caching plugins are enabled
|
||||
- Prevented gallery arrows from being hijacked by WP Emoji
|
||||
- Fixed a bug which allowed multiple light boxes to be opened using keyboard commands
|
||||
|
||||
### Developer Stuff
|
||||
- Reduced overhead by loading language files only when needed (props @toscho)
|
||||
- Improved the save routine for our admin metabox (props @toscho)
|
||||
- Added a `wp_featherlight_captions` filter to control auto-captioning. Filter it to false to disable captions.
|
||||
- Re-structured the plugin's internal code base and deprecated plugin constants
|
||||
- Added Grunt and Bower the plugin to allow easier updates and releases in the future
|
||||
|
||||
### Added Language Support
|
||||
- German
|
||||
- Spanish
|
||||
- French
|
||||
- Portuguese (Brazil)
|
||||
- Spanish (Peru)
|
||||
|
||||
## 0.2.0
|
||||
|
||||
The primary feature in this release is the addition of a visual loader and the automatic lightboxing of external images. In prior versions, only images from the WordPress host domain were lightboxed automatically. This caused some problems with people using a CDN as the URLs were treated as external.
|
||||
|
||||
There have also been a handful of code improvements under the hood including:
|
||||
|
||||
- Added gallery support for Jetpack Tiled Galleries
|
||||
- Improved URL handling to match more image instances automatically
|
||||
- Fixed a mistake in the textdomain path
|
||||
- Improved admin metabox markup (props @GaryJones)
|
||||
- Fixed a typo in the main stylesheet's script handle (props @GaryJones)
|
||||
|
||||
## 0.1.1
|
||||
|
||||
Fixed a bug that caused all WordPress galleries to open in a light box. Now only galleries which have been set to link to the media attachment are opened using Featherlight.
|
||||
|
||||
## 0.1.0
|
||||
|
||||
Initial release!
|
||||
72
spec/fixtures/dynamic_finders/plugin_version/wp-gatsby/change_log/CHANGELOG.md
vendored
Normal file
72
spec/fixtures/dynamic_finders/plugin_version/wp-gatsby/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
# Change Log
|
||||
|
||||
## 0.4.9
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Preview wasn't working properly for new posts that hadn't yet been published or for drafts.
|
||||
|
||||
## 0.4.8
|
||||
|
||||
Pushing release to WordPress.org
|
||||
|
||||
## 0.4.7
|
||||
|
||||
### New Features
|
||||
|
||||
- Added a link to the GatsbyJS settings page on how to configure this plugin.
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Activating this plugin before WPGraphQL was causing PHP errors.
|
||||
|
||||
## 0.4.6
|
||||
|
||||
Add Wapuu Icons for display in the WordPress.org repo
|
||||
|
||||
## 0.4.5
|
||||
|
||||
Re-publish with proper package name
|
||||
|
||||
## 0.4.4
|
||||
|
||||
Testing Github Actions
|
||||
|
||||
## 0.4.3
|
||||
|
||||
New release to trigger publishing to WordPress.org!
|
||||
|
||||
## 0.4.2
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Previously when a post transitioned from published to draft, it wouldn't be deleted in Gatsby
|
||||
|
||||
## 0.4.1
|
||||
|
||||
Version bump to add /vendor directory to Git so that Github releases work as WP plugins without running `composer install`. In the future there will be a better release process, but for now this works.
|
||||
|
||||
## 0.4.0
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
- WPGraphQL was using nav_menu for it's menu relay id's instead of term. WPGQL 0.9.1 changes this from nav_menu to term. This is a breaking change because cache invalidation wont work properly if the id is incorrect. So we move to v0.4.0 so gatsby-source-wordpress-experimental can set 0.4.0 as it's min version and cache invalidation will keep working.
|
||||
|
||||
## 0.3.0
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
- Updated Relay ids to be compatible with WPGraphQL 0.9.0. See https://github.com/wp-graphql/wp-graphql/releases/tag/v0.9.0 for more info.
|
||||
- Bumped min PHP and WP versions
|
||||
|
||||
## 0.2.6
|
||||
|
||||
### Bug fixes
|
||||
|
||||
Fixed an issue where we were trying to access post object properties when we didn't yet have the post.
|
||||
|
||||
## 0.2.5
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
Earlier versions of WPGatsby were recording up to 4 duplicate content saves per content change in WordPress. This release stops that from happening. WPGatsby does garbage collection, so any duplicate actions will be automatically removed from your DB.
|
||||
@@ -0,0 +1,88 @@
|
||||
# Copyright (C) 2020 Compdigitec
|
||||
# This file is distributed under the same license as the WP No-Bot Question plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP No-Bot Question 0.1.7\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-nobot-question\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-06T22:32:26+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp_nobot_question\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP No-Bot Question"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://www.compdigitec.com/apps/wpnobot/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Simple question that blocks most spambots (and paid robots) by making them answer a common sense question"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Compdigitec"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.compdigitec.com/"
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:96
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:120
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:162
|
||||
msgid "Error: Please fill in the required question."
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:170
|
||||
#: wp_nobot_question.php:179
|
||||
msgid "Error: Please fill in the correct answer to the question."
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:217
|
||||
msgid "Question to present to bot"
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:219
|
||||
msgid "Type here to add a new question"
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:223
|
||||
msgid "Possible Answers"
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:236
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:272
|
||||
msgid "WP No-Bot Question settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:288
|
||||
msgid "Enable WP No-Bot Question"
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:297
|
||||
msgid "Protect the registration page too?"
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:306
|
||||
msgid "Questions to present to bot"
|
||||
msgstr ""
|
||||
|
||||
#: wp_nobot_question.php:320
|
||||
msgid "Enter a new answer here"
|
||||
msgstr ""
|
||||
939
spec/fixtures/dynamic_finders/plugin_version/wp-offers/translation_file/languages/wp-offers.pot
vendored
Normal file
939
spec/fixtures/dynamic_finders/plugin_version/wp-offers/translation_file/languages/wp-offers.pot
vendored
Normal file
@@ -0,0 +1,939 @@
|
||||
# Copyright (C) 2020 KitThemes
|
||||
# This file is distributed under the same license as the WP Offers plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Offers 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-offers\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-06-11T11:10:18+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wp-offers\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/class-plugin.php:165
|
||||
msgid "WP Offers"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.kitthemes.com/wp-offers"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Best Coupon and Deal WordPress Plugin for Affiliate Marketers and Bloggers. Our plugin helps you to boost CTR and sales through Coupons And Deals."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "KitThemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.kitthemes.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:94
|
||||
msgctxt "Post type general name"
|
||||
msgid "Coupons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:94
|
||||
msgctxt "Post type singular name"
|
||||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:94
|
||||
msgctxt "Admin Menu text of WP Offers"
|
||||
msgid "WP Offers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:110
|
||||
msgctxt "taxonomy general name"
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:111
|
||||
msgctxt "taxonomy singular name"
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:124
|
||||
msgctxt "taxonomy general name"
|
||||
msgid "Stores"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:125
|
||||
msgctxt "taxonomy singular name"
|
||||
msgid "Store"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:298
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:299
|
||||
#: assets/js/wp-offers-editor.js:12174
|
||||
msgid "Coupon Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:301
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:302
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:325
|
||||
#: includes/class-coupon.php:418
|
||||
#: includes/class-coupon.php:421
|
||||
#: includes/options.php:175
|
||||
#: includes/options.php:195
|
||||
#: assets/js/wp-offers-editor.js:12184
|
||||
msgid "Coupon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:326
|
||||
#: includes/class-coupon.php:423
|
||||
#: includes/options.php:185
|
||||
#: assets/js/wp-offers-editor.js:12192
|
||||
msgid "Deal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:327
|
||||
#: assets/js/wp-offers-editor.js:12200
|
||||
msgid "Printable Coupon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:338
|
||||
msgid "Expired"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:341
|
||||
#: includes/class-coupon.php:355
|
||||
#: includes/options.php:120
|
||||
msgid "On Going Offer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon-post-type.php:391
|
||||
#: includes/class-coupon-post-type.php:411
|
||||
#: assets/js/wp-offers-editor.js:13288
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon.php:234
|
||||
#: includes/options.php:65
|
||||
msgid "Get This Deal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon.php:264
|
||||
#: includes/options.php:87
|
||||
msgid "Print This Coupon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon.php:348
|
||||
#: includes/options.php:131
|
||||
msgid "Expires On"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon.php:350
|
||||
#: includes/options.php:142
|
||||
msgid "Expired On"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Expiration text, Expiration date.
|
||||
#: includes/class-coupon.php:353
|
||||
msgid "%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon.php:542
|
||||
#: includes/options.php:54
|
||||
msgid "Click to Copy This Coupon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon.php:545
|
||||
#: includes/options.php:98
|
||||
msgid "Click Here To Print This Coupon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-coupon.php:547
|
||||
#: includes/options.php:76
|
||||
msgid "Click Here To Get This Deal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-plugin.php:73
|
||||
#: includes/class-plugin.php:86
|
||||
msgid "Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-plugin.php:161
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-plugin.php:169
|
||||
msgid "Documentations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-post-type.php:233
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:235
|
||||
#: includes/class-post-type.php:425
|
||||
msgid "Add New %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:237
|
||||
msgid "New %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:239
|
||||
#: includes/class-post-type.php:419
|
||||
msgid "Edit %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:241
|
||||
#: includes/class-post-type.php:421
|
||||
msgid "View %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:243
|
||||
#: includes/class-post-type.php:413
|
||||
msgid "All %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:245
|
||||
#: includes/class-post-type.php:409
|
||||
msgid "Search %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:247
|
||||
#: includes/class-post-type.php:417
|
||||
msgid "Parent %s:"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:249
|
||||
#: includes/class-post-type.php:435
|
||||
msgid "No %s found."
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:251
|
||||
msgid "No %s found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:253
|
||||
msgctxt "Overrides the “Featured Image” phrase for this post type. Added in 4.3"
|
||||
msgid "%s Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:254
|
||||
msgctxt "Overrides the “Set featured image” phrase for this post type. Added in 4.3"
|
||||
msgid "Set cover image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-post-type.php:255
|
||||
msgctxt "Overrides the “Remove featured image” phrase for this post type. Added in 4.3"
|
||||
msgid "Remove cover image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-post-type.php:256
|
||||
msgctxt "Overrides the “Use as featured image” phrase for this post type. Added in 4.3"
|
||||
msgid "Use as cover image"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:258
|
||||
msgctxt "The post type archive label used in nav menus. Default “Post Archives”. Added in 4.4"
|
||||
msgid "%s archives"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:260
|
||||
msgctxt "Overrides the “Insert into post”/”Insert into page” phrase (used when inserting media into a post). Added in 4.4"
|
||||
msgid "Insert into %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:262
|
||||
msgctxt "Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used when viewing media attached to a post). Added in 4.4"
|
||||
msgid "Uploaded to this %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:264
|
||||
msgctxt "Screen reader text for the filter links heading on the post type listing screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4"
|
||||
msgid "Filter %s list"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:266
|
||||
msgctxt "Screen reader text for the pagination heading on the post type listing screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4"
|
||||
msgid "%s list navigation"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:268
|
||||
msgctxt "Screen reader text for the items list heading on the post type listing screen. Default “Posts list”/”Pages list”. Added in 4.4"
|
||||
msgid "%s list"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Argument key.
|
||||
#: includes/class-post-type.php:328
|
||||
msgid "Invalid argument \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:411
|
||||
msgid "Popular %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:415
|
||||
msgid "Parent %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:423
|
||||
msgid "Update %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: singular name.
|
||||
#: includes/class-post-type.php:427
|
||||
msgid "New %s Name"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:429
|
||||
msgid "Separate %s with commas"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:431
|
||||
msgid "Add or remove %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:433
|
||||
msgid "Choose from the most used %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:437
|
||||
msgid "No %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:439
|
||||
msgid "%s list navigation"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:441
|
||||
msgid "%s list"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Tab heading when selecting from the most used terms.
|
||||
#: includes/class-post-type.php:443
|
||||
msgctxt "Terms"
|
||||
msgid "Most Used"
|
||||
msgstr ""
|
||||
|
||||
#. translators: name.
|
||||
#: includes/class-post-type.php:445
|
||||
msgid "← Back to %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:80
|
||||
msgid "action_args should not be overwritten when calling wp_offers_get_template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-kit/class-options-kit.php:399
|
||||
#: includes/options-kit/class-options-kit.php:432
|
||||
msgid "Not authorized"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:28
|
||||
msgid "Display Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:35
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:42
|
||||
msgid "Extra Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:51
|
||||
msgid "Coupon Tooltip Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:52
|
||||
msgid "Text to show on the tooltip when hovers on the coupon button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:62
|
||||
msgid "Deal Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:63
|
||||
msgid "This text will show on the deal button. Also, the Deal button text can be overridden from the single coupon editor."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:73
|
||||
msgid "Deal Button Tooltip Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:74
|
||||
msgid "Text to show on the tooltip when hovers on the deal button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:84
|
||||
msgid "Print Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:85
|
||||
msgid "This text will show on printable coupon button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:95
|
||||
msgid "Print Button Tooltip Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:96
|
||||
msgid "Text to show on the tooltip when hovers on the printable coupon button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:106
|
||||
msgid "Hide Expiry date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:107
|
||||
msgid "Hide expiry date from the coupon in frontend."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:117
|
||||
msgid "No Expiry Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:118
|
||||
msgid "This text will show if there is no expiry date set for coupons or deals."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:128
|
||||
msgid "Before Expiry Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:129
|
||||
msgid "This text will append before the date if coupon or deal is not expired."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:139
|
||||
msgid "After Expiry Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:140
|
||||
msgid "This text will append before the date if coupon or deal is already expired."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:151
|
||||
msgid "Expiry date format"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:152
|
||||
msgid "Select a date format for the expiry date. It also has an example to understand better."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Date.
|
||||
#: includes/options.php:157
|
||||
msgid "mm d, yyyy (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Date.
|
||||
#: includes/options.php:159
|
||||
msgid "mm/dd/yyyy (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Date.
|
||||
#: includes/options.php:161
|
||||
msgid "dd/mm/yyyy (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Date.
|
||||
#: includes/options.php:163
|
||||
msgid "yyyy/mm/dd (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:172
|
||||
msgid "Coupon Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:173
|
||||
msgid "Coupon type offer label to show."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:182
|
||||
msgid "Deal Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:183
|
||||
msgid "Deal type offer label to show."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:192
|
||||
msgid "Printable Coupon Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:193
|
||||
msgid "Printable Coupon type offer label to show."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:203
|
||||
msgid "Title Tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:204
|
||||
msgid "Select a tag for coupon title."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:208
|
||||
msgid "H1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:209
|
||||
msgid "H2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:210
|
||||
msgid "H3"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:211
|
||||
msgid "H4"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:212
|
||||
msgid "H5"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:213
|
||||
msgid "Div"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:214
|
||||
msgid "Span"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:224
|
||||
msgid "Coupon Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:225
|
||||
msgid "Coupon text color for default template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:235
|
||||
msgid "Coupon Text Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:236
|
||||
msgid "Coupon text border color for default template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:246
|
||||
msgid "Coupon Text Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:247
|
||||
msgid "Coupon text background color for default template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:257
|
||||
msgid "Coupon Label Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:258
|
||||
msgid "Coupon label color for default template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:268
|
||||
msgid "Coupon Label Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:269
|
||||
msgid "Coupon label background color for default template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:279
|
||||
msgid "Coupon Button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:288
|
||||
#: includes/options.php:362
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:289
|
||||
msgid "Change the button text color for the coupon type offer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:299
|
||||
#: includes/options.php:373
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:300
|
||||
msgid "Change the button background color for the coupon type offer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:310
|
||||
#: includes/options.php:384
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:311
|
||||
msgid "Change the button border color for the coupon type offer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:321
|
||||
#: includes/options.php:394
|
||||
msgid "Text Color (:hover)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:322
|
||||
#: includes/options.php:344
|
||||
msgid "Change the button border color for the coupon type offer when the user hovers on the button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:332
|
||||
#: includes/options.php:405
|
||||
msgid "Background Color (:hover)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:333
|
||||
msgid "Change the button background color for the coupon type offer when the user hovers on the button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:343
|
||||
#: includes/options.php:416
|
||||
msgid "Border Color (:hover)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:354
|
||||
msgid "Deal/Print Button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:363
|
||||
msgid "Change the button text color for the deal/print type offer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:374
|
||||
msgid "Change the button background color for the deal/print type offer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:385
|
||||
msgid "Change the button border color for the deal/print type offer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:395
|
||||
#: includes/options.php:417
|
||||
msgid "Change the button border color for the deal/print type offer when the user hovers on the button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:406
|
||||
msgid "Change the button background color for the deal/print type offer when the user hovers on the button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:428
|
||||
msgid "Open Link Target"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:429
|
||||
msgid "Select coupon/deal link will be open in same tab or new tab. Default: New tab (_blank)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:433
|
||||
msgid "Same tab (_self)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:434
|
||||
msgid "New tab (_blank)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:443
|
||||
msgid "Disable Link in Title Tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:444
|
||||
msgid "Disable coupon/deal link in title tag. Default: Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:454
|
||||
msgid "Copy on click coupon code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:455
|
||||
msgid "Coupon code will copy at click on the coupon. Default: Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:465
|
||||
msgid "Print on click Printable coupon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:466
|
||||
msgid "On click Printable Coupon button, the coupon will print. Default: Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:476
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options.php:477
|
||||
msgid "Add your custom CSS styles."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:11744
|
||||
msgid "Coupon title"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:11964
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:11971
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:11973
|
||||
msgid "To edit the featured image, you need permission to upload media."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12024
|
||||
msgid "Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12057
|
||||
msgid "Coupon Code"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12105
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12136
|
||||
msgid "Upload Image"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12222
|
||||
msgid "Discount Amount/Text"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12325
|
||||
msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12337
|
||||
msgid "No Expiration"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12397
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12676
|
||||
msgid "Someone else has taken over this post."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12676
|
||||
msgid "This post is already being edited."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12684
|
||||
msgid "Avatar"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: user's display name
|
||||
#: assets/js/wp-offers-editor.js:12688
|
||||
msgid "%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: user's display name
|
||||
#: assets/js/wp-offers-editor.js:12688
|
||||
msgid "Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12693
|
||||
#: assets/js/wp-offers-editor.js:12700
|
||||
msgid "Exit the Editor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: user's display name
|
||||
#: assets/js/wp-offers-editor.js:12695
|
||||
msgid "%s is currently working on this post, which means you cannot make changes, unless you take over."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: user's display name
|
||||
#: assets/js/wp-offers-editor.js:12695
|
||||
msgid "Another user is currently working on this post, which means you cannot make changes, unless you take over."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12703
|
||||
msgid "Take Over"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12904
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12928
|
||||
msgid "Create a category"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12929
|
||||
msgid "Create a new Category"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12942
|
||||
#: assets/js/wp-offers-editor.js:13237
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12959
|
||||
#: assets/js/wp-offers-editor.js:13254
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12976
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:12992
|
||||
#: assets/js/wp-offers-editor.js:13271
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13018
|
||||
#: assets/js/wp-offers-editor.js:13316
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13045
|
||||
#: assets/js/wp-offers-editor.js:13343
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13199
|
||||
msgid "Store"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13223
|
||||
msgid "Create a store"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13224
|
||||
msgid "Create a new Store"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13610
|
||||
#: assets/js/wp-offers-editor.js:13614
|
||||
#: includes/options-kit/assets/js/options-kit.js:4419
|
||||
#: includes/options-kit/assets/js/options-kit.js:4423
|
||||
msgid "Changed will not save. Are you sure to leave?"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13639
|
||||
msgid "Submit for Review"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13641
|
||||
msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13643
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13646
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13652
|
||||
msgid "Coupon scheduled.."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13654
|
||||
msgid "Coupon published."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13656
|
||||
msgid "Coupon updated."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13663
|
||||
msgid "Coupon reverted to draft."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13665
|
||||
msgid "Coupon saved."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13711
|
||||
msgid "Publish:"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13715
|
||||
msgid "Immediately"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13741
|
||||
#: assets/js/wp-offers-editor.js:13803
|
||||
msgid "Nothing to save or update."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13784
|
||||
#: assets/js/wp-offers-editor.js:13854
|
||||
msgid "Something is wrong! Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13790
|
||||
msgid "Switch to Draft"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-editor.js:13790
|
||||
msgid "Save Draft"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-store.js:6
|
||||
msgid "Select or Upload Media Of Your Chosen Persuasion"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/wp-offers-store.js:11
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-kit/assets/js/options-kit.js:4614
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-kit/assets/js/options-kit.js:4635
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options-kit/assets/js/options-kit.js:4635
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
1
spec/fixtures/finders/passwords.txt
vendored
Normal file
1
spec/fixtures/finders/passwords.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
pwd
|
||||
@@ -74,7 +74,7 @@ WPScan::DB::DynamicFinders::Plugin.versions_finders_configs.each do |slug, confi
|
||||
end
|
||||
|
||||
it 'returns the expected version/s' do
|
||||
found = [*finder.passive]
|
||||
found = Array(finder.passive)
|
||||
|
||||
expect(found).to_not be_empty
|
||||
|
||||
@@ -104,7 +104,7 @@ WPScan::DB::DynamicFinders::Plugin.versions_finders_configs.each do |slug, confi
|
||||
end
|
||||
|
||||
it 'returns the expected version/s' do
|
||||
found = [*finder.passive]
|
||||
found = Array(finder.passive)
|
||||
|
||||
expect(found).to_not be_empty
|
||||
|
||||
@@ -149,7 +149,7 @@ WPScan::DB::DynamicFinders::Plugin.versions_finders_configs.each do |slug, confi
|
||||
end
|
||||
|
||||
it 'returns the expected version' do
|
||||
found = [*finder.aggressive]
|
||||
found = Array(finder.aggressive)
|
||||
|
||||
expect(found).to_not be_empty
|
||||
|
||||
|
||||
@@ -79,7 +79,7 @@ WPScan::DB::DynamicFinders::Theme.versions_finders_configs.each do |slug, config
|
||||
end
|
||||
|
||||
it 'returns the expected version/s' do
|
||||
found = [*finder.passive]
|
||||
found = Array(finder.passive)
|
||||
|
||||
expect(found).to_not be_empty
|
||||
|
||||
@@ -109,7 +109,7 @@ WPScan::DB::DynamicFinders::Theme.versions_finders_configs.each do |slug, config
|
||||
end
|
||||
|
||||
it 'returns the expected version/s' do
|
||||
found = [*finder.passive]
|
||||
found = Array(finder.passive)
|
||||
|
||||
expect(found).to_not be_empty
|
||||
|
||||
@@ -154,7 +154,7 @@ WPScan::DB::DynamicFinders::Theme.versions_finders_configs.each do |slug, config
|
||||
end
|
||||
|
||||
it 'returns the expected version' do
|
||||
found = [*finder.aggressive]
|
||||
found = Array(finder.aggressive)
|
||||
|
||||
expect(found).to_not be_empty
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ describe WPScan::Finders::DynamicFinder::Version::Comment do
|
||||
|
||||
let(:finder_module) { WPScan::Finders::Version::Rspec }
|
||||
let(:finder_class) { WPScan::Finders::Version::Rspec::Comment }
|
||||
let(:finder_config) { { 'pattern' => /some version: (?<v>[\d\.]+)/i } }
|
||||
let(:finder_config) { { 'pattern' => /some version: (?<v>[\d.]+)/i } }
|
||||
let(:default) { { 'xpath' => '//comment()', 'confidence' => 60 } }
|
||||
|
||||
before { described_class.create_child_class(finder_module, :Comment, finder_config) }
|
||||
|
||||
@@ -14,7 +14,7 @@ describe WPScan::Finders::DynamicFinder::Version::ConfigParser do
|
||||
let(:finder_module) { WPScan::Finders::Version::Rspec }
|
||||
let(:finder_class) { WPScan::Finders::Version::Rspec::ConfigParser }
|
||||
let(:finder_config) { { 'key' => 'some-key', 'path' => 'file.json' } }
|
||||
let(:default) { { 'pattern' => /(?<v>\d+\.[\.\d]+)/, 'confidence' => 70 } }
|
||||
let(:default) { { 'pattern' => /(?<v>\d+\.[.\d]+)/, 'confidence' => 70 } }
|
||||
|
||||
before { described_class.create_child_class(finder_module, :ConfigParser, finder_config) }
|
||||
after { finder_module.send(:remove_const, :ConfigParser) }
|
||||
|
||||
@@ -60,7 +60,7 @@ describe WPScan::Finders::DynamicFinder::Version::HeaderPattern do
|
||||
end
|
||||
|
||||
context 'when PATTERN' do
|
||||
let(:finder_config) { super().merge('pattern' => /Version: (?<v>[\d\.]+)/i) }
|
||||
let(:finder_config) { super().merge('pattern' => /Version: (?<v>[\d.]+)/i) }
|
||||
|
||||
it 'contains the expected constants' do
|
||||
expect(finder_class::HEADER).to eql finder_config['header']
|
||||
|
||||
@@ -13,7 +13,7 @@ describe WPScan::Finders::DynamicFinder::Version::JavascriptVar do
|
||||
|
||||
let(:finder_module) { WPScan::Finders::Version::Rspec }
|
||||
let(:finder_class) { WPScan::Finders::Version::Rspec::JavascriptVar }
|
||||
let(:finder_config) { { 'pattern' => /some version: (?<v>[\d\.]+)/i } }
|
||||
let(:finder_config) { { 'pattern' => /some version: (?<v>[\d.]+)/i } }
|
||||
let(:default) { { 'xpath' => '//script[not(@src)]', 'confidence' => 60 } }
|
||||
|
||||
before { described_class.create_child_class(finder_module, :JavascriptVar, finder_config) }
|
||||
|
||||
@@ -14,7 +14,7 @@ describe WPScan::Finders::DynamicFinder::Version::QueryParameter do
|
||||
let(:finder_module) { WPScan::Finders::Version::Rspec }
|
||||
let(:finder_class) { WPScan::Finders::Version::Rspec::QueryParameter }
|
||||
let(:finder_config) { { 'files' => %w[f1 f2] } }
|
||||
let(:default) { { 'pattern' => /(?:v|ver|version)\=(?<v>\d+\.[\.\d]+)/i, 'confidence_per_occurence' => 10 } }
|
||||
let(:default) { { 'pattern' => /(?:v|ver|version)=(?<v>\d+\.[.\d]+)/i, 'confidence_per_occurence' => 10 } }
|
||||
|
||||
before { described_class.create_child_class(finder_module, :QueryParameter, finder_config) }
|
||||
after { finder_module.send(:remove_const, :QueryParameter) }
|
||||
|
||||
@@ -14,7 +14,7 @@ describe WPScan::Finders::DynamicFinder::Version::Xpath do
|
||||
let(:finder_module) { WPScan::Finders::Version::Rspec }
|
||||
let(:finder_class) { WPScan::Finders::Version::Rspec::Xpath }
|
||||
let(:finder_config) { { 'xpath' => "//div/h3[@class='version-number']" } }
|
||||
let(:default) { { 'pattern' => /\A(?<v>\d+\.[\.\d]+)/, 'confidence' => 60 } }
|
||||
let(:default) { { 'pattern' => /\A(?<v>\d+\.[.\d]+)/, 'confidence' => 60 } }
|
||||
|
||||
before { described_class.create_child_class(finder_module, :Xpath, finder_config) }
|
||||
after { finder_module.send(:remove_const, :Xpath) }
|
||||
@@ -60,7 +60,7 @@ describe WPScan::Finders::DynamicFinder::Version::Xpath do
|
||||
end
|
||||
|
||||
context 'when PATTERN' do
|
||||
let(:finder_config) { super().merge('pattern' => /Version: (?<v>[\d\.]+)/i) }
|
||||
let(:finder_config) { super().merge('pattern' => /Version: (?<v>[\d.]+)/i) }
|
||||
|
||||
it 'contains the expected constants' do
|
||||
expect(finder_class::XPATH).to eql finder_config['xpath']
|
||||
|
||||
@@ -46,7 +46,7 @@ WPScan::DB::DynamicFinders::Wordpress.versions_finders_configs.each do |finder_c
|
||||
end
|
||||
|
||||
it 'returns the expected version from the homepage' do
|
||||
found = [*finder.passive]
|
||||
found = Array(finder.passive)
|
||||
|
||||
expect(found).to_not be_empty
|
||||
|
||||
@@ -81,7 +81,7 @@ WPScan::DB::DynamicFinders::Wordpress.versions_finders_configs.each do |finder_c
|
||||
end
|
||||
|
||||
it 'returns the expected version' do
|
||||
found = [*finder.aggressive]
|
||||
found = Array(finder.aggressive)
|
||||
|
||||
expect(found).to_not be_empty
|
||||
|
||||
|
||||
@@ -246,6 +246,12 @@ shared_examples WPScan::Target::Platform::WordPress do
|
||||
its(:login_url) { should eql target.url('wp-login.php') }
|
||||
end
|
||||
|
||||
context 'when a 404' do
|
||||
before { stub_request(:get, target.url('wp-login.php')).to_return(status: 404) }
|
||||
|
||||
its(:login_url) { should eql false }
|
||||
end
|
||||
|
||||
context 'when a redirection occured' do
|
||||
before do
|
||||
expect(WPScan::Browser).to receive(:get_and_follow_location)
|
||||
|
||||
@@ -21,15 +21,15 @@ Gem::Specification.new do |s|
|
||||
s.executables = ['wpscan']
|
||||
s.require_paths = ['lib']
|
||||
|
||||
s.add_dependency 'cms_scanner', '~> 0.10.1'
|
||||
s.add_dependency 'cms_scanner', '~> 0.12.0'
|
||||
|
||||
s.add_development_dependency 'bundler', '>= 1.6'
|
||||
s.add_development_dependency 'memory_profiler', '~> 0.9.13'
|
||||
s.add_development_dependency 'rake', '~> 13.0'
|
||||
s.add_development_dependency 'rspec', '~> 3.9.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.85.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.6.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.88.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.7.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.18.2'
|
||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
||||
|
||||
Reference in New Issue
Block a user