Compare commits
43 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ac16a951c5 | ||
|
|
1043bcb267 | ||
|
|
22979a1a77 | ||
|
|
3039d2e7eb | ||
|
|
557dee2d8c | ||
|
|
a506adcb64 | ||
|
|
3bfb120646 | ||
|
|
43e613aa52 | ||
|
|
0d930ed605 | ||
|
|
2014f1e4b3 | ||
|
|
4889d17e0a | ||
|
|
494d31215d | ||
|
|
582bdea431 | ||
|
|
ecf7df9c01 | ||
|
|
a9760e8817 | ||
|
|
b32e990dd4 | ||
|
|
4320d2436f | ||
|
|
cba6e74b13 | ||
|
|
981bcf5fa2 | ||
|
|
1d79bc37d3 | ||
|
|
2fae3336ba | ||
|
|
cfb98c5139 | ||
|
|
b0260327c4 | ||
|
|
f65532e347 | ||
|
|
ff574b046c | ||
|
|
97c995b64c | ||
|
|
8361ec97e4 | ||
|
|
7a0bbc0acb | ||
|
|
66f5eca841 | ||
|
|
b53e6d1888 | ||
|
|
4b68fa8b60 | ||
|
|
54770c5a50 | ||
|
|
39fb2167f7 | ||
|
|
c33fef9c98 | ||
|
|
08a1117edf | ||
|
|
e14cbed56e | ||
|
|
56e2ab16cc | ||
|
|
d76d4b70f5 | ||
|
|
e223936a81 | ||
|
|
60d067c421 | ||
|
|
4102cf4688 | ||
|
|
dc977e6630 | ||
|
|
05deabd775 |
27
.rubocop.yml
27
.rubocop.yml
@@ -1,23 +1,16 @@
|
||||
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/MissingSuper:
|
||||
Enabled: false
|
||||
Lint/UriEscapeUnescape:
|
||||
Enabled: false
|
||||
Lint/RaiseException:
|
||||
Enabled: true
|
||||
Lint/StructNewOverride:
|
||||
Enabled: true
|
||||
Metrics/AbcSize:
|
||||
Max: 25
|
||||
Metrics/BlockLength:
|
||||
@@ -28,27 +21,19 @@ Metrics/ClassLength:
|
||||
Exclude:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Metrics/CyclomaticComplexity:
|
||||
Max: 8
|
||||
Max: 10
|
||||
Metrics/MethodLength:
|
||||
Max: 20
|
||||
Exclude:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Metrics/PerceivedComplexity:
|
||||
Max: 11
|
||||
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
|
||||
@@ -81,8 +88,8 @@ module WPScan
|
||||
def xmlrpc_get_users_blogs_enabled?
|
||||
if xmlrpc&.enabled? &&
|
||||
xmlrpc.available_methods.include?('wp.getUsersBlogs') &&
|
||||
xmlrpc.method_call('wp.getUsersBlogs', [SecureRandom.hex[0, 6], SecureRandom.hex[0, 4]])
|
||||
.run.body !~ /XML\-RPC services are disabled/
|
||||
!xmlrpc.method_call('wp.getUsersBlogs', [SecureRandom.hex[0, 6], SecureRandom.hex[0, 4]])
|
||||
.run.body.match?(/>\s*405\s*</)
|
||||
|
||||
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 passive(opts = {})
|
||||
found = []
|
||||
|
||||
slugs = items_from_links('themes', false) + items_from_codes('themes', false)
|
||||
slugs = items_from_links('themes', uniq: false) + items_from_codes('themes', uniq: false)
|
||||
|
||||
slugs.each_with_object(Hash.new(0)) { |slug, counts| counts[slug] += 1 }.each do |slug, occurences|
|
||||
found << Model::Theme.new(slug, target, opts.merge(found_by: found_by, confidence: 2 * occurences))
|
||||
|
||||
@@ -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,8 @@ 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/author_sitemap'
|
||||
require_relative 'users/yoast_seo_author_sitemap'
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
@@ -22,6 +23,7 @@ module WPScan
|
||||
Users::WpJsonApi.new(target) <<
|
||||
Users::OembedApi.new(target) <<
|
||||
Users::RSSGenerator.new(target) <<
|
||||
Users::AuthorSitemap.new(target) <<
|
||||
Users::YoastSeoAuthorSitemap.new(target) <<
|
||||
Users::AuthorIdBruteForcing.new(target) <<
|
||||
Users::LoginErrorMessages.new(target)
|
||||
|
||||
36
app/finders/users/author_sitemap.rb
Normal file
36
app/finders/users/author_sitemap.rb
Normal file
@@ -0,0 +1,36 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
module Users
|
||||
# Since WP 5.5, /wp-sitemap-users-1.xml is generated and contains
|
||||
# the usernames of accounts who made a post
|
||||
class AuthorSitemap < CMSScanner::Finders::Finder
|
||||
# @param [ Hash ] opts
|
||||
#
|
||||
# @return [ Array<User> ]
|
||||
def aggressive(_opts = {})
|
||||
found = []
|
||||
|
||||
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
|
||||
username = user_tag.text.to_s[%r{/author/([^/]+)/}, 1]
|
||||
|
||||
next unless username && !username.strip.empty?
|
||||
|
||||
found << Model::User.new(username,
|
||||
found_by: found_by,
|
||||
confidence: 100,
|
||||
interesting_entries: [sitemap_url])
|
||||
end
|
||||
|
||||
found
|
||||
end
|
||||
|
||||
# @return [ String ] The URL of the sitemap
|
||||
def sitemap_url
|
||||
@sitemap_url ||= target.url('wp-sitemap-users-1.xml')
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -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 = []
|
||||
|
||||
|
||||
@@ -5,27 +5,7 @@ module WPScan
|
||||
module Users
|
||||
# The YOAST SEO plugin has an author-sitemap.xml which can leak usernames
|
||||
# See https://github.com/wpscanteam/wpscan/issues/1228
|
||||
class YoastSeoAuthorSitemap < CMSScanner::Finders::Finder
|
||||
# @param [ Hash ] opts
|
||||
#
|
||||
# @return [ Array<User> ]
|
||||
def aggressive(_opts = {})
|
||||
found = []
|
||||
|
||||
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
|
||||
username = user_tag.text.to_s[%r{/author/([^\/]+)/}, 1]
|
||||
|
||||
next unless username && !username.strip.empty?
|
||||
|
||||
found << Model::User.new(username,
|
||||
found_by: found_by,
|
||||
confidence: 100,
|
||||
interesting_entries: [sitemap_url])
|
||||
end
|
||||
|
||||
found
|
||||
end
|
||||
|
||||
class YoastSeoAuthorSitemap < AuthorSitemap
|
||||
# @return [ String ] The URL of the author-sitemap
|
||||
def sitemap_url
|
||||
@sitemap_url ||= target.url('author-sitemap.xml')
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
# @param [ Boolean ] uniq Wether or not to apply the #uniq on the results
|
||||
#
|
||||
# @return [ Array<String> ] The plugins/themes detected in the href, src attributes of the page
|
||||
def items_from_links(type, uniq = true)
|
||||
def items_from_links(type, uniq: true)
|
||||
found = []
|
||||
xpath = format(
|
||||
'(//@href|//@src|//@data-src)[contains(., "%s")]',
|
||||
@@ -31,7 +31,7 @@ module WPScan
|
||||
# @param [ Boolean ] uniq Wether or not to apply the #uniq on the results
|
||||
#
|
||||
# @return [Array<String> ] The plugins/themes detected in the javascript/style of the homepage
|
||||
def items_from_codes(type, uniq = true)
|
||||
def items_from_codes(type, uniq: true)
|
||||
found = []
|
||||
|
||||
page_res.html.xpath('//script[not(@src)]|//style[not(@src)]').each do |tag|
|
||||
@@ -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
|
||||
|
||||
@@ -7,10 +7,11 @@ module WPScan
|
||||
include References
|
||||
end
|
||||
|
||||
#
|
||||
# Some classes are empty for the #type to be correctly displayed (as taken from the self.class from the parent)
|
||||
#
|
||||
class BackupDB < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "A backup directory has been found: #{url}"
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['https://github.com/wpscanteam/wpscan/issues/422'] }
|
||||
@@ -18,6 +19,10 @@ module WPScan
|
||||
end
|
||||
|
||||
class DebugLog < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "Debug Log found: #{url}"
|
||||
end
|
||||
|
||||
# @ return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['https://codex.wordpress.org/Debugging_in_WordPress'] }
|
||||
@@ -40,6 +45,10 @@ module WPScan
|
||||
end
|
||||
|
||||
class FullPathDisclosure < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "Full Path Disclosure found: #{url}"
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['https://www.owasp.org/index.php/Full_Path_Disclosure'] }
|
||||
@@ -71,6 +80,9 @@ module WPScan
|
||||
end
|
||||
|
||||
class Readme < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "WordPress readme found: #{url}"
|
||||
end
|
||||
end
|
||||
|
||||
class Registration < InterestingFinding
|
||||
@@ -81,6 +93,10 @@ module WPScan
|
||||
end
|
||||
|
||||
class TmmDbMigrate < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "ThemeMakers migration file found: #{url}"
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { packetstorm: [131_957] }
|
||||
@@ -95,6 +111,9 @@ module WPScan
|
||||
end
|
||||
|
||||
class UploadSQLDump < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "SQL Dump found: #{url}"
|
||||
end
|
||||
end
|
||||
|
||||
class WPCron < InterestingFinding
|
||||
|
||||
@@ -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[/\b#{Regexp.escape(tag)}:[\t ]*([^\r\n*]+)/, 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
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ module WPScan
|
||||
|
||||
finder_configs(
|
||||
finder_class,
|
||||
Regexp.last_match[1] == 'aggressive'
|
||||
aggressive: Regexp.last_match[1] == 'aggressive'
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ module WPScan
|
||||
# @param [ Symbol ] finder_class
|
||||
# @param [ Boolean ] aggressive
|
||||
# @return [ Hash ]
|
||||
def self.finder_configs(finder_class, aggressive = false)
|
||||
def self.finder_configs(finder_class, aggressive: false)
|
||||
configs = {}
|
||||
|
||||
return configs unless allowed_classes.include?(finder_class)
|
||||
|
||||
@@ -24,7 +24,7 @@ module WPScan
|
||||
# @param [ Symbol ] finder_class
|
||||
# @param [ Boolean ] aggressive
|
||||
# @return [ Hash ]
|
||||
def self.finder_configs(finder_class, aggressive = false)
|
||||
def self.finder_configs(finder_class, aggressive: false)
|
||||
configs = {}
|
||||
|
||||
return configs unless allowed_classes.include?(finder_class)
|
||||
|
||||
@@ -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.6'
|
||||
end
|
||||
|
||||
@@ -1,5 +1,24 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
XMLRPC_FAILED_BODY = '
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<methodResponse>
|
||||
<fault>
|
||||
<value>
|
||||
<struct>
|
||||
<member>
|
||||
<name>faultCode</name>
|
||||
<value><int>405</int></value>
|
||||
</member>
|
||||
<member>
|
||||
<name>faultString</name>
|
||||
<value><string>%s</string></value>
|
||||
</member>
|
||||
</struct>
|
||||
</value>
|
||||
</fault>
|
||||
</methodResponse>'
|
||||
|
||||
describe WPScan::Controller::PasswordAttack do
|
||||
subject(:controller) { described_class.new }
|
||||
let(:target_url) { 'http://ex.lo/' }
|
||||
@@ -21,7 +40,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 +59,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
|
||||
@@ -85,20 +100,34 @@ describe WPScan::Controller::PasswordAttack do
|
||||
end
|
||||
|
||||
context 'when wp.getUsersBlogs method listed' do
|
||||
before { expect(xmlrpc).to receive(:available_methods).and_return(%w[wp.getUsersBlogs m2]) }
|
||||
before do
|
||||
expect(xmlrpc).to receive(:available_methods).and_return(%w[wp.getUsersBlogs m2])
|
||||
|
||||
stub_request(:post, xmlrpc.url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when wp.getUsersBlogs method disabled' do
|
||||
it 'returns false' do
|
||||
stub_request(:post, xmlrpc.url).to_return(body: 'XML-RPC services are disabled on this site.')
|
||||
context 'when blog is in EN' do
|
||||
let(:body) { format(XMLRPC_FAILED_BODY, 'XML-RPC services are disabled on this site.') }
|
||||
|
||||
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
|
||||
it 'returns false' do
|
||||
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
|
||||
end
|
||||
end
|
||||
|
||||
context 'when blog is in FR' do
|
||||
let(:body) { format(XMLRPC_FAILED_BODY, 'Les services XML-RPC sont désactivés sur ce site.') }
|
||||
|
||||
it 'returns false' do
|
||||
expect(controller.xmlrpc_get_users_blogs_enabled?).to be false
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when wp.getUsersBlogs method enabled' do
|
||||
it 'returns true' do
|
||||
stub_request(:post, xmlrpc.url).to_return(body: 'Incorrect username or password.')
|
||||
let(:body) { 'Incorrect username or password.' }
|
||||
|
||||
it 'returns true' do
|
||||
expect(controller.xmlrpc_get_users_blogs_enabled?).to be true
|
||||
end
|
||||
end
|
||||
@@ -107,15 +136,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 +220,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
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ describe WPScan::Finders::InterestingFindings::EmergencyPwdResetScript do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:file_url) { url + 'emergency.php' }
|
||||
let(:file_url) { "#{url}emergency.php" }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'emergency_pwd_reset_script') }
|
||||
|
||||
before do
|
||||
|
||||
@@ -4,7 +4,7 @@ describe WPScan::Finders::InterestingFindings::UploadSQLDump do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:dump_url) { url + 'wp-content/uploads/dump.sql' }
|
||||
let(:dump_url) { "#{url}wp-content/uploads/dump.sql" }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'upload_sql_dump') }
|
||||
let(:wp_content) { 'wp-content' }
|
||||
|
||||
|
||||
@@ -13,8 +13,8 @@ describe WPScan::Finders::Medias::AttachmentBruteForcing do
|
||||
describe '#target_urls' do
|
||||
it 'returns the expected urls' do
|
||||
expect(finder.target_urls(range: (1..2))).to eql(
|
||||
url + '?attachment_id=1' => 1,
|
||||
url + '?attachment_id=2' => 2
|
||||
"#{url}?attachment_id=1" => 1,
|
||||
"#{url}?attachment_id=2" => 2
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -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) } }
|
||||
|
||||
@@ -13,8 +13,8 @@ describe WPScan::Finders::Users::AuthorIdBruteForcing do
|
||||
describe '#target_urls' do
|
||||
it 'returns the correct URLs' do
|
||||
expect(finder.target_urls(range: (1..2))).to eql(
|
||||
url + '?author=1' => 1,
|
||||
url + '?author=2' => 2
|
||||
"#{url}?author=1" => 1,
|
||||
"#{url}?author=2" => 2
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
48
spec/app/finders/users/author_sitemap_spec.rb
Normal file
48
spec/app/finders/users/author_sitemap_spec.rb
Normal file
@@ -0,0 +1,48 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe WPScan::Finders::Users::AuthorSitemap do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
let(:url) { 'http://wp.lab/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('users', 'author_sitemap') }
|
||||
|
||||
describe '#aggressive' do
|
||||
before do
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
|
||||
stub_request(:get, finder.sitemap_url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when not an XML response' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when an XML response' do
|
||||
context 'when no usernames disclosed' do
|
||||
let(:body) { File.read(fixtures.join('no_usernames.xml')) }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when usernames disclosed' do
|
||||
let(:body) { File.read(fixtures.join('usernames.xml')) }
|
||||
|
||||
it 'returns the expected array of users' do
|
||||
users = finder.aggressive
|
||||
|
||||
expect(users.size).to eql 2
|
||||
|
||||
expect(users.first.username).to eql 'admin'
|
||||
expect(users.first.confidence).to eql 100
|
||||
expect(users.first.interesting_entries).to eql ['http://wp.lab/wp-sitemap-users-1.xml']
|
||||
|
||||
expect(users.last.username).to eql 'author'
|
||||
expect(users.last.confidence).to eql 100
|
||||
expect(users.last.interesting_entries).to eql ['http://wp.lab/wp-sitemap-users-1.xml']
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -8,7 +8,7 @@ describe WPScan::Finders::Users::Base do
|
||||
describe '#finders' do
|
||||
it 'contains the expected finders' do
|
||||
expect(user.finders.map { |f| f.class.to_s.demodulize })
|
||||
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator YoastSeoAuthorSitemap
|
||||
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator AuthorSitemap YoastSeoAuthorSitemap
|
||||
AuthorIdBruteForcing LoginErrorMessages]
|
||||
end
|
||||
end
|
||||
|
||||
@@ -5,7 +5,7 @@ describe WPScan::Finders::WpVersion::Readme do
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('wp_version', 'readme') }
|
||||
let(:readme_url) { url + 'readme.html' }
|
||||
let(:readme_url) { "#{url}readme.html" }
|
||||
|
||||
describe '#aggressive' do
|
||||
before { stub_request(:get, readme_url).to_return(body: File.read(fixtures.join(file))) }
|
||||
|
||||
@@ -41,6 +41,12 @@ describe WPScan::Model::Theme do
|
||||
its(:style_uri) { should eql 'http://www.elegantthemes.com/gallery/divi/' }
|
||||
its(:license_uri) { should eql 'http://www.gnu.org/licenses/gpl-2.0.html' }
|
||||
end
|
||||
|
||||
context 'when no tags' do
|
||||
let(:fixture) { fixtures.join('no_tags.css') }
|
||||
|
||||
its(:author) { should eql nil }
|
||||
end
|
||||
end
|
||||
|
||||
describe '#version' do
|
||||
|
||||
3706
spec/fixtures/db/dynamic_finders.yml
vendored
3706
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1318
spec/fixtures/dynamic_finders/expected.yml
vendored
1318
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,91 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"Blank WordPress Pot "
|
||||
"v1.0.0\n"
|
||||
"POT-Creation-Date: "
|
||||
"2020-07-27 14:57+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Fredrik Stigsson"
|
||||
"<info@annytab.se>\n"
|
||||
"Language-Team: Your Team "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Translator Name "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"1.6.4\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Language: en_US\n"
|
||||
"X-Generator: Poedit 2.4\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: annytab-photoswipe.php:85
|
||||
msgid "Share on Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:86
|
||||
msgid "Tweet"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:87
|
||||
msgid "Pin it"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:88
|
||||
msgid "Download image"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:114
|
||||
msgid "Close (Esc)"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:116
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:118
|
||||
msgid "Toggle fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:120
|
||||
msgid "Zoom in/out"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:137
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:140
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
88
spec/fixtures/dynamic_finders/plugin_version/app-log/translation_file/lang/aplg.pot
vendored
Normal file
88
spec/fixtures/dynamic_finders/plugin_version/app-log/translation_file/lang/aplg.pot
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
# Copyright (C) 2020 PRESSMAN
|
||||
# This file is distributed under the same license as the App Log plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: App Log 1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/app-log\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-29T02:35:19+00:00\n"
|
||||
"PO-Revision-Date: 2020-08-07T06:01:23+00:00\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: aplg\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/aplg-dashboard.php:48
|
||||
#: admin/aplg-settings.php:38
|
||||
msgid "App Log"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A simple logger for debugging."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "PRESSMAN"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.pressman.ne.jp/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:64
|
||||
msgid "File will be deleted. Are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:83
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:105
|
||||
msgid "No logs found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:117
|
||||
msgid "Log File List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:117
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:152
|
||||
msgid "Set path to where the application logs are stored"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:159
|
||||
msgid "※No need to set if default path will be used. (Default Path: %s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:191
|
||||
msgid "Invalid access"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:231
|
||||
#: classes/class-aplg-logger.php:122
|
||||
msgid "%s successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-settings.php:37
|
||||
#: admin/aplg-settings.php:53
|
||||
msgid "App Log Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-settings.php:60
|
||||
msgid "Log Directory"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-settings.php:68
|
||||
msgid "Enable/Disable Mail Log"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-aplg-logger.php:114
|
||||
#: classes/class-aplg-logger.php:127
|
||||
msgid "Failed to delete log."
|
||||
msgstr ""
|
||||
@@ -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,24 @@
|
||||
# Changelog
|
||||
|
||||
## 1.3
|
||||
- New: Removed OB features
|
||||
|
||||
## 1.2
|
||||
- New: Added option to allow only embed or social share on front-end
|
||||
- New: Made the popup compatible with badgeOS Congratulation add-on popup
|
||||
- Fix: UI Tweaks
|
||||
|
||||
## 1.1
|
||||
- New: Option to display social sharing popup on badge award
|
||||
- New: Option to display social sharing option with BadgeOS earned achievement shortcode
|
||||
- New: Option to share badges to social media from front-end
|
||||
- Fix: Fixed email image issue
|
||||
- Fix: string translation issues in email
|
||||
|
||||
## 1.0
|
||||
- Initial
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -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 ""
|
||||
@@ -0,0 +1,40 @@
|
||||
# Copyright (C) 2020 Rimes Gold
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CF7 File Download 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cf7-file-download\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-24 11:14+0300\n"
|
||||
"PO-Revision-Date: 2020-07-25 10:18+0300\n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
"X-Domain: cf-file-download\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en\n"
|
||||
|
||||
#: classes/class-cf7-file-download.php:34
|
||||
#: classes/class-cf7-file-download.php:35
|
||||
msgid "CF7 File Download"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-cf7-file-download.php:53
|
||||
msgid "File Download Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-cf7-file-download.php:59
|
||||
msgid "Download Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-cf7-file-download.php:78
|
||||
msgid "Contact Form ID"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-cf7-file-download.php:87
|
||||
msgid "Attachment URL"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-cf7-file-download.php:95
|
||||
msgid "Downloaded File Name"
|
||||
msgstr ""
|
||||
685
spec/fixtures/dynamic_finders/plugin_version/chatster/translation_file/languages/chatster.pot
vendored
Normal file
685
spec/fixtures/dynamic_finders/plugin_version/chatster/translation_file/languages/chatster.pot
vendored
Normal file
@@ -0,0 +1,685 @@
|
||||
# Copyright (C) 2020 Frankspress
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: chatster 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: yyyy-mm-dd hh:mm+0000\n"
|
||||
"PO-Revision-Date: 2020-07-18 14:46-0500\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"X-Generator: Eazy Po 0.9.5.3\n"
|
||||
|
||||
#: includes/api/class.request-all.php:207
|
||||
msgid "Testing Chatster! Your email setup works! "
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class.request-all.php:209
|
||||
msgid "Mock request message.. Customer original message will be shown here!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class.request-all.php:210
|
||||
msgid "This is a test email sent by"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class.request-all.php:211
|
||||
msgid "The plugin is working. For more testing, please read the documentation."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class.request-all.php:212
|
||||
msgid "Test your website link here: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class.request-all.php:213
|
||||
msgid "Thank you."
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/action.global.php:17 views/admin/function.header.php:17
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:27
|
||||
msgid "Started"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:28
|
||||
msgid "more than one hour ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:29
|
||||
msgid "hour ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:30
|
||||
msgid "minutes ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:31
|
||||
msgid "minute ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:32
|
||||
msgid "just now"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:33
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:34
|
||||
#: views/admin/function.request.php:90
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:35
|
||||
msgid "Reset settings?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:36
|
||||
msgid "Reset All settings?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:37
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:38
|
||||
msgid "Replied by admin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:102
|
||||
msgid "Chatster"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:103
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-chat-public.php:118
|
||||
msgid "open"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:30
|
||||
msgid "Once every 3 minutes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:59
|
||||
msgid "New Request received on"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:60
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:61
|
||||
msgid "You have received "
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:62
|
||||
#, php-format
|
||||
msgid "%s new request"
|
||||
msgid_plural "%s new requests"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:63
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:64
|
||||
msgid "To login to your website go here:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:65
|
||||
msgid "Thank you for using Chatster!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.emailer.php:27
|
||||
msgid "Your original message: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.emailer.php:55
|
||||
msgid "RE:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:15
|
||||
msgid "Thank you and Welcome to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:15
|
||||
msgid "Chatster!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:17
|
||||
msgid "Testing:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:18
|
||||
msgid ""
|
||||
"- Please use only <b>incognito windows</b> or <b>second browser</b> to test "
|
||||
"chat functionalities.<br>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:19
|
||||
msgid "- API functionality <b>must be enabled!</b><br>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:20
|
||||
msgid ""
|
||||
"- Email delivery only works if you have a <b>transactional email service</b>."
|
||||
"<br>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:21
|
||||
msgid ""
|
||||
"- Go to <i>Settings->Request/Response->Test Functionality</i> and verify "
|
||||
"email delivery."
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:22
|
||||
msgid "Suggestions:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:23
|
||||
msgid ""
|
||||
"- For any questions or suggestions please visit the <a target=\"_blank\" "
|
||||
"href=\""
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:32
|
||||
msgid "Bot Q & A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:43
|
||||
msgid "Add a question or questions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:44
|
||||
msgid "What are your opening hours? What time do you open?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:46
|
||||
msgid ""
|
||||
"The Bot will look for similarities between saved questions and user question."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:55
|
||||
msgid "Bot Response to the question or questions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:56
|
||||
msgid "Our stores are open from 7 a.m. to 8:30 p.m."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:58
|
||||
msgid "This answer will be given when a similar question is asked."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:27
|
||||
msgid "Hi!! How can I help you today?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:28
|
||||
msgid "If you have any other questions please feel free to ask."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:29
|
||||
msgid ""
|
||||
"Sorry, I couldn't find what you're looking for..\n"
|
||||
" Please try again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:79
|
||||
msgid "Give your bot your favorite name."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:89
|
||||
msgid "Give your bot a friendly image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:99
|
||||
msgid ""
|
||||
"Bot introductory sentece used when the chat is initially displayed.\n"
|
||||
" <br><span class=\"ch-field-descr-extra\">(Each "
|
||||
"line break is shown as separate message)</span>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:110
|
||||
msgid ""
|
||||
"The bot sentece that follows a successfull reply.\n"
|
||||
" <br><span class=\"ch-field-descr-extra\">"
|
||||
"(Each line break is shown as separate message)</span>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:121
|
||||
msgid ""
|
||||
"When no answer is found the bot will use this sentence.\n"
|
||||
" <br><span class=\"ch-field-descr-extra\">"
|
||||
"(Each line break is shown as separate message)</span>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:132
|
||||
msgid ""
|
||||
"BOT will search full text in both questions and answers. <br>When not "
|
||||
"enabled it will only search among the saved questions."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:155
|
||||
msgid "BOT settings have been reset!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:171
|
||||
#: includes/options/class.add-options-bot.php:184
|
||||
#: includes/options/class.add-options-chat.php:279
|
||||
#, php-format
|
||||
msgid "A field text exceeds %d character"
|
||||
msgid_plural "A field text exceeds %d characters"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:24
|
||||
msgid "Chat or get in touch!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:25
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:47
|
||||
#: includes/options/class.add-options-chat.php:48
|
||||
#: includes/options/class.add-options-chat.php:49
|
||||
#: includes/options/class.add-options-chat.php:50
|
||||
#: includes/options/class.add-options-chat.php:51
|
||||
msgid "Customers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:57
|
||||
#: includes/options/class.add-options-chat.php:58
|
||||
#: includes/options/class.add-options-chat.php:59
|
||||
#: includes/options/class.add-options-chat.php:60
|
||||
#: includes/options/class.add-options-chat.php:66
|
||||
#: includes/options/class.add-options-chat.php:67
|
||||
#: includes/options/class.add-options-chat.php:68
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:81
|
||||
msgid "Small Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:82
|
||||
msgid "Medium Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:83
|
||||
msgid "Large Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:88
|
||||
msgid "Left Side of the screen"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:89
|
||||
msgid "Right Side of the screen"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:218
|
||||
msgid ""
|
||||
"Will automatically switch the current admin to offline mode when "
|
||||
"\"conversation\" screen is not open.\n"
|
||||
" <br/>You can choose how long before that happens."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:229
|
||||
msgid ""
|
||||
"Automatically disconnects conversations that have been inactive <br>for a "
|
||||
"selected amount of time."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:263
|
||||
msgid "Chatster Chat settings have been reset!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:290
|
||||
msgid "Wrong Hex color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:302
|
||||
msgid "Wrong Volume Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:39
|
||||
msgid "Chatster Request Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:45
|
||||
msgid "Test Functionality"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:56
|
||||
msgid "Email Header Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:58
|
||||
msgid ""
|
||||
"Your response email can display an header image.<br>\n"
|
||||
" Go to Media -> Library -> Add New, then copy "
|
||||
"and paste the link in this field.<br>\n"
|
||||
" (Optimal aspect ratio: 600 X 230 px.)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:71
|
||||
msgid "Enable Reply Forward"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:84
|
||||
msgid "Replies will be sent to: your@email.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:85
|
||||
msgid ""
|
||||
"If your WordPress website sends email from an email address you don't check "
|
||||
"daily, <br>\n"
|
||||
" with this option you can redirect customer "
|
||||
"replies to an account of your choice.<br><br>\n"
|
||||
" Customers replying your initial response email "
|
||||
"sent from the <i>\"Received Messages\"</i> section <br>\n"
|
||||
" and all future back and forth emails will be "
|
||||
"routed to this email address instead."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:98
|
||||
msgid "Enable Email Alert"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:110
|
||||
msgid "Alerts sent to: your@email.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:111
|
||||
msgid ""
|
||||
"Receive an email alert when a new request is submitted.<br>\n"
|
||||
" (Wordpress will check for new requests every "
|
||||
"hour.)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:122
|
||||
msgid "Enter an Email Address."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:124
|
||||
msgid "Ex: your@email.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:125
|
||||
msgid ""
|
||||
"You will receive a mock email to check functionalities.<br>\n"
|
||||
" (Depending on your server and service status "
|
||||
"it may take <br>\n"
|
||||
" a few minutes to receive the email. Also "
|
||||
"check your \"junk folder\".)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:141
|
||||
msgid "Chatster Request settings have been reset!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:158
|
||||
msgid "Wrong URL submitted"
|
||||
msgstr ""
|
||||
|
||||
#: views/functions.basic-templates.php:7
|
||||
msgid "support page"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.chat.php:25
|
||||
msgid "Your conversations will be shown here.."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.chat.php:36
|
||||
msgid "Current conversation will be shown here."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.chat.php:45
|
||||
#, php-format
|
||||
msgid "There is %s customer waiting in line"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.chat.php:48
|
||||
#, php-format
|
||||
msgid "There are %s customers waiting in line"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.chat.php:60
|
||||
msgid "Attach a link to a page or product."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.header.php:15
|
||||
msgid "Conversations"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.header.php:16
|
||||
msgid "Received Messages"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:16
|
||||
msgid "No Messages yet"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:28
|
||||
msgid "Show Replied Messages"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:35
|
||||
msgid "User Name"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:36
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:37
|
||||
msgid "Date Received"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:38
|
||||
msgid "Last Replied"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:39
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:42
|
||||
msgid "Message Data"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:70
|
||||
msgid "By: "
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:89
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:89
|
||||
msgid "Show/Reply"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:92
|
||||
msgid "asks"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:97 views/public/function.front-chat.php:56
|
||||
msgid "Type here your message.."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:100
|
||||
msgid "Send Email"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:121 views/admin/function.settings.php:54
|
||||
msgid "«"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:122 views/admin/function.settings.php:55
|
||||
msgid "»"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:16
|
||||
msgid "Bot Setup"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:25
|
||||
msgid "Reset Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:32
|
||||
msgid "Bot Q & A"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:35
|
||||
msgid "Q&A Was Reset Successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:36
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:43
|
||||
msgid "You didn't add any Q&A yet!"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:71
|
||||
msgid "Reset Bot Q&A"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:80
|
||||
msgid "Chat Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:100
|
||||
msgid "Request/Response"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:100
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:116
|
||||
msgid "Send Test Email"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:118
|
||||
msgid "Sent Successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:119
|
||||
msgid "Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:131
|
||||
msgid "Reset All Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:22
|
||||
msgid "Customers already waiting: "
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:23
|
||||
msgid "An admin will be here shortly.."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:24
|
||||
msgid "You are beign helped by "
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:25
|
||||
msgid "Sorry, we are currently unavailable.. "
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:26
|
||||
msgid "You are now disconnected.."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:27
|
||||
msgid "You are chatting with "
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:32
|
||||
#: views/public/function.front-chat.php:100
|
||||
msgid "Your message here.."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:36
|
||||
msgid "End Chat"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:38
|
||||
#: views/public/function.front-chat.php:60
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:45
|
||||
msgid "Please fill out this form to get in touch!"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:61
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:63
|
||||
msgid "Try Again"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:64
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:72
|
||||
msgid "Start Chatting now!"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:74
|
||||
msgid "Your name"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:77
|
||||
msgid "Your email"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:80
|
||||
msgid "Type here your question.."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:84
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:86
|
||||
msgid "Start Chatting"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:97
|
||||
msgid "Our Bot "
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:97
|
||||
msgid "is here to help you."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:104
|
||||
msgid "Chat unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:104
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:105
|
||||
msgid "Message Us"
|
||||
msgstr ""
|
||||
32
spec/fixtures/dynamic_finders/plugin_version/checkrobin/change_log/changelog.txt
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/checkrobin/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.0.6] - 2020-06-29
|
||||
### Added
|
||||
- First release version for wordpress repository
|
||||
|
||||
## [0.0.5] - 2020-02-26
|
||||
### Fixed
|
||||
- Avoid settings link in module overview overloading other modules settings links
|
||||
|
||||
## [0.0.4] - 2020-01-27
|
||||
### Added
|
||||
- count(): Parameter must be an array or an object that implements Countable as of as of PHP 7.2
|
||||
- Updating composer/installers (v1.5.0 => v1.7.0)
|
||||
|
||||
## [0.0.3] - 2018-04-27
|
||||
### Added
|
||||
- Added defined check and prefix to constants.php
|
||||
- Re-Worked Failsave email
|
||||
|
||||
## [0.0.2] - 2018-04-27
|
||||
### Added
|
||||
- Disabled Failsave email
|
||||
- Make sure default timezone is set
|
||||
|
||||
## [0.0.1] - 2018-04-13
|
||||
### Added
|
||||
- Started changelog
|
||||
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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,222 @@
|
||||
# Copyright (C) 2018 Arman Afzal <rman.afzal@gmail.com>
|
||||
# This file is distributed under the same license as the Code Injection plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Code Injection 2.4.4\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/code-injection\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-14T13:51:32+00: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
|
||||
#: code-injection.php:254
|
||||
#: includes/plugin-widget.php:19
|
||||
msgid "Code Injection"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/Rmanaf/wp-code-injection"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
#: includes/plugin-widget.php:20
|
||||
msgid "This plugin allows you to inject code snippets into the pages."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Rmanaf"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/rmanaf/"
|
||||
msgstr ""
|
||||
|
||||
#: code-injection.php:280
|
||||
msgid "Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: code-injection.php:309
|
||||
msgid "Activator Keys"
|
||||
msgstr ""
|
||||
|
||||
#: code-injection.php:359
|
||||
msgid "Allow nested shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: code-injection.php:372
|
||||
msgid "Keys:"
|
||||
msgstr ""
|
||||
|
||||
#: code-injection.php:375
|
||||
msgid "Generate Key"
|
||||
msgstr ""
|
||||
|
||||
#: code-injection.php:379
|
||||
msgid "Enter Keys:"
|
||||
msgstr ""
|
||||
|
||||
#: code-injection.php:398
|
||||
msgid "Ignore activator keys"
|
||||
msgstr ""
|
||||
|
||||
#: code-injection.php:410
|
||||
msgid "Allow shortcodes in the Custom HTML widget"
|
||||
msgstr ""
|
||||
|
||||
#: code-injection.php:422
|
||||
msgid "Enable %s shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: code-injection.php:627
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:42
|
||||
msgid "Code Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:183
|
||||
msgid "You can find useful codes in the CI %1$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:187
|
||||
msgid "Library"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:221
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:223
|
||||
msgid "Write something about your code..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:235
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:249
|
||||
msgid "Publicly Queryable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:260
|
||||
msgid "Content-Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:291
|
||||
msgid "As Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:296
|
||||
msgid "Activator key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:298
|
||||
msgid "Enter key..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:315
|
||||
msgid "From File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:317
|
||||
msgid "Select File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-metabox.php:328
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:83
|
||||
msgid "Show All %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:152
|
||||
msgid "Copy the Code ID into the Clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:153
|
||||
msgid "Copy CID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:296
|
||||
msgid "Codes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:297
|
||||
#: includes/code-type.php:356
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:298
|
||||
msgid "Add New Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:299
|
||||
msgid "Edit Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:300
|
||||
msgid "New Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:301
|
||||
msgid "Search Codes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:302
|
||||
msgid "No codes found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:303
|
||||
msgid "No codes found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:304
|
||||
msgid "All Codes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:357
|
||||
msgid "Hits"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:358
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:384
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:396
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:405
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/code-type.php:436
|
||||
msgid "Code ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/plugin-widget.php:62
|
||||
msgid "Code ID:"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/code-editor.js:205
|
||||
msgid "The File is too large. Do you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/code-editor.js:212
|
||||
msgid "The selected file type is not supported."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/code-editor.js:226
|
||||
msgid "Are you sure? You are about to replace the current code with the selected file content."
|
||||
msgstr ""
|
||||
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 ""
|
||||
87
spec/fixtures/dynamic_finders/plugin_version/courier-notices/change_log/CHANGELOG.md
vendored
Normal file
87
spec/fixtures/dynamic_finders/plugin_version/courier-notices/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
# Changelog #
|
||||
|
||||
## 1.2.3 ##
|
||||
* Fixed - issue with notice placement (whoops)
|
||||
|
||||
## 1.2.1 ##
|
||||
|
||||
* Updated sanitization to match wordpress.org audit.
|
||||
|
||||
## 1.2.0 ##
|
||||
|
||||
* Updated - Namespace changed from courier to courier-notices due to plugin conflict on wordpress.org
|
||||
* Fixed - Duplicate modal/popup issue
|
||||
* Submission to wordpress.org
|
||||
|
||||
## 1.1.4 ##
|
||||
|
||||
* Fixed - Fatal error when assigning data to a template view
|
||||
|
||||
## 1.1.3 ##
|
||||
|
||||
* Fixed - Icon font specificity
|
||||
|
||||
## 1.1.2 ##
|
||||
|
||||
* Remove - Notice font styles, allow styling to inherit from theme
|
||||
|
||||
## 1.1.1 ##
|
||||
|
||||
* Fixed - Issue with default styles not being created on install
|
||||
* Fixed - Security updates provided by github audit
|
||||
|
||||
## 1.1.0 ##
|
||||
|
||||
* Fixed - Minor security updates
|
||||
* Fixed - Minor code cleanup
|
||||
* Fixed - Link to Types/Design was broken
|
||||
* Fixed - Link to Settings was broken
|
||||
* Fixed - Minor updates to strings to allow for translation
|
||||
* Fixed - Modal notice was not working properly (dismissible)
|
||||
* Fixed - Error log was being utilized and should not have been
|
||||
* Fixed - Cron was running hourly and not every 5 minutes
|
||||
* Fixed - Various typos (We talk pretty one day)
|
||||
* Fixed - utilizing iris wpColorPicker (For the time being)
|
||||
* Fixed - Fixed an issue with color changes in the design panel did not show until page refresh
|
||||
* Added - New UI/UX for creating and styling "Types" of notices
|
||||
* Added - Courier actually has some branding now
|
||||
* Added - Default data on plugin activation
|
||||
* Added - Utility method to sanitize kses content
|
||||
* Added - Cleaned up CSS across the entire plugin
|
||||
* Added - New cron schedule (Every 5 minutes)
|
||||
* Added - New taxonomy for "Style of Notice". This will allow for all different kinds of notices in the future
|
||||
* Added - Base for CRUD in the future. Mainly just R right now.
|
||||
* Improved - Added more flexibility to how tabs and subtabs can extend the plugin
|
||||
* Improved - CSS is only generated and output if CSS is not disabled
|
||||
* Improved - Placement logic is more flexible now
|
||||
* Improved - UI/UX to show different notice options depending on other selections
|
||||
* Improved - How css and javascript is enqueued based on context of admin
|
||||
* Improved - Code Organization
|
||||
* Improved - Templates
|
||||
* Improved - Updated the expiration of notices to increment every 5 minutes for better accuracy and less stress on servers
|
||||
|
||||
## 1.0.4 ##
|
||||
|
||||
* Cleaned up deployment process further.
|
||||
|
||||
## 1.0.2 ##
|
||||
|
||||
* Migrated to using composer as our autoloader instead of a proprietary one
|
||||
* Added Parsedown dependency for Markdown display within the plugin
|
||||
* Added a changelog.md display to the settings page as a tab
|
||||
* Added more automation for release to get releases out the door quicker
|
||||
* Minor code formatting changes
|
||||
|
||||
## 1.0.1 ##
|
||||
|
||||
* Updated dependencies based on github security notification
|
||||
|
||||
## 1.0.0 ##
|
||||
|
||||
Initial Release
|
||||
|
||||
* Cleaned up UI for date and time selection.
|
||||
* You can no longer select an expiration date from the past.
|
||||
* Implemented datetimepicker so time selection is easier.
|
||||
* Minor typo fix in admin area.
|
||||
* Minor data sanitization/security hardening.
|
||||
43
spec/fixtures/dynamic_finders/plugin_version/courier-notices/composer_file/composer.json
vendored
Normal file
43
spec/fixtures/dynamic_finders/plugin_version/courier-notices/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"name": "linchpin/courier",
|
||||
"description": "Courier Notification for WordPress",
|
||||
"homepage": "https://github.com/linchpin/courier",
|
||||
"version": "1.2.3",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Linchpin",
|
||||
"email": "sayhi@linchpin.com",
|
||||
"homepage": "https://linchpin.com",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"keywords": [
|
||||
"WordPress",
|
||||
"linchpin",
|
||||
"notices",
|
||||
"notifications",
|
||||
"alerts",
|
||||
"gdpr"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/linchpin/courier/issues",
|
||||
"source": "https://github.com/linchpin/courier"
|
||||
},
|
||||
"license": "GPL-2.0+",
|
||||
"require-dev": {
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"require": {
|
||||
"php": ">=7.0",
|
||||
"erusev/parsedown": "^1.7"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"CourierNotices\\": "src/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "phpcs .",
|
||||
"lint-fix": "phpcbf ."
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
#### 1.0.3 - July 16 2020
|
||||
- Small fixes in the plugin readme.
|
||||
|
||||
#### 1.0.2 - July 16 2020
|
||||
- Small fixes in the plugin readme.
|
||||
|
||||
#### 1.0.1 - July 16 2020
|
||||
- Fixes an issue where the "Let's get started" button needed to be clicked twice in some cases.
|
||||
|
||||
#### 1.0.0 - July 16 2020
|
||||
- Initial version of the plugin
|
||||
@@ -0,0 +1,212 @@
|
||||
# Copyright (C) 2020 Automattic
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Crowdsignal Forms 0.9.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/crowdsignal-forms\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-27T13:38:00+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha-c4c9f7e\n"
|
||||
"X-Domain: crowdsignal-forms\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Crowdsignal Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://crowdsignal.com/crowdsignal-forms/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Crowdsignal Form Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Automattic"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://automattic.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-admin-notices.php:112
|
||||
msgid "Action failed. Please refresh the page and retry."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-admin-notices.php:116
|
||||
msgid "You don’t have permission to do this."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-admin.php:70
|
||||
msgid "Crowdsignal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-admin.php:71
|
||||
#: includes/admin/class-crowdsignal-forms-admin.php:86
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-admin.php:72
|
||||
#: includes/admin/class-crowdsignal-forms-admin.php:85
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:71
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:76
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:184
|
||||
msgid "Enter Crowdsignal API Key"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is a link to the Crowdsignal connection page.
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:163
|
||||
msgid "To collect responses and data with Crowdsignal Forms you need to <a href=\"%s\" target=\"_blank\">connect the plugin with a Crowdsignal account.</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:169
|
||||
msgid "You can do this by entering an API key below:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:176
|
||||
msgid "Settings successfully saved"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:204
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:210
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:221
|
||||
msgid "If you don't have an API key we can help you here:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-notice-core-setup.php:17
|
||||
msgid "You are nearly ready to start creating polls with <strong>Crowdsignal</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-notice-core-setup.php:21
|
||||
msgid "Let's Get Started"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-notice-core-setup.php:22
|
||||
msgid "Skip Setup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:24
|
||||
msgid "Crowdsignal Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:24
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:25
|
||||
msgid "Terms of Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:25
|
||||
msgid "Terms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:26
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:26
|
||||
msgid "Privacy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-header.php:43
|
||||
msgid "Could not disconnect. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-header.php:46
|
||||
msgid "Successfully disconnected from Crowdsignal."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-header.php:49
|
||||
msgid "Success! Your Crowdsignal account is successfully connected! You are ready!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-header.php:52
|
||||
msgid "You have been connected to Crowdsignal."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-header.php:55
|
||||
msgid "Your API key has not been updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-1.php:14
|
||||
msgid "Welcome to Crowdsignal Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-1.php:24
|
||||
msgid "Let’s get started"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-2.php:20
|
||||
msgid "You're ready to start using Crowdsignal!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-3.php:15
|
||||
msgid "First time using Crowdsignal?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-3.php:20
|
||||
msgid "You can search for our blocks, like the Poll block, in the library of the block editor."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-3.php:22
|
||||
msgid "Here is a short video to get you started:"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Argument is a link to Crowdsignal's contact page.
|
||||
#: includes/admin/views/html-admin-setup-step-3.php:37
|
||||
msgid "<a href=\"%1s\" target=\"_blank\">Any questions about Crowdsignal?</a>"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Argument is a link to Crowdsignal's support page.
|
||||
#: includes/admin/views/html-admin-setup-step-3.php:52
|
||||
msgid "<a href=\"%1s\" target=\"_blank\">Read more about us here.</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/frontend/blocks/class-crowdsignal-forms-poll-block.php:149
|
||||
msgid "Untitled Poll"
|
||||
msgstr ""
|
||||
|
||||
#: includes/frontend/blocks/class-crowdsignal-forms-poll-block.php:178
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/class-canned-api-gateway.php:60
|
||||
#: includes/gateways/class-canned-api-gateway.php:79
|
||||
msgid "Poll not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:210
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:235
|
||||
msgid "No Poll ID was provided."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:295
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:336
|
||||
msgid "Invalid poll ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:322
|
||||
msgid "Invalid post ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:413
|
||||
msgid "Resource not found"
|
||||
msgstr ""
|
||||
@@ -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 ""
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/cta-bar/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/cta-bar/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "pattonwebz/cta-bar-block",
|
||||
"description": "",
|
||||
"version": "1.0.0",
|
||||
"main": "build/index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/pattonwebz/cta-bar-block.git"
|
||||
},
|
||||
"author": "William Patton",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"bugs": {
|
||||
"url": "https://github.com/pattonwebz/cta-bar-block/issues"
|
||||
},
|
||||
"homepage": "https://github.com/pattonwebz/cta-bar-block#readme",
|
||||
"scripts": {
|
||||
"start": "wp-scripts start",
|
||||
"build": "wp-scripts build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.0.0"
|
||||
}
|
||||
}
|
||||
@@ -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,49 @@
|
||||
# Copyright (C) 2020 F70 Simple Table of Contents
|
||||
# This file is distributed under the same license as the F70 Simple Table of Contents package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: F70 Simple Table of Contents 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/f70-simple-table-"
|
||||
"of-contents\n"
|
||||
"POT-Creation-Date: 2020-07-22 10:50:35+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-07-22 19:57+0900\n"
|
||||
"Language-Team: \n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"Language: ja\n"
|
||||
|
||||
#: includes/display.php:102 includes/meta_box.php:15
|
||||
msgid "Table of contents"
|
||||
msgstr "目次"
|
||||
|
||||
#: includes/meta_box.php:71
|
||||
msgid "Display the table of contents"
|
||||
msgstr "目次を表示する"
|
||||
|
||||
#: includes/meta_box.php:81
|
||||
msgid "Headers level to include in the table of contents"
|
||||
msgstr "目次に含める見出し"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "F70 Simple Table of Contents"
|
||||
msgstr "F70 シンプル目次"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://factory70.com/simple-table-of-contents/"
|
||||
msgstr "https://factory70.com/simple-table-of-contents/"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Display a table of contents in your posts by automatically generated from "
|
||||
"the headings. No Javascript code, simple to use."
|
||||
msgstr ""
|
||||
"記事に目次を表示します。目次は見出しから自動生成されます。余分なJavascriptな"
|
||||
"し。簡単に使えます。"
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Nao Matsuo"
|
||||
msgstr "Nao Matsuo"
|
||||
@@ -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 ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -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.
|
||||
349
spec/fixtures/dynamic_finders/plugin_version/hey-notify/translation_file/languages/hey-notify.pot
vendored
Normal file
349
spec/fixtures/dynamic_finders/plugin_version/hey-notify/translation_file/languages/hey-notify.pot
vendored
Normal file
@@ -0,0 +1,349 @@
|
||||
# Copyright (C) 2020 FireTree Design, LLC <info@firetreedesign.com>
|
||||
# This file is distributed under the same license as the Hey Notify plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hey Notify 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hey-notify\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-21T19:21:51+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: hey-notify\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/cpt.php:35
|
||||
#: includes/services/class-email.php:99
|
||||
msgid "Hey Notify"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://heynotifywp.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Get notified when things happen in WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "FireTree Design, LLC <info@firetreedesign.com>"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://firetreedesign.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:33
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:34
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:36
|
||||
msgid "Parent Notification:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:37
|
||||
msgid "All Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:38
|
||||
msgid "View Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:39
|
||||
msgid "Add New Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:40
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:41
|
||||
msgid "Edit Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:42
|
||||
msgid "Update Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:43
|
||||
msgid "Search Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:44
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:45
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:100
|
||||
#: includes/fields.php:40
|
||||
msgid "Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:101
|
||||
#: includes/fields.php:53
|
||||
#: includes/filters.php:49
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:30
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:43
|
||||
#: includes/events/post/class-post-event.php:43
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:46
|
||||
msgid "Page Draft"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:47
|
||||
msgid "Page Pending"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:48
|
||||
msgid "Page Published"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:49
|
||||
msgid "Page Scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:50
|
||||
msgid "Page Updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:51
|
||||
msgid "Page Moved to Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:42
|
||||
msgid "Hey, a new page was drafted!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:73
|
||||
msgid "Hey, a new page was published!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:103
|
||||
msgid "Hey, a new page was scheduled!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:134
|
||||
msgid "Hey, a new page is pending!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:155
|
||||
msgid "Hey, a page was updated!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:176
|
||||
msgid "Hey, a page was deleted!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:190
|
||||
#: includes/events/post/class-post-hook.php:190
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:195
|
||||
#: includes/events/post/class-post-hook.php:195
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:30
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:46
|
||||
msgid "Post Draft"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:47
|
||||
msgid "Post Pending"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:48
|
||||
msgid "Post Published"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:49
|
||||
msgid "Post Scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:50
|
||||
msgid "Post Updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:51
|
||||
msgid "Post Moved to Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:42
|
||||
msgid "Hey, a new post was drafted!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:73
|
||||
msgid "Hey, a new post was published!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:103
|
||||
msgid "Hey, a new post was scheduled!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:134
|
||||
msgid "Hey, a new post is pending!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:155
|
||||
msgid "Hey, a post was updated!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:176
|
||||
msgid "Hey, a post was deleted!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:204
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:213
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields.php:66
|
||||
msgid "Hey Notify Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields.php:68
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields.php:71
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields.php:75
|
||||
msgid "Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:31
|
||||
msgid "Select a service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:46
|
||||
msgid "Notification Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:50
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:56
|
||||
msgid "Event Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:80
|
||||
msgid "Upon deletion of the plugin, you can optionally remove all custom data, settings, etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:85
|
||||
msgid "Remove all data when Hey Notify is deleted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:102
|
||||
msgid "General settings for Hey Notify."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:107
|
||||
msgid "Default service:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:44
|
||||
#: includes/services/class-slack.php:44
|
||||
msgid "Webhook URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:46
|
||||
msgid "The webhook that you created for your Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:46
|
||||
#: includes/services/class-slack.php:46
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:57
|
||||
msgid "Discord Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:58
|
||||
msgid "Override the default avatar of the webhook. Not required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:70
|
||||
msgid "Discord Username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:71
|
||||
#: includes/services/class-slack.php:71
|
||||
msgid "Override the default username of the webhook. Not required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-email.php:44
|
||||
msgid "Send notifications to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-email.php:47
|
||||
#: includes/services/class-email.php:53
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-email.php:52
|
||||
msgid "Email Addresses"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-email.php:105
|
||||
msgid "Hey, here's your notification!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:46
|
||||
msgid "The webhook that you created for your Slack channel."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:57
|
||||
msgid "Slack Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:58
|
||||
msgid "Override the default icon of the webhook. Not required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:70
|
||||
msgid "Slack Username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:83
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:84
|
||||
msgid "Select a color to use for the message attachment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:230
|
||||
msgid "Attached image"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,73 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hide Admin Bar by WP ALL SUPPORT 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-07-11 17:49+0530\n"
|
||||
"PO-Revision-Date: 2020-07-11 17:49+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: WP ALL SUPPORT <info@wpallsupport.com>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;_n_noop:1,2;"
|
||||
"_nx:1,2;_x;_ex;esc_attr_e;esc_attr__\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Generator: Poedit 2.2.1\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:54
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:55
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:74
|
||||
msgid "Hide Admin Bar Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:82
|
||||
msgid "Force hide for all?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:86
|
||||
msgid "Hide for selected users?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:88
|
||||
msgid "Select users"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:113
|
||||
msgid "Hide by user roles?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:117
|
||||
msgid "Select roles to hide admin bar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:120
|
||||
msgid "Select user roles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:139
|
||||
msgid "Hide admin bar if..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:142
|
||||
msgid "Create a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:165
|
||||
msgid "Delete data on uninstall?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpas-hide-admin-bar-admin.php:170
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: templates/add-new-rule.php:27
|
||||
msgid "Please select post type to hide"
|
||||
msgstr ""
|
||||
|
||||
#: templates/add-new-rule.php:42
|
||||
msgid "Please select item(s)"
|
||||
msgstr ""
|
||||
@@ -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 ""
|
||||
2017
spec/fixtures/dynamic_finders/plugin_version/jobboardwp/translation_file/languages/jobboardwp-en_US.po
vendored
Normal file
2017
spec/fixtures/dynamic_finders/plugin_version/jobboardwp/translation_file/languages/jobboardwp-en_US.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,145 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Kontur Copy Code Button 1.0.0 \n"
|
||||
"Report-Msgid-Bugs-To: https://profiles.wordpress.org/netzaufsicht/\n"
|
||||
"Last-Translator: Eilert Behrends <hello@kontur.us>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-25 20:09+0000\n"
|
||||
"PO-Revision-Date: 2020-07-25 22:25+0000\n"
|
||||
"X-Domain: kontur-copy-code-button\n"
|
||||
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Kontur Copy Code Button"
|
||||
msgstr "Kontur Copy Code Button"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/kontur-copy-code-button"
|
||||
msgstr "https://wordpress.org/kontur-copy-code-button"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Add your own \"kontur Copy Code Button\" <strong>with your own text, class, "
|
||||
"color</strong> and \"pre\" Background. Works as well with the \"WP Code Block"
|
||||
"\". The clicked button copies your code into the clipboard."
|
||||
msgstr ""
|
||||
"Erstelle Deinen eigenen \"kontur Copy Code Button\" <strong>mit Deinem Text, "
|
||||
"CSS-Klasse, Farbe</strong> und \"pre\" Background. Funktioniert mit dem "
|
||||
"\"WP Code Block\". Ein Klick auf den Button kopiert Deinen Code in die "
|
||||
"Zwischenablage."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Eilert Behrends"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/netzaufsicht"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:107
|
||||
msgid ">> Settings"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:120
|
||||
msgid "Coffee?"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:137
|
||||
msgid "kontur Copy Code Button"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:193
|
||||
msgid "SETTINGS UPDATED !"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:233
|
||||
msgid "Change Your Settings"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:239
|
||||
msgid "Set your own Text for the Button"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:242
|
||||
msgid "Copy Button Text:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:243
|
||||
msgid " e.g. \"Copy Code\""
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:246
|
||||
msgid "Text when copied:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:248
|
||||
msgid " e.g. \"Copied\""
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:251
|
||||
msgid "Save Button Label Texts"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:261
|
||||
msgid "You got the looks"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:263
|
||||
msgid "This is how it would look like right now:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:283
|
||||
msgid "Style it Baby"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:285
|
||||
msgid "Button <strong>Background Color</strong>:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:290 kontur-copy-code-button.php:297
|
||||
#: kontur-copy-code-button.php:305
|
||||
msgid "Current color: "
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:292
|
||||
msgid "Save Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:294
|
||||
msgid "Button <strong>Text Color</strong>:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:298
|
||||
msgid "Save Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:302
|
||||
msgid "Code \"pre\" Block Background"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:308
|
||||
msgid "Save Box Background"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:322
|
||||
msgid "Get Classy"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:325
|
||||
msgid "Add your custom class(es) to make the button match your theme."
|
||||
msgstr ""
|
||||
|
||||
|
||||
#: kontur-copy-code-button.php:326
|
||||
msgid " Input goes like this for multiple classes: \"class1 class2 class3\""
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:330
|
||||
msgid "Save added classes"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:353
|
||||
msgid "Save all settings"
|
||||
msgstr ""
|
||||
16
spec/fixtures/dynamic_finders/plugin_version/lazy-youtube/composer_file/package.json
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/lazy-youtube/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "lazy-youtube",
|
||||
"version": "1.0.0",
|
||||
"description": "A gutenberg Youtube embed block that only loads Youtube assets when the user needs them.",
|
||||
"main": "",
|
||||
"scripts": {
|
||||
"start": "wp-scripts start block/src/lazy-youtube-block.js --output-path=block/dist",
|
||||
"build": "wp-scripts build block/src/lazy-youtube-block.js --output-path=block/dist",
|
||||
"lint:js": "wp-scripts lint-js"
|
||||
},
|
||||
"author": "Laytan Laats",
|
||||
"license": "GPL-2.0+",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "6.2.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
# Copyright (C) 2020 Laytan Laats
|
||||
# This file is distributed under the same license as the Lazy Youtube plugin.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lazy Youtube 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lazy-youtube\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-02-07 13:40+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: Poedit 1.8.7\n"
|
||||
"X-Domain: lazy-youtube\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Lazy Youtube"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/laytan/lazy-youtube"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A gutenberg Youtube embed block that only loads Youtube assets when the user needs them."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Laytan Laats"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/laytan"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:118 block/src/lazy-youtube-block.js:11
|
||||
msgid "Lazy youtube"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:119 block/src/lazy-youtube-block.js:12
|
||||
msgid "A youtube embed that only loads Youtube scripts when needed."
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:181 block/src/lazy-youtube-block.js:68
|
||||
msgid "Youtube embed options"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:183 block/src/lazy-youtube-block.js:71
|
||||
msgid "Youtube video link"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:184 block/src/lazy-youtube-block.js:72
|
||||
msgid "Youtube video link or embed link. allowed format is [https://www.youtube.com/watch?v=video_id]."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "js",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "script.js",
|
||||
"scripts": {
|
||||
"start": "wp-scripts start & sass --watch assets/css/",
|
||||
"build": "sass assets/css/ --style=compressed & wp-scripts build"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^6.1.1",
|
||||
"sass": "^1.26.9"
|
||||
},
|
||||
"dependencies": {
|
||||
"classnames": "^2.2.6",
|
||||
"react-debounce-input": "^3.2.2",
|
||||
"react-reorder": "^3.0.0-alpha.7"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,288 @@
|
||||
# Copyright (C) 2020 LeoCoder
|
||||
# This file is distributed under the same license as the Leo Product Recommendations for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Leo Product Recommendations for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/leo-product-recommendations\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-11T14:28:44+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: leo-product-recommendations\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Leo Product Recommendations for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://leocoder.com/leo-product-recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Recommend products smartly and increase sales by nice-looking add to cart popup"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "LeoCoder"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://leocoder.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-ajax-add-to-cart.php:66
|
||||
msgid "Product not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-ajax-add-to-cart.php:150
|
||||
msgid "Unable to add to cart. Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. link of plugin, 2. plugin version.
|
||||
#: includes/class-lc-leo-product-recommendations.php:161
|
||||
msgid "The Leo Product Recommendations for WooCommerce plugin requires <a href=\"%1$s\">WooCommerce</a> %2$s or greater to be installed and active."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. link of wordpress, 2. version of WordPress.
|
||||
#: includes/class-lc-leo-product-recommendations.php:170
|
||||
msgid "The Leo Product Recommendations for WooCommerce plugin requires <a href=\"%1$s\">WordPress</a> %2$s or greater to be installed and active."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. version of php
|
||||
#: includes/class-lc-leo-product-recommendations.php:179
|
||||
msgid "The Leo Product Recommendations for WooCommerce plugin requires <strong>php verion %s</strong> or greater. Please update your server php version."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:231
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:404
|
||||
msgid "Product Recommendations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1230
|
||||
msgid "Default Heading"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1232
|
||||
msgid "If you like to use same heading patternt for all recommendations then use default heading. Use pattern <strong>%title%</strong> for product title. Pattern <strong>[item, items]</strong> is changeable. You can use <strong>[product, products]</strong> or anything that makes sense. Singular word for single recommended product and plural word for multiple recommended products."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1233
|
||||
msgid "You may purchase following [item, items] with the %title%"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1238
|
||||
msgid "Grid Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1244
|
||||
msgid "Desktop Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1253
|
||||
msgid "Tablet Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1262
|
||||
msgid "Mobile Items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1270
|
||||
msgid "Column Gap"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1284
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1286
|
||||
msgid "Write custom css to change style of modal."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1293
|
||||
msgid "Active Global Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1295
|
||||
msgid "If there are no recommendations available for some products (if you don't setup from product editor), the global setting will work for those products as a fallback. This setting is also helpful if you like a bulk recommendation setup for entire shop instead of a different setup for each product."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1299
|
||||
msgid "Recommendation Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1304
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1307
|
||||
msgid "Product Related Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1308
|
||||
msgid "Menual"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1314
|
||||
msgid "Choose Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1320
|
||||
msgid "Choose Tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1326
|
||||
msgid "Products Filtering"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1329
|
||||
msgid "Random Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1330
|
||||
msgid "Newest Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1331
|
||||
msgid "Oldest Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1332
|
||||
msgid "Low Price Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1333
|
||||
msgid "High Price Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1334
|
||||
msgid "Best Selling Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1335
|
||||
msgid "Top Rated Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1340
|
||||
msgid "On-Sale Only"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1345
|
||||
msgid "Numbers of Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1353
|
||||
msgid "Skip"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1354
|
||||
msgid "Skip Manual Selection"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1363
|
||||
msgid "Leo Product Recommendations Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1364
|
||||
msgid "LPR Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1372
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1373
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1379
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1380
|
||||
msgid "Colors & Styles Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1386
|
||||
msgid "Global"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1387
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1393
|
||||
msgid "Tutorials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-leo-product-recommendations.php:1394
|
||||
msgid "Tutorial & Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-lc-lpr-settings-page.php:120
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Name of field type
|
||||
#: includes/class-lc-lpr-settings-page.php:227
|
||||
msgid "<strong>%s</strong> field type not found!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-modal.php:30
|
||||
msgid "has been added to your cart."
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-modal.php:31
|
||||
msgid "View cart"
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-modal.php:37
|
||||
msgid "Continue Shopping"
|
||||
msgstr ""
|
||||
|
||||
#: templates/template-modal.php:41
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/ajax-add-to-cart.js:61
|
||||
msgid "Something went wrong"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/panel.js:43
|
||||
msgid "Heading"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/panel.js:47
|
||||
msgid "Heading & Description"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/panel.js:207
|
||||
msgid "Popup Heading"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/panel.js:258
|
||||
msgid "Select Products"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/panel.js:270
|
||||
msgid "Search..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/panel.js:280
|
||||
#: assets/js/settings.js:94
|
||||
msgid "All Categories"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/panel.js:301
|
||||
msgid "Not found selectable product"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings.js:98
|
||||
msgid "All Tags"
|
||||
msgstr ""
|
||||
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:"
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/lokalise/change_log/CHANGELOG.md
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/lokalise/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
= 1.1.3 =
|
||||
* Changed readme.txt
|
||||
|
||||
= 1.1.2 =
|
||||
* Added readme.txt, ReadmeOSS
|
||||
|
||||
= 1.1.1 =
|
||||
* Fixed hard-coded table prefix
|
||||
|
||||
= 1.1.0 =
|
||||
* Added list of post types that can be edited by current user to environment REST
|
||||
* Dependency to process request headers
|
||||
|
||||
= 1.0.3 - 2020-07-02 =
|
||||
* Added CHANGELOG.md
|
||||
* Changed correct link to documentation
|
||||
|
||||
= 1.0.2 - 2020-07-02 =
|
||||
* Fixed authorization secret regeneration
|
||||
|
||||
= 1.0.1 - 2020-07-01 =
|
||||
* Added default locale to environment REST
|
||||
|
||||
= 1.0.0 - 2020-06-19 =
|
||||
* Added plugin code
|
||||
@@ -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 ""
|
||||
511
spec/fixtures/dynamic_finders/plugin_version/monarch/change_log/changelog.txt
vendored
Normal file
511
spec/fixtures/dynamic_finders/plugin_version/monarch/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,511 @@
|
||||
version 1.4.12 ( updated 03-11-2019 )
|
||||
- Security Update: Fixed a vulnerability that could allow some cross-site request forgery checks within our core product framework to be bypassed. In all cases, these checks were also hardened by user permission checks, however, user permissions checks alone are not sufficient to protect against all CSRF vectors. View the full disclosure here: https://us7.campaign-archive.com/?u=9ae7aa91c578052b052b864d6&id=917542a075.
|
||||
- Updated core to the latest version.
|
||||
* core/admin/css/core.css
|
||||
* core/admin/css/support-center.css
|
||||
* core/admin/js/support-center.js
|
||||
* core/components/Logger.php
|
||||
* core/components/PageResource.php
|
||||
* core/components/SupportCenter.php
|
||||
* core/components/SupportCenterMUAutoloader.php
|
||||
* core/components/Updates.php
|
||||
* core/components/init.php
|
||||
* core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php
|
||||
* core/functions.php
|
||||
* core/ui/utils/frames.js
|
||||
|
||||
version 1.4.11 ( updated 02-26-2019 )
|
||||
- Updated core to the latest version.
|
||||
* core/components/data/init.php
|
||||
|
||||
version 1.4.10 ( updated 12-12-2018 )
|
||||
- Updated core to the latest version.
|
||||
* core/components/data/Utils.php
|
||||
|
||||
version 1.4.9 ( updated 12-05-2018 )
|
||||
- Various security hardening fixes.
|
||||
- Added i18n support for visual builder toggle buttons.
|
||||
- Fixed post_max_size megabytes conversion.
|
||||
- Fixed a issue where Your Save Has Failed Modal Hides Wordfence's Blocked Request Notification.
|
||||
- Fixed Monarch metabox styles in Gutenberg Editor.
|
||||
- Removed LinkedIn share count API integration since it was deprecated and no longer supported by LinkedIn.
|
||||
- Various security hardening fixes.
|
||||
* core/admin/css/core.css
|
||||
* core/admin/css/portability.css
|
||||
* core/admin/js/core.js
|
||||
* core/components/PageResource.php
|
||||
* core/components/Portability.php
|
||||
* core/components/Updates.php
|
||||
* core/components/VersionRollback.php
|
||||
* core/components/api/OAuthHelper.php
|
||||
* core/components/api/Service.php
|
||||
* core/components/api/email/HubSpot.php
|
||||
* core/components/api/email/Provider.php
|
||||
* core/components/api/email/Providers.php
|
||||
* core/components/api/email/_MailPoet2.php
|
||||
* core/components/api/email/_MailPoet3.php
|
||||
* core/components/data/Utils.php
|
||||
* core/components/data/init.php
|
||||
* core/components/init.php
|
||||
* core/components/lib/WPHttp.php
|
||||
* core/components/post/Query.php
|
||||
* core/functions.php
|
||||
* core/ui/utils/attribute-binder.js
|
||||
* core/ui/utils/frames.js
|
||||
* css/stats-meta-styles.css
|
||||
* monarch.php
|
||||
|
||||
version 1.4.8 ( updated 10-30-2018 )
|
||||
- Applied some minor security hardening improvements.
|
||||
|
||||
version 1.4.7 ( updated 10-05-2018 )
|
||||
- Fixed the Facebook follower count.
|
||||
* monarch.php
|
||||
|
||||
version 1.4.6 ( updated 10-04-2018 )
|
||||
- Fixed a slightly outdated React version being loaded.
|
||||
- Updated custom fields retrieval and processing functions for Mailchimp to make it work with custom field names.
|
||||
- Fixed the Subscription error shown when using Custom fields in the Email Optin module with MailPoet service provider.
|
||||
- Fixed "et_social_stats" table missing error.
|
||||
* .github/PULL_REQUEST_TEMPLATE.md
|
||||
* core/admin/js/react-dom.production.min.js
|
||||
* core/admin/js/react.production.min.js
|
||||
* core/components/api/email/MailChimp.php
|
||||
* core/components/api/email/_MailPoet3.php
|
||||
* core/components/data/Utils.php
|
||||
* monarch.php
|
||||
|
||||
version 1.4.5 ( updated 08-13-2018 )
|
||||
- Fixed WSOD that occurred in some cases.
|
||||
* monarch.php
|
||||
|
||||
version 1.4.4 ( updated 08-13-2018 )
|
||||
- Corrected German translation of button text in WP Admin.
|
||||
- Fixed PHP notice that was occurring since introduction of rollback feature.
|
||||
- Fixed "et_social_stats" table missing error.
|
||||
* core/components/VersionRollback.php
|
||||
* core/languages/de_DE.mo
|
||||
* core/languages/de_DE.po
|
||||
* monarch.php
|
||||
|
||||
version 1.4.3 ( updated 7-13-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/*
|
||||
* monarch.php
|
||||
|
||||
version 1.4.2 ( updated 6-14-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
- Sanitized values used to generate sharing popup.
|
||||
* core/*
|
||||
* monarch.php
|
||||
|
||||
version 1.4.1 ( updated 5-31-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
- Added extra security hardening to the OAuth2 authorization callback.
|
||||
* core/*
|
||||
|
||||
version 1.4 ( updated 5-26-2018 )
|
||||
- updated core framework to the latest version.
|
||||
- Added the option to disable Google Fonts.
|
||||
* monarch.php
|
||||
* css/admin.css
|
||||
* includes/monarch_options.php
|
||||
* js/admin.js
|
||||
* core/*
|
||||
|
||||
version 1.3.27 ( updated 4-26-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/*
|
||||
|
||||
version 1.3.26 ( updated 4-19-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/*
|
||||
|
||||
version 1.3.25 ( updated 2-8-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/*
|
||||
|
||||
version 1.3.24 ( updated 12-7-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/admin/js/portability.js
|
||||
* core/components/Portability.php
|
||||
* core/functions.php
|
||||
|
||||
version 1.3.23 ( updated 10-18-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/admin/css/portability.css
|
||||
|
||||
version 1.3.22 ( updated 10-18-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/admin/fonts/modules.eot
|
||||
* core/admin/fonts/modules.svg
|
||||
* core/admin/fonts/modules.ttf
|
||||
* core/admin/fonts/modules.woff
|
||||
|
||||
version 1.3.21 ( updated 9-29-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/api/email/ConstantContact.php
|
||||
* core/components/api/email/GetResponse.php
|
||||
* core/components/api/email/MailPoet.php
|
||||
* core/components/api/email/_MailPoet2.php
|
||||
* core/components/api/email/Provider.php
|
||||
* core/components/api/email/Providers.php
|
||||
|
||||
version 1.3.20 ( updated 9-21-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/functions.php
|
||||
* core/components/data/init.php
|
||||
* core/components/data/Utils.php
|
||||
* core/components/api/email/init.php
|
||||
* core/components/api/email/iContact.php
|
||||
* core/components/api/email/_ProviderName.php
|
||||
* core/components/api/email/Providers.php
|
||||
* core/components/api/email/Provider.php
|
||||
* core/components/api/email/MailPoet.php
|
||||
* core/components/api/email/MadMimi.php
|
||||
* core/components/api/email/HubSpot.php
|
||||
* core/components/api/email/GetResponse.php
|
||||
* core/components/api/email/Feedblitz.php
|
||||
* core/components/api/email/Emma.php
|
||||
* core/components/api/email/ConvertKit.php
|
||||
* core/components/api/email/ConstantContact.php
|
||||
* core/components/api/email/CampaignMonitor.php
|
||||
* core/components/api/email/Aweber.php
|
||||
* core/components/api/email/ActiveCampaign.php
|
||||
* core/components/api/Service.php
|
||||
* core/components/Logger.php
|
||||
* core/components/HTTPInterface.php
|
||||
|
||||
version 1.3.19 ( updated 9-6-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/init.php
|
||||
|
||||
version 1.3.18 ( updated 7-27-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/functions.php
|
||||
* core/admin/js/portability.js
|
||||
* core/components/Portability.php
|
||||
|
||||
version 1.3.17 ( updated 7-14-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/PageResource.php
|
||||
* core/components/PageResource.php
|
||||
* core/functions.php
|
||||
|
||||
version 1.3.16 ( updated 7-10-2017 )
|
||||
- Updated core framework to the latest versions.
|
||||
- Fixed a bug that caused errors to occur on SiteGround hosting accounts for some customers when the Elegant Themes caching system attempted to clear the SiteGround cache during plugin & theme activation.
|
||||
* core/components/PageResource.php
|
||||
* core/components/data/Utils.php
|
||||
* core/components/init.php
|
||||
* core/functions.php
|
||||
* core/init.php
|
||||
|
||||
version 1.3.15 ( updated 7-8-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/PageResource.php
|
||||
* core/components/init.php
|
||||
|
||||
version 1.3.14 ( updated 7-2-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/PageResource.php
|
||||
* core/components/init.php
|
||||
|
||||
version 1.3.13 ( updated 7-2-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/init.php
|
||||
* core/components/PageResource.php
|
||||
|
||||
version 1.3.12 ( updated 7-1-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/init.php
|
||||
|
||||
version 1.3.11 ( updated 7-1-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/PageResource.php
|
||||
|
||||
version 1.3.10 ( updated 6-30-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/PageResource.php
|
||||
|
||||
version 1.3.9 ( updated 6-30-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/init.php
|
||||
* core/components/PageResource.php
|
||||
|
||||
version 1.3.8 updated 6-28-2017 )
|
||||
- Fixed undefined function PHP error that occurred after upgrading to the latest version in some cases.
|
||||
* components/PageResource.php
|
||||
|
||||
version 1.3.7 ( updated 6-28-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/admin/js/page-resource-fallback.js
|
||||
* core/admin/js/page-resource-fallback.min.js
|
||||
* core/components/PageResource.php
|
||||
* core/components/data/Utils.php
|
||||
* core/components/init.php
|
||||
* core/components/lib/BluehostCache.php
|
||||
* core/functions.php
|
||||
* core/init.php
|
||||
|
||||
version 1.3.6 ( updated 5-31-2017 )
|
||||
- Updated Monarch to support the latest changes to the Facebook API.
|
||||
* monarch.php
|
||||
|
||||
version 1.3.5 ( updated 5-11-2017 )
|
||||
- Fixed an error that caused update notifications to fail when the latest version of Monarch was used with an old version of Divi.
|
||||
* monarch.php
|
||||
|
||||
version 1.3.4 ( updated 4-26-2017 )
|
||||
- Fixed error that occured on websites running PHP 5.2.
|
||||
- Fixed error that occured when updating plugins for some customers.
|
||||
* core/components/Updates.php
|
||||
* core/functions.php
|
||||
* core/main_functions.php
|
||||
* core/init.php
|
||||
|
||||
version 1.3.3 ( updated 4-25-2017 )
|
||||
- Updated Monarch with new core/ structure.
|
||||
- Updated Facebook open graph to version 2.8
|
||||
- Updated Delicious URL to the new version.
|
||||
- An admin notice will now be displayed when an API needs re-authorization due to API updates.
|
||||
- Added RTL support for the Monarch dashboard.
|
||||
- Fixed a bug that allowed any empty @ symbol to be added when sharing via Twitter.
|
||||
- Removed nofollow attribute that was mistakenly added to the data-social_link div.
|
||||
- Removed FriendFeed from the list of available networks.
|
||||
- Fixed a bug where media icons were not positioned correctly in some cases.
|
||||
- Added validation to manual share count input fields in the Monarch dashboard.
|
||||
- Added support for additional post types when choosing where social sharing buttons will appear.
|
||||
- Fixed broken Vkontakte API.
|
||||
- Added support for Vkontakte groups and public pages.
|
||||
- Fixed a design conflict between Divi gallery hover icons and the On Media sharing location in Monarch.
|
||||
- Fixed a bug that caused Monarch settings import to fail in some cases.
|
||||
* monarch.php
|
||||
* css/admin-rtl.css
|
||||
* css/style.css
|
||||
* includes/monarch_options.php
|
||||
* js/custom.js
|
||||
* js/admin.js
|
||||
* core/*
|
||||
|
||||
version 1.3.2 ( updated 08-15-2016 )
|
||||
- Fixed settings page font issues in WordPress 4.6
|
||||
* monarch.php
|
||||
* css/admin.css
|
||||
* core/admin/css/core.css
|
||||
* core/functions.php
|
||||
|
||||
version 1.3.1 ( updated 06-21-2016 )
|
||||
- Fixed the issue with Inline Sharing buttons jumping on page load
|
||||
- Fixed the issue with wrong hover effect for Outlook and Linkedin circle icons
|
||||
* css/style.css
|
||||
- Fixed an SQL error that showed up on posts/pages sharing stats page in some cases
|
||||
- Fixed the issue with "Display on Home" option working incorrectly with some themes
|
||||
* monarch.php
|
||||
|
||||
version 1.3 ( updated 05-16-2016 )
|
||||
- Fixed some issues with Facebook API calls
|
||||
* monarch.php
|
||||
|
||||
version 1.2.9 ( updated 05-10-2016 )
|
||||
- Updated core submodule to latest versions (Fonts files were moved to /core. If you are currently calling these font files, your CSS files should be updated with new file paths).
|
||||
* /core
|
||||
- Updated Google+ icon to match the new Google+ logo & branding guidlines.
|
||||
* core/admin/fonts
|
||||
- Updated Facebook follow counts to handle change in latest API version
|
||||
* monarch.php
|
||||
|
||||
version 1.2.8 ( updated 04-13-2016 )
|
||||
- Fixed an issue that caused theme updates to fail when Bloom, Monarch or the Divi Builder were installed.
|
||||
* core/admin/includes/class-updates.php
|
||||
|
||||
version 1.2.7.3 ( updated 04-12-2016 )
|
||||
- Added option to configure auto updates from the Plugin Settings
|
||||
* monarch.php
|
||||
* css/admin.css
|
||||
* includes/monarch_options.php
|
||||
* js/admin.js
|
||||
* /core
|
||||
- Fixed the issue with Linkedin wrong followers count
|
||||
* monarch.php
|
||||
|
||||
version 1.2.7.2 ( updated 02-26-2016 )
|
||||
- Fixed the issue with Facebook counts, not working properly
|
||||
* monarch.php
|
||||
|
||||
version 1.2.7.1 ( updated 02-18-2016 )
|
||||
- Fixed the issue with meta box settings, not being loaded properly for non-admin users
|
||||
* monarch.php
|
||||
|
||||
version 1.2.7 ( updated 02-17-2016 )
|
||||
- IMPORTANT: Fixed critical privilege escalation security vulnerability that, if properly exploited, could allow unprivileged registered WordPress users to modify plugin settings.
|
||||
* For more detailed information, please refer to the full public disclosure that was emailed to all customers on 2-17-2016: http://bit.ly/1Q9P13N
|
||||
|
||||
version 1.2.6 ( 11-23-2015 )
|
||||
- Fixed warning messages, displayed on a fresh installation
|
||||
- Twitter Share counts: Removed a request to an outdated endpoint
|
||||
* monarch.php
|
||||
|
||||
version 1.2.5 ( 09-09-2015 )
|
||||
- Fixed Facebook Follow count
|
||||
* monarch.php
|
||||
|
||||
version 1.2.4 ( 08-18-2015 )
|
||||
- GitHub: Fixed the issue with followers count for Organizations
|
||||
- LinkedIn: Fixed the issues with followers count retrieval from linkedin network
|
||||
- Pinterest: Fixed the issue with followers count in some cases
|
||||
- Fixed the issue with quotes encoding in post title
|
||||
- Fixed the issue with reset of share counts to 0 sometimes
|
||||
- Fixed the issue with HTML tags in title when sharing
|
||||
- Fixed the issue with sharing URL for buddypress pages
|
||||
- Fixed the issue with localization of some strings in Dashboard
|
||||
- Fixed the issue when Open Sans font loaded multiple times if Bloom and/or Divi was enabled
|
||||
- Added localization for the "k" and "Mil" suffixes
|
||||
* monarch.php
|
||||
- Twitter: Fixed the issue with OAuthException class conflicts with some plugins
|
||||
* includes/oauth.php
|
||||
- YouTube: Added YouTube API v3 support
|
||||
* monarch.php
|
||||
* includes/monarch_options.php
|
||||
- Fixed the issue with circle icons animation
|
||||
* css/style.css
|
||||
- Fixed WP_Widget class constructor warning message in WordPress 4.3
|
||||
* includes/monarch-widget.php
|
||||
- Added WPML support
|
||||
* includes/monarch_options.php
|
||||
* monarch.php
|
||||
- "On media" location is supported on Product post type pages now
|
||||
* includes/monarch_options.php
|
||||
* js/custom.js
|
||||
* monarch.php
|
||||
- Added ability to set an empty title for the widget
|
||||
* includes/monarch-widget.php
|
||||
- Improved visibility of API settings in Dashboard, depending on selected networks
|
||||
* css/admin.css
|
||||
* includes/monarch_options.php
|
||||
* js/admin.js
|
||||
* monarch.php
|
||||
- Added ability to filter the stats by location on Stats Page
|
||||
* css/admin.css
|
||||
* js/admin.js
|
||||
* js/custom.js
|
||||
* monarch.php
|
||||
|
||||
version 1.2.3 ( 05-02-2015 )
|
||||
- Integrated Facebook API changes. Due to changes in Facebook's API, Monarch must be authorized to obtain follow/share counts from Facebook. Please get an App ID and App Secret from Facebook.
|
||||
* includes/monarch_options.php
|
||||
* js/admin.js
|
||||
* monarch.php
|
||||
- Updated localization files
|
||||
* languages/Monarch-en_US.po
|
||||
* languages/Monarch-en_US.mo
|
||||
|
||||
version 1.2.2 ( 04-21-2015 )
|
||||
- Fixed the issue with "loading icon" visibility in WordPress 4.2
|
||||
* css/admin.css
|
||||
* js/admin.js
|
||||
|
||||
version 1.2.1 ( 02-19-2015 )
|
||||
- Added support for all Pinterest data formats
|
||||
- Fixed the issue with disabled "Share Count" option, visible on the mobile version
|
||||
- Fixed the issue with Like count, not displaying inside the mobile sidebar
|
||||
* monarch.php
|
||||
- Added alt attribute ( alternate text ) to images in the Pinterest picker
|
||||
* js/custom.js
|
||||
|
||||
version 1.2 ( 02-05-2015 )
|
||||
|
||||
- Monarch widget: Fixed the issue with likes count error
|
||||
* monarch.php
|
||||
- Added option for Sidebar on Right Browser Edge:
|
||||
* css/style.css
|
||||
* includes/monarch_options.php
|
||||
* monarch.php
|
||||
- Added a "Home" Option Within The Post Type Settings Of All Locations
|
||||
* includes/monarch_options.php
|
||||
* monarch.php
|
||||
- Added All Time Stats Graph
|
||||
* css/admin.css
|
||||
* js/admin.js
|
||||
* monarch.php
|
||||
- Added Twitter Followers Auto Count
|
||||
* includes/monarch_options.php
|
||||
* includes/oauth.php
|
||||
* includes/twitter_auth.php
|
||||
* js/admin.js
|
||||
* monarch.php
|
||||
- Added Pinterest Followers Auto Count
|
||||
- Added YouTube Api Support
|
||||
- Improved YouTube response handling
|
||||
- Fixed the issue with Pinterest icon, conflicting with the official Pinterest plugin icon
|
||||
- Fixed the issue with wrong Google+ share counts
|
||||
- Fixed the issue with Twitter sharing link on mobile devices
|
||||
* monarch.php
|
||||
- Added Stats Meta Box
|
||||
* css/stats-meta-styles.css
|
||||
* js/monarch-post-meta.js
|
||||
* monarch.php
|
||||
- Added "All Networks" Front-end Icon
|
||||
* css/fonts
|
||||
* css/style.css
|
||||
* includes/monarch_options.php
|
||||
* monarch.php
|
||||
* js/custom.js
|
||||
- Added "After Inactivity" Trigger
|
||||
- Added "After Comment" Trigger To Fly-In & Pop-Up
|
||||
- Added "Percentage Down The Page" trigger to Fly-In & Pop-Up
|
||||
- Added "After WooCommerce Purchase" Trigger To Fly-In & Pop-Up
|
||||
* includes/monarch_options.php
|
||||
* js/custom.js
|
||||
* js/idle-timer.js
|
||||
* monarch.php
|
||||
- Added Fadein/FadeOut Animation To Popup Overlay
|
||||
* css/style.css
|
||||
* js/custom.js
|
||||
- Fixed the issue with monarch widget class that had no width defined
|
||||
* css/style.css
|
||||
- Added Highest performing posts to stats
|
||||
* css/admin.css
|
||||
* monarch.php
|
||||
|
||||
version 1.1.2 ( 11-21-2014 )
|
||||
- Fixed the issue with override settings that were not saved correctly
|
||||
- Fixed the issue with incorrectly encoded symbols in the sharing popup window
|
||||
- Fixed the issue with a backslash displayed before apostrophes in popup/flyin titles and descriptions
|
||||
- Fixed some issues with the Contact Form module in the Divi theme
|
||||
- Counters display 1 Mil ( 1 million ) as opposed to 1000k now
|
||||
* monarch.php
|
||||
- Fixed the issue with image size / alignment inside of the media shortcode
|
||||
- Fixed styling issues with some themes
|
||||
* css/style.css
|
||||
* js/custom.js
|
||||
- Pinterest Modal window: added an error message if there are no images on a page, improved functionality
|
||||
- Added "Hide/Show Sidebar" button
|
||||
* css/style.css
|
||||
* js/custom.js
|
||||
* monarch.php
|
||||
- Improved Auto Width styles, auto width buttons remain auto width on mobile.
|
||||
* css/style.css
|
||||
|
||||
version 1.1.1 ( 10-28-2014 )
|
||||
- Fixed the issue with page url, not working properly, when some additional information was appended to it.
|
||||
* js/custom.js
|
||||
|
||||
version 1.1 ( 10-24-2014 )
|
||||
- Fixed Pinterest Modal Images visibility issue
|
||||
- Fixed styling issues
|
||||
- Fixed OpenSans typo - the font was not being used
|
||||
* css/style.css
|
||||
- Added % Height to "Add Network" modal window
|
||||
* css/admin.css
|
||||
* js/admin.js
|
||||
- Fixed the issue with cached share counts
|
||||
- Fixed Pinterest modal warning message, when no networks were selected
|
||||
* monarch.php
|
||||
- Fixed the issue with automatic share counts, not properly calculated after a comment is made
|
||||
* js/custom.js
|
||||
* monarch.php
|
||||
|
||||
version 1.0 ( 10-22-2014 )
|
||||
|
||||
- Initial release
|
||||
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"
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user