Compare commits
62 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d79bc37d3 | ||
|
|
2fae3336ba | ||
|
|
cfb98c5139 | ||
|
|
b0260327c4 | ||
|
|
f65532e347 | ||
|
|
ff574b046c | ||
|
|
97c995b64c | ||
|
|
8361ec97e4 | ||
|
|
7a0bbc0acb | ||
|
|
66f5eca841 | ||
|
|
b53e6d1888 | ||
|
|
4b68fa8b60 | ||
|
|
54770c5a50 | ||
|
|
39fb2167f7 | ||
|
|
c33fef9c98 | ||
|
|
08a1117edf | ||
|
|
e14cbed56e | ||
|
|
56e2ab16cc | ||
|
|
d76d4b70f5 | ||
|
|
e223936a81 | ||
|
|
60d067c421 | ||
|
|
4102cf4688 | ||
|
|
dc977e6630 | ||
|
|
05deabd775 | ||
|
|
549ab4aa15 | ||
|
|
b189c71682 | ||
|
|
b909856933 | ||
|
|
5de9084901 | ||
|
|
384ef0b44c | ||
|
|
9307772dc3 | ||
|
|
730c71d103 | ||
|
|
5c710b96f5 | ||
|
|
fe63d0eadf | ||
|
|
a6ca95159a | ||
|
|
677d32fef5 | ||
|
|
14abd05969 | ||
|
|
2e680be34f | ||
|
|
fe29942bf4 | ||
|
|
c8fb717ac1 | ||
|
|
1ff7fcc913 | ||
|
|
419c32702a | ||
|
|
9b63714caa | ||
|
|
f034233607 | ||
|
|
be6fcb51b6 | ||
|
|
e49a682f00 | ||
|
|
23ad3141a1 | ||
|
|
5347e374e0 | ||
|
|
1a49a628de | ||
|
|
8def256d7e | ||
|
|
1cd8e6bad7 | ||
|
|
7a03c0db25 | ||
|
|
e7e3657d1f | ||
|
|
734dfcc9bc | ||
|
|
b0db15099d | ||
|
|
6fbd2369ba | ||
|
|
f4a6674eed | ||
|
|
c0567ad4f5 | ||
|
|
f146ee7e9f | ||
|
|
e606f4ce18 | ||
|
|
945b589a58 | ||
|
|
b18042c4a8 | ||
|
|
a9ff39104b |
@@ -1,5 +1,6 @@
|
||||
require: rubocop-performance
|
||||
AllCops:
|
||||
NewCops: enable
|
||||
TargetRubyVersion: 2.5
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
@@ -18,7 +19,7 @@ Metrics/ClassLength:
|
||||
Exclude:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Metrics/CyclomaticComplexity:
|
||||
Max: 8
|
||||
Max: 10
|
||||
Metrics/MethodLength:
|
||||
Max: 20
|
||||
Exclude:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
if ENV['GITHUB_ACTION']
|
||||
require 'simplecov-lcov'
|
||||
@@ -15,4 +16,4 @@ SimpleCov.start do
|
||||
|
||||
add_filter '/spec/'
|
||||
add_filter 'helper'
|
||||
end
|
||||
end
|
||||
|
||||
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
|
||||
|
||||
24
README.md
24
README.md
@@ -7,10 +7,10 @@
|
||||
<h3 align="center">WPScan</h3>
|
||||
|
||||
<p align="center">
|
||||
WordPress Vulnerability Scanner
|
||||
WordPress Security Scanner
|
||||
<br>
|
||||
<br>
|
||||
<a href="https://wpscan.org/" title="homepage" target="_blank">Homepage</a> - <a href="https://wpscan.io/" title="wpscan.io" target="_blank">WPScan.io</a> - <a href="https://wpvulndb.com/" title="vulnerability database" target="_blank">Vulnerability Database</a> - <a href="https://wordpress.org/plugins/wpscan/" title="wordpress plugin" target="_blank">WordPress Plugin</a>
|
||||
<a href="https://wpscan.org/" title="homepage" target="_blank">Homepage</a> - <a href="https://wpscan.io/" title="wpscan.io" target="_blank">WPScan.io</a> - <a href="https://wpvulndb.com/" title="vulnerability database" target="_blank">Vulnerability Database</a> - <a href="https://wordpress.org/plugins/wpscan/" title="wordpress security plugin" target="_blank">WordPress Security Plugin</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
@@ -31,7 +31,11 @@
|
||||
- RubyGems - Recommended: latest
|
||||
- Nokogiri might require packages to be installed via your package manager depending on your OS, see https://nokogiri.org/tutorials/installing_nokogiri.html
|
||||
|
||||
### From RubyGems (Recommended)
|
||||
### In a Pentesting distribution
|
||||
|
||||
When using a pentesting distubution (such as Kali Linux), it is recommended to install/update wpscan via the package manager if available.
|
||||
|
||||
### From RubyGems
|
||||
|
||||
```shell
|
||||
gem install wpscan
|
||||
@@ -39,18 +43,6 @@ gem install wpscan
|
||||
|
||||
On MacOSX, if a ```Gem::FilePermissionError``` is raised due to the Apple's System Integrity Protection (SIP), either install RVM and install wpscan again, or run ```sudo gem install -n /usr/local/bin wpscan``` (see [#1286](https://github.com/wpscanteam/wpscan/issues/1286))
|
||||
|
||||
### From sources (NOT Recommended)
|
||||
|
||||
Prerequisites: Git
|
||||
|
||||
```shell
|
||||
git clone https://github.com/wpscanteam/wpscan
|
||||
|
||||
cd wpscan/
|
||||
|
||||
bundle install && rake install
|
||||
```
|
||||
|
||||
# Updating
|
||||
|
||||
You can update the local database by using ```wpscan --update```
|
||||
@@ -77,6 +69,8 @@ docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u1-1
|
||||
|
||||
# Usage
|
||||
|
||||
Full user documentation can be found here; https://github.com/wpscanteam/wpscan/wiki/WPScan-User-Documentation
|
||||
|
||||
```wpscan --url blog.tld``` This will scan the blog using default options with a good compromise between speed and accuracy. For example, the plugins will be checked passively but their version with a mixed detection mode (passively + aggressively). Potential config backup files will also be checked, along with other interesting findings.
|
||||
|
||||
If a more stealthy approach is required, then ```wpscan --stealthy --url blog.tld``` can be used.
|
||||
|
||||
@@ -23,27 +23,32 @@ module WPScan
|
||||
]
|
||||
end
|
||||
|
||||
def run
|
||||
return unless ParsedCli.passwords
|
||||
|
||||
if user_interaction?
|
||||
output('@info',
|
||||
msg: "Performing password attack on #{attacker.titleize} against #{users.size} user/s")
|
||||
end
|
||||
|
||||
attack_opts = {
|
||||
def attack_opts
|
||||
@attack_opts ||= {
|
||||
show_progression: user_interaction?,
|
||||
multicall_max_passwords: ParsedCli.multicall_max_passwords
|
||||
}
|
||||
end
|
||||
|
||||
def run
|
||||
return unless ParsedCli.passwords
|
||||
|
||||
begin
|
||||
found = []
|
||||
|
||||
attacker.attack(users, passwords(ParsedCli.passwords), attack_opts) do |user|
|
||||
if user_interaction?
|
||||
output('@info',
|
||||
msg: "Performing password attack on #{attacker.titleize} against #{users.size} user/s")
|
||||
end
|
||||
|
||||
attacker.attack(users, ParsedCli.passwords, attack_opts) do |user|
|
||||
found << user
|
||||
|
||||
attacker.progress_bar.log("[SUCCESS] - #{user.username} / #{user.password}")
|
||||
end
|
||||
rescue Error::NoLoginInterfaceDetected => e
|
||||
# TODO: Maybe output that in JSON as well.
|
||||
output('@notice', msg: e.to_s) if user_interaction?
|
||||
ensure
|
||||
output('users', users: found)
|
||||
end
|
||||
@@ -65,6 +70,8 @@ module WPScan
|
||||
|
||||
case ParsedCli.password_attack
|
||||
when :wp_login
|
||||
raise Error::NoLoginInterfaceDetected unless target.login_url
|
||||
|
||||
Finders::Passwords::WpLogin.new(target)
|
||||
when :xmlrpc
|
||||
raise Error::XMLRPCNotDetected unless xmlrpc
|
||||
@@ -82,7 +89,7 @@ module WPScan
|
||||
if xmlrpc&.enabled? &&
|
||||
xmlrpc.available_methods.include?('wp.getUsersBlogs') &&
|
||||
xmlrpc.method_call('wp.getUsersBlogs', [SecureRandom.hex[0, 6], SecureRandom.hex[0, 4]])
|
||||
.run.body !~ /XML\-RPC services are disabled/
|
||||
.run.body !~ /XML-RPC services are disabled/
|
||||
|
||||
true
|
||||
else
|
||||
@@ -100,8 +107,10 @@ module WPScan
|
||||
else
|
||||
Finders::Passwords::XMLRPC.new(xmlrpc)
|
||||
end
|
||||
else
|
||||
elsif target.login_url
|
||||
Finders::Passwords::WpLogin.new(target)
|
||||
else
|
||||
raise Error::NoLoginInterfaceDetected
|
||||
end
|
||||
end
|
||||
|
||||
@@ -113,15 +122,6 @@ module WPScan
|
||||
acc << Model::User.new(elem.chomp)
|
||||
end
|
||||
end
|
||||
|
||||
# @param [ String ] wordlist_path
|
||||
#
|
||||
# @return [ Array<String> ]
|
||||
def passwords(wordlist_path)
|
||||
@passwords ||= File.open(wordlist_path).reduce([]) do |acc, elem|
|
||||
acc << elem.chomp
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -40,7 +40,7 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
def potential_urls(opts = {})
|
||||
urls = {}
|
||||
domain_name = PublicSuffix.domain(target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
domain_name = (PublicSuffix.domain(target.uri.host) || target.uri.host)[/(^[\w|-]+)/, 1]
|
||||
|
||||
File.open(opts[:list]).each_with_index do |path, index|
|
||||
path.gsub!('{domain_name}', domain_name)
|
||||
|
||||
@@ -7,7 +7,7 @@ module WPScan
|
||||
class MuPlugins < CMSScanner::Finders::Finder
|
||||
# @return [ InterestingFinding ]
|
||||
def passive(_opts = {})
|
||||
pattern = %r{#{target.content_dir}/mu\-plugins/}i
|
||||
pattern = %r{#{target.content_dir}/mu-plugins/}i
|
||||
|
||||
target.in_scope_uris(target.homepage_res, '(//@href|//@src)[contains(., "mu-plugins")]') do |uri|
|
||||
next unless uri.path&.match?(pattern)
|
||||
|
||||
@@ -12,8 +12,8 @@ module WPScan
|
||||
location = res.headers_hash['location']
|
||||
|
||||
return unless [200, 302].include?(res.code)
|
||||
return if res.code == 302 && location =~ /wp-login\.php\?action=register/
|
||||
return unless res.code == 200 || res.code == 302 && location =~ /wp-signup\.php/
|
||||
return if res.code == 302 && location&.include?('wp-login.php?action=register')
|
||||
return unless res.code == 200 || res.code == 302 && location&.include?('wp-signup.php')
|
||||
|
||||
target.multisite = true
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ module WPScan
|
||||
|
||||
def passive_from_css_href(res, opts)
|
||||
target.in_scope_uris(res, '//link/@href[contains(., "style.css")]') do |uri|
|
||||
next unless uri.path =~ %r{/themes/([^\/]+)/style.css\z}i
|
||||
next unless uri.path =~ %r{/themes/([^/]+)/style.css\z}i
|
||||
|
||||
return create_theme(Regexp.last_match[1], uri.to_s, opts)
|
||||
end
|
||||
@@ -33,7 +33,7 @@ module WPScan
|
||||
code = tag.text.to_s
|
||||
next if code.empty?
|
||||
|
||||
next unless code =~ %r{#{item_code_pattern('themes')}\\?/style\.css[^"'\( ]*}i
|
||||
next unless code =~ %r{#{item_code_pattern('themes')}\\?/style\.css[^"'( ]*}i
|
||||
|
||||
return create_theme(Regexp.last_match[1], Regexp.last_match[0].strip, opts)
|
||||
end
|
||||
|
||||
@@ -13,7 +13,7 @@ module WPScan
|
||||
|
||||
def valid_credentials?(response)
|
||||
response.code == 302 &&
|
||||
[*response.headers['Set-Cookie']]&.any? { |cookie| cookie =~ /wordpress_logged_in_/i }
|
||||
Array(response.headers['Set-Cookie'])&.any? { |cookie| cookie =~ /wordpress_logged_in_/i }
|
||||
end
|
||||
|
||||
def errored_response?(response)
|
||||
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def valid_credentials?(response)
|
||||
response.code == 200 && response.body =~ /blogName/
|
||||
response.code == 200 && response.body.include?('blogName')
|
||||
end
|
||||
|
||||
def errored_response?(response)
|
||||
|
||||
@@ -22,8 +22,30 @@ module WPScan
|
||||
target.multi_call(methods, cache_ttl: 0).run
|
||||
end
|
||||
|
||||
# @param [ IO ] file
|
||||
# @param [ Integer ] passwords_size
|
||||
# @return [ Array<String> ] The passwords from the last checked position in the file until there are
|
||||
# passwords_size passwords retrieved
|
||||
def passwords_from_wordlist(file, passwords_size)
|
||||
pwds = []
|
||||
added_pwds = 0
|
||||
|
||||
return pwds if passwords_size.zero?
|
||||
|
||||
# Make sure that the main code does not call #sysseek or #count etc
|
||||
# otherwise the file descriptor will be set to somwehere else
|
||||
file.each_line(chomp: true) do |line|
|
||||
pwds << line
|
||||
added_pwds += 1
|
||||
|
||||
break if added_pwds == passwords_size
|
||||
end
|
||||
|
||||
pwds
|
||||
end
|
||||
|
||||
# @param [ Array<Model::User> ] users
|
||||
# @param [ Array<String> ] passwords
|
||||
# @param [ String ] wordlist_path
|
||||
# @param [ Hash ] opts
|
||||
# @option opts [ Boolean ] :show_progression
|
||||
# @option opts [ Integer ] :multicall_max_passwords
|
||||
@@ -33,18 +55,22 @@ module WPScan
|
||||
# TODO: Make rubocop happy about metrics etc
|
||||
#
|
||||
# rubocop:disable all
|
||||
def attack(users, passwords, opts = {})
|
||||
wordlist_index = 0
|
||||
def attack(users, wordlist_path, opts = {})
|
||||
checked_passwords = 0
|
||||
wordlist = File.open(wordlist_path)
|
||||
wordlist_size = wordlist.count
|
||||
max_passwords = opts[:multicall_max_passwords]
|
||||
current_passwords_size = passwords_size(max_passwords, users.size)
|
||||
|
||||
create_progress_bar(total: (passwords.size / current_passwords_size.round(1)).ceil,
|
||||
create_progress_bar(total: (wordlist_size / current_passwords_size.round(1)).ceil,
|
||||
show_progression: opts[:show_progression])
|
||||
|
||||
wordlist.sysseek(0) # reset the descriptor to the beginning of the file as it changed with #count
|
||||
|
||||
loop do
|
||||
current_users = users.select { |user| user.password.nil? }
|
||||
current_passwords = passwords[wordlist_index, current_passwords_size]
|
||||
wordlist_index += current_passwords_size
|
||||
current_users = users.select { |user| user.password.nil? }
|
||||
current_passwords = passwords_from_wordlist(wordlist, current_passwords_size)
|
||||
checked_passwords += current_passwords_size
|
||||
|
||||
break if current_users.empty? || current_passwords.nil? || current_passwords.empty?
|
||||
|
||||
@@ -76,16 +102,19 @@ module WPScan
|
||||
break
|
||||
end
|
||||
|
||||
progress_bar.total = progress_bar.progress + ((passwords.size - wordlist_index) / current_passwords_size.round(1)).ceil
|
||||
begin
|
||||
progress_bar.total = progress_bar.progress + ((wordlist_size - checked_passwords) / current_passwords_size.round(1)).ceil
|
||||
rescue ProgressBar::InvalidProgressError
|
||||
end
|
||||
end
|
||||
end
|
||||
# Maybe a progress_bar.stop ?
|
||||
end
|
||||
# rubocop:disable all
|
||||
# rubocop:enable all
|
||||
|
||||
def passwords_size(max_passwords, users_size)
|
||||
return 1 if max_passwords < users_size
|
||||
return 0 if users_size == 0
|
||||
return 0 if users_size.zero?
|
||||
|
||||
max_passwords / users_size
|
||||
end
|
||||
@@ -94,9 +123,13 @@ module WPScan
|
||||
def check_and_output_errors(res)
|
||||
progress_bar.log("Incorrect response: #{res.code} / #{res.return_message}") unless res.code == 200
|
||||
|
||||
progress_bar.log('Parsing error, might be caused by a too high --max-passwords value (such as >= 2k)') if res.body =~ /parse error. not well formed/i
|
||||
if /parse error. not well formed/i.match?(res.body)
|
||||
progress_bar.log('Parsing error, might be caused by a too high --max-passwords value (such as >= 2k)')
|
||||
end
|
||||
|
||||
progress_bar.log('The requested method is not supported') if res.body =~ /requested method [^ ]+ does not exist/i
|
||||
return unless /requested method [^ ]+ does not exist/i.match?(res.body)
|
||||
|
||||
progress_bar.log('The requested method is not supported')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -48,7 +48,7 @@ module WPScan
|
||||
#
|
||||
# @return [ String, nil ] The version number detected from the stable tag
|
||||
def from_stable_tag(body)
|
||||
return unless body =~ /\b(?:stable tag|version):\s*(?!trunk)([0-9a-z\.-]+)/i
|
||||
return unless body =~ /\b(?:stable tag|version):\s*(?!trunk)([0-9a-z.-]+)/i
|
||||
|
||||
number = Regexp.last_match[1]
|
||||
|
||||
@@ -59,7 +59,7 @@ module WPScan
|
||||
#
|
||||
# @return [ String, nil ] The best version number detected from the changelog section
|
||||
def from_changelog_section(body)
|
||||
extracted_versions = body.scan(%r{[=]+\s+(?:v(?:ersion)?\s*)?([0-9\.-]+)[ \ta-z0-9\(\)\.\-\/]*[=]+}i)
|
||||
extracted_versions = body.scan(%r{=+\s+(?:v(?:ersion)?\s*)?([0-9.-]+)[ \ta-z0-9().\-/]*=+}i)
|
||||
|
||||
return if extracted_versions.nil? || extracted_versions.empty?
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ module WPScan
|
||||
|
||||
# @return [ Version ]
|
||||
def style_version
|
||||
return unless Browser.get(target.style_url).body =~ /Version:[\t ]*(?!trunk)([0-9a-z\.-]+)/i
|
||||
return unless Browser.get(target.style_url).body =~ /Version:[\t ]*(?!trunk)([0-9a-z.-]+)/i
|
||||
|
||||
Model::Version.new(
|
||||
Regexp.last_match[1],
|
||||
|
||||
@@ -6,7 +6,7 @@ require_relative 'users/oembed_api'
|
||||
require_relative 'users/rss_generator'
|
||||
require_relative 'users/author_id_brute_forcing'
|
||||
require_relative 'users/login_error_messages'
|
||||
require_relative 'users/yoast_seo_author_sitemap.rb'
|
||||
require_relative 'users/yoast_seo_author_sitemap'
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
|
||||
@@ -37,7 +37,7 @@ module WPScan
|
||||
# usernames from the potential Users found
|
||||
unames = opts[:found].map(&:username)
|
||||
|
||||
[*opts[:list]].each { |uname| unames << uname.chomp }
|
||||
Array(opts[:list]).each { |uname| unames << uname.chomp }
|
||||
|
||||
unames.uniq
|
||||
end
|
||||
|
||||
@@ -13,7 +13,7 @@ module WPScan
|
||||
urls.each do |url|
|
||||
res = Browser.get_and_follow_location(url)
|
||||
|
||||
next unless res.code == 200 && res.body =~ /<dc\:creator>/i
|
||||
next unless res.code == 200 && res.body =~ /<dc:creator>/i
|
||||
|
||||
potential_usernames = []
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ module WPScan
|
||||
found = []
|
||||
|
||||
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
|
||||
username = user_tag.text.to_s[%r{/author/([^\/]+)/}, 1]
|
||||
username = user_tag.text.to_s[%r{/author/([^/]+)/}, 1]
|
||||
|
||||
next unless username && !username.strip.empty?
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ module WPScan
|
||||
#
|
||||
# @return [ Regexp ]
|
||||
def item_code_pattern(type)
|
||||
@item_code_pattern ||= %r{["'\( ]#{item_url_pattern(type)}([^\\\/\)"']+)}i
|
||||
@item_code_pattern ||= %r{["'( ]#{item_url_pattern(type)}([^\\/)"']+)}i
|
||||
end
|
||||
|
||||
# @param [ String ] type
|
||||
@@ -66,9 +66,9 @@ module WPScan
|
||||
item_url = type == 'plugins' ? target.plugins_url : target.content_url
|
||||
|
||||
url = /#{item_url.gsub(/\A(?:https?)/i, 'https?').gsub('/', '\\\\\?\/')}/i
|
||||
item_dir = %r{(?:#{url}|\\?\/#{item_dir.gsub('/', '\\\\\?\/')}\\?/)}i
|
||||
item_dir = %r{(?:#{url}|\\?/#{item_dir.gsub('/', '\\\\\?\/')}\\?/)}i
|
||||
|
||||
type == 'plugins' ? item_dir : %r{#{item_dir}#{type}\\?\/}i
|
||||
type == 'plugins' ? item_dir : %r{#{item_dir}#{type}\\?/}i
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -38,7 +38,7 @@ module WPScan
|
||||
|
||||
# @return [ Array<String> ]
|
||||
def potential_readme_filenames
|
||||
@potential_readme_filenames ||= [*(DB::DynamicFinders::Plugin.df_data.dig(slug, 'Readme', 'path') || super)]
|
||||
@potential_readme_filenames ||= Array((DB::DynamicFinders::Plugin.df_data.dig(slug, 'Readme', 'path') || super))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -45,7 +45,7 @@ module WPScan
|
||||
# @return [ Theme ]
|
||||
def parent_theme
|
||||
return unless template
|
||||
return unless style_body =~ /^@import\surl\(["']?([^"'\)]+)["']?\);\s*$/i
|
||||
return unless style_body =~ /^@import\surl\(["']?([^"')]+)["']?\);\s*$/i
|
||||
|
||||
opts = detection_opts.merge(
|
||||
style_url: url(Regexp.last_match[1]),
|
||||
@@ -101,7 +101,7 @@ module WPScan
|
||||
#
|
||||
# @return [ String ]
|
||||
def parse_style_tag(body, tag)
|
||||
value = body[/#{Regexp.escape(tag)}:[\t ]*([^\r\n\*]+)/i, 1]
|
||||
value = body[/#{Regexp.escape(tag)}:[\t ]*([^\r\n*]+)/i, 1]
|
||||
|
||||
value && !value.strip.empty? ? value.strip : nil
|
||||
end
|
||||
|
||||
@@ -40,9 +40,9 @@ module WPScan
|
||||
def rce_132_vuln
|
||||
Vulnerability.new(
|
||||
'Timthumb <= 1.32 Remote Code Execution',
|
||||
{ exploitdb: ['17602'] },
|
||||
'RCE',
|
||||
'1.33'
|
||||
references: { exploitdb: ['17602'] },
|
||||
type: 'RCE',
|
||||
fixed_in: '1.33'
|
||||
)
|
||||
end
|
||||
|
||||
@@ -50,12 +50,12 @@ module WPScan
|
||||
def rce_webshot_vuln
|
||||
Vulnerability.new(
|
||||
'Timthumb <= 2.8.13 WebShot Remote Code Execution',
|
||||
{
|
||||
references: {
|
||||
url: ['http://seclists.org/fulldisclosure/2014/Jun/117', 'https://github.com/wpscanteam/wpscan/issues/519'],
|
||||
cve: '2014-4663'
|
||||
},
|
||||
'RCE',
|
||||
'2.8.14'
|
||||
type: 'RCE',
|
||||
fixed_in: '2.8.14'
|
||||
)
|
||||
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
|
||||
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
| <%= critical_icon %> Title: <%= @v.title %>
|
||||
<% if @v.cvss -%>
|
||||
| CVSS: <%= @v.cvss[:score] %> (<%= @v.cvss[:vector] %>)
|
||||
<% end -%>
|
||||
<% if @v.fixed_in -%>
|
||||
| Fixed in: <%= @v.fixed_in %>
|
||||
<% end -%>
|
||||
|
||||
@@ -19,6 +19,9 @@
|
||||
<% vulns.each_with_index do |v, index| -%>
|
||||
{
|
||||
"title": <%= v.title.to_json %>,
|
||||
<% if v.cvss -%>
|
||||
"cvss": <%= v.cvss.to_json %>,
|
||||
<% end -%>
|
||||
"fixed_in": <%= v.fixed_in.to_json %>,
|
||||
"references": <%= v.references.to_json %>
|
||||
}<% unless index == last_index -%>,<% end -%>
|
||||
|
||||
@@ -29,5 +29,11 @@ module WPScan
|
||||
' use the --scope option or make sure the --url value given is the correct one'
|
||||
end
|
||||
end
|
||||
|
||||
class NoLoginInterfaceDetected < Standard
|
||||
def to_s
|
||||
'Could not find a login interface to perform the password attack against'
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -11,7 +11,7 @@ module WPScan
|
||||
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super.merge(
|
||||
PARSER: nil, KEY: nil, PATTERN: /(?<v>\d+\.[\.\d]+)/, CONFIDENCE: 70
|
||||
PARSER: nil, KEY: nil, PATTERN: /(?<v>\d+\.[.\d]+)/, CONFIDENCE: 70
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(
|
||||
XPATH: nil, FILES: nil, PATTERN: /(?:v|ver|version)\=(?<v>\d+\.[\.\d]+)/i, CONFIDENCE_PER_OCCURENCE: 10
|
||||
XPATH: nil, FILES: nil, PATTERN: /(?:v|ver|version)=(?<v>\d+\.[.\d]+)/i, CONFIDENCE_PER_OCCURENCE: 10
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(
|
||||
XPATH: nil, PATTERN: /\A(?<v>\d+\.[\.\d]+)/, CONFIDENCE: 60
|
||||
XPATH: nil, PATTERN: /\A(?<v>\d+\.[.\d]+)/, CONFIDENCE: 60
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ module WPScan
|
||||
|
||||
# @return [ Hash ]
|
||||
def self.child_class_constants
|
||||
@child_class_constants ||= super().merge(PATTERN: /ver\=(?<v>\d+\.[\.\d]+)/i)
|
||||
@child_class_constants ||= super().merge(PATTERN: /ver=(?<v>\d+\.[.\d]+)/i)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ end
|
||||
#
|
||||
# @return [ Symbol ]
|
||||
def classify_slug(slug)
|
||||
classified = slug.to_s.gsub(/[^a-z\d\-]/i, '-').gsub(/\-{1,}/, '_').camelize.to_s
|
||||
classified = slug.to_s.gsub(/[^a-z\d\-]/i, '-').gsub(/-{1,}/, '_').camelize.to_s
|
||||
classified = "D_#{classified}" if /\d/.match?(classified[0])
|
||||
|
||||
classified.to_sym
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
module WPScan
|
||||
# References module (which should be included along with the CMSScanner::References)
|
||||
# to allow the use of the wpvulndb reference
|
||||
# to allow the use of the wpvulndb reference.
|
||||
module References
|
||||
extend ActiveSupport::Concern
|
||||
|
||||
|
||||
@@ -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.0'
|
||||
VERSION = '3.8.3'
|
||||
end
|
||||
|
||||
@@ -18,9 +18,10 @@ module WPScan
|
||||
|
||||
new(
|
||||
json_data['title'],
|
||||
references,
|
||||
json_data['vuln_type'],
|
||||
json_data['fixed_in']
|
||||
references: references,
|
||||
type: json_data['vuln_type'],
|
||||
fixed_in: json_data['fixed_in'],
|
||||
cvss: json_data['cvss']&.symbolize_keys
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -70,7 +70,7 @@ describe WPScan::Controller::Core do
|
||||
let(:cli_args) { "#{super()} --no-update" }
|
||||
|
||||
it 'raises an error' do
|
||||
expect { core.update_db_required? }. to raise_error(WPScan::Error::MissingDatabaseFile)
|
||||
expect { core.update_db_required? }.to raise_error(WPScan::Error::MissingDatabaseFile)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ describe WPScan::Controller::PasswordAttack do
|
||||
|
||||
describe '#users' do
|
||||
context 'when no --usernames' do
|
||||
it 'calles target.users' do
|
||||
it 'calls target.users' do
|
||||
expect(controller.target).to receive(:users)
|
||||
controller.users
|
||||
end
|
||||
@@ -40,10 +40,6 @@ describe WPScan::Controller::PasswordAttack do
|
||||
end
|
||||
end
|
||||
|
||||
describe '#passwords' do
|
||||
xit
|
||||
end
|
||||
|
||||
describe '#run' do
|
||||
context 'when no --passwords is supplied' do
|
||||
it 'does not run the attacker' do
|
||||
@@ -107,15 +103,34 @@ describe WPScan::Controller::PasswordAttack do
|
||||
end
|
||||
|
||||
describe '#attacker' do
|
||||
before do
|
||||
allow(controller.target).to receive(:sub_dir)
|
||||
controller.target.instance_variable_set(:@login_url, nil)
|
||||
end
|
||||
|
||||
context 'when --password-attack provided' do
|
||||
let(:cli_args) { "#{super()} --password-attack #{attack}" }
|
||||
|
||||
context 'when wp-login' do
|
||||
before { stub_request(:get, controller.target.url('wp-login.php')).to_return(status: status) }
|
||||
|
||||
let(:attack) { 'wp-login' }
|
||||
|
||||
it 'returns the correct object' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
context 'when available' do
|
||||
let(:status) { 200 }
|
||||
|
||||
it 'returns the correct object' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
end
|
||||
end
|
||||
|
||||
context 'when not available (404)' do
|
||||
let(:status) { 404 }
|
||||
|
||||
it 'raises an error' do
|
||||
expect { controller.attacker }.to raise_error(WPScan::Error::NoLoginInterfaceDetected)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -172,11 +187,26 @@ describe WPScan::Controller::PasswordAttack do
|
||||
|
||||
context 'when automatic detection' do
|
||||
context 'when xmlrpc_get_users_blogs_enabled? is false' do
|
||||
it 'returns the WpLogin' do
|
||||
before do
|
||||
expect(controller).to receive(:xmlrpc_get_users_blogs_enabled?).and_return(false)
|
||||
stub_request(:get, controller.target.url('wp-login.php')).to_return(status: status)
|
||||
end
|
||||
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
context 'when wp-login available' do
|
||||
let(:status) { 200 }
|
||||
|
||||
it 'returns the WpLogin' do
|
||||
expect(controller.attacker).to be_a WPScan::Finders::Passwords::WpLogin
|
||||
expect(controller.attacker.target).to be_a WPScan::Target
|
||||
end
|
||||
end
|
||||
|
||||
context 'when wp-login.php not available' do
|
||||
let(:status) { 404 }
|
||||
|
||||
it 'raises an error' do
|
||||
expect { controller.attacker }.to raise_error(WPScan::Error::NoLoginInterfaceDetected)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
end
|
||||
|
||||
it 'replace {domain_name} by its value' do
|
||||
it 'replaces {domain_name} by its value' do
|
||||
expect(finder.potential_urls(opts).keys).to eql %w[
|
||||
http://ex.lo/aa/ex.sql
|
||||
http://ex.lo/aa/wordpress.sql
|
||||
@@ -27,7 +27,7 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context "when #{sub_domain} sub-domain" do
|
||||
let(:url) { "https://#{sub_domain}.domain.tld" }
|
||||
|
||||
it 'replace {domain_name} by its correct value' do
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/domain.sql"
|
||||
end
|
||||
end
|
||||
@@ -36,7 +36,7 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context 'when multi-level tlds' do
|
||||
let(:url) { 'https://something.com.tr' }
|
||||
|
||||
it 'replace {domain_name} by its correct value' do
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include 'https://something.com.tr/something.sql'
|
||||
end
|
||||
end
|
||||
@@ -44,7 +44,7 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context 'when multi-level tlds and sub-domain' do
|
||||
let(:url) { 'https://dev.something.com.tr' }
|
||||
|
||||
it 'replace {domain_name} by its correct value' do
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include 'https://dev.something.com.tr/something.sql'
|
||||
end
|
||||
end
|
||||
@@ -52,10 +52,18 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
context 'when some weird stuff' do
|
||||
let(:url) { 'https://098f6bcd4621d373cade4e832627b4f6.aa-bb-ccc-dd.domain-test.com' }
|
||||
|
||||
it 'replace {domain_name} by its correct value' do
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/domain-test.sql"
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a non standard URL' do
|
||||
let(:url) { 'http://dc-2' }
|
||||
|
||||
it 'replaces {domain_name} by its correct value' do
|
||||
expect(finder.potential_urls(opts).keys).to include "#{url}/dc-2.sql"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#aggressive' do
|
||||
|
||||
@@ -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) } }
|
||||
|
||||
@@ -109,7 +109,7 @@ describe WPScan::Finders::PluginVersion::Readme do
|
||||
'a-lead-capture-contact-form-and-tab-button-by-awebvoicecom' => '3.1',
|
||||
'backup-scheduler' => '1.5.9',
|
||||
'release_date_slash' => '1.0.4'
|
||||
}. each do |file, version_number|
|
||||
}.each do |file, version_number|
|
||||
context "whith #{file}.txt" do
|
||||
it 'returns the expected version' do
|
||||
@file = "#{file}.txt"
|
||||
|
||||
@@ -202,11 +202,11 @@ describe WPScan::Model::Plugin do
|
||||
[
|
||||
WPScan::Vulnerability.new(
|
||||
'First Vuln <= 6.3.10 - LFI',
|
||||
{ wpvulndb: '1' },
|
||||
'LFI',
|
||||
'6.3.10'
|
||||
references: { wpvulndb: '1' },
|
||||
type: 'LFI',
|
||||
fixed_in: '6.3.10'
|
||||
),
|
||||
WPScan::Vulnerability.new('No Fixed In', wpvulndb: '2')
|
||||
WPScan::Vulnerability.new('No Fixed In', references: { wpvulndb: '2' })
|
||||
]
|
||||
end
|
||||
|
||||
|
||||
@@ -224,11 +224,11 @@ describe WPScan::Model::Theme do
|
||||
[
|
||||
WPScan::Vulnerability.new(
|
||||
'First Vuln',
|
||||
{ wpvulndb: '1' },
|
||||
'LFI',
|
||||
'6.3.10'
|
||||
references: { wpvulndb: '1' },
|
||||
type: 'LFI',
|
||||
fixed_in: '6.3.10'
|
||||
),
|
||||
WPScan::Vulnerability.new('No Fixed In', wpvulndb: '2')
|
||||
WPScan::Vulnerability.new('No Fixed In', references: { wpvulndb: '2' })
|
||||
]
|
||||
end
|
||||
|
||||
|
||||
@@ -55,31 +55,15 @@ describe WPScan::Model::WpVersion do
|
||||
expect(version).to be_vulnerable
|
||||
end
|
||||
|
||||
let(:all_vulns) do
|
||||
[
|
||||
WPScan::Vulnerability.new(
|
||||
'WP 3.8.1 - Vuln 1',
|
||||
{ wpvulndb: '1' },
|
||||
'SQLI'
|
||||
),
|
||||
WPScan::Vulnerability.new(
|
||||
'WP 3.8.1 - Vuln 2',
|
||||
{ url: %w[url-2 url-3], osvdb: %w[10], cve: %w[2014-0166], wpvulndb: '2' },
|
||||
nil,
|
||||
'3.8.2'
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
context 'when a signle vuln' do
|
||||
let(:number) { '3.8.1' }
|
||||
let(:number) { '3.8' }
|
||||
let(:db_data) { vuln_api_data_for('wordpresses/38') }
|
||||
|
||||
it 'returns the expected result' do
|
||||
@expected = [WPScan::Vulnerability.new(
|
||||
'WP 3.8 - Vuln 1',
|
||||
{ url: %w[url-4], wpvulndb: '3' },
|
||||
'AUTHBYPASS'
|
||||
references: { url: %w[url-4], wpvulndb: '3' },
|
||||
type: 'AUTHBYPASS'
|
||||
)]
|
||||
end
|
||||
end
|
||||
@@ -92,14 +76,14 @@ describe WPScan::Model::WpVersion do
|
||||
@expected = [
|
||||
WPScan::Vulnerability.new(
|
||||
'WP 3.8.1 - Vuln 1',
|
||||
{ wpvulndb: '1' },
|
||||
'SQLI'
|
||||
references: { wpvulndb: '1' },
|
||||
type: 'SQLI',
|
||||
cvss: { score: '5.4', vector: 'VECTOR' }
|
||||
),
|
||||
WPScan::Vulnerability.new(
|
||||
'WP 3.8.1 - Vuln 2',
|
||||
{ url: %w[url-2 url-3], cve: %w[2014-0166], wpvulndb: '2' },
|
||||
nil,
|
||||
'3.8.2'
|
||||
references: { url: %w[url-2 url-3], cve: %w[2014-0166], wpvulndb: '2' },
|
||||
fixed_in: '3.8.2'
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
5392
spec/fixtures/db/dynamic_finders.yml
vendored
5392
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -9,7 +9,11 @@
|
||||
"id" : 1,
|
||||
"vuln_type" : "SQLI",
|
||||
"published_date" : null,
|
||||
"fixed_in" : null
|
||||
"fixed_in" : null,
|
||||
"cvss": {
|
||||
"score": "5.4",
|
||||
"vector": "VECTOR"
|
||||
}
|
||||
},
|
||||
{
|
||||
"references" : {
|
||||
|
||||
2127
spec/fixtures/dynamic_finders/expected.yml
vendored
2127
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
13
spec/fixtures/dynamic_finders/plugin_version/24liveblog/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/24liveblog/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "liveblog24-live-blogging-tool-cgb-guten-block",
|
||||
"version": "2.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.0"
|
||||
}
|
||||
}
|
||||
1418
spec/fixtures/dynamic_finders/plugin_version/2fas/translation_file/languages/2fas-pt_BR.po
vendored
Normal file
1418
spec/fixtures/dynamic_finders/plugin_version/2fas/translation_file/languages/2fas-pt_BR.po
vendored
Normal file
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 ""
|
||||
@@ -0,0 +1,111 @@
|
||||
# Copyright (C) 2020 PRESSMAN
|
||||
# This file is distributed under the same license as the Admin User Control plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Admin User Control 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/admin-user-"
|
||||
"control\n"
|
||||
"POT-Creation-Date: 2020-05-18T02:23:41+00:00\n"
|
||||
"PO-Revision-Date: 2020-05-18 11:26+0900\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Domain: admin-user-control\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Admin User Control"
|
||||
msgstr "Admin User Control"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Control admin user in administration screens in real time."
|
||||
msgstr "管理画面にログインしているユーザーをリアルタイムで制御します。"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "PRESSMAN"
|
||||
msgstr "PRESSMAN"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.pressman.ne.jp"
|
||||
msgstr "https://www.pressman.ne.jp"
|
||||
|
||||
#: auc-login-monitor.php:22
|
||||
msgid "Logged in"
|
||||
msgstr "ログイン"
|
||||
|
||||
#: auc-maintenance.php:38 auc-maintenance.php:174
|
||||
msgid "Maintenance"
|
||||
msgstr "メンテナンス"
|
||||
|
||||
#: auc-maintenance.php:42 auc-maintenance.php:220
|
||||
msgid "maintenance_start_date"
|
||||
msgstr "メンテナンス開始日時"
|
||||
|
||||
#: auc-maintenance.php:59 auc-maintenance.php:221
|
||||
msgid "maintenance_end_date"
|
||||
msgstr "メンテナンス終了日時"
|
||||
|
||||
#: auc-maintenance.php:114
|
||||
msgid "Forced logout after 10 seconds because the maintenance start time"
|
||||
msgstr "メンテナンスの開始時刻になったため10秒後に強制ログアウトします"
|
||||
|
||||
#: auc-maintenance.php:115
|
||||
msgid "Scheduled maintenance end time"
|
||||
msgstr "メンテナンス終了予定時間"
|
||||
|
||||
#: auc-maintenance.php:175
|
||||
msgid "Add New Maintenance"
|
||||
msgstr "メンテナンスを追加"
|
||||
|
||||
#: auc-maintenance.php:176
|
||||
msgid "Edit Maintenance"
|
||||
msgstr "メンテナンスの編集"
|
||||
|
||||
#: auc-maintenance.php:246
|
||||
msgid "Latest maintenance information"
|
||||
msgstr "直近のメンテナンス情報"
|
||||
|
||||
#: auc-maintenance.php:269
|
||||
msgid "Click a title to display a detail."
|
||||
msgstr "タイトルをクリックすると詳細が表示されます。"
|
||||
|
||||
#: auc-maintenance.php:287
|
||||
msgid "No maintenance information"
|
||||
msgstr "メンテナンス情報がありません"
|
||||
|
||||
#: auc-notification.php:26
|
||||
msgid "New notification"
|
||||
msgstr "新しいお知らせがあります"
|
||||
|
||||
#: auc-notification.php:50
|
||||
msgid "Notification"
|
||||
msgstr "お知らせ"
|
||||
|
||||
#: auc-notification.php:51
|
||||
msgid "Add New Notification"
|
||||
msgstr "お知らせを追加"
|
||||
|
||||
#: auc-notification.php:52
|
||||
msgid "Edit Notification"
|
||||
msgstr "お知らせの編集"
|
||||
|
||||
#: auc-notification.php:70
|
||||
msgid "Latest notifications"
|
||||
msgstr "直近のお知らせ"
|
||||
|
||||
#: auc-notification.php:86
|
||||
msgid "Click a title to display a detail. If you read it, mark it as read."
|
||||
msgstr ""
|
||||
"タイトルをクリックすると詳細が表示されます。読んだら既読にしてください。"
|
||||
|
||||
#: auc-notification.php:91
|
||||
msgid "Mark as read"
|
||||
msgstr "既読にする"
|
||||
|
||||
#: auc-notification.php:113
|
||||
msgid "There is no notifications"
|
||||
msgstr "お知らせがありません"
|
||||
@@ -0,0 +1,73 @@
|
||||
# Copyright (C) 2020 Condless
|
||||
# This file is distributed under the same license as the Advanced Options for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Advanced Options for WooCommerce 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/advanced-options-"
|
||||
"for-woocommerce\n"
|
||||
"Language-Team: Condless <info@condless.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-24 08:53+0300\n"
|
||||
"PO-Revision-Date: 2020-04-24 08:55+0300\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Domain: advanced-options-for-woocommerce\n"
|
||||
"Last-Translator: Condless <info@condless.com>\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? "
|
||||
"2 : 3);\n"
|
||||
"Language: he_IL\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Advanced Options for WooCommerce"
|
||||
msgstr "אפשרויות מתקדמות לווקומרס"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://en.condless.com/advanced-options-for-woocommerce/"
|
||||
msgstr "https://www.condless.com/advanced-options-for-woocommerce/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"WooCommerce plugin for more options and customizations. Simple and Easy to "
|
||||
"use."
|
||||
msgstr "תוסף לווקומרס לאפשרויות נוספות והתאמה אישית. פשוט וקל לשימוש."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Condless"
|
||||
msgstr "Condless"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.condless.com/"
|
||||
msgstr "https://www.condless.com/"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:163
|
||||
msgid "contains letters not from the permitted languages"
|
||||
msgstr "מכיל אותיות שלא שייכות לשפות המותרות"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:200
|
||||
msgid "Advanced Options"
|
||||
msgstr "אפשרויות מתקדמות"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:235
|
||||
msgid ""
|
||||
"Allow only ASCII chars (which prevent non-English letters) in the checkout "
|
||||
"fields"
|
||||
msgstr "אפשר רק תווי ASCII (מה שמונע אותיות שלא באנגלית) בשדות התשלום"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:241
|
||||
msgid ""
|
||||
"Display the VAT amount and the product price include & exlude it in single "
|
||||
"product page"
|
||||
msgstr "הצג את סכום המע\"מ ואת מחיר המוצר איתו ובלעדיו בעמוד מוצר"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:247
|
||||
msgid "Display for variable products the attribute name instead of"
|
||||
msgstr "הצג במוצרים עם וריאיציות את שם התכונה במקום"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:253
|
||||
msgid "Display only products in"
|
||||
msgstr "הצג מוצרים בלבד ב"
|
||||
|
||||
#: advanced-options-for-woocommerce.php:259
|
||||
msgid "Auto triggered by"
|
||||
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"
|
||||
}
|
||||
}
|
||||
61
spec/fixtures/dynamic_finders/plugin_version/aiaibot/translation_file/languages/aiaibot.pot
vendored
Normal file
61
spec/fixtures/dynamic_finders/plugin_version/aiaibot/translation_file/languages/aiaibot.pot
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
# Copyright (C) 2020 aiaibot
|
||||
# This file is distributed under the same license as the aiaibot plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: aiaibot 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aiaibot\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-05-20T09:25:54+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: aiaibot\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
msgid "aiaibot"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/aiaibot/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Integrate your aiaibot chatbot."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://app.aiaibot.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:84
|
||||
msgid "Integration Code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:92
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:112
|
||||
msgid "Implement your chatbot on your Wordpress page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:123
|
||||
msgid "Config id is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:147
|
||||
msgid "Chatbot Integration Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: url to the app.aiaibot
|
||||
#: admin/class-aiaibot-admin.php:155
|
||||
msgid "Get the integration code on %s."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-aiaibot-admin.php:157
|
||||
msgid "Publish Chatbot"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,7 @@
|
||||
== Changelog ==
|
||||
|
||||
= 0.5.1 - 2020-04-14 =
|
||||
* fixed performance problem on sites with large amount of posts
|
||||
|
||||
= 0.5.0 - 2020-04-14 =
|
||||
* Initial public release
|
||||
41
spec/fixtures/dynamic_finders/plugin_version/apijoin-gumroad/composer_file/package.json
vendored
Normal file
41
spec/fixtures/dynamic_finders/plugin_version/apijoin-gumroad/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "agu-apijoin",
|
||||
"version": "1.0.0",
|
||||
"description": "test",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"check-engines": "wp-scripts check-engines",
|
||||
"check-licenses": "wp-scripts check-licenses",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"lint:md:docs": "wp-scripts lint-md-docs",
|
||||
"lint:md:js": "wp-scripts lint-md-js",
|
||||
"lint:pkg-json": "wp-scripts lint-pkg-json",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start",
|
||||
"test:e2e": "wp-scripts test-e2e",
|
||||
"test:unit": "wp-scripts test-unit-js"
|
||||
},
|
||||
"author": "Miguras",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@wordpress/scripts": "^7.1.0",
|
||||
"css-loader": "^3.4.2",
|
||||
"html-react-parser": "^0.10.3",
|
||||
"image-webpack-loader": "^6.0.0",
|
||||
"react-responsive-carousel": "^3.1.51",
|
||||
"react-slick": "^0.25.2",
|
||||
"react-smart-slider": "^0.1.2",
|
||||
"slick-carousel": "^1.8.1",
|
||||
"style-loader": "^1.1.3",
|
||||
"styled-jsx-plugin-stylelint": "^0.1.0",
|
||||
"webpack": "^4.41.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"file-loader": "^5.1.0",
|
||||
"svgo": "^1.3.2",
|
||||
"svgo-loader": "^2.2.1"
|
||||
}
|
||||
}
|
||||
292
spec/fixtures/dynamic_finders/plugin_version/ar-contactus/changelog/changelog.txt
vendored
Normal file
292
spec/fixtures/dynamic_finders/plugin_version/ar-contactus/changelog/changelog.txt
vendored
Normal file
@@ -0,0 +1,292 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
##[1.8.4] - 2020-05-21
|
||||
### Added
|
||||
- Button icon size option
|
||||
- Button appearing animation option
|
||||
- Menu sidebar style
|
||||
- Menu popup animation
|
||||
- Menu sidebar animation
|
||||
- Menu items animation
|
||||
- Plugin core updated
|
||||
|
||||
##[1.8.3] - 2020-05-19
|
||||
### Added
|
||||
- Deactivation plugin for current domain
|
||||
- PhpLive integration
|
||||
- Paldesk integration
|
||||
|
||||
##[1.8.2] - 2020-05-15
|
||||
### Fixed
|
||||
- Small issues
|
||||
|
||||
##[1.8.1] - 2020-05-11
|
||||
### Added
|
||||
- Output filtration
|
||||
- Server config values validation
|
||||
|
||||
##[1.8.0] - 2020-05-06
|
||||
### Added
|
||||
- Option to choose who can access callback list
|
||||
|
||||
### Fixed
|
||||
- Security improvements
|
||||
|
||||
##[1.7.9] - 2020-04-09
|
||||
### Fixed
|
||||
- Skype integration
|
||||
- FreshChat integration
|
||||
|
||||
##[1.7.8] - 2020-02-07
|
||||
### Fixed
|
||||
- Tawk.to appearance issue
|
||||
|
||||
##[1.7.7] - 2020-01-29
|
||||
### Added
|
||||
- FreshChat integration
|
||||
|
||||
##[1.7.6] - 2020-01-20
|
||||
### Fixed
|
||||
- Zoho SalesIQ chat integration fix
|
||||
|
||||
##[1.7.5] - 2020-01-14
|
||||
### Added
|
||||
- Zoho SalesIQ chat integration
|
||||
|
||||
##[1.7.4] - 2019-12-18
|
||||
### Fixed
|
||||
- Name validation unicode languages
|
||||
|
||||
##[1.7.3] - 2019-12-15
|
||||
### Fixed
|
||||
- Name validation unicode languages
|
||||
|
||||
##[1.7.2] - 2019-12-13
|
||||
### Added
|
||||
- Name field validation options
|
||||
- Email field to callback form
|
||||
- Email field to callback requests table
|
||||
- Updated translations
|
||||
|
||||
### Fixed
|
||||
- Email subject translation
|
||||
|
||||
##[1.7.1] - 2019-12-04
|
||||
### Fixed
|
||||
- Activation issue
|
||||
|
||||
##[1.7.0] - 2019-11-30
|
||||
### Fixed
|
||||
- Fixed JivoSite issue
|
||||
|
||||
##[1.6.9] - 2019-11-22
|
||||
### Fixed
|
||||
- Fixed Tawk.to issue
|
||||
|
||||
##[1.6.8] - 2019-09-30
|
||||
### Fixed
|
||||
- Fixed JivoSite issue
|
||||
|
||||
##[1.6.7] - 2019-09-25
|
||||
### Fixed
|
||||
- HTML code in GDRP Title
|
||||
|
||||
##[1.6.6] - 2019-09-03
|
||||
### Added
|
||||
- Tidio Integration
|
||||
- Jivosite integration
|
||||
- Added comments functionality to callback requests
|
||||
- Updated translation template
|
||||
- Updated Russian translation
|
||||
- Added Google Analytics integration
|
||||
|
||||
### Fixed
|
||||
- Callback requests admin table mobile view
|
||||
|
||||
##[1.6.4] - 2019-08-05
|
||||
### Fixed
|
||||
- LiveZilla integration
|
||||
|
||||
##[1.6.3] - 2019-07-31
|
||||
### Added
|
||||
- Name and referer fileds to email notification
|
||||
- Name and referer fileds to webpush notification
|
||||
- Name and referer fileds to sms notification
|
||||
- Name and referer fileds to telegram notification
|
||||
- Export callback requests to CSV file
|
||||
- Delay initialization
|
||||
- Disable initialization
|
||||
- Open menu after timeout automatically
|
||||
|
||||
##[1.6.2] - 2019-06-01
|
||||
### Fixed
|
||||
- Crisp integration issue
|
||||
- Callback customer name field
|
||||
|
||||
##[1.6.1] - 2019-05-27
|
||||
### Added
|
||||
- Custom popup item type - allows to open popup with text/html content by clicking menu item
|
||||
- Name field to callback form
|
||||
- Activation functionality
|
||||
|
||||
##[1.5.9] - 2019-05-01
|
||||
### Added
|
||||
- Background and color option for shortcode
|
||||
|
||||
### Fixed
|
||||
- Exporting data issue on some PHP versions
|
||||
- Button and menu z-index
|
||||
- Modal conflict with SimpleModal
|
||||
- Safari item editing/adding
|
||||
|
||||
##[1.5.8] - 2019-04-29
|
||||
### Added
|
||||
- GDPR checkbox
|
||||
|
||||
##[1.5.7] - 2019-04-25
|
||||
### Added
|
||||
- WooCommerce StoreFront theme integration to mobile footer
|
||||
- New Menu style - icons without background
|
||||
- 1-click auto update
|
||||
- LiveZilla integration
|
||||
- StoreFront theme compliant - now you can add "contact-us" button to storefront mobile footer
|
||||
|
||||
### Fixed
|
||||
- LiveChat Pro integration issue
|
||||
- Update issue
|
||||
- Generate css after import
|
||||
|
||||
##[1.5.5] - 2019-04-08
|
||||
### Added
|
||||
- LiveChat Pro integration
|
||||
- Close callback popup timeout
|
||||
- Menu items subtitles
|
||||
- Option to display menu item for all users or registred users or unregistred users only
|
||||
- FontAwesome icons support
|
||||
|
||||
### Fixed
|
||||
- Performance improved
|
||||
|
||||
##[1.5.3] - 2019-04-02
|
||||
### Added
|
||||
- New icons
|
||||
|
||||
### Fixed
|
||||
- Skype WebControl integration
|
||||
- UI bootstrap conflicts
|
||||
|
||||
##[1.5.2] - 2019-03-14
|
||||
### Added
|
||||
- Predefinded Brand Colors selector
|
||||
|
||||
### Fixed
|
||||
- Landscape responsive
|
||||
- Layout fixes
|
||||
|
||||
##[1.5.1] - 2019-02-26
|
||||
### Added
|
||||
- Menu width option
|
||||
- Callback request form width option
|
||||
|
||||
##[1.5.0] - 2019-02-24
|
||||
### Added
|
||||
- LiveChat integration (livechatinc.com)
|
||||
- SmartSupp integratin
|
||||
- All button settings now can be set separately for descktop and mobile versions
|
||||
- All menu settings now can be set separately for descktop and mobile versions
|
||||
- All prompts settings now can be set separately for descktop and mobile versions
|
||||
- Pause between main button animation loops
|
||||
- Icon type option to menu settings
|
||||
- Lines options to menu settings
|
||||
- Header options to menu settings
|
||||
- Header close button options to menu settings
|
||||
- Shadow size/opacity to menu settings
|
||||
- Export option (for exporting all module data)
|
||||
- Import option (for impoting all module data)
|
||||
- Prompt position option
|
||||
- Russian translation
|
||||
- Light design updates
|
||||
|
||||
### Fixed
|
||||
- TextDomain loading
|
||||
- Html email bug
|
||||
- RTL bug
|
||||
- Improved responsivness
|
||||
- Email adress validation
|
||||
|
||||
##[1.3.9] - 2019-02-01
|
||||
### Added
|
||||
- Live helper chat integration
|
||||
|
||||
### Fixed
|
||||
- Callback mobile form layout
|
||||
- Zalo chat validation error
|
||||
- Callback is not running custom JS code
|
||||
|
||||
##[1.3.8] - 2019-01-30
|
||||
### Added
|
||||
- OneSignal integration to receive webpush on callback request
|
||||
- Link target option
|
||||
- Option to control when display prompt messages again after visitor closed them
|
||||
- Shortcodes for menu items
|
||||
|
||||
##[1.3.7] - 2019-01-26
|
||||
### Fixed
|
||||
- create_function deprecated in php 7.2
|
||||
- load plugin text domain
|
||||
|
||||
##[1.3.5] - 2019-01-18
|
||||
### Added
|
||||
- LinkedIn icon
|
||||
- Instagram icon
|
||||
- Zendesk icon
|
||||
- Zendesk chat support
|
||||
- Sandbox mode
|
||||
- Html mail support
|
||||
- Main button mode option (callback only or menu)
|
||||
- Zalo integration
|
||||
|
||||
### Fixed
|
||||
- Problem with ajaxUrl on some WP versions
|
||||
- CSS fixes
|
||||
- Tawk.to hidding issue
|
||||
|
||||
##[1.3.3] - 2019-01-03
|
||||
### Added
|
||||
- Zalo icon
|
||||
|
||||
### Fixed
|
||||
- Fixed bootstrap conflicts
|
||||
|
||||
##[1.3.2] - 2018-10-09
|
||||
### Fixed
|
||||
- Fixed innoDB tables creation
|
||||
|
||||
##[1.3.1] - 2018-09-25
|
||||
### Added
|
||||
- More icons
|
||||
- Telegram bot
|
||||
- Change main button feature
|
||||
- Phone mask feature
|
||||
- Crisp integration
|
||||
- Tawk.to integration
|
||||
- Hashtags commands
|
||||
|
||||
##[1.3.0] - 2018-08-02
|
||||
### Added
|
||||
- Skype Web Control integration
|
||||
- Zendesk chat integration
|
||||
- VK community messages integration
|
||||
- Facebook customer chat integration
|
||||
- Prompt messages feature
|
||||
|
||||
##[1.2.0] - 2018-07-21
|
||||
### Added
|
||||
- Menu size
|
||||
- Main button size
|
||||
- Twilio integration
|
||||
|
||||
|
||||
##[1.0.0] - 2018-06-19
|
||||
- First released version
|
||||
@@ -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,3 @@
|
||||
Version 1.0
|
||||
- First Release
|
||||
- A new version of Automatically add product to cart plug-in.
|
||||
@@ -0,0 +1,344 @@
|
||||
# Copyright (C) 2020 Barn2 Plugins
|
||||
# This file is distributed under the same license as the Block for Woo Product Table plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Block for Woo Product Table 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/block-for-woo-product-table\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-05-21T12:32:42+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: block-for-woo-product-table\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Block for Woo Product Table"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://barn2.co.uk/wordpress-plugins/block-for-woo-product-table/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds an editor block to the WooCommerce Product Table plugin by Barn2, making it quick and easy to create product tables with the block editor."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Barn2 Plugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://barn2.co.uk"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the plugin name
|
||||
#: src/class-block.php:120
|
||||
msgid "Warning! This block is an add-on for the %s plugin, which is not currently installed. Please install the plugin before continuing."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the plugin name
|
||||
#: src/class-block.php:121
|
||||
#: src/class-block.php:134
|
||||
#: assets/js/editor.js:41
|
||||
msgid "WooCommerce Product Table"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:133
|
||||
msgid "Warning! This block requires WooCommerce to function."
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:208
|
||||
msgid "SKU"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:209
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:210
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:211
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:212
|
||||
msgid "Short Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:213
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:214
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:215
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:216
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:217
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:218
|
||||
msgid "Stock"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:219
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:220
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:221
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:222
|
||||
msgid "Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:223
|
||||
#: assets/js/settings-panel.js:50
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:225
|
||||
msgid "Product Attribute"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:228
|
||||
msgid "Custom Field Value"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:228
|
||||
msgid "Enter a customer meta key"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:229
|
||||
msgid "Custom Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-block.php:229
|
||||
msgid "Enter a taxonomy name"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-plugin.php:143
|
||||
msgid "PHP must be running on version 5.6 or above to use this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: src/class-plugin.php:147
|
||||
msgid "This plugin requires WordPress 5.3 or above"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-plugin.php:151
|
||||
msgid "This plugin requires WooCommerce to be active"
|
||||
msgstr ""
|
||||
|
||||
#: src/class-plugin.php:159
|
||||
msgid "The \"Block for WooCommerce Product Table\" plugin is active but not functioning!"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:31
|
||||
msgid "Display a searchable table listing any or all of your products."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:36
|
||||
msgid "Warning! This block is an add-on for the WooCommerce Product Table plugin, which is not currently installed. Please install the plugin before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:148
|
||||
msgid "Product Table"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:159
|
||||
msgid "Lists products in a table view using the WooCommerce Product Table plugin. "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:163
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/editor.js:198
|
||||
msgid "You can configure additional settings in the 'Block' tab in the sidebar."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:95
|
||||
msgid "Select products"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:221
|
||||
msgid "Selections"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:224
|
||||
#: assets/js/table-columns.js:357
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:458
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:477
|
||||
#: assets/js/table-columns.js:307
|
||||
msgid "(Using global options)"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:510
|
||||
msgid "Products must match all values"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:559
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:571
|
||||
#: assets/js/table-columns.js:235
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/product-selection.js:581
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:41
|
||||
msgid "Add to Cart Column Settings"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:46
|
||||
msgid "Add to Cart Button"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:49
|
||||
#: assets/js/settings-panel.js:73
|
||||
#: assets/js/settings-panel.js:88
|
||||
#: assets/js/settings-panel.js:118
|
||||
msgid "(Use global option)"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:51
|
||||
msgid "Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:52
|
||||
msgid "Button and Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:58
|
||||
msgid "How 'Add to Cart' buttons are displayed in the table. "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:62
|
||||
#: assets/js/settings-panel.js:101
|
||||
#: assets/js/settings-panel.js:134
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:70
|
||||
msgid "Quantities"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:74
|
||||
msgid "Show in add to cart column"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:75
|
||||
msgid "Do not show quantity selectors"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:85
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:89
|
||||
msgid "Link to product page"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:90
|
||||
msgid "Dropdowns in add to cart column"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:91
|
||||
msgid "Separate rows in table"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:97
|
||||
msgid "How to display options for variable products. "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:110
|
||||
msgid "Table Controls"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:115
|
||||
msgid "Product Filters"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:119
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:120
|
||||
msgid "Show based on columns in table"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:121
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:130
|
||||
msgid "Dropdown lists to filter the table by category, tag, attribute, or custom taxonomy. "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:149
|
||||
msgid "Custom Product Filters"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:162
|
||||
msgid "Additional Options"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:168
|
||||
msgid "You can configure additional options globally on the "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:172
|
||||
msgid "WooCommerce Product Table settings page"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:174
|
||||
msgid ", or by adding them below with one option per line (e.g. sort_by=\"name\"). "
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:178
|
||||
msgid "See full list of options."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/settings-panel.js:185
|
||||
msgid "Additional Shortcode Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/table-columns.js:32
|
||||
msgid "Add column"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/table-columns.js:53
|
||||
msgid "Select global attribute"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/table-columns.js:294
|
||||
msgid "Table Columns"
|
||||
msgstr ""
|
||||
@@ -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,141 @@
|
||||
# Copyright (C) 2020 Marian Kanev
|
||||
# This file is distributed under the same license as the TaxiBooking Light plugin.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: TaxiBooking Light 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tblight\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-03-31 19:53+0600\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Domain: tblight\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "TaxiBooking Light"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://kanev.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Taxi Booking Light for Wordpress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Marian Kanev"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default.php:11
|
||||
msgid "BOOKING_FORM_NEW_ORDER_BTN_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default.php:19
|
||||
msgid "BOOKING_FORM_FIRST_STEP_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default.php:25 views/tblight/default_step2.php:40
|
||||
msgid "BOOKING_FORM_SECOND_STEP_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default.php:31
|
||||
msgid "BOOKING_FORM_THIRD_STEP_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:7
|
||||
msgid "BOOKING_FORM_SELECT_DATE_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:25
|
||||
msgid "HRS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:48
|
||||
msgid "MINS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:77
|
||||
msgid "TAXI_FROM"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:83 views/tblight/default_step1.php:97
|
||||
msgid "ENTER_ADDRESS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:91
|
||||
msgid "TAXI_TO"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:104
|
||||
msgid "VIEW_MAP_BTN_LBL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:112
|
||||
msgid "PASSENGER_SEATS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:127
|
||||
msgid "SUITCASE_NO"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:140
|
||||
msgid "BOOKING_FORM_RIDING_CHILD_BTN_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:147
|
||||
msgid "BOOKING_FORM_ADDITIONAL_SEATS_HEADER"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:149
|
||||
msgid "BOOSTER_SEATS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:150
|
||||
msgid "CHILD_SEATS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:151
|
||||
msgid "INFANT_SEATS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step1.php:166 views/tblight/default_step1.php:196
|
||||
msgid "SEE_PRICE"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step2.php:47 views/tblight/default_step2.php:49
|
||||
msgid "CARS_TABLE_LIST_BTN_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step2.php:51 views/tblight/default_step2.php:53
|
||||
msgid "CARS_TABLE_GRID_BTN_LABEL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step2.php:217 views/tblight/default_step3.php:176
|
||||
msgid "BACK_TO_PREVIOUS"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step3.php:8
|
||||
msgid "BOOKING_FORM_PASSENGER_INFORMATION_HEADER"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step3.php:10
|
||||
msgid "NAME"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step3.php:16
|
||||
msgid "EMAIL"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step3.php:22
|
||||
msgid "PHONE"
|
||||
msgstr ""
|
||||
|
||||
#: views/tblight/default_step3.php:52
|
||||
msgid "ONEPAGE_BOOKING_FOURTH_STEP_HEADER"
|
||||
msgstr ""
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/capture-and-convert/change_log/CHANGELOG.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/capture-and-convert/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
## 1.4.2
|
||||
|
||||
- Added Changelog
|
||||
- Fixed bug with widgets
|
||||
- Fixed bug with Twitter auth token
|
||||
503
spec/fixtures/dynamic_finders/plugin_version/card-oracle/translation_file/languages/card-oracle.pot
vendored
Normal file
503
spec/fixtures/dynamic_finders/plugin_version/card-oracle/translation_file/languages/card-oracle.pot
vendored
Normal file
@@ -0,0 +1,503 @@
|
||||
# Copyright (C) 2020 Christopher Graham
|
||||
# This file is distributed under the same license as the Card Oracle plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Card Oracle 0.5.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/card-oracle\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-05-01T12:01:11+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: card-oracle\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/class-card-oracle-admin.php:67
|
||||
#: admin/class-card-oracle-admin.php:578
|
||||
#: admin/partials/card-oracle-admin-display.php:19
|
||||
msgid "Card Oracle"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://chillichalli.com/card-oracle"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin lets you create tarot and oracle readings using your own cards, spreads and interpretations."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Christopher Graham"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://cdgraham.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:66
|
||||
msgid "Card Oracle Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d is a number
|
||||
#: admin/class-card-oracle-admin.php:156
|
||||
#: admin/class-card-oracle-admin.php:160
|
||||
#: admin/class-card-oracle-admin.php:164
|
||||
#: admin/class-card-oracle-admin.php:168
|
||||
msgid "%d Total"
|
||||
msgid_plural "%d Total"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:193
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:195
|
||||
msgid "Email Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:230
|
||||
#: admin/class-card-oracle-admin.php:1178
|
||||
msgid "Multiple Positions for a Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:235
|
||||
msgid "Enabling this will allow you to select multiple Positions for a Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:239
|
||||
msgid "Allow users to send reading to an email address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:247
|
||||
msgid "From email address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:252
|
||||
msgid "The From email address used when the user sends the reading."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:253
|
||||
msgid "If blank this defaults to the Admin email address."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:257
|
||||
msgid "From email name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:262
|
||||
msgid "The Name displayed as the From email address."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:263
|
||||
msgid "If blank this defaults to the site title."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:267
|
||||
#: admin/class-card-oracle-admin.php:277
|
||||
msgid "Text to display"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:272
|
||||
msgid "Text to display on the email form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:273
|
||||
msgid "If blank this defaults \"Email this Reading to:\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:282
|
||||
msgid "Text to display after the user submits the email form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:283
|
||||
msgid "If blank this defaults \"Your email has been sent. Please make sure to check your spam folder.\""
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:500
|
||||
#: admin/class-card-oracle-admin.php:514
|
||||
#: admin/class-card-oracle-admin.php:529
|
||||
#: admin/class-card-oracle-admin.php:544
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:580
|
||||
msgid "Card Oracle Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:580
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:582
|
||||
msgid "Card Oracle Readings Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:582
|
||||
#: admin/partials/card-oracle-admin-display.php:39
|
||||
msgid "Readings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:584
|
||||
msgid "Card Oracle positions Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:584
|
||||
#: admin/class-card-oracle-admin.php:1384
|
||||
#: admin/partials/card-oracle-admin-display.php:50
|
||||
msgid "Positions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:586
|
||||
msgid "Card Oracle cards Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:586
|
||||
#: admin/class-card-oracle-admin.php:833
|
||||
#: admin/partials/card-oracle-admin-display.php:61
|
||||
msgid "Cards"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:588
|
||||
msgid "Card Oracle Descriptions Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:588
|
||||
#: admin/partials/card-oracle-admin-display.php:73
|
||||
msgid "Descriptions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:604
|
||||
msgid "Front of Card Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:609
|
||||
msgid "Back of Card Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:614
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:773
|
||||
msgid "Sorry, the maximum number of Readings has been reached."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:782
|
||||
msgid "Sorry, the maxiumum number of Positions has been reached."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:791
|
||||
msgid "Sorry, the maxiumum number of Cards has been reached."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:807
|
||||
msgid "Please consider upgrading to our premium version."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:810
|
||||
msgid "You can purchase it here at "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:812
|
||||
msgid "Maximum reached"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:834
|
||||
#: admin/class-card-oracle-admin.php:1047
|
||||
#: admin/class-card-oracle-admin.php:1363
|
||||
msgid "Card"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:835
|
||||
#: admin/class-card-oracle-admin.php:836
|
||||
msgid "Add New Card"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:837
|
||||
msgid "Edit Card"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:838
|
||||
msgid "New Card"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:839
|
||||
msgid "All Cards"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:840
|
||||
msgid "View Card"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:841
|
||||
msgid "Search Cards"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:842
|
||||
msgid "Card Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:843
|
||||
msgid "Add Card Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:867
|
||||
msgid "Card Descriptions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:868
|
||||
msgid "Card Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:869
|
||||
#: admin/class-card-oracle-admin.php:870
|
||||
msgid "Add New Card Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:871
|
||||
msgid "Edit Card Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:872
|
||||
msgid "New Card Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:873
|
||||
msgid "All Card Descriptions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:874
|
||||
msgid "View Card Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:875
|
||||
msgid "Search Card Descriptions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:876
|
||||
msgid "Card Description Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:877
|
||||
msgid "Add Card Description Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:901
|
||||
msgid "Card Readings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:902
|
||||
#: admin/class-card-oracle-admin.php:1010
|
||||
#: admin/class-card-oracle-admin.php:1108
|
||||
#: admin/class-card-oracle-admin.php:1401
|
||||
msgid "Card Reading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:903
|
||||
#: admin/class-card-oracle-admin.php:904
|
||||
msgid "Add New Card Reading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:905
|
||||
msgid "Edit Card Reading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:906
|
||||
msgid "New Card Reading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:907
|
||||
msgid "All Card Readings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:908
|
||||
msgid "View Card Reading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:909
|
||||
msgid "Search Card Readings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:910
|
||||
msgid "Card Back"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:911
|
||||
msgid "Add Card Back"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:935
|
||||
msgid "Card Positions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:936
|
||||
msgid "Card Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:937
|
||||
#: admin/class-card-oracle-admin.php:938
|
||||
msgid "Add New Card Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:939
|
||||
msgid "Edit Card Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:940
|
||||
msgid "New Card Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:941
|
||||
msgid "All Card Positions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:942
|
||||
msgid "View Card Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:943
|
||||
msgid "Search Card Positions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:944
|
||||
msgid "Card Position Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:945
|
||||
msgid "Add Card Position Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:976
|
||||
msgid "Allow multiple Positions for a Card Description."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1051
|
||||
#: admin/class-card-oracle-admin.php:1085
|
||||
msgid "(no card)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1059
|
||||
msgid "Description Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1126
|
||||
msgid "Card Order"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1186
|
||||
msgid "Display Question Input Box"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1192
|
||||
msgid "Enabling this will display an input field to the users to enter a question."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1195
|
||||
msgid "Text for question input box"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1200
|
||||
msgid "Avoid using apostrophes in the text if you plan on allowing users to email the readings."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1204
|
||||
msgid "Footer to be displayed on daily and random cards"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1345
|
||||
msgid "Associated Reading(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1346
|
||||
msgid "Number of Descriptions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1347
|
||||
#: admin/class-card-oracle-admin.php:1367
|
||||
#: admin/class-card-oracle-admin.php:1385
|
||||
#: admin/class-card-oracle-admin.php:1403
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1365
|
||||
#: admin/class-card-oracle-admin.php:1402
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1366
|
||||
msgid "Position Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-card-oracle-admin.php:1383
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:84
|
||||
msgid "Reading Statistics"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:88
|
||||
msgid "Reading Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:89
|
||||
msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d is a number
|
||||
#: admin/partials/card-oracle-admin-display.php:93
|
||||
msgid "%d position"
|
||||
msgid_plural "%d positions"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: %d is a number
|
||||
#: admin/partials/card-oracle-admin-display.php:96
|
||||
msgid "%d card"
|
||||
msgid_plural "%d cards"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: %d is a number
|
||||
#: admin/partials/card-oracle-admin-display.php:99
|
||||
msgid "%d description"
|
||||
msgid_plural "%d descriptions"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:125
|
||||
#: admin/partials/card-oracle-admin-display.php:135
|
||||
#: admin/partials/card-oracle-admin-display.php:145
|
||||
msgid "Click to copy shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:130
|
||||
msgid "Daily Card Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/card-oracle-admin-display.php:140
|
||||
msgid "Random Card Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-card-oracle-public.php:145
|
||||
msgid "Your Reading"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-card-oracle-public.php:165
|
||||
msgid "Your email has been sent. Please make sure to check your spam folder."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d is a number
|
||||
#: public/class-card-oracle-public.php:324
|
||||
msgid "Next select %d card."
|
||||
msgid_plural "Next select %d cards."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: public/class-card-oracle-public.php:350
|
||||
msgid "Email this Reading to:"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
19
spec/fixtures/dynamic_finders/plugin_version/cloudtables/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/cloudtables/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "cloudtables-wordpress",
|
||||
"version": "1.0.0",
|
||||
"description": "CloudTables easy integration plug-in for WordPress",
|
||||
"main": "block.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": [
|
||||
"cloudtables",
|
||||
"wordpress"
|
||||
],
|
||||
"author": "SpryMedia Ltd",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "9.1.0"
|
||||
}
|
||||
}
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/codepile/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/codepile/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 1.0.0 =
|
||||
16 Jun 2020
|
||||
* Initial release
|
||||
@@ -46,6 +46,10 @@ Ahalogy wordpress plugin [version 2.1.0] is installed but Client ID not set
|
||||
<!-- This site is powered by All In One WP Solution Plugin v3.2.9.6 - Download: https://wordpress.org/plugins/all-in-one-wp-solution -->
|
||||
|
||||
|
||||
<!-- angwp -->
|
||||
<!-- Ads on this site are served by Adning v1.5.1 - adning.com -->
|
||||
|
||||
|
||||
<!-- ank-simplified-ga -->
|
||||
<!-- Google Analytics is disabled, Reason: GA ID is not set (v1.4.2)-->
|
||||
<!-- GA Tracking ends (v1.4.2) -->
|
||||
@@ -1190,3 +1194,7 @@ s0.parentNode.insertBefore(s1,s0);
|
||||
|
||||
|
||||
|
||||
<!-- provesource -->
|
||||
<!-- Start of Async ProveSource Code (Wordpress / Woocommerce v2.1.0) -->
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,66 @@
|
||||
# Copyright (C) 2020 Solice GmbH
|
||||
# This file is distributed under the same license as the Conformis Cookie Banner plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Conformis Cookie Banner 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/conformis\n"
|
||||
"POT-Creation-Date: 2020-04-23T08:20:03+00:00\n"
|
||||
"PO-Revision-Date: 2020-04-23 10:22+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Domain: conformis\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: views/settings.php:34
|
||||
msgid "Conformis Cookie Banner"
|
||||
msgstr "Conformis Cookie Banner"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A simple customisable GDPR Banner"
|
||||
msgstr "A simple customisable GDPR Banner"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Solice GmbH"
|
||||
msgstr "Solice GmbH"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.conformis.io/"
|
||||
msgstr "https://www.conformis.io/"
|
||||
|
||||
#: views/settings.php:54
|
||||
msgid "Save Settings"
|
||||
msgstr "Save Settings"
|
||||
|
||||
#: views/settings.php:73
|
||||
msgid "Banner Position"
|
||||
msgstr "Banner Position"
|
||||
|
||||
#: views/settings.php:81
|
||||
msgid "Top"
|
||||
msgstr "Top"
|
||||
|
||||
#: views/settings.php:82
|
||||
msgid "Center"
|
||||
msgstr "Center"
|
||||
|
||||
#: views/settings.php:83
|
||||
msgid "Bottom"
|
||||
msgstr "Bottom"
|
||||
|
||||
#: views/settings.php:90
|
||||
msgid "Banner Message"
|
||||
msgstr "Banner Message"
|
||||
|
||||
#: views/settings.php:102
|
||||
msgid "Confirm Button Text"
|
||||
msgstr "Confirm Button Text"
|
||||
|
||||
#: views/settings.php:197
|
||||
msgid "Settings"
|
||||
msgstr "Settings"
|
||||
34
spec/fixtures/dynamic_finders/plugin_version/cora-lite/composer_file/package.json
vendored
Normal file
34
spec/fixtures/dynamic_finders/plugin_version/cora-lite/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "cora",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "gulp"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/omarbadran/cora.git"
|
||||
},
|
||||
"author": "Omar Badran",
|
||||
"license": "GPL-3.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/omarbadran/cora/issues"
|
||||
},
|
||||
"homepage": "https://github.com/omarbadran/cora#readme",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.4",
|
||||
"@babel/preset-env": "^7.8.4",
|
||||
"autoprefixer": "^9.7.4",
|
||||
"cssnano": "^4.1.10",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-babel": "^8.0.0",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-postcss": "^8.0.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"gulp-sass-glob": "^1.1.0",
|
||||
"gulp-sourcemaps": "^2.6.5",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"node-sass": "^4.13.1"
|
||||
}
|
||||
}
|
||||
15
spec/fixtures/dynamic_finders/plugin_version/cornell-notes/change_log/changelog.txt
vendored
Normal file
15
spec/fixtures/dynamic_finders/plugin_version/cornell-notes/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
== Cornell Notes Changelog ==
|
||||
1.0.3
|
||||
* Changed name for clarity to `Cornell Notes Gutenberg Block`
|
||||
* changed Github repo URL
|
||||
|
||||
1.0.2
|
||||
* Readme edits
|
||||
* Corrected `register_block_type` reference in `init.php`
|
||||
|
||||
1.0.1
|
||||
* Changed styling for increased backwards compatibility with older versions of Gutenberg
|
||||
* Added assets for the WordPress plugin Repo
|
||||
|
||||
1.0
|
||||
*Initial release into the wild
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/cornell-notes/composer_file/package.json
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/cornell-notes/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "cornell-notes-gutenberg-block",
|
||||
"version": "1.0.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.0",
|
||||
"mem": ">=4.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,89 @@
|
||||
# Copyright (C) 2020 Chris Ebbinger
|
||||
# This file is distributed under the same license as the Corona VAT Germany plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Corona VAT Germany 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ce_corona_tax\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-06-29T16:45:10+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: cect\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: ce_corona_tax.php:229
|
||||
msgid "Corona VAT Germany"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ebbinger.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adjusts the WooCommerce VAT rates (19% -> 16% / 7% -> 5%) for period beginning from 2020-07-01 and resets the tax rates after 2020-12-31."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Chris Ebbinger"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:158
|
||||
msgid "Tax Reduce Date already passed and the automated action was executed immediately."
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:163
|
||||
msgid "Tax Restore Date already passed and the automated action was executed immediately."
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:230
|
||||
msgid "Corona VAT Germany Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:236
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:237
|
||||
msgid "Select the tax classes that should be adjusted automatically. Separate multiple entries with a comma (<code>, </code>). The following classes are defined in WooCommerce:"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:241
|
||||
msgid "Standard Tax Classes<br>(previously 19%)"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:246
|
||||
msgid "Reduced Tax Classes<br>(previously 7%)"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:252
|
||||
msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:253
|
||||
msgid "Choose the timing for the tax changes. The changes will be executed during the first visit of the website after the given time."
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:257
|
||||
msgid "Reduce Tax Date"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:258
|
||||
msgid "Choose when the tax rate will be reduced."
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:264
|
||||
msgid "Restore Tax Date"
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:265
|
||||
msgid "Choose when the original tax rate will be restored."
|
||||
msgstr ""
|
||||
|
||||
#: ce_corona_tax.php:282
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,369 @@
|
||||
# Copyright (C) 2020 Joommasters
|
||||
# This file is distributed under the same license as the JMS Covid 19 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JMS Covid 19 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/jms-covid-19\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-04-03T09:35:09+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: jms-covid-19\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/widgets/jms_covid.php:32
|
||||
#: front/widget.php:14
|
||||
msgid "JMS Covid 19"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://joommasters.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "COVID-19 Coronavirus."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Joommasters"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:19
|
||||
msgid "JMS COVID-19"
|
||||
msgstr ""
|
||||
|
||||
#: admin/elementor.php:21
|
||||
msgid "Jms"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:24
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:80
|
||||
#: admin/widgets/jms_covid.php:52
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:81
|
||||
#: admin/widgets/jms_covid.php:63
|
||||
msgid "Style 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:82
|
||||
#: admin/widgets/jms_covid.php:64
|
||||
msgid "Style 2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:83
|
||||
#: admin/widgets/jms_covid.php:65
|
||||
msgid "Style 3"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:84
|
||||
#: admin/widgets/jms_covid.php:66
|
||||
msgid "Style 4"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:85
|
||||
#: admin/widgets/jms_covid.php:67
|
||||
msgid "Style 5"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:86
|
||||
#: admin/widgets/jms_covid.php:68
|
||||
msgid "Style 6"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:92
|
||||
msgid "Data Sources"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:115
|
||||
#: admin/params.php:166
|
||||
#: admin/params.php:281
|
||||
#: admin/params.php:432
|
||||
#: admin/params.php:498
|
||||
msgid "Title Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:121
|
||||
#: admin/params.php:172
|
||||
#: admin/params.php:287
|
||||
#: admin/params.php:438
|
||||
#: admin/params.php:504
|
||||
msgid "Title Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:127
|
||||
#: admin/params.php:299
|
||||
#: admin/params.php:362
|
||||
msgid "Text Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:133
|
||||
#: admin/params.php:202
|
||||
#: admin/params.php:305
|
||||
#: admin/params.php:465
|
||||
msgid "C(confirm) Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:139
|
||||
#: admin/params.php:214
|
||||
#: admin/params.php:317
|
||||
#: admin/params.php:471
|
||||
msgid "D(deaths) Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:145
|
||||
#: admin/params.php:220
|
||||
#: admin/params.php:323
|
||||
#: admin/params.php:477
|
||||
msgid "R(recovered) Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:178
|
||||
msgid "Global Title Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:184
|
||||
msgid "Global Title Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:190
|
||||
msgid "SubTitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:196
|
||||
msgid "SubTitle Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:208
|
||||
#: admin/params.php:311
|
||||
msgid "A(active) Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:227
|
||||
msgid "Tab Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:233
|
||||
#: admin/params.php:330
|
||||
msgid "Tab Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:239
|
||||
msgid "Tab Text Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:245
|
||||
msgid "Tab Active Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:251
|
||||
#: admin/params.php:336
|
||||
msgid "Tab Actice Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:272
|
||||
msgid "Show title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:293
|
||||
#: admin/params.php:356
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:369
|
||||
msgid "Column Heading Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:375
|
||||
msgid "Column Heading Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:382
|
||||
msgid "Pagination Active Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:388
|
||||
msgid "Pagination Active Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:394
|
||||
msgid "Pagination Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:401
|
||||
msgid "Datatables Show"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:423
|
||||
msgid "Show Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:444
|
||||
msgid "Show Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:453
|
||||
msgid "Subtitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:459
|
||||
msgid "Subtitle Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:510
|
||||
msgid "Color for background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:516
|
||||
msgid "Color for country"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:522
|
||||
msgid "Border Color for country"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:528
|
||||
msgid "Border Color on hover"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:534
|
||||
msgid "Color type for country have confirm case"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:538
|
||||
msgid "Opacity"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:542
|
||||
msgid "Number of case"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:547
|
||||
msgid "Color for country have confirm case"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:553
|
||||
msgid "Color for country by number of confirm case"
|
||||
msgstr ""
|
||||
|
||||
#: admin/params.php:584
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widgets/jms_covid.php:60
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widgets/jms_covid.php:77
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widgets/jms_covid.php:90
|
||||
msgid "Countries"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widgets/jms_covid.php:106
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/widgets/jms_covid.php:118
|
||||
msgid "SubTitle"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:52
|
||||
#: front/front.php:443
|
||||
#: front/front.php:936
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:53
|
||||
#: front/front.php:444
|
||||
#: front/front.php:922
|
||||
#: front/front.php:940
|
||||
msgid "Deaths"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:54
|
||||
#: front/front.php:921
|
||||
#: front/front.php:944
|
||||
msgid "Recovered"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:320
|
||||
#: front/front.php:364
|
||||
#: front/front.php:409
|
||||
#: front/front.php:461
|
||||
msgid "Confirmed Cases"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:324
|
||||
#: front/front.php:376
|
||||
#: front/front.php:421
|
||||
msgid "Active cases"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:328
|
||||
#: front/front.php:379
|
||||
#: front/front.php:424
|
||||
#: front/front.php:465
|
||||
msgid "Recovered cases"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:332
|
||||
#: front/front.php:382
|
||||
#: front/front.php:427
|
||||
#: front/front.php:469
|
||||
msgid "Deaths cases"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:442
|
||||
msgid "Country, Other"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:483
|
||||
#: front/front.php:962
|
||||
#: front/front.php:1010
|
||||
#: front/widget.php:65
|
||||
msgid "Global"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:915
|
||||
msgid "Zoom in"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:916
|
||||
msgid "Zoom out"
|
||||
msgstr ""
|
||||
|
||||
#: front/front.php:920
|
||||
msgid "Cases"
|
||||
msgstr ""
|
||||
|
||||
#: front/widget.php:42
|
||||
msgid "Covid 19"
|
||||
msgstr ""
|
||||
|
||||
#: front/widget.php:52
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: front/widget.php:55
|
||||
msgid "Style:"
|
||||
msgstr ""
|
||||
|
||||
#: front/widget.php:63
|
||||
msgid "Country:"
|
||||
msgstr ""
|
||||
|
||||
#: jms-covid-19.php:58
|
||||
msgid "Every 10 minutes"
|
||||
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/cubicfusion-admin-enhancer/change_log/CHANGELOG.txt
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/cubicfusion-admin-enhancer/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
## Changelog
|
||||
|
||||
#### 0.2.1 - 26.05.2020
|
||||
Technical fix for dashboard widgets that use closures as a callback. This fix prevents the serialization of these callbacks. This is a PHP limitation that can be solved, but will wait and see how the demand for such a feature is.
|
||||
|
||||
#### 0.2 - 25.05.2020
|
||||
1. **Updated: Shortcodes** (0.2)
|
||||
Cleanup & Copy to Clipboard added.
|
||||
|
||||
2. **New: Dashboard Gutenberg / Dashboard Templates** (0.1)
|
||||
This Addon allows you to build a Dashboard with Gutenberg. You can create a new Dashboard under 'Dashboard Templates' and set a default template below.
|
||||
I will be extending this to allow different templates for different roles / groups. This release also includes a Gutenberg block for the shortcodes.
|
||||
|
||||
3. **New: Admin Toolbar** (0.1)
|
||||
This Addon allows you to tweak the admin toolbar and footer.
|
||||
|
||||
#### 0.1 - 08.05.2020
|
||||
1. **Initial Release**
|
||||
Admin Enhancer is a work in progress.I am using this WordPress plugin to centralise things I love & need, when sending out a finished website or project.
|
||||
These tools are completely free and will always stay free.
|
||||
|
||||
2. **Shortcode Addon (0.1)**
|
||||
All dashboard widgets are converted to simple shortcodes. You can use those shortcodes within Elementor Pro or any other page builder that allows you to create custom admin dashboards. Makes it easy to build white-label dashboards, while still reusing all those nice dashboard widgets.
|
||||
@@ -0,0 +1,364 @@
|
||||
# Copyright (C) 2020 thingsym
|
||||
# This file is distributed under the same license as the Custom Post Type Widget Blocks plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Custom Post Type Widget Blocks 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-post-type-widget-blocks\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-04-02T09:35:51+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: custom-post-type-widget-blocks\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/class-custom-post-type-widget-blocks.php:80
|
||||
msgid "Custom Post Type Widget Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/thingsym/custom-post-type-widget-blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Custom Post Type Widgets for the Block Editor (Gutenberg)."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "thingsym"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.thingslabo.com/"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:66
|
||||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:91
|
||||
msgid "Select Year"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:94
|
||||
msgid "Select Month"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:97
|
||||
msgid "Select Day"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:100
|
||||
msgid "Select Week"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:103
|
||||
msgid "Select Post"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/class-custom-post-type-widget-blocks-archives.php:149
|
||||
msgid "No archives to show."
|
||||
msgstr ""
|
||||
|
||||
#. translators: label: 1: date format
|
||||
#: src/blocks/calendar/class-custom-post-type-widget-blocks-calendar.php:258
|
||||
msgid "Posts published on %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/class-custom-post-type-widget-blocks-categories.php:87
|
||||
msgid "Select Category"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/class-custom-post-type-widget-blocks-latest-comments.php:66
|
||||
#: src/blocks/latest-posts/class-custom-post-type-widget-blocks-latest-posts.php:167
|
||||
#: src/blocks/latest-posts/edit.js:469
|
||||
msgid "(no title)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: author name (inside <a> or <span> tag, based on if they have a URL), 2: post title related to this comment
|
||||
#: src/blocks/latest-comments/class-custom-post-type-widget-blocks-latest-comments.php:128
|
||||
msgid "%1$s on %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/class-custom-post-type-widget-blocks-latest-comments.php:176
|
||||
msgid "No comments to show."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/class-custom-post-type-widget-blocks-latest-posts.php:197
|
||||
#: src/blocks/latest-posts/edit.js:499
|
||||
msgid "Read more"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/class-custom-post-type-widget-blocks-search.php:35
|
||||
#: src/blocks/search/class-custom-post-type-widget-blocks-search.php:43
|
||||
#: src/blocks/search/class-custom-post-type-widget-blocks-search.php:68
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: taxonomy name
|
||||
#: src/blocks/tag-cloud/class-custom-post-type-widget-blocks-tag-cloud.php:65
|
||||
msgid "Your site doesn’t have any %s, so there’s nothing to display here at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/edit.js:32
|
||||
#: src/blocks/calendar/edit.js:37
|
||||
#: src/blocks/categories/edit.js:38
|
||||
#: src/blocks/tag-cloud/edit.js:37
|
||||
msgid "- Select -"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/edit.js:66
|
||||
msgid "Archives settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/edit.js:72
|
||||
#: src/blocks/calendar/edit.js:90
|
||||
#: src/blocks/latest-comments/edit.js:109
|
||||
#: src/blocks/latest-posts/edit.js:305
|
||||
#: src/blocks/search/edit.js:66
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/edit.js:81
|
||||
#: src/blocks/categories/edit.js:219
|
||||
msgid "Display as Dropdown"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/edit.js:93
|
||||
#: src/blocks/categories/edit.js:235
|
||||
msgid "Show Post Counts"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/index.js:15
|
||||
msgid "Archives (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/archives/index.js:16
|
||||
msgid "Display a monthly archive of your posts."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/calendar/edit.js:84
|
||||
msgid "Calendar settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/calendar/index.js:15
|
||||
msgid "Calendar (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/calendar/index.js:16
|
||||
msgid "A calendar of your site’s posts."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/calendar/index.js:23
|
||||
msgid "posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/calendar/index.js:24
|
||||
msgid "archive"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/edit.js:99
|
||||
msgid "(Untitled)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/edit.js:162
|
||||
#: src/blocks/categories/edit.js:252
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/edit.js:207
|
||||
msgid "Categories settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/edit.js:213
|
||||
#: src/blocks/tag-cloud/edit.js:79
|
||||
msgid "Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/edit.js:227
|
||||
msgid "Show Hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/index.js:15
|
||||
msgid "Categories (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/categories/index.js:19
|
||||
msgid "Display a list of all categories."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:56
|
||||
#: src/blocks/search/edit.js:27
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:103
|
||||
msgid "Latest comments settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:118
|
||||
msgid "Display Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:126
|
||||
msgid "Display Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:134
|
||||
msgid "Display Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/edit.js:142
|
||||
msgid "Number of Comments"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/index.js:15
|
||||
msgid "Latest Comments (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/index.js:19
|
||||
msgid "Display a list of your most recent comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-comments/index.js:25
|
||||
msgid "recent comments"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:151
|
||||
msgid "Post content settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:157
|
||||
msgid "Post Content"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:168
|
||||
msgid "Show:"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:175
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:182
|
||||
msgid "Full Post"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:199
|
||||
msgid "Max number of words in excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:214
|
||||
msgid "Post meta settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:220
|
||||
msgid "Display post date"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:232
|
||||
msgid "Featured Image Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:238
|
||||
msgid "Display featured image"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:278
|
||||
msgid "Image Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:299
|
||||
msgid "Sorting and filtering"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:338
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:369
|
||||
msgid "Latest Posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:377
|
||||
msgid "No posts found."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:396
|
||||
msgid "List view"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/edit.js:402
|
||||
msgid "Grid view"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/index.js:15
|
||||
msgid "Latest Posts (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/index.js:19
|
||||
msgid "Display a list of your most recent posts."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/latest-posts/index.js:25
|
||||
msgid "recent posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:60
|
||||
msgid "Search settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:84
|
||||
msgid "Label text"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:88
|
||||
msgid "Add label…"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:98
|
||||
msgid "Optional placeholder text"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:108
|
||||
msgid "Optional placeholder…"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:120
|
||||
msgid "Button text"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/edit.js:124
|
||||
msgid "Add button text…"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/index.js:15
|
||||
msgid "Search (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/index.js:16
|
||||
msgid "Help visitors find your content."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/search/index.js:22
|
||||
msgid "find"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/tag-cloud/edit.js:73
|
||||
msgid "Tag Cloud settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/tag-cloud/edit.js:85
|
||||
msgid "Show post counts"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/tag-cloud/index.js:15
|
||||
msgid "Tag Cloud (Custom Post Type)"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/tag-cloud/index.js:16
|
||||
msgid "A cloud of your most used tags."
|
||||
msgstr ""
|
||||
700
spec/fixtures/dynamic_finders/plugin_version/customize-woo/translation_file/i18n/customize-woo.pot
vendored
Normal file
700
spec/fixtures/dynamic_finders/plugin_version/customize-woo/translation_file/i18n/customize-woo.pot
vendored
Normal file
@@ -0,0 +1,700 @@
|
||||
# Copyright (C) 2020 akshitsethi
|
||||
# This file is distributed under the same license as the Customize Woo plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Customize Woo 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/src\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-16T20:55:14+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: customize-woo\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/class-config.php:45
|
||||
msgid "Customize Woo"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Plugin to help customise WooCommerce with the help of actions and filters."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "akshitsethi"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://akshitsethi.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/header.php:17
|
||||
msgid "by"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/header.php:17
|
||||
msgid "Akshit Sethi"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/header.php:21
|
||||
#: inc/class-admin.php:68
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-about.php:14
|
||||
msgid "ABOUT"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-about.php:15
|
||||
msgid "Hola! I'm Akshit Sethi, Designer + Developer by profession & Entrepreneur by passion. In love with WWW and Spanish. Travel is life. When I am not coding, I am reading anything worth reading. I create premium WordPress themes & plugins."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-about.php:18
|
||||
msgid "Show me some love and connect with me via social channels."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-about.php:20
|
||||
#: inc/class-admin.php:98
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-about.php:24
|
||||
#: inc/class-admin.php:97
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:15
|
||||
msgid "AUTHENTICATION"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:16
|
||||
msgid "Configure options related to WooCommerce authentication."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:21
|
||||
msgid "Lost Password Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:22
|
||||
msgid "Lost password text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:24
|
||||
msgid "Changes text shown on the lost password screen."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:28
|
||||
msgid "Lost Password Confirmation Message"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:29
|
||||
msgid "Lost password confirmation message"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:31
|
||||
msgid "Changes text for lost password confirmation message."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:37
|
||||
msgid "Reset Password Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:38
|
||||
msgid "Reset password text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-authentication.php:40
|
||||
msgid "Changes text shown on the reset password screen."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:15
|
||||
msgid "CART"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:16
|
||||
msgid "Configure options for the WooCommerce Cart page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:21
|
||||
msgid "No Shipping Available Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:22
|
||||
msgid "No shipping available text on cart page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:24
|
||||
msgid "Changes the no shipping available text on cart."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:28
|
||||
msgid "Shipping Estimate Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:29
|
||||
msgid "Shipping estimate text on cart page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-cart.php:31
|
||||
msgid "Changes the shipping estimate text on cart."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:15
|
||||
msgid "CHECKOUT"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:16
|
||||
msgid "Configure options for the WooCommerce Checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:21
|
||||
msgid "Must be Logged-in Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:22
|
||||
msgid "Must be logged-in message on checkout page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:24
|
||||
msgid "Changes the message displayed when a customer must be logged in to checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:28
|
||||
msgid "Login Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:29
|
||||
msgid "Login message text on product page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:31
|
||||
msgid "Changes the message displayed if customers can login at checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:37
|
||||
msgid "Create Account Checkbox Default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:39
|
||||
msgid "Checked"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:40
|
||||
msgid "Unchecked"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:43
|
||||
msgid "Control the default state for the Create Account checkbox."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:47
|
||||
msgid "Order Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:48
|
||||
msgid "Place order button text on product page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:50
|
||||
msgid "Changes the \"Place Order\" button text on checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:56
|
||||
msgid "Show Checkout Terms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:59
|
||||
msgid "Show or hide Terms & Conditions checkbox on checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:63
|
||||
msgid "Show Order Notes Field"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-checkout.php:66
|
||||
msgid "Show or hide Order notes field on checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:15
|
||||
msgid "MISC"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:16
|
||||
msgid "Configure other options for the WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:21
|
||||
msgid "Tax Label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:22
|
||||
msgid "Taxes label text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:24
|
||||
msgid "Changes the Taxes label."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:28
|
||||
msgid "Including Tax Label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:29
|
||||
msgid "Including taxes label text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:31
|
||||
msgid "Changes the including Taxes label."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:37
|
||||
msgid "Excluding Tax Label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:38
|
||||
msgid "Excluding taxes label text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:40
|
||||
msgid "Changes the excluding Taxes label."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:44
|
||||
msgid "Order Received Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:45
|
||||
msgid "Order received thank you text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-misc.php:47
|
||||
msgid "Changes the Order received text on thank you page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:15
|
||||
msgid "PRODUCT"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:16
|
||||
msgid "Configure options for the WooCommerce Product page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:21
|
||||
msgid "Product Description Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:22
|
||||
msgid "Product description tab title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:24
|
||||
msgid "Changes the product description tab title."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:28
|
||||
msgid "Product Description Tab Heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:29
|
||||
msgid "Product description tab heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:31
|
||||
msgid "Changes the product description tab heading."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:37
|
||||
msgid "Reviews Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:38
|
||||
msgid "Reviews tab title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:40
|
||||
msgid "Changes the reviews tab title."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:44
|
||||
msgid "Reviews Tab Heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:45
|
||||
msgid "Unfortunately, WooCommerce does not provide a method to modify this."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:51
|
||||
msgid "Additional Information Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:52
|
||||
msgid "Additional information tab title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:54
|
||||
msgid "Changes the additional information tab title."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:58
|
||||
msgid "Additional Information Tab Heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:59
|
||||
msgid "Additional information tab heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:61
|
||||
msgid "Changes the additional information tab heading."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:67
|
||||
msgid "Add to Cart Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:68
|
||||
msgid "Add to Cart text for all product types"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:70
|
||||
msgid "Changes the Add to Cart button text on the single product page for all product types."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:74
|
||||
msgid "Out of Stock Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:75
|
||||
msgid "Out of Stock text on product page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:77
|
||||
msgid "Changes text for the out of stock on product pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:83
|
||||
msgid "Backorder Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:84
|
||||
msgid "Backorder text on product page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:86
|
||||
msgid "Changes text for the backorder on product pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:90
|
||||
#: inc/admin/views/settings-shop.php:60
|
||||
msgid "Sale Badge Text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:91
|
||||
msgid "Sale badge text on product page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-product.php:93
|
||||
msgid "Changes text for the sale flash on product pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:15
|
||||
msgid "SHOP"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:16
|
||||
msgid "Configure options for the WooCommerce Shop page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:21
|
||||
msgid "Simple Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:22
|
||||
msgid "Add to Cart button text for simple products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:24
|
||||
msgid "Changes the add to cart button text for simple products on all loop pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:28
|
||||
msgid "Variable Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:29
|
||||
msgid "Add to Cart button text for variable products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:31
|
||||
msgid "Changes the add to cart button text for variable products on all loop pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:37
|
||||
msgid "Grouped Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:38
|
||||
msgid "Add to Cart button text for grouped products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:40
|
||||
msgid "Changes the add to cart button text for grouped products on all loop pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:44
|
||||
msgid "Out of Stock Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:45
|
||||
msgid "Add to Cart button text for out of stock products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:47
|
||||
msgid "Changes the add to cart button text for out of stock products on all loop pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:53
|
||||
msgid "External Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:54
|
||||
msgid "Add to Cart button text for external products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:56
|
||||
msgid "Changes the add to cart button text for external products."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:61
|
||||
msgid "Add text for Sale badge"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:63
|
||||
msgid "Changes text for the sale flash on all loop pages."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:69
|
||||
msgid "Products Displayed Per Page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:81
|
||||
msgid "Changes the number of products displayed per page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:85
|
||||
msgid "Product Columns Displayed Per Page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:97
|
||||
msgid "Changes the number of product columns displayed per page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:103
|
||||
msgid "Product Thumbnail Columns Displayed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-shop.php:115
|
||||
msgid "Changes the number of products thumbnail columns displayed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:15
|
||||
msgid "SUPPORT"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:16
|
||||
msgid "Getting help is just a click away now. Report the issue you are facing with the plugin using the form below and we will get back to you at the email address provided."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:20
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:21
|
||||
msgid "Please provide your email address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:23
|
||||
msgid "You will receive support response at this email address."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:27
|
||||
msgid "Issue / Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings-support.php:28
|
||||
#: inc/admin/views/settings-support.php:30
|
||||
msgid "Please explain the issue you are facing with the plugin. Provide as much detail as possible."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:17
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:22
|
||||
msgid "Shop"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:23
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:24
|
||||
msgid "Cart"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:25
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:26
|
||||
msgid "Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:27
|
||||
msgid "Misc"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:28
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/views/settings.php:29
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:44
|
||||
#: inc/class-admin.php:45
|
||||
msgid "Customizer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:69
|
||||
msgid "Ask for Support"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:70
|
||||
msgid "Please save your changes first."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:71
|
||||
msgid "Processing.."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:123
|
||||
msgid "There was an error processing the request. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:128
|
||||
msgid "Request does not seem to be a valid one. Please try again by refreshing the page."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:198
|
||||
msgid "Options have been updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:219
|
||||
msgid "Please fill in both the fields to create your support ticket."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:235
|
||||
msgid "I have received your support ticket and will get back to you shortly!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-admin.php:241
|
||||
msgid "There was an error creating the support ticket. You can try again later or send me an email directly at akshitsethi@gmail.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:57
|
||||
#: inc/class-config.php:73
|
||||
msgid "Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:58
|
||||
msgid "Select Options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:59
|
||||
msgid "View Options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:60
|
||||
msgid "Out of Stock"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:61
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:62
|
||||
#: inc/class-config.php:76
|
||||
msgid "Sale!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:68
|
||||
#: inc/class-config.php:69
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:70
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:71
|
||||
#: inc/class-config.php:72
|
||||
msgid "Additional Information"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:74
|
||||
msgid "Out of stock"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:75
|
||||
msgid "Available on backorder"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:79
|
||||
msgid "There are no shipping options available. Please ensure that your address has been entered correctly, or contact us if you need any help."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:80
|
||||
msgid "Shipping options will be updated during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:83
|
||||
msgid "You must be logged in to checkout."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:84
|
||||
msgid "Returning customer?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:86
|
||||
msgid "Place order"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:96
|
||||
msgid "Tax for USA, VAT for European countries"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:97
|
||||
msgid "Inc. tax for USA, Inc. VAT for European countries"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:98
|
||||
msgid "Exc. tax for USA, Exc. VAT for European countries"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-config.php:99
|
||||
msgid "Thank you. Your order has been received."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Placeholder: %s - sale percentage
|
||||
#: inc/class-front.php:237
|
||||
msgid "up to %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - <strong>, %2$s - </strong>, %3$s - <a>, %4$s - version number, %5$s - </a>
|
||||
#: inc/class-woocheck.php:61
|
||||
msgid "%1$sWooCommerce Customizer won't work properly%2$s as it requires WooCommerce. Please %3$sactivate%4$s WooCommerce version %5$s or newer."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 02 April 2020 =
|
||||
|
||||
* Initial release
|
||||
@@ -0,0 +1,48 @@
|
||||
# Copyright (C) 2020 Jake Spurlock
|
||||
# This file is distributed under the same license as the Disable Automatic Theme & Plugin Updates package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Disable Automatic Theme & Plugin Updates 0.1.4\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/disable-plugin-theme-auto-updates\n"
|
||||
"POT-Creation-Date: 2020-06-02 23:45:13+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"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Disable Automatic Theme & Plugin Updates"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/whyisjake/disable-automatic-updates"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Simply disable automatic theme and plugin updates that are part of "
|
||||
"WordPress 5.5."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Jake Spurlock"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://jakespurlock.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,151 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Shopping discounts v1.0\n"
|
||||
"POT-Creation-Date: 2020-06-01 21:50+0200\n"
|
||||
"PO-Revision-Date: 2020-06-01 21:54+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: it_IT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: dn-shopping-discounts.php:37
|
||||
msgid "Percent"
|
||||
msgstr "Percentuale"
|
||||
|
||||
#: dn-shopping-discounts.php:38
|
||||
msgid "Fix"
|
||||
msgstr "Fisso"
|
||||
|
||||
#: dn-shopping-discounts.php:40
|
||||
msgid "Unknow"
|
||||
msgstr "Sconosciuto"
|
||||
|
||||
#: dn-shopping-discounts.php:55
|
||||
msgid ""
|
||||
"Discounts will be applied according to the <b>total expense</b> made by the "
|
||||
"user."
|
||||
msgstr ""
|
||||
"Gli sconti verranno applicati in base alla <b> spesa totale </b> effettuata "
|
||||
"dall'utente."
|
||||
|
||||
#: dn-shopping-discounts.php:56
|
||||
msgid ""
|
||||
"Only the first one published, which matchs the requirements, will be used, "
|
||||
"in ascending order based on the number entered in the \"order\" field"
|
||||
msgstr ""
|
||||
"Verrà utilizzato solo il primo pubblicato, che corrisponde ai requisiti, in "
|
||||
"ordine crescente in base al numero immesso nel campo \"ordine\""
|
||||
|
||||
#: dn-shopping-discounts.php:57
|
||||
msgid "Use the test page to verify that the discounts are working properly."
|
||||
msgstr ""
|
||||
"Utilizzare la pagina di Test per verificare che gli sconti funzionino "
|
||||
"correttamente."
|
||||
|
||||
#: dn-shopping-discounts.php:61
|
||||
msgid "Use the comma to indicate decimals, without point separator"
|
||||
msgstr ""
|
||||
"Utilizza la virgola per indicare i decimali, non utilizzare i punti per "
|
||||
"separare le centinaia"
|
||||
|
||||
#: dn-shopping-discounts.php:62
|
||||
msgid "Leave blank field \"To\" for set to not limits"
|
||||
msgstr "Lascia il campo \"A\" vuoto per impostare senza limiti"
|
||||
|
||||
#: dn-shopping-discounts.php:66
|
||||
msgid "For help or more informations contact "
|
||||
msgstr "Per aiuto o maggiori informazioni contattare"
|
||||
|
||||
#: dn-shopping-discounts.php:70
|
||||
msgid "Discount setting"
|
||||
msgstr "Impostazione sconto"
|
||||
|
||||
#: dn-shopping-discounts.php:71 dn-shopping-discounts.php:74
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
#: dn-shopping-discounts.php:74 dn-shopping-discounts.php:188
|
||||
#: dn-shopping-discounts.php:189 dn-shopping-discounts.php:190
|
||||
#: dn-shopping-discounts.php:191
|
||||
msgid "Shopping discounts"
|
||||
msgstr "Sconto spesa"
|
||||
|
||||
#: dn-shopping-discounts.php:74
|
||||
msgid "This page allows to test discounts rules"
|
||||
msgstr "Questa pagina permette di verificare le regole inserite"
|
||||
|
||||
#: dn-shopping-discounts.php:75
|
||||
msgid "Insert total cart value"
|
||||
msgstr "Inserisci totale spesa"
|
||||
|
||||
#: dn-shopping-discounts.php:75
|
||||
msgid "Start test"
|
||||
msgstr "Inizia test"
|
||||
|
||||
#: dn-shopping-discounts.php:78
|
||||
msgid "Results for"
|
||||
msgstr "Risultato per"
|
||||
|
||||
#: dn-shopping-discounts.php:80
|
||||
msgid "Title"
|
||||
msgstr "Titolo"
|
||||
|
||||
#: dn-shopping-discounts.php:80
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#: dn-shopping-discounts.php:80 dn-shopping-discounts.php:95
|
||||
#: dn-shopping-discounts.php:164
|
||||
msgid "Discount"
|
||||
msgstr "Sconto"
|
||||
|
||||
#: dn-shopping-discounts.php:80
|
||||
msgid "New total"
|
||||
msgstr "Nuovo totale"
|
||||
|
||||
#: dn-shopping-discounts.php:86
|
||||
msgid "There are no applicable discounts for"
|
||||
msgstr "Non ci sono regole applicabili a"
|
||||
|
||||
#: dn-shopping-discounts.php:87
|
||||
msgid "Update results for"
|
||||
msgstr "Aggiorna risultati per"
|
||||
|
||||
#: dn-shopping-discounts.php:90
|
||||
msgid "Definition of the discount range"
|
||||
msgstr "Definizione del range di azione dello sconto"
|
||||
|
||||
#: dn-shopping-discounts.php:92 dn-shopping-discounts.php:165
|
||||
msgid "Order"
|
||||
msgstr "Ordinamento"
|
||||
|
||||
#: dn-shopping-discounts.php:93
|
||||
msgid "Apply from"
|
||||
msgstr "Applica da"
|
||||
|
||||
#: dn-shopping-discounts.php:94
|
||||
msgid "Apply to"
|
||||
msgstr "Applica fino a"
|
||||
|
||||
#: dn-shopping-discounts.php:162
|
||||
msgid "From"
|
||||
msgstr "Da"
|
||||
|
||||
#: dn-shopping-discounts.php:163
|
||||
msgid "To"
|
||||
msgstr "A"
|
||||
|
||||
#: dn-shopping-discounts.php:173
|
||||
msgid "No limits"
|
||||
msgstr "Senza limite"
|
||||
|
||||
#: dn-shopping-discounts.php:192
|
||||
msgid "Add discount"
|
||||
msgstr "Aggiungi sconto"
|
||||
@@ -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
29
spec/fixtures/dynamic_finders/plugin_version/embed-mixcloud-advanced/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/embed-mixcloud-advanced/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "mixcloud-embed-advanced",
|
||||
"version": "0.0.1",
|
||||
"description": "",
|
||||
"author": "Evgeny Veliky",
|
||||
"license": "GPL-2.0",
|
||||
"keywords": [
|
||||
"WordPress",
|
||||
"Mixcloud",
|
||||
"Gutenberg"
|
||||
],
|
||||
"main": "dist/index.min.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build --config webpack.config.js",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start --config webpack.config.js",
|
||||
"build-css": "node-sass frontend/style.scss dist/style.min.css --output-style compressed"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/block-library": "^2.16.1",
|
||||
"@wordpress/components": "^9.4.1",
|
||||
"@wordpress/scripts": "^8.0.1",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.14.1",
|
||||
"style-loader": "^1.2.1"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
138
spec/fixtures/dynamic_finders/plugin_version/exodox/translation_file/languages/exodox.pot
vendored
Normal file
138
spec/fixtures/dynamic_finders/plugin_version/exodox/translation_file/languages/exodox.pot
vendored
Normal file
@@ -0,0 +1,138 @@
|
||||
# Copyright (C) 2020 Vinnovera
|
||||
# This file is distributed under the same license as the Exodox plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Exodox 0.7.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/exodox\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-05-27T08:28:04+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: exodox\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: exodox.php:158
|
||||
msgid "Exodox"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://exodox.link/get-plugin/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Exodox content lock plugin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Vinnovera"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://vinnovera.se"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:130
|
||||
#: exodox.php:220
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:137
|
||||
msgid "Publisher ID"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:157
|
||||
msgid "Exodox - Lock content"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:559
|
||||
msgid "Read the whole article for only %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:565
|
||||
#: exodox.php:1189
|
||||
msgid "The article is locked with Exodox; but you, as administrator, can still read it."
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:569
|
||||
msgid "The article is unlocked, available for %1$s more"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:572
|
||||
msgid "Locked content. You must allow cookies in order to be able to purchase this article."
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:956
|
||||
#: exodox.php:991
|
||||
msgid "%s day"
|
||||
msgid_plural "%s days"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: exodox.php:964
|
||||
#: exodox.php:983
|
||||
msgid "%s hour"
|
||||
msgid_plural "%s hours"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: exodox.php:1090
|
||||
msgid "%1$sWhat is Exodox?%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1172
|
||||
msgid "Unlock"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1193
|
||||
msgid "The article is unlocked. Read the entire article for %s more"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1199
|
||||
msgid "You must allow cookies in order to be able to purchase this article."
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1200
|
||||
#: exodox.php:1219
|
||||
#: exodox.php:1238
|
||||
#: exodox.php:1257
|
||||
msgid "%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1201
|
||||
#: exodox.php:1220
|
||||
#: exodox.php:1239
|
||||
#: exodox.php:1258
|
||||
msgid "%s access"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1203
|
||||
msgid "Read more here"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1218
|
||||
msgid "You need an Exodox account in order to be able to purchase this article."
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1222
|
||||
msgid "Create account / log in"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1237
|
||||
msgid "Unfortunately your previous purchase has expired for this article."
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1241
|
||||
msgid "Buy again"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1256
|
||||
msgid "Logged in with Exodox"
|
||||
msgstr ""
|
||||
|
||||
#: exodox.php:1294
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,32 @@
|
||||
# Copyright (C) 2020 Kartik Parmar
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Change Filter By Price Display for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-change-filter-by-price-display\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-04-18T21:56:22+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wc-change-filter-by-price-display\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Change Filter By Price Display for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.kartechify.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugins allows to change the display of Filter Products by Price widget on front end. You can set minimum & maximum price as well as the steps in price slider. Also, you can change the color of price slider and add more content before and after the widget display."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Kartik Parmar"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,787 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Stripe Bancontact Pot v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
||||
"POT-Creation-Date: 2020-05-22 16:27+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Rutger De Wilde <rutger@bitsandarts.be>\n"
|
||||
"Language: nl_BE\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"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:155
|
||||
msgid "Manage Products"
|
||||
msgstr "Artikels Beheren"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:158
|
||||
#: includes/pages/add_product.php:14
|
||||
msgid "Add Product"
|
||||
msgstr "Artikel Toevoegen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:161
|
||||
#: includes/pages/edit_coupon.php:12 includes/pages/edit_product.php:27
|
||||
msgid "Edit Product"
|
||||
msgstr "Artikel Bewerken"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:164
|
||||
#: includes/pages/settings_orders.php:8
|
||||
msgid "Manage Orders"
|
||||
msgstr "Orders Beheren"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:167
|
||||
msgid "Manage Coupons"
|
||||
msgstr "Coupons Beheren"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:170 includes/pages/add_coupon.php:7
|
||||
msgid "Add Coupon"
|
||||
msgstr "Coupon Toevoegen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:173
|
||||
msgid "Edit Coupon"
|
||||
msgstr "Coupon Bewerken"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:176
|
||||
#: includes/class-wp-stripe-bancontact.php:353
|
||||
#: includes/pages/settings_shipping.php:58
|
||||
msgid "Shipping"
|
||||
msgstr "Verzending"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:181
|
||||
msgid "Settings"
|
||||
msgstr "Instellingen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:286
|
||||
msgid "The Five Minute Webshop plugin requires an SSL connection."
|
||||
msgstr "De Five Minute Webshop plugin vereist een SSL verbinding."
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:292
|
||||
msgid ""
|
||||
"You need to connect to Stripe to use the Five Minute Webshop plugin. You can "
|
||||
"do this in the "
|
||||
msgstr ""
|
||||
"Je dient te verbinden met Stripe alvorens je de Five Minute Webshop plugin "
|
||||
"kan gebruiken. Je kan dit doen in de "
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:292
|
||||
msgid "settings"
|
||||
msgstr "instellingen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:319
|
||||
msgid "Something went wrong. Please contact site administrator."
|
||||
msgstr "Er is iets misgelopen, contacteer aub de site administrator."
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:320
|
||||
msgid ""
|
||||
"Something went wrong checking your payment. Please check your email for "
|
||||
"order confirmation."
|
||||
msgstr ""
|
||||
"Er is iets misgelopen bij het controleren van de betaling. Gelieve jouw "
|
||||
"email te controleren voor de order bevestiging."
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:321
|
||||
msgid "We're sorry but your payment was not successful. Please try again."
|
||||
msgstr ""
|
||||
"Het spijt ons maar de betaling is niet geslaagd. Probeer het alsjeblieft "
|
||||
"opnieuw."
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:322
|
||||
msgid "Your order was canceled. "
|
||||
msgstr "Uw order werd geannuleerd. "
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:323
|
||||
msgid "Payment Successful!"
|
||||
msgstr "Betaling geslaagd!"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:324
|
||||
msgid "You are being redirected to the home page"
|
||||
msgstr "Je wordt nu doorverwezen naar de homepagina"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:325
|
||||
msgid "Rechecking Payment"
|
||||
msgstr "Betaling opnieuw controleren"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:326
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:64
|
||||
#: includes/components/class-wp-sb-list-table-products.php:66
|
||||
#: includes/pages/edit_product.php:24 includes/pages/settings_shipping.php:34
|
||||
msgid "Delete"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:327
|
||||
msgid "Are you sure you want to delete this product?"
|
||||
msgstr "Bent u zeker dat u dit artikel wilt verwijderen?"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:328
|
||||
msgid "You must set a code"
|
||||
msgstr "Een code is verplicht"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:329
|
||||
msgid "you must set either a fixed amount or a percentage"
|
||||
msgstr "je moet ofwel een vast bedrag, ofwel een percentage ingeven"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:330
|
||||
msgid "you must set either a fixed amount or a percentage, not both"
|
||||
msgstr ""
|
||||
"je moet ofwel een vast bedrag, ofwel een percentage ingeven, maar niet beiden"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:331
|
||||
msgid "Fixed amount must be numeric"
|
||||
msgstr "Het vast bedrag dient numeriek te zijn"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:332
|
||||
msgid "Percentage must be numeric"
|
||||
msgstr "Het percentage dient numeriek te zijn"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:333
|
||||
msgid "you must set a quantity"
|
||||
msgstr "je moet een aantal ingeven"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:334
|
||||
msgid "Quantity must be numeric"
|
||||
msgstr "Aantal dient numeriek te zijn"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:335
|
||||
msgid "Coupon"
|
||||
msgstr "Coupon"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:336
|
||||
msgid "Coupon has been used up"
|
||||
msgstr "Coupon is opgebruikt"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:337
|
||||
msgid "Coupon has expired"
|
||||
msgstr "Coupon is vervallen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:338
|
||||
msgid "Please provide a coupon code"
|
||||
msgstr "Gelieve een coupon code in te geven"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:339
|
||||
msgid "Coupon code invalid"
|
||||
msgstr "Coupon code is ongeldig"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:340
|
||||
msgid "Are you sure you want to delete this coupon?"
|
||||
msgstr "Bent u zeker dat u deze coupon wilt verwijderen?"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:341
|
||||
msgid "Select image to upload"
|
||||
msgstr "Selecteer een afbeelding om te uploaden"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:342
|
||||
msgid "Use this image"
|
||||
msgstr "Gebruik deze afbeelding"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:343
|
||||
msgid "Copied!"
|
||||
msgstr "Gekopiëerd!"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:344
|
||||
msgid "Account Connected"
|
||||
msgstr "Account Geconnecteerd"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:345
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:20
|
||||
#: includes/pages/edit_product.php:17 includes/shortcodes/class-checkout.php:40
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:346
|
||||
#: includes/pages/edit_product.php:21
|
||||
msgid "Unit Of Measure"
|
||||
msgstr "Eenheid"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:347
|
||||
#: includes/pages/edit_product.php:19
|
||||
msgid "Value"
|
||||
msgstr "Waarde"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:348
|
||||
msgid "Less Info"
|
||||
msgstr "Minder Info"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:349
|
||||
#: includes/shortcodes/class-simple-product.php:44
|
||||
msgid "More Info"
|
||||
msgstr "Meer Info"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:350
|
||||
#: includes/pages/settings_shipping.php:31
|
||||
#: includes/pages/settings_shipping.php:64
|
||||
msgid "Shipping Cost"
|
||||
msgstr "Verzendingskost"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:351
|
||||
#: includes/pages/settings_shipping.php:32
|
||||
#: includes/pages/settings_shipping.php:65
|
||||
msgid "Cost"
|
||||
msgstr "Kost"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:352
|
||||
msgid "Saved"
|
||||
msgstr "Opgeslagen"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:354
|
||||
msgid "Free Shipping"
|
||||
msgstr "Gratis Verzending"
|
||||
|
||||
#: includes/class-wp-stripe-bancontact.php:355
|
||||
msgid "We're sorry, we do not offer shipping to your country."
|
||||
msgstr "Het spijt ons, wij bieden geen verzending naar jouw land aan."
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:15
|
||||
#: includes/pages/add_coupon.php:12 includes/pages/add_coupon.php:13
|
||||
#: includes/pages/edit_coupon.php:17 includes/pages/edit_coupon.php:18
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:16
|
||||
#: includes/pages/add_coupon.php:17 includes/pages/add_coupon.php:18
|
||||
#: includes/pages/edit_coupon.php:21 includes/pages/edit_coupon.php:22
|
||||
msgid "Fixed Amount"
|
||||
msgstr "Vast Bedrag"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:17
|
||||
#: includes/pages/add_coupon.php:22 includes/pages/add_coupon.php:23
|
||||
#: includes/pages/edit_coupon.php:25 includes/pages/edit_coupon.php:26
|
||||
msgid "Percentage"
|
||||
msgstr "Percentage"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:18
|
||||
#: includes/pages/add_coupon.php:27 includes/pages/add_coupon.php:28
|
||||
#: includes/pages/edit_coupon.php:29 includes/pages/edit_coupon.php:30
|
||||
msgid "Total Quantity"
|
||||
msgstr "Totale Hoeveelheid"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-coupons.php:19
|
||||
msgid "Quantity Remaining"
|
||||
msgstr "Resterende Hoeveelheid"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:21
|
||||
#: includes/shortcodes/class-checkout.php:41
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:22
|
||||
msgid "Amount"
|
||||
msgstr "Bedrag"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:23
|
||||
msgid "Date"
|
||||
msgstr "Datum"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:24
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:25
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-orders.php:75
|
||||
msgid "Stripe payment"
|
||||
msgstr "Stripe betaling"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:17
|
||||
#: includes/pages/add_product.php:27 includes/pages/add_product.php:28
|
||||
#: includes/pages/edit_product.php:40 includes/pages/edit_product.php:41
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:18
|
||||
#: includes/pages/add_product.php:37 includes/pages/add_product.php:38
|
||||
#: includes/pages/edit_product.php:50 includes/pages/edit_product.php:51
|
||||
msgid "Unit Price"
|
||||
msgstr "Eenheidsprijs"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:19
|
||||
#: includes/pages/add_product.php:42 includes/pages/add_product.php:43
|
||||
#: includes/pages/edit_product.php:55 includes/pages/edit_product.php:56
|
||||
msgid "VAT Percentage"
|
||||
msgstr "BTW Percentage"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:20
|
||||
msgid "Shortcode"
|
||||
msgstr "Shortcode"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:67
|
||||
#: includes/pages/edit_coupon.php:33 includes/pages/edit_product.php:68
|
||||
msgid "Edit"
|
||||
msgstr "Bewerken"
|
||||
|
||||
#: includes/components/class-wp-sb-list-table-products.php:73
|
||||
msgid "Copy to clipboard"
|
||||
msgstr "Kopiëer naar klembord"
|
||||
|
||||
#: includes/functions/functions.php:56
|
||||
msgid "Order Confirmation From "
|
||||
msgstr "Order Bevestiging Van "
|
||||
|
||||
#: includes/functions/functions.php:58
|
||||
msgid "TEST Order Confirmation From "
|
||||
msgstr "TEST Order Bevestiging Van "
|
||||
|
||||
#: includes/functions/functions.php:68
|
||||
msgid "Dear "
|
||||
msgstr "Beste "
|
||||
|
||||
#: includes/functions/functions.php:69
|
||||
msgid ""
|
||||
"We are pleased to confirm we have received your order of the following "
|
||||
"items: "
|
||||
msgstr ""
|
||||
"We kunnen u met plezier bevestigen dat we het order van de volgende artikels "
|
||||
"goed ontvangen hebben: "
|
||||
|
||||
#: includes/functions/functions.php:77
|
||||
msgid "Quantity"
|
||||
msgstr "Hoeveelheid"
|
||||
|
||||
#: includes/functions/functions.php:82
|
||||
msgid "Order status: "
|
||||
msgstr "Order status: "
|
||||
|
||||
#: includes/functions/functions.php:83
|
||||
msgid "Payment received"
|
||||
msgstr "Betaling ontvangen"
|
||||
|
||||
#: includes/functions/functions.php:84
|
||||
msgid "Thank you for your order!"
|
||||
msgstr "Bedankt voor jouw order!"
|
||||
|
||||
#: includes/functions/functions.php:85
|
||||
msgid "Sincerely,"
|
||||
msgstr "Met vriendelijke groeten,"
|
||||
|
||||
#: includes/functions/functions.php:87
|
||||
msgid "powered by "
|
||||
msgstr "powered by "
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:169
|
||||
msgid "List View"
|
||||
msgstr "Lijst weergave"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:170
|
||||
msgid "Excerpt View"
|
||||
msgstr "Uittreksel weergave"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:335
|
||||
msgid "No items found."
|
||||
msgstr "Geen artikels gevonden."
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:464
|
||||
msgid "Select bulk action"
|
||||
msgstr "Selecteer bulk actie"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:466
|
||||
msgid "Bulk Actions"
|
||||
msgstr "Bulk Acties"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:476
|
||||
msgid "Apply"
|
||||
msgstr "Toepassen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:528
|
||||
#: includes/libraries/class-wp-list-table.php:1350
|
||||
msgid "Show more details"
|
||||
msgstr "Toon meer details"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:596
|
||||
msgid "Filter by date"
|
||||
msgstr "Filteren op datum"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:598
|
||||
msgid "All dates"
|
||||
msgstr "Alle datums"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:613
|
||||
#, php-format
|
||||
msgid "%1$s %2$d"
|
||||
msgstr "%1$s %2$d"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:664
|
||||
#, php-format
|
||||
msgid "%s comment"
|
||||
msgid_plural "%s comments"
|
||||
msgstr[0] "%s opmerking"
|
||||
msgstr[1] "%s opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:665
|
||||
#, php-format
|
||||
msgid "%s approved comment"
|
||||
msgid_plural "%s approved comments"
|
||||
msgstr[0] "%s goedgekeurde opmerking"
|
||||
msgstr[1] "%s goedgekeurde opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:666
|
||||
#, php-format
|
||||
msgid "%s pending comment"
|
||||
msgid_plural "%s pending comments"
|
||||
msgstr[0] "%s openstaande opmerking"
|
||||
msgstr[1] "%s openstaande opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:672
|
||||
#: includes/libraries/class-wp-list-table.php:694
|
||||
#: includes/libraries/class-wp-list-table.php:717
|
||||
msgid "No comments"
|
||||
msgstr "Geen opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:694
|
||||
msgid "No approved comments"
|
||||
msgstr "Geen goedgekeurde opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:717
|
||||
msgid "No pending comments"
|
||||
msgstr "Geen openstaande opmerkingen"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:793
|
||||
#: includes/libraries/class-wp-list-table.php:1374
|
||||
#, php-format
|
||||
msgid "%s item"
|
||||
msgid_plural "%s items"
|
||||
msgstr[0] "%s artikel"
|
||||
msgstr[1] "%s artikels"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:830
|
||||
msgid "First page"
|
||||
msgstr "Eerste pagina"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:841
|
||||
msgid "Previous page"
|
||||
msgstr "Vorige pagina"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:848
|
||||
#: includes/libraries/class-wp-list-table.php:852
|
||||
msgid "Current Page"
|
||||
msgstr "Huidige pagina"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:858
|
||||
#, php-format
|
||||
msgctxt "paging"
|
||||
msgid "%1$s of %2$s"
|
||||
msgstr "%1$s van %2$s"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:866
|
||||
msgid "Next page"
|
||||
msgstr "Volgende pagina"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:877
|
||||
msgid "Last page"
|
||||
msgstr "Laatste pagina"
|
||||
|
||||
#: includes/libraries/class-wp-list-table.php:1099
|
||||
msgid "Select All"
|
||||
msgstr "Selecteer alles"
|
||||
|
||||
#: includes/pages/add_coupon.php:32
|
||||
msgid "Expiration Date"
|
||||
msgstr "Vervaldatum"
|
||||
|
||||
#: includes/pages/add_coupon.php:37 includes/pages/add_product.php:54
|
||||
msgid "Add"
|
||||
msgstr "Toevoegen"
|
||||
|
||||
#: includes/pages/add_product.php:22 includes/pages/edit_product.php:35
|
||||
msgid "Upload image"
|
||||
msgstr "Afbeelding uploaden"
|
||||
|
||||
#: includes/pages/add_product.php:32 includes/pages/add_product.php:33
|
||||
#: includes/pages/edit_product.php:45 includes/pages/edit_product.php:46
|
||||
msgid "Description"
|
||||
msgstr "Omschrijving"
|
||||
|
||||
#: includes/pages/add_product.php:47 includes/pages/edit_product.php:60
|
||||
#: includes/shortcodes/class-simple-product.php:49
|
||||
msgid "Specifications"
|
||||
msgstr "Specificaties"
|
||||
|
||||
#: includes/pages/add_product.php:49 includes/pages/edit_product.php:63
|
||||
msgid "Add Specification"
|
||||
msgstr "Specificatie toevoegen"
|
||||
|
||||
#: includes/pages/cart.php:13
|
||||
msgid "VAT included"
|
||||
msgstr "BTW inclusief"
|
||||
|
||||
#: includes/pages/cart.php:14
|
||||
msgid "There are no items in the shopping cart"
|
||||
msgstr "Geen artikels gevonden in het winkelmandje"
|
||||
|
||||
#: includes/pages/general_settings.php:30
|
||||
msgid ""
|
||||
"This plugin requires an SSL connection. Without SSL you cannot connect to "
|
||||
"stripe and cannot process payments."
|
||||
msgstr ""
|
||||
"Deze plugin vereist een SSL connectie. Zonder SSL kan je niet verbinden met "
|
||||
"stripe en kan je geen betalingen ontvangen."
|
||||
|
||||
#: includes/pages/general_settings.php:38
|
||||
msgid "You are currently connected to Stripe, click here to disconnect."
|
||||
msgstr ""
|
||||
"Je bent momenteel verbonden met Stripe, klik hier om de verbinding te "
|
||||
"verbreken."
|
||||
|
||||
#: includes/pages/general_settings.php:38
|
||||
msgid "Disconnect"
|
||||
msgstr "Verbinding Verbreken"
|
||||
|
||||
#: includes/pages/general_settings.php:42
|
||||
msgid "General settings"
|
||||
msgstr "Algemene instellingen"
|
||||
|
||||
#: includes/pages/general_settings.php:50
|
||||
msgid "Test Mode"
|
||||
msgstr "Test Modus"
|
||||
|
||||
#: includes/pages/general_settings.php:50
|
||||
msgid ""
|
||||
"Test mode. if this option is checked, only the test keys will be used and "
|
||||
"test data will be registered to Stripe. Check your dashboard on your stripe."
|
||||
"com account. There is an option for viewing test data. Please make sure "
|
||||
"everything works properly in test mode before unchecking this box. Orders in "
|
||||
"test mode will not be visible in production and vice versa. You will need to "
|
||||
"reconnect when going live."
|
||||
msgstr ""
|
||||
"Test Modus. Als deze optie is aangevinkt, zullen enkel de test keys gebruikt "
|
||||
"worden en enkel testdata zal doorgestuurd worden naar Stripe. Controleer uw "
|
||||
"dashboard op uw stripe.com account. U vindt er een optie voor het bekijken "
|
||||
"van test data. Controleer en test alles eerst goed in test modus alvorens "
|
||||
"dit uit te vinken. Bestelling in test modus zullen niet zichtbaar zijn in "
|
||||
"productie en vice versa. Je zal opnieuw moeten connecteren wanneer je "
|
||||
"overschakelt naar 'live'."
|
||||
|
||||
#: includes/pages/general_settings.php:55
|
||||
msgid "Cart Icon Menu"
|
||||
msgstr "Menu Winkelmandje"
|
||||
|
||||
#: includes/pages/general_settings.php:55
|
||||
msgid ""
|
||||
"The Menu where you want to place the cart icon to go to the checkout page."
|
||||
msgstr ""
|
||||
"Het Menu waar je het winkelmandje om naar de checkout pagina te gaan aan wil "
|
||||
"toevoegen."
|
||||
|
||||
#: includes/pages/general_settings.php:62
|
||||
msgid "Cart Icon Color"
|
||||
msgstr "Kleur Winkelmandje"
|
||||
|
||||
#: includes/pages/general_settings.php:62
|
||||
msgid "The color of the cart menu icon in hex format."
|
||||
msgstr "De gewenste kleur van het winkelmandje in hex formaat."
|
||||
|
||||
#: includes/pages/general_settings.php:67
|
||||
msgid "Checkout Cart Page"
|
||||
msgstr "Checkout Winkelmandje Pagina"
|
||||
|
||||
#: includes/pages/general_settings.php:67
|
||||
msgid ""
|
||||
"The checkout cart page to redirect to when clicking the shopping cart. A "
|
||||
"default page is generated on activiation of this plugin. Use the "
|
||||
"[checkout_bc] shortcode to create your own."
|
||||
msgstr ""
|
||||
"De checkout pagina waarnaar doorverwezen wordt als op het winkelmandje "
|
||||
"geklikt wordt. Er wordt een standaard pagina aangemaakt bij het activeren "
|
||||
"van deze plugin. Gebruik de [checkout_bc] shortcode om je eigen pagina te "
|
||||
"maken."
|
||||
|
||||
#: includes/pages/general_settings.php:74
|
||||
msgid "Creditcard Checkout Page"
|
||||
msgstr "Creditcard Checkout Pagina"
|
||||
|
||||
#: includes/pages/general_settings.php:74
|
||||
msgid ""
|
||||
"The checkout page for credit cards to redirect to when clicking the pay "
|
||||
"button in the checkout page. A default page is generated on activiation of "
|
||||
"this plugin. Use the [checkout_cc] shortcode to create your own."
|
||||
msgstr ""
|
||||
"De checkout pagina voor creditcards waarnaar doorverwezen wordt als op de "
|
||||
"betalen knop in de checkout pagina geklikt wordt. Er wordt een standaard "
|
||||
"pagina aangemaakt bij het activeren van deze plugin. Gebruik de "
|
||||
"[checkout_cc] shortcode om je eigen pagina te maken."
|
||||
|
||||
#: includes/pages/general_settings.php:81
|
||||
msgid "Check Payment Page"
|
||||
msgstr "Controleer Betaling Pagina"
|
||||
|
||||
#: includes/pages/general_settings.php:81
|
||||
msgid ""
|
||||
"The check payment page to redirect to after payment. A default page is "
|
||||
"generated on activiation of this plugin. Use the [confirmation_bc] shortcode "
|
||||
"to create your own."
|
||||
msgstr ""
|
||||
"De controleer betaling pagina om naar door te verwijzen na de betaling. Een "
|
||||
"standaard pagina wordt gegenereerd bij het activeren van deze plugin. "
|
||||
"Gebruik de [confirmation_bc] shortcode om je eigen pagina te maken."
|
||||
|
||||
#: includes/pages/general_settings.php:88
|
||||
msgid "Bcc Orders Email"
|
||||
msgstr "Bcc Orders Email"
|
||||
|
||||
#: includes/pages/general_settings.php:88
|
||||
msgid "Optional email address for you to receive confirmed orders"
|
||||
msgstr "Optioneel email adres om order bevestigingen te ontvangen"
|
||||
|
||||
#: includes/pages/general_settings.php:95
|
||||
#: includes/pages/settings_shipping.php:77
|
||||
msgid "Save Changes"
|
||||
msgstr "Opslaan"
|
||||
|
||||
#: includes/pages/settings_coupons.php:8
|
||||
msgid "Manage coupons"
|
||||
msgstr "Coupons beheren"
|
||||
|
||||
#: includes/pages/settings_coupons.php:8 includes/pages/settings_products.php:8
|
||||
msgid "Add New"
|
||||
msgstr "Toevoegen"
|
||||
|
||||
#: includes/pages/settings_coupons.php:13 includes/pages/settings_orders.php:16
|
||||
#: includes/pages/settings_products.php:13
|
||||
msgid "search"
|
||||
msgstr "zoeken"
|
||||
|
||||
#: includes/pages/settings_orders.php:21
|
||||
msgid ""
|
||||
"You are not connected to Stripe. You can do this in the settings of this "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
"Je bent niet verbonden met Stripe. Je kan dit doen in de instellingen van "
|
||||
"deze plugin."
|
||||
|
||||
#: includes/pages/settings_products.php:8
|
||||
msgid "Manage products"
|
||||
msgstr "Artikels beheren"
|
||||
|
||||
#: includes/pages/settings_shipping.php:63
|
||||
msgid "Ship to all countries"
|
||||
msgstr "Naar alle landen verzenden"
|
||||
|
||||
#: includes/pages/settings_shipping.php:72
|
||||
msgid "Add Country"
|
||||
msgstr "Land Toevoegen"
|
||||
|
||||
#: includes/shortcodes/class-checkout-credit-card.php:15
|
||||
#: includes/shortcodes/class-checkout.php:47
|
||||
msgid "Pay"
|
||||
msgstr "Betalen"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:27
|
||||
msgid "Coupon Code"
|
||||
msgstr "Coupon Code"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:28
|
||||
msgid "Validate"
|
||||
msgstr "Valideer"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:42
|
||||
msgid "Address line 1"
|
||||
msgstr "Adreslijn 1"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:43
|
||||
msgid "Address line 2"
|
||||
msgstr "Adreslijn 2"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:44
|
||||
msgid "Zip"
|
||||
msgstr "Postcode"
|
||||
|
||||
#: includes/shortcodes/class-checkout.php:45
|
||||
msgid "City"
|
||||
msgstr "Plaats"
|
||||
|
||||
#: includes/shortcodes/class-confirmation.php:10
|
||||
msgid "Checking payment "
|
||||
msgstr "Betaling controleren "
|
||||
|
||||
#: includes/shortcodes/class-confirmation.php:11
|
||||
msgid "Back to homepage"
|
||||
msgstr "Terug naar de homepage"
|
||||
|
||||
#: includes/shortcodes/class-simple-product.php:13
|
||||
msgid "Product id has the wrong format"
|
||||
msgstr "Artikel id heeft het verkeerde formaat"
|
||||
|
||||
#: includes/shortcodes/class-simple-product.php:17
|
||||
msgid "Product not found"
|
||||
msgstr "Artikel niet gevonden"
|
||||
|
||||
#: includes/shortcodes/class-simple-product.php:60
|
||||
msgid "Something went wrong, please contact site administrator."
|
||||
msgstr "Er is iets misgelopen, contacteer aub de site administrator."
|
||||
|
||||
#~ msgid "Publishable Key"
|
||||
#~ msgstr "Publishable Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The publishable key from stripe. Check your dashboard on your stripe.com "
|
||||
#~ "account."
|
||||
#~ msgstr ""
|
||||
#~ "De publishable key van Stripe. Controleer uw dashboard op uw stripe.com "
|
||||
#~ "account."
|
||||
|
||||
#~ msgid "Secret Key"
|
||||
#~ msgstr "Secret Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The secret key from stripe. Check your dashboard on your stripe.com "
|
||||
#~ "account."
|
||||
#~ msgstr ""
|
||||
#~ "De secret key van Stripe. Controleer uw dashboard op uw stripe.com "
|
||||
#~ "account."
|
||||
|
||||
#~ msgid "Webhook Secret Key"
|
||||
#~ msgstr "Webhook Secret Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The webhook secret key from stripe. Check your dashboard on your stripe."
|
||||
#~ "com account. You can set webhooks under the Developers section."
|
||||
#~ msgstr ""
|
||||
#~ "Dewebhook secret key van Stripe. Controleer uw dashboard op uw stripe.com "
|
||||
#~ "account. U kan de webhooks instellen onder de rubriek Developers."
|
||||
|
||||
#~ msgid "Test Publishable Key"
|
||||
#~ msgstr "Test Publishable Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The test publishable key from stripe. Check your dashboard on your stripe."
|
||||
#~ "com account."
|
||||
#~ msgstr ""
|
||||
#~ "De test publishable key van Stripe. Controleer uw dashboard op uw stripe."
|
||||
#~ "com account."
|
||||
|
||||
#~ msgid "Test Secret Key"
|
||||
#~ msgstr "Test Secret Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The test secret key from stripe. Check your dashboard on your stripe.com "
|
||||
#~ "account."
|
||||
#~ msgstr ""
|
||||
#~ "De test secret key van Stripe. Controleer uw dashboard op uw stripe.com "
|
||||
#~ "account."
|
||||
|
||||
#~ msgid "Test Webhook Secret Key"
|
||||
#~ msgstr "Test Webhook Secret Key"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The test webhook secret key from stripe. Check your dashboard on your "
|
||||
#~ "stripe.com account. You can set webhooks under the Developers section."
|
||||
#~ msgstr ""
|
||||
#~ "De test webhook secret key van Stripe. Controleer uw dashboard op uw "
|
||||
#~ "stripe.com account. U kan de webhooks instellen onder de rubriek "
|
||||
#~ "Developers."
|
||||
|
||||
#~ msgid "Add to cart"
|
||||
#~ msgstr "Aan winkelmandje toevoegen"
|
||||
@@ -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 ""
|
||||
2199
spec/fixtures/dynamic_finders/plugin_version/giftpress/translation_file/languages/giftpress.pot
vendored
Normal file
2199
spec/fixtures/dynamic_finders/plugin_version/giftpress/translation_file/languages/giftpress.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,746 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GoUrl WooCommerce - Bitcoin Altcoin Payment Gateway "
|
||||
"Addon\n"
|
||||
"POT-Creation-Date: 2019-02-20 16:43+0000\n"
|
||||
"PO-Revision-Date: 2019-02-20 16:43+0000\n"
|
||||
"Last-Translator: Velcho Velchev <velcho@rezko.net>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
||||
|
||||
#: gourl-woocommerce.php:62
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: gourl-woocommerce.php:67
|
||||
msgid "Unrecognised"
|
||||
msgstr "Некатегоризирани"
|
||||
|
||||
#: gourl-woocommerce.php:69
|
||||
msgid "Payments"
|
||||
msgstr "Плащания"
|
||||
|
||||
#: gourl-woocommerce.php:142
|
||||
msgid "Iranian Rial"
|
||||
msgstr "Ирански риал"
|
||||
|
||||
#: gourl-woocommerce.php:143
|
||||
#, fuzzy
|
||||
#| msgid "Iranian Rial"
|
||||
msgid "Iranian Toman"
|
||||
msgstr "Ирански риал"
|
||||
|
||||
#: gourl-woocommerce.php:150
|
||||
msgid "► Cryptocurrency"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:152
|
||||
msgid "Bitcoin"
|
||||
msgstr "Биткойн"
|
||||
|
||||
#: gourl-woocommerce.php:153
|
||||
msgid "Bitcoincash"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:154
|
||||
#, fuzzy
|
||||
#| msgid "Bitcoin"
|
||||
msgid "Bitcoinsv"
|
||||
msgstr "Биткойн"
|
||||
|
||||
#: gourl-woocommerce.php:155
|
||||
msgid "Litecoin"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:156
|
||||
msgid "Doge"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:157
|
||||
msgid "DASH"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:166
|
||||
#, php-format
|
||||
msgid "► Admin use %s, Users see LIVE prices in %s"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:466 gourl-woocommerce.php:487
|
||||
msgid "View Payment Details"
|
||||
msgstr "Информация за плащането"
|
||||
|
||||
#: gourl-woocommerce.php:549 gourl-woocommerce.php:1058
|
||||
msgid "Guest"
|
||||
msgstr "Гост"
|
||||
|
||||
#: gourl-woocommerce.php:559
|
||||
#, php-format
|
||||
msgid "%s Payment Received"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:560
|
||||
msgid "CONFIRMED"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:561
|
||||
msgid "Check Live Status"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:561
|
||||
msgid "unconfirmed"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:563
|
||||
msgid "CRYPTO PAYMENT NOT RECEIVED YET !"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:569
|
||||
msgid "Order created"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:569 gourl-woocommerce.php:573
|
||||
msgid "GMT"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:569
|
||||
msgid "view"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:573
|
||||
msgid "Payment received"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:574
|
||||
#, php-format
|
||||
msgid "Paid by %s located in %s"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:580
|
||||
msgid "Original order"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:591
|
||||
msgid "Actual Received"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:598
|
||||
msgid "Refunded"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:605
|
||||
#, php-format
|
||||
msgid "%s Transaction"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:605
|
||||
msgid "on address"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:668 gourl-woocommerce.php:793
|
||||
msgid "GoUrl Bitcoin/Altcoins"
|
||||
msgstr "GoUrl Биткойн/Алткойн"
|
||||
|
||||
#: gourl-woocommerce.php:670
|
||||
msgid "Plugin Homepage"
|
||||
msgstr "Страница на добавката"
|
||||
|
||||
#: gourl-woocommerce.php:670
|
||||
msgid "screenshots"
|
||||
msgstr "изображения"
|
||||
|
||||
#: gourl-woocommerce.php:671
|
||||
msgid "Plugin on Github - 100% Free Open Source"
|
||||
msgstr "Приставката е от Github - 100% свободен отворен код"
|
||||
|
||||
#: gourl-woocommerce.php:681
|
||||
#, fuzzy, php-format
|
||||
#| msgid ""
|
||||
#| "Your GoUrl Bitcoin Gateway <a href='%s'>Main Plugin</a> version is too "
|
||||
#| "old. Requires 1.3.3 or higher version. Please <a href='%s'>update</a> to "
|
||||
#| "latest version."
|
||||
msgid ""
|
||||
"Your GoUrl Bitcoin Gateway <a href='%s'>Main Plugin</a> version is too old. "
|
||||
"Requires 1.4.17 or higher version. Please <a href='%s'>update</a> to latest "
|
||||
"version."
|
||||
msgstr ""
|
||||
"Вашата GoUrl Биткойн шлюз <a href='%s'>приставка</a> е твърде стара. Изисква "
|
||||
"се v1.3.3 или по-висока. Моля <a href='%s'>обновете</a>до последната версия."
|
||||
|
||||
#: gourl-woocommerce.php:682 gourl-woocommerce.php:705
|
||||
#: gourl-woocommerce.php:1094 gourl-woocommerce.php:1099
|
||||
#: gourl-woocommerce.php:1104 gourl-woocommerce.php:1109
|
||||
#: gourl-woocommerce.php:1140 gourl-woocommerce.php:1147
|
||||
#: gourl-woocommerce.php:1163
|
||||
msgid "Information"
|
||||
msgstr "Информация"
|
||||
|
||||
#: gourl-woocommerce.php:682 gourl-woocommerce.php:705
|
||||
msgid "Main Plugin Homepage"
|
||||
msgstr "Страница на приставката"
|
||||
|
||||
#: gourl-woocommerce.php:683 gourl-woocommerce.php:706
|
||||
msgid "WordPress.org Plugin Page"
|
||||
msgstr "Приставката в WordPress.org"
|
||||
|
||||
#: gourl-woocommerce.php:687
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your WooCommerce version is too old. The GoUrl payment plugin requires "
|
||||
"WooCommerce 2.1 or higher to function. Please update to <a href='%s'>latest "
|
||||
"version</a>."
|
||||
msgstr ""
|
||||
"Версията на WooCommerce е твърде стара. GoUrl payment изисква поне "
|
||||
"WooCommerce 2.1, за да работи. Моля обновете до <a href='%s'>последната "
|
||||
"версия</a>."
|
||||
|
||||
#: gourl-woocommerce.php:699
|
||||
msgid "- Please setup -"
|
||||
msgstr "- Настройки -"
|
||||
|
||||
#: gourl-woocommerce.php:704
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You need to install GoUrl Bitcoin Gateway Main Plugin also. Go to - <a "
|
||||
"href='%s'>Automatic installation</a> or <a href='%s'>Manual</a>."
|
||||
msgstr ""
|
||||
"Трябва да инсталирате приставка GoUrl Биткойн шлюз - <a "
|
||||
"href='%s'>Автоматична инсталация</a> или <a href='%s'>ръчно</a>."
|
||||
|
||||
#: gourl-woocommerce.php:711
|
||||
msgid "Please install GoUrl Bitcoin Gateway WP Plugin"
|
||||
msgstr "Моля инсталирайте WordPress приставка GoUrl Биткойн шлюз"
|
||||
|
||||
#: gourl-woocommerce.php:715
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Secure payments with virtual currency. <a target='_blank' href='https://"
|
||||
#| "bitcoin.org/'>What is Bitcoin?</a>"
|
||||
msgid ""
|
||||
"White Label Product. Secure payments with virtual currency. <a "
|
||||
"target='_blank' href='https://bitcoin.org/'>What is Bitcoin?</a>"
|
||||
msgstr ""
|
||||
"Сигурни плащания с криптовалути. <a target='_blank' href='https://bitcoin."
|
||||
"org/bg'>Какво е Биткойн?</a>"
|
||||
|
||||
#: gourl-woocommerce.php:716
|
||||
#, php-format
|
||||
msgid "Accept %s payments online in WooCommerce."
|
||||
msgstr "Приемайте %s плащания в WooCommerce."
|
||||
|
||||
#: gourl-woocommerce.php:717
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you use multiple stores/sites online, please create separate <a "
|
||||
"target='_blank' href='%s'>GoUrl Payment Box</a> (with unique payment box "
|
||||
"public/private keys) for each of your stores/websites. Do not use the same "
|
||||
"GoUrl Payment Box with the same public/private keys on your different "
|
||||
"websites/stores."
|
||||
msgstr ""
|
||||
"Ако имате няколко интернет магазини или сайтове, моля използвайте различни "
|
||||
"<a target='_blank' href='%s'>GoUrl Payment Box</a> (различни payment box "
|
||||
"public/private keys) за всеки от вашите сайтове. Никога не използвайте едни "
|
||||
"и същи GoUrl Payment Box с едни и същи public/private keys във вашите "
|
||||
"различни сайтове!"
|
||||
|
||||
#: gourl-woocommerce.php:717
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Add additional altcoins (Litecoin/DASH/Bitcoin Cash/etc) to payment box <a "
|
||||
"href='%s'>here »</a>"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:721
|
||||
#, php-format
|
||||
msgid "Fiat + %s"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:725
|
||||
#, php-format
|
||||
msgid "Fiat + %s + %s"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:794
|
||||
msgid "Secure, anonymous payment with virtual currency"
|
||||
msgstr "Сигурни, анонимни плащания с виртуални валути."
|
||||
|
||||
#: gourl-woocommerce.php:827
|
||||
#, fuzzy
|
||||
#| msgid "Logo"
|
||||
msgid "No Logo"
|
||||
msgstr "Лого"
|
||||
|
||||
#: gourl-woocommerce.php:828
|
||||
msgid "1. Logo with text - Pay with Cryptocurrency'"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:829
|
||||
#, fuzzy
|
||||
#| msgid "Bitcoin"
|
||||
msgid "2. Bitcoin Logo"
|
||||
msgstr "Биткойн"
|
||||
|
||||
#: gourl-woocommerce.php:830
|
||||
msgid "3. Bitcoin Logo with text"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:831
|
||||
msgid "4. Light Logo with text - Crypto Accepted"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:832
|
||||
msgid "5. Dark Logo with text - Crypto Accepted"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:833
|
||||
msgid "6. Crypto Icons (Bitcoin, Bitcoin Cash, Litecoin)"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:834
|
||||
msgid "7. Crypto Icons (Bitcoin, Bitcoin Cash)"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:835
|
||||
msgid "8. Bitcoin Cash Logo green"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:836
|
||||
msgid "9. Bitcoin Cash Logo white"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:837
|
||||
msgid "10. Bitcoin Cash Logo with text"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:841
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Включено/Изключено"
|
||||
|
||||
#: gourl-woocommerce.php:844
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Enable Bitcoin/Altcoin Payments in WooCommerce with <a href='%s'>GoUrl "
|
||||
"Bitcoin Gateway</a>"
|
||||
msgstr ""
|
||||
"Включи Биткойн/Алткойн плащания в WooCommerce чрез <a href='%s'>GoUrl "
|
||||
"Биткойн шлюз</a>"
|
||||
|
||||
#: gourl-woocommerce.php:847
|
||||
msgid "Title"
|
||||
msgstr "Заглавие"
|
||||
|
||||
#: gourl-woocommerce.php:849
|
||||
msgid "Bitcoin/Altcoin"
|
||||
msgstr "Биткойн/Алткойн"
|
||||
|
||||
#: gourl-woocommerce.php:850
|
||||
msgid "Payment method title that the customer will see on your checkout"
|
||||
msgstr ""
|
||||
"Име на метода на плащане, който потребителя ще види на страницата за плащане"
|
||||
|
||||
#: gourl-woocommerce.php:853
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: gourl-woocommerce.php:855
|
||||
#, php-format
|
||||
msgid "Secure, anonymous payment with virtual currency - %s"
|
||||
msgstr "Сигурни, анонимни плащания с виртуални валути - %s"
|
||||
|
||||
#: gourl-woocommerce.php:855
|
||||
msgid "What is bitcoin?"
|
||||
msgstr "Какво е биткойн?"
|
||||
|
||||
#: gourl-woocommerce.php:856
|
||||
msgid "Payment method description that the customer will see on your checkout"
|
||||
msgstr ""
|
||||
"Описание на плащането, което потребителя ще види на страницата за плащане"
|
||||
|
||||
#: gourl-woocommerce.php:859
|
||||
msgid "Two Logo (checkout and paymentbox)"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:863
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Payment method logo that the customer will see on your checkout"
|
||||
msgid ""
|
||||
"Payment method logo that the customer will see on your checkout. <a href=\"%s"
|
||||
"\">See logo examples »</a>"
|
||||
msgstr ""
|
||||
"Лого на метода за плащане, който потребителя ще види на страницата за "
|
||||
"плащане."
|
||||
|
||||
#: gourl-woocommerce.php:863
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your Company Logo for Cryptocurrency Payment Box you can <a href=\"%s"
|
||||
"\">setup here »</a>"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:866
|
||||
msgid "Exchange Rate Multiplier"
|
||||
msgstr "Множител при обмяната"
|
||||
|
||||
#: gourl-woocommerce.php:869
|
||||
msgid ""
|
||||
"The system uses the multiplier rate with today LIVE cryptocurrency exchange "
|
||||
"rates (which are updated every 30 minutes) when the transaction is "
|
||||
"calculating from a fiat currency (e.g. USD, EUR, etc) to cryptocurrency. "
|
||||
"<br> Example: <b>1.05</b> - will add an extra 5% to the total price in "
|
||||
"bitcoin/altcoins, <b>0.85</b> - will be a 15% discount for the price in "
|
||||
"bitcoin/altcoins. Default: 1.00 "
|
||||
msgstr ""
|
||||
"Системата използва множител и актуалният LIVE курс (обновяван на всеки 30 "
|
||||
"минути) при превръщането на цените от фиатна валута (напр. USD, EUR, BGN) в "
|
||||
"криптовалута (напр. BTC). <br> Например: <b>1.05</b> - ще добави 5% върху "
|
||||
"крайната цена в криптовалута (напр. Биткойни), <b>0.85</b> - е 15% намаление "
|
||||
"за цени в Биткойни. Нормална стойност: 1.00"
|
||||
|
||||
#: gourl-woocommerce.php:872
|
||||
msgid "Advanced options"
|
||||
msgstr "Допълнителни настройки"
|
||||
|
||||
#: gourl-woocommerce.php:874
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your shop can display product prices in Bitcoin/BCH/BSV/DASH/LTC/DOGE also."
|
||||
"<br>Simple select 'Currency' - <a href='%s'>'Admin use USD/EUR/etc, users "
|
||||
"see Live Prices in Bitcoin/Altcoin'</a>"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:874
|
||||
msgid "see screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:877
|
||||
msgid "Order Status - Cryptocoin Payment Received"
|
||||
msgstr "Състояние на поръчката - получено е плащане с криптовалута"
|
||||
|
||||
#: gourl-woocommerce.php:881
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Payment is received successfully from the customer. You will see the bitcoin/"
|
||||
"altcoin payment statistics in one common table <a href='%s'>'All Payments'</"
|
||||
"a> with details of all received payments.<br>If you sell digital products / "
|
||||
"software downloads you can use the status 'Completed' showing that "
|
||||
"particular customer already has instant access to your digital products"
|
||||
msgstr ""
|
||||
"Успешно пристигна плащане. Можете да видите статистика с всички детайли за "
|
||||
"получените Биткойн/алткойн плащания в таблица <a href='%s'>'Всички "
|
||||
"плащания'</a>.<br>Ако продавате други онлайн продукти, като сваляне на "
|
||||
"софтуер, видео и др. можете да използвате състоянието 'Completed' показващо, "
|
||||
"че потребителя вече има достъп."
|
||||
|
||||
#: gourl-woocommerce.php:884
|
||||
msgid "Order Status - Previously Received Payment Confirmed"
|
||||
msgstr "Състояние на поръчката - потвърдено е плащане с криптовалута"
|
||||
|
||||
#: gourl-woocommerce.php:888
|
||||
msgid ""
|
||||
"About one hour after the payment is received, the bitcoin transaction should "
|
||||
"get 6 confirmations (for transactions using other cryptocoins ~ 20-30min)."
|
||||
"<br>A transaction confirmation is needed to prevent double spending of the "
|
||||
"same money"
|
||||
msgstr ""
|
||||
"Около един час, след като е получено плащането, ще получи 6 потвърждения (за "
|
||||
"други криптовалути отнема около 20-30 минути).<br>Тези потвърждения са "
|
||||
"необходими, за да се предотврати 'double spending' или двойно похарчване на "
|
||||
"едни и същи пари!"
|
||||
|
||||
#: gourl-woocommerce.php:891
|
||||
msgid "Crypto Price on Product Page"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:895
|
||||
msgid ""
|
||||
"Display additional crypto price/s with fiat price on the WooCommerce product "
|
||||
"page. For, example: $100.25 / 0.0145 Ƀ"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:898
|
||||
msgid "PaymentBox Language"
|
||||
msgstr "Език на PaymentBox"
|
||||
|
||||
#: gourl-woocommerce.php:902
|
||||
msgid "Default Crypto Payment Box Localisation"
|
||||
msgstr "Подразбиране език на PaymentBox"
|
||||
|
||||
#: gourl-woocommerce.php:905
|
||||
msgid "PaymentBox Default Coin"
|
||||
msgstr "PaymentBox монета"
|
||||
|
||||
#: gourl-woocommerce.php:909
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Default Coin in Crypto Payment Box. Activated Payments : <a href='%s'>%s</a>"
|
||||
msgstr ""
|
||||
"Подразбиране монета на Crypto Payment Box. Активирани плащания : <a "
|
||||
"href='%s'>%s</a>"
|
||||
|
||||
#: gourl-woocommerce.php:912
|
||||
msgid "Icons Size"
|
||||
msgstr "Размери на иконите"
|
||||
|
||||
#: gourl-woocommerce.php:916
|
||||
msgid ""
|
||||
"Cryptocoin icons size in 'Select Payment Method' that the customer will see "
|
||||
"on your checkout. Default 60px. Allowed: 30..250px"
|
||||
msgstr ""
|
||||
"Размерите на иконата на криптовалутата в 'Изберете метод на плащане', която "
|
||||
"потребителя ще види на страницата за плащане. Обичайно 60px. Позволено: от "
|
||||
"30 до 250px"
|
||||
|
||||
#: gourl-woocommerce.php:919
|
||||
#, fuzzy
|
||||
#| msgid "Payment Box Style"
|
||||
msgid "Mobile Friendly Payment Box Style"
|
||||
msgstr "Стил на Payment Box"
|
||||
|
||||
#: gourl-woocommerce.php:921
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Additional options for Mobile Friendly Payment Box (not iFrame).<br>Box "
|
||||
"Color Theme (<a href='%s'>white</a> / <a href='%s'>black</a> / <a "
|
||||
"href='%s'>sketchy</a> / blue / red / etc) you can change <a href='%s'>here "
|
||||
"»</a>   Payment Box <a target='_blank' href='%s'>Live Demo »</"
|
||||
"a>"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:924
|
||||
msgid "Custom Payment Text"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:927
|
||||
msgid ""
|
||||
"Your text on payment page below \"Pay Now\" title. For example, you can add "
|
||||
"\"If you have any questions please feel free to contact us at any time on "
|
||||
"(telephone) or contact by (email)\""
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:930
|
||||
#, fuzzy
|
||||
#| msgid "Icons Size"
|
||||
msgid "QRcode Size"
|
||||
msgstr "Размери на иконите"
|
||||
|
||||
#: gourl-woocommerce.php:934
|
||||
#, php-format
|
||||
msgid ""
|
||||
"QRcode image size in payment box. Default 200px. Allowed: 0..500px. Demo - "
|
||||
"<a href='%s'>large qrcode</a> / <a href='%s'>small qrcode</a>"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:937
|
||||
#, fuzzy
|
||||
#| msgid "Languages"
|
||||
msgid "Language Menu"
|
||||
msgstr "Език"
|
||||
|
||||
#: gourl-woocommerce.php:941
|
||||
msgid "Show or hide language selection menu above payment box"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:944
|
||||
msgid "Redirect Url"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:947
|
||||
msgid ""
|
||||
"Redirect to another page after payment is received (3 seconds delay). For "
|
||||
"example, http://yoursite.com/thank_you.php"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:951
|
||||
msgid "Languages"
|
||||
msgstr "Език"
|
||||
|
||||
#: gourl-woocommerce.php:953
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you want to use GoUrl WooCommerce Bitcoin Gateway plugin in a language "
|
||||
"other than English, see the page <a href='%s'>Languages and Translations</a>"
|
||||
msgstr ""
|
||||
"Ако искате да използвате GoUrl WooCommerce Биткойн шлюз в различен от "
|
||||
"Български, вижте <a href='%s'>Страницата ни за преводи</a>"
|
||||
|
||||
#: gourl-woocommerce.php:967
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you like <b>Bitcoin Gateway for WooCommerce</b> please leave us a %s "
|
||||
"rating on %s. A huge thank you from GoUrl in advance!"
|
||||
msgstr ""
|
||||
"Ако харесвате <b>Биткойн шлюз за WooCommerce</b> моля оставете %s рейтинг на "
|
||||
"%s. Благодарности от GoUrl предварително!"
|
||||
|
||||
#: gourl-woocommerce.php:989
|
||||
msgid "Awaiting payment notification from GoUrl"
|
||||
msgstr "Изчаква потвърждение от GoUrl"
|
||||
|
||||
#: gourl-woocommerce.php:1059
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Order Created by %s<br>Order Total: %s<br>Awaiting Cryptocurrency <a "
|
||||
"href='%s'>Payment</a> ..."
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:1095
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The GoUrl payment plugin was called to process a payment but could not "
|
||||
"retrieve the order details for orderID %s. Cannot continue!"
|
||||
msgstr ""
|
||||
"Грешка! Приставката GoUrl payment опита да изпълни плащане, но не постъпи "
|
||||
"информация за поръчка с номер %s."
|
||||
|
||||
#: gourl-woocommerce.php:1100
|
||||
msgid ""
|
||||
"This order's status is 'Cancelled' - it cannot be paid for. Please contact "
|
||||
"us if you need assistance."
|
||||
msgstr ""
|
||||
"Състоянието на поръчката е 'Отказана' - не може да бъде извършено плащане. "
|
||||
"Моля свържете се с нас за помощ."
|
||||
|
||||
#: gourl-woocommerce.php:1105
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please try a different payment method. Admin need to install and activate "
|
||||
"wordpress plugin <a href='%s'>GoUrl Bitcoin Gateway for Wordpress</a> to "
|
||||
"accept Bitcoin/Altcoin Payments online."
|
||||
msgstr ""
|
||||
"Моля опитайте друг метод за плащане. Трябва да инсталирате и активирате "
|
||||
"приставката за WordPress <a href='%s'>GoUrl Биткойн шлюз за Wordpress</a>, "
|
||||
"за да приемате плащания с Биткойн или други криптовалути."
|
||||
|
||||
#: gourl-woocommerce.php:1110
|
||||
#, fuzzy, php-format
|
||||
#| msgid ""
|
||||
#| "Sorry, but there was an error processing your order. Please try a "
|
||||
#| "different payment method or contact us if you need assistance (GoUrl "
|
||||
#| "Bitcoin Plugin not configured / %s not activated)."
|
||||
msgid ""
|
||||
"Sorry, but there was an error processing your order. Please try a different "
|
||||
"payment method or contact us if you need assistance (Bitcoin Gateway Plugin "
|
||||
"v1.4.17+ not configured / %s not activated)."
|
||||
msgstr ""
|
||||
"Съжаляваме, възникна грешка при обработката на Вашата трансакция. Моля "
|
||||
"опитайте друг метод за плащане или се свържете с нас за помощ (GoUrl Биткойн "
|
||||
"плъгин не е конфигуриран / %s не е активен)."
|
||||
|
||||
#: gourl-woocommerce.php:1142
|
||||
msgid ""
|
||||
"You need first to login or register on the website to make Bitcoin/Altcoin "
|
||||
"Payments"
|
||||
msgstr ""
|
||||
"Трябва да сте логнат в сайта, за да плащате с Биткойн или други криптовалути."
|
||||
|
||||
#: gourl-woocommerce.php:1148
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This order's amount is %s - it cannot be paid for. Please contact us if you "
|
||||
"need assistance."
|
||||
msgstr ""
|
||||
"Стойността на поръчката е %s - не може да бъде платена. Моля свържете се с "
|
||||
"нас за помощ."
|
||||
|
||||
#: gourl-woocommerce.php:1164
|
||||
#, fuzzy, php-format
|
||||
#| msgid ""
|
||||
#| "Sorry, but there was an error processing your order. Please try later or "
|
||||
#| "use a different payment method. System cannot receive exchange rates for "
|
||||
#| "%s/USD from Google Finance"
|
||||
msgid ""
|
||||
"Sorry, but there was an error processing your order. Please try later or use "
|
||||
"a different payment method. System cannot receive exchange rates for %s/USD "
|
||||
"from Ecb.europa.eu / Currencyconverterapi.com %s"
|
||||
msgstr ""
|
||||
"Съжаляваме, възникна грешка при обработката на Вашата трансакция. Моля "
|
||||
"опитайте по-късно или използвайте друг метод на плащане. Възникна грешка при "
|
||||
"изчислението на курса %s/USD от Google Finance"
|
||||
|
||||
#: gourl-woocommerce.php:1185
|
||||
msgid "Pay Now -"
|
||||
msgstr "Платете на -"
|
||||
|
||||
#: gourl-woocommerce.php:1192
|
||||
msgid ""
|
||||
"Sorry, but there was an error processing your order. Please try a different "
|
||||
"payment method."
|
||||
msgstr ""
|
||||
"Съжаляваме, възникна грешка при обработката на Вашата трансакция. Моля "
|
||||
"опитайте друг метод за плащане."
|
||||
|
||||
#: gourl-woocommerce.php:1201
|
||||
#, php-format
|
||||
msgid "%s Payment ID: #%s"
|
||||
msgstr "%s Номер на плащането ID: #%s"
|
||||
|
||||
#: gourl-woocommerce.php:1310
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s Payment Received<br>%s<br>Payment id <a href='%s'>%s</a> / <a "
|
||||
"href='%s'>order page</a> <br>Awaiting network confirmation..."
|
||||
msgstr ""
|
||||
"%s Плащането е прието <br>%s<br>Номер на плащането <a href='%s'>%s</a> / <a "
|
||||
"href='%s'>поръчки</a> <br>Чака потвърждение от мрежата..."
|
||||
|
||||
#: gourl-woocommerce.php:1325
|
||||
#, php-format
|
||||
msgid "%s Payment id <a href='%s'>%s</a> Confirmed"
|
||||
msgstr "%s Номер на плащането <a href='%s'>%s</a> е потвърдено"
|
||||
|
||||
#: gourl-woocommerce.php:1348
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: gourl-woocommerce.php:1353
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Bitcoin/altcoin recurring payments not available. %s <br/> %s need to "
|
||||
"resubscribe."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "GoUrl default logo - 'Global Payments'"
|
||||
#~ msgstr "GoUrl подразбиране лого - 'Global Payments'"
|
||||
|
||||
#~ msgid "GoUrl logo with text - '%s Payments'"
|
||||
#~ msgstr "GoUrl лого с текст - '%s Payments'"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Payment Box <a href='%s'>sizes</a> and border <a href='%s'>shadow</a> you "
|
||||
#~ "can change <a href='%s'>here »</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Payment Box <a href='%s'>размери</a> и гранично <a href='%s'>сянка</a> "
|
||||
#~ "можете да промените от <a href='%s'>тук »</a>"
|
||||
|
||||
#~ msgid "Cryptocurrency"
|
||||
#~ msgstr "Криптовалута"
|
||||
|
||||
#~ msgid "Admin use %s, User see prices in Bitcoins"
|
||||
#~ msgstr "Админ използва %s, посетителя вижда цените в Биткойни"
|
||||
|
||||
#~ msgid "Order Created by %s<br>Awaiting Cryptocurrency Payment ..."
|
||||
#~ msgstr "Направено е плащане от %s<br>Изчаква плащане ..."
|
||||
|
||||
#~ msgid "Yes"
|
||||
#~ msgstr "Да"
|
||||
|
||||
#~ msgid "No"
|
||||
#~ msgstr "Не"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If you intend GoUrl WooCommerce Bitcoin Gateway to be used in a language "
|
||||
#~ "other than English, see the <a href='%s'>Language Translations page</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Ако искате да използвате GoUrl WooCommerce Биткойн шлюз в различен от "
|
||||
#~ "Български, вижте <a href='%s'>Страницата ни за преводи</a>"
|
||||
@@ -0,0 +1,24 @@
|
||||
== 1.0.5 ==
|
||||
Release date: April 16, 2020
|
||||
* Fixed: PHP error
|
||||
|
||||
== 1.0.4 ==
|
||||
Release date: April 16, 2020
|
||||
* Added: WPML compatibility
|
||||
|
||||
== 1.0.3 ==
|
||||
Release date: April 8, 2020
|
||||
* Enhancement: Updated icon control
|
||||
|
||||
== 1.0.2 ==
|
||||
Release date: May 27, 2019
|
||||
* Added: Box shadow option for hover
|
||||
|
||||
== 1.0.1 ==
|
||||
Release date: October 2, 2018
|
||||
* Added: Background image option
|
||||
* Added: Button width option
|
||||
|
||||
== 1.0.0 ==
|
||||
Release date: October 2, 2018
|
||||
* Initial Release
|
||||
@@ -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,46 @@
|
||||
# Guillotheme
|
||||
# Copyright (C) 2020 David Matthew
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Guillotheme 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-04-06 21:00+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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"
|
||||
|
||||
#. Name of the plugin
|
||||
msgid "Guillotheme"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Chops the head right off your WordPress theme, disabling the front-end."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-admin.php:75
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-guillotheme.php:47
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-settings.php:42
|
||||
msgid "Internal Redirects"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-settings.php:50
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-settings.php:72
|
||||
msgid "Redirect post and page permalinks back to the editor page"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-settings.php:79
|
||||
msgid "Redirect to your own custom url (enter below)"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,122 @@
|
||||
# Copyright (C) 2020 Chris Hardie
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Harmonizely Booking Product 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/harmonizely-booking-product\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-06-03T23:10:02+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha-192d356\n"
|
||||
"X-Domain: harmonizely-booking-product\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Harmonizely Booking Product"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Creates a Harmonizely appointment booking product type for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Chris Hardie"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://chrishardie.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:118
|
||||
msgid "must be activated to use this plugin. Visit your plugins page to activate."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:139
|
||||
#: admin/class-harmonizely-booking-product-admin.php:157
|
||||
msgid "Harmonizely Bookings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:159
|
||||
msgid "The following options are used to configure Harmonizely Bookings."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:161
|
||||
msgid "To refresh the available meeting types from your account, save this settings page again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:167
|
||||
msgid "Harmonizely API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:168
|
||||
#: admin/class-harmonizely-booking-product-admin.php:171
|
||||
msgid "The API key generated for your Harmonizely account"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:173
|
||||
msgid "Visit the Integrations page in your Harmonizely account."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:329
|
||||
msgid "Harmonizely Booking"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:340
|
||||
msgid "Harmonizely Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:403
|
||||
msgid "Select a meeting type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:408
|
||||
msgid "Meeting Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:413
|
||||
msgid "Select the Harmonizely Meeting Type that the purchase of this product will grant access to."
|
||||
msgstr ""
|
||||
|
||||
#. translators: error message for maximum quantity of booking product type reached
|
||||
#: admin/class-harmonizely-booking-product-admin.php:492
|
||||
msgid "Only %1$d of this type of product allowed per order."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:582
|
||||
#: admin/class-harmonizely-booking-product-admin.php:608
|
||||
msgid "Error retrieving scheduling URL from Harmonizely"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:600
|
||||
msgid "Scheduling URL from Harmonizely"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:644
|
||||
msgid "Regenerate Harmonizely scheduling link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:684
|
||||
#: admin/class-harmonizely-booking-product-admin.php:692
|
||||
msgid "Schedule an appointment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:685
|
||||
#: admin/class-harmonizely-booking-product-admin.php:693
|
||||
msgid "This order grants scheduling access."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:686
|
||||
#: admin/class-harmonizely-booking-product-admin.php:695
|
||||
msgid "Schedule Now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:717
|
||||
msgid "The configured Harmonizely API key is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-harmonizely-booking-product-admin.php:728
|
||||
msgid "No valid meeting types available from the Harmonizely API."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,35 @@
|
||||
=== HCGroup Shipping for Woocommerce ===
|
||||
|
||||
== Archived Changelog Entries ==
|
||||
|
||||
This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable.
|
||||
For the latest changes, please see the "Changelog" section of the [readme.txt file](https://plugins.svn.wordpress.org/hcgroup-shipping-for-woocommerce/trunk/readme.txt).
|
||||
|
||||
= 2.0.0 =
|
||||
*Release Date - 10 July 2020*
|
||||
|
||||
* 2.0 is a mayor update. Fixed bugs on update + new fuctions for orders status
|
||||
|
||||
= 1.0.7 =
|
||||
* Fixed bugs on update , created only function
|
||||
|
||||
= 1.0.6 =
|
||||
* Fixed bugs on address not set
|
||||
|
||||
= 1.0.5 =
|
||||
* Fixed bugs on address and states on send url with get
|
||||
|
||||
= 1.0.4 =
|
||||
* Change price shipping for get subtotal price
|
||||
|
||||
= 1.0.3 =
|
||||
* Bug timeout external server and hide carrier on response -1
|
||||
|
||||
= 1.0.2 =
|
||||
* New options, post sale service and delivery
|
||||
|
||||
= 1.0.1 =
|
||||
* Update compability wordpress 5.3 and php 7.4
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release.
|
||||
@@ -0,0 +1,36 @@
|
||||
# Copyright (C) 2020 Yordan Soares
|
||||
# This file is distributed under the same license as the Hola, Tío Simón plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hola, Tío Simón 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hola-tio-simon\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-04-20T20:11:52-04:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: hola-tio-simon\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Hola, Tío Simón"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://yordansoar.es/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin display quotes from song lyrics by Venezuelan Singer-songwriter Simón Díaz in dashboard."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Yordan Soares"
|
||||
msgstr ""
|
||||
|
||||
#: hola-tio-simon.php:69
|
||||
msgid "Quotes from song lyrics by Simón Díaz:"
|
||||
msgstr ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user