Compare commits
53 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0d2e1fee43 | ||
|
|
eaf2cec8c9 | ||
|
|
611d3dfd4d | ||
|
|
c4030d8267 | ||
|
|
630752787a | ||
|
|
c07ecc58cb | ||
|
|
89fccfe7b7 | ||
|
|
ceeb7e538b | ||
|
|
8dab57b59c | ||
|
|
7a00cd8db1 | ||
|
|
daa0915bca | ||
|
|
ca6b6a30d8 | ||
|
|
09f2640879 | ||
|
|
f61c55b350 | ||
|
|
78d0c2540c | ||
|
|
1d0426e816 | ||
|
|
103a4049c8 | ||
|
|
cbcb1dcb33 | ||
|
|
9c36293382 | ||
|
|
2fb36dc425 | ||
|
|
c717ba5a71 | ||
|
|
7572518e3b | ||
|
|
f670133a82 | ||
|
|
a6bbf41e82 | ||
|
|
622c16932a | ||
|
|
5fd7e0ed22 | ||
|
|
d9f6c71015 | ||
|
|
61a3106b3b | ||
|
|
20eb2d825d | ||
|
|
906557d2ec | ||
|
|
c1e278ea80 | ||
|
|
e2d616a53f | ||
|
|
c6802ccdd2 | ||
|
|
abd50fd037 | ||
|
|
4515be53b4 | ||
|
|
920a25bb25 | ||
|
|
648dd05069 | ||
|
|
713edcecca | ||
|
|
ac16a951c5 | ||
|
|
1043bcb267 | ||
|
|
22979a1a77 | ||
|
|
3039d2e7eb | ||
|
|
557dee2d8c | ||
|
|
a506adcb64 | ||
|
|
3bfb120646 | ||
|
|
43e613aa52 | ||
|
|
0d930ed605 | ||
|
|
2014f1e4b3 | ||
|
|
4889d17e0a | ||
|
|
494d31215d | ||
|
|
582bdea431 | ||
|
|
ecf7df9c01 | ||
|
|
a9760e8817 |
@@ -7,6 +7,10 @@ AllCops:
|
||||
- 'vendor/**/*'
|
||||
Layout/LineLength:
|
||||
Max: 120
|
||||
Lint/ConstantDefinitionInBlock:
|
||||
Enabled: false
|
||||
Lint/MissingSuper:
|
||||
Enabled: false
|
||||
Lint/UriEscapeUnescape:
|
||||
Enabled: false
|
||||
Metrics/AbcSize:
|
||||
@@ -24,6 +28,8 @@ Metrics/MethodLength:
|
||||
Max: 20
|
||||
Exclude:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Metrics/PerceivedComplexity:
|
||||
Max: 11
|
||||
Style/ClassVars:
|
||||
Enabled: false
|
||||
Style/Documentation:
|
||||
|
||||
@@ -21,6 +21,7 @@ RUN chmod -R a+r /usr/local/bundle
|
||||
|
||||
FROM ruby:2.7.1-alpine
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
LABEL org.opencontainers.image.source https://github.com/wpscanteam/wpscan
|
||||
|
||||
RUN adduser -h /wpscan -g WPScan -D wpscan
|
||||
|
||||
|
||||
2
LICENSE
2
LICENSE
@@ -27,7 +27,7 @@ Example cases which do not require a commercial license, and thus fall under the
|
||||
- Using WPScan to test your own systems.
|
||||
- Any non-commercial use of WPScan.
|
||||
|
||||
If you need to purchase a commercial license or are unsure whether you need to purchase a commercial license contact us - team@wpscan.org.
|
||||
If you need to purchase a commercial license or are unsure whether you need to purchase a commercial license contact us - contact@wpscan.com.
|
||||
|
||||
Free-use Terms and Conditions;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
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 security plugin" target="_blank">WordPress Security Plugin</a>
|
||||
<a href="https://wpscan.com/" title="homepage" target="_blank">WPScan WordPress Vulnerability Database</a> - <a href="https://wordpress.org/plugins/wpscan/" title="wordpress security plugin" target="_blank">WordPress Security Plugin</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
@@ -82,7 +82,7 @@ The DB is located at ~/.wpscan/db
|
||||
|
||||
## Vulnerability Database
|
||||
|
||||
The WPScan CLI tool uses the [WPVulnDB API](https://wpvulndb.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPVulnDB](https://wpvulndb.com/users/sign_up). Up to 50 API requests per day are given free of charge to registered users. Once the 50 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPVulnDB](https://wpvulndb.com/).
|
||||
The WPScan CLI tool uses the [WPScan API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan](https://wpscan.com/register). Up to 50 API requests per day are given free of charge to registered users. Once the 50 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPScan](https://wpscan.com/).
|
||||
|
||||
## Load CLI options from file/s
|
||||
|
||||
|
||||
@@ -19,7 +19,8 @@ module WPScan
|
||||
OptChoice.new(['--password-attack ATTACK',
|
||||
'Force the supplied attack to be used rather than automatically determining one.'],
|
||||
choices: %w[wp-login xmlrpc xmlrpc-multicall],
|
||||
normalize: %i[downcase underscore to_sym])
|
||||
normalize: %i[downcase underscore to_sym]),
|
||||
OptString.new(['--login-uri URI', 'The URI of the login page if different from /wp-login.php'])
|
||||
]
|
||||
end
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
def aggressive(_opts = {})
|
||||
path = 'installer-log.txt'
|
||||
|
||||
return unless /DUPLICATOR INSTALL-LOG/.match?(target.head_and_get(path).body)
|
||||
return unless /DUPLICATOR(-|\s)?(PRO|LITE)?:? INSTALL-LOG/i.match?(target.head_and_get(path).body)
|
||||
|
||||
Model::DuplicatorInstallerLog.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
|
||||
@@ -13,7 +13,7 @@ module WPScan
|
||||
def passive(opts = {})
|
||||
found = []
|
||||
|
||||
slugs = items_from_links('themes', false) + items_from_codes('themes', false)
|
||||
slugs = items_from_links('themes', uniq: false) + items_from_codes('themes', uniq: false)
|
||||
|
||||
slugs.each_with_object(Hash.new(0)) { |slug, counts| counts[slug] += 1 }.each do |slug, occurences|
|
||||
found << Model::Theme.new(slug, target, opts.merge(found_by: found_by, confidence: 2 * occurences))
|
||||
|
||||
@@ -6,6 +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/author_sitemap'
|
||||
require_relative 'users/yoast_seo_author_sitemap'
|
||||
|
||||
module WPScan
|
||||
@@ -22,6 +23,7 @@ module WPScan
|
||||
Users::WpJsonApi.new(target) <<
|
||||
Users::OembedApi.new(target) <<
|
||||
Users::RSSGenerator.new(target) <<
|
||||
Users::AuthorSitemap.new(target) <<
|
||||
Users::YoastSeoAuthorSitemap.new(target) <<
|
||||
Users::AuthorIdBruteForcing.new(target) <<
|
||||
Users::LoginErrorMessages.new(target)
|
||||
|
||||
36
app/finders/users/author_sitemap.rb
Normal file
36
app/finders/users/author_sitemap.rb
Normal file
@@ -0,0 +1,36 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
module Users
|
||||
# Since WP 5.5, /wp-sitemap-users-1.xml is generated and contains
|
||||
# the usernames of accounts who made a post
|
||||
class AuthorSitemap < CMSScanner::Finders::Finder
|
||||
# @param [ Hash ] opts
|
||||
#
|
||||
# @return [ Array<User> ]
|
||||
def aggressive(_opts = {})
|
||||
found = []
|
||||
|
||||
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
|
||||
username = user_tag.text.to_s[%r{/author/([^/]+)/}, 1]
|
||||
|
||||
next unless username && !username.strip.empty?
|
||||
|
||||
found << Model::User.new(username,
|
||||
found_by: found_by,
|
||||
confidence: 100,
|
||||
interesting_entries: [sitemap_url])
|
||||
end
|
||||
|
||||
found
|
||||
end
|
||||
|
||||
# @return [ String ] The URL of the sitemap
|
||||
def sitemap_url
|
||||
@sitemap_url ||= target.url('wp-sitemap-users-1.xml')
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -5,27 +5,7 @@ module WPScan
|
||||
module Users
|
||||
# The YOAST SEO plugin has an author-sitemap.xml which can leak usernames
|
||||
# See https://github.com/wpscanteam/wpscan/issues/1228
|
||||
class YoastSeoAuthorSitemap < CMSScanner::Finders::Finder
|
||||
# @param [ Hash ] opts
|
||||
#
|
||||
# @return [ Array<User> ]
|
||||
def aggressive(_opts = {})
|
||||
found = []
|
||||
|
||||
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
|
||||
username = user_tag.text.to_s[%r{/author/([^/]+)/}, 1]
|
||||
|
||||
next unless username && !username.strip.empty?
|
||||
|
||||
found << Model::User.new(username,
|
||||
found_by: found_by,
|
||||
confidence: 100,
|
||||
interesting_entries: [sitemap_url])
|
||||
end
|
||||
|
||||
found
|
||||
end
|
||||
|
||||
class YoastSeoAuthorSitemap < AuthorSitemap
|
||||
# @return [ String ] The URL of the author-sitemap
|
||||
def sitemap_url
|
||||
@sitemap_url ||= target.url('author-sitemap.xml')
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
# @param [ Boolean ] uniq Wether or not to apply the #uniq on the results
|
||||
#
|
||||
# @return [ Array<String> ] The plugins/themes detected in the href, src attributes of the page
|
||||
def items_from_links(type, uniq = true)
|
||||
def items_from_links(type, uniq: true)
|
||||
found = []
|
||||
xpath = format(
|
||||
'(//@href|//@src|//@data-src)[contains(., "%s")]',
|
||||
@@ -31,7 +31,7 @@ module WPScan
|
||||
# @param [ Boolean ] uniq Wether or not to apply the #uniq on the results
|
||||
#
|
||||
# @return [Array<String> ] The plugins/themes detected in the javascript/style of the homepage
|
||||
def items_from_codes(type, uniq = true)
|
||||
def items_from_codes(type, uniq: true)
|
||||
found = []
|
||||
|
||||
page_res.html.xpath('//script[not(@src)]|//style[not(@src)]').each do |tag|
|
||||
|
||||
@@ -7,10 +7,11 @@ module WPScan
|
||||
include References
|
||||
end
|
||||
|
||||
#
|
||||
# Some classes are empty for the #type to be correctly displayed (as taken from the self.class from the parent)
|
||||
#
|
||||
class BackupDB < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "A backup directory has been found: #{url}"
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['https://github.com/wpscanteam/wpscan/issues/422'] }
|
||||
@@ -18,6 +19,10 @@ module WPScan
|
||||
end
|
||||
|
||||
class DebugLog < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "Debug Log found: #{url}"
|
||||
end
|
||||
|
||||
# @ return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['https://codex.wordpress.org/Debugging_in_WordPress'] }
|
||||
@@ -40,6 +45,10 @@ module WPScan
|
||||
end
|
||||
|
||||
class FullPathDisclosure < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "Full Path Disclosure found: #{url}"
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['https://www.owasp.org/index.php/Full_Path_Disclosure'] }
|
||||
@@ -71,6 +80,9 @@ module WPScan
|
||||
end
|
||||
|
||||
class Readme < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "WordPress readme found: #{url}"
|
||||
end
|
||||
end
|
||||
|
||||
class Registration < InterestingFinding
|
||||
@@ -81,6 +93,10 @@ module WPScan
|
||||
end
|
||||
|
||||
class TmmDbMigrate < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "ThemeMakers migration file found: #{url}"
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { packetstorm: [131_957] }
|
||||
@@ -95,6 +111,9 @@ module WPScan
|
||||
end
|
||||
|
||||
class UploadSQLDump < InterestingFinding
|
||||
def to_s
|
||||
@to_s ||= "SQL Dump found: #{url}"
|
||||
end
|
||||
end
|
||||
|
||||
class WPCron < InterestingFinding
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
<%= warning_icon %> No WPVulnDB API Token given, as a result vulnerability data has not been output.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpscan.com/register
|
||||
<% end -%>
|
||||
|
||||
@@ -8,6 +8,6 @@
|
||||
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up"
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpscan.com/register"
|
||||
<% end -%>
|
||||
},
|
||||
@@ -31,7 +31,7 @@ module WPScan
|
||||
|
||||
finder_configs(
|
||||
finder_class,
|
||||
Regexp.last_match[1] == 'aggressive'
|
||||
aggressive: Regexp.last_match[1] == 'aggressive'
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ module WPScan
|
||||
# @param [ Symbol ] finder_class
|
||||
# @param [ Boolean ] aggressive
|
||||
# @return [ Hash ]
|
||||
def self.finder_configs(finder_class, aggressive = false)
|
||||
def self.finder_configs(finder_class, aggressive: false)
|
||||
configs = {}
|
||||
|
||||
return configs unless allowed_classes.include?(finder_class)
|
||||
|
||||
@@ -24,7 +24,7 @@ module WPScan
|
||||
# @param [ Symbol ] finder_class
|
||||
# @param [ Boolean ] aggressive
|
||||
# @return [ Hash ]
|
||||
def self.finder_configs(finder_class, aggressive = false)
|
||||
def self.finder_configs(finder_class, aggressive: false)
|
||||
configs = {}
|
||||
|
||||
return configs unless allowed_classes.include?(finder_class)
|
||||
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
|
||||
# @return [ Addressable::URI ]
|
||||
def self.uri
|
||||
@uri ||= Addressable::URI.parse('https://wpvulndb.com/api/v3/')
|
||||
@uri ||= Addressable::URI.parse('https://wpscan.com/api/v3/')
|
||||
end
|
||||
|
||||
# @param [ String ] path
|
||||
|
||||
@@ -56,9 +56,7 @@ module WPScan
|
||||
|
||||
homepage_result = find(target.homepage_res, opts)
|
||||
|
||||
if homepage_result
|
||||
return homepage_result unless homepage_result.is_a?(Array) && homepage_result.empty?
|
||||
end
|
||||
return homepage_result unless homepage_result.nil? || homepage_result.is_a?(Array) && homepage_result&.empty?
|
||||
|
||||
find(target.error_404_res, opts)
|
||||
end
|
||||
|
||||
@@ -27,7 +27,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def wpvulndb_url(id)
|
||||
"https://wpvulndb.com/vulnerabilities/#{id}"
|
||||
"https://wpscan.com/vulnerability/#{id}"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -139,11 +139,14 @@ 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.
|
||||
#
|
||||
# If the login_uri CLI option has been provided, it will be returne w/o redirection check.
|
||||
#
|
||||
# @return [ String, false ] The URL to the login page or false if not detected
|
||||
def login_url
|
||||
return @login_url unless @login_url.nil?
|
||||
return @login_url = url(ParsedCli.login_uri) if ParsedCli.login_uri
|
||||
|
||||
@login_url = url('wp-login.php') # TODO: url(ParsedCli.login_uri)
|
||||
@login_url = url('wp-login.php')
|
||||
|
||||
res = Browser.get_and_follow_location(@login_url)
|
||||
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.4'
|
||||
VERSION = '3.8.10'
|
||||
end
|
||||
|
||||
@@ -52,9 +52,10 @@ describe WPScan::Controller::Core do
|
||||
%i[apache iis nginx].each do |server|
|
||||
context "when #{server}" do
|
||||
let(:cli_args) { "#{super()} --server #{server}" }
|
||||
let(:servers) { [:Apache, nil, :IIS, :Nginx] }
|
||||
|
||||
it "loads the #{server.capitalize} module and returns :#{server}" do
|
||||
@stubbed_server = [:Apache, nil, :IIS, :Nginx].sample
|
||||
@stubbed_server = servers.sample
|
||||
@expected = server == :iis ? :IIS : server.to_s.camelize.to_sym
|
||||
end
|
||||
end
|
||||
|
||||
@@ -34,7 +34,7 @@ describe WPScan::Controller::PasswordAttack do
|
||||
|
||||
it 'contains to correct options' do
|
||||
expect(controller.cli_options.map(&:to_sym))
|
||||
.to eq(%i[passwords usernames multicall_max_passwords password_attack])
|
||||
.to eq(%i[passwords usernames multicall_max_passwords password_attack login_uri])
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -35,15 +35,47 @@ describe WPScan::Finders::InterestingFindings::DuplicatorInstallerLog do
|
||||
end
|
||||
|
||||
context 'when the body matches' do
|
||||
let(:body) { File.read(fixtures.join(filename)) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
after do
|
||||
expect(finder.aggressive).to eql WPScan::Model::DuplicatorInstallerLog.new(
|
||||
log_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
end
|
||||
|
||||
context 'when old versions of the file' do
|
||||
let(:body) { File.read(fixtures.join('old.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
|
||||
context 'when newest versions of the file' do
|
||||
context 'when PRO format 1' do
|
||||
let(:body) { File.read(fixtures.join('pro.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
|
||||
context 'when PRO format 2' do
|
||||
let(:body) { File.read(fixtures.join('pro2.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
|
||||
context 'when LITE' do
|
||||
let(:body) { File.read(fixtures.join('lite.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -4,7 +4,7 @@ describe WPScan::Finders::InterestingFindings::EmergencyPwdResetScript do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:file_url) { url + 'emergency.php' }
|
||||
let(:file_url) { "#{url}emergency.php" }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'emergency_pwd_reset_script') }
|
||||
|
||||
before do
|
||||
|
||||
@@ -4,7 +4,7 @@ describe WPScan::Finders::InterestingFindings::UploadSQLDump do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:dump_url) { url + 'wp-content/uploads/dump.sql' }
|
||||
let(:dump_url) { "#{url}wp-content/uploads/dump.sql" }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'upload_sql_dump') }
|
||||
let(:wp_content) { 'wp-content' }
|
||||
|
||||
|
||||
@@ -13,8 +13,8 @@ describe WPScan::Finders::Medias::AttachmentBruteForcing do
|
||||
describe '#target_urls' do
|
||||
it 'returns the expected urls' do
|
||||
expect(finder.target_urls(range: (1..2))).to eql(
|
||||
url + '?attachment_id=1' => 1,
|
||||
url + '?attachment_id=2' => 2
|
||||
"#{url}?attachment_id=1" => 1,
|
||||
"#{url}?attachment_id=2" => 2
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -13,8 +13,8 @@ describe WPScan::Finders::Users::AuthorIdBruteForcing do
|
||||
describe '#target_urls' do
|
||||
it 'returns the correct URLs' do
|
||||
expect(finder.target_urls(range: (1..2))).to eql(
|
||||
url + '?author=1' => 1,
|
||||
url + '?author=2' => 2
|
||||
"#{url}?author=1" => 1,
|
||||
"#{url}?author=2" => 2
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
48
spec/app/finders/users/author_sitemap_spec.rb
Normal file
48
spec/app/finders/users/author_sitemap_spec.rb
Normal file
@@ -0,0 +1,48 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe WPScan::Finders::Users::AuthorSitemap do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
let(:url) { 'http://wp.lab/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('users', 'author_sitemap') }
|
||||
|
||||
describe '#aggressive' do
|
||||
before do
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
|
||||
stub_request(:get, finder.sitemap_url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when not an XML response' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when an XML response' do
|
||||
context 'when no usernames disclosed' do
|
||||
let(:body) { File.read(fixtures.join('no_usernames.xml')) }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when usernames disclosed' do
|
||||
let(:body) { File.read(fixtures.join('usernames.xml')) }
|
||||
|
||||
it 'returns the expected array of users' do
|
||||
users = finder.aggressive
|
||||
|
||||
expect(users.size).to eql 2
|
||||
|
||||
expect(users.first.username).to eql 'admin'
|
||||
expect(users.first.confidence).to eql 100
|
||||
expect(users.first.interesting_entries).to eql ['http://wp.lab/wp-sitemap-users-1.xml']
|
||||
|
||||
expect(users.last.username).to eql 'author'
|
||||
expect(users.last.confidence).to eql 100
|
||||
expect(users.last.interesting_entries).to eql ['http://wp.lab/wp-sitemap-users-1.xml']
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -8,7 +8,7 @@ describe WPScan::Finders::Users::Base do
|
||||
describe '#finders' do
|
||||
it 'contains the expected finders' do
|
||||
expect(user.finders.map { |f| f.class.to_s.demodulize })
|
||||
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator YoastSeoAuthorSitemap
|
||||
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator AuthorSitemap YoastSeoAuthorSitemap
|
||||
AuthorIdBruteForcing LoginErrorMessages]
|
||||
end
|
||||
end
|
||||
|
||||
@@ -5,7 +5,7 @@ describe WPScan::Finders::WpVersion::Readme do
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('wp_version', 'readme') }
|
||||
let(:readme_url) { url + 'readme.html' }
|
||||
let(:readme_url) { "#{url}readme.html" }
|
||||
|
||||
describe '#aggressive' do
|
||||
before { stub_request(:get, readme_url).to_return(body: File.read(fixtures.join(file))) }
|
||||
|
||||
5467
spec/fixtures/db/dynamic_finders.yml
vendored
5467
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
2014
spec/fixtures/dynamic_finders/expected.yml
vendored
2014
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,338 @@
|
||||
# Copyright (C) 2020 ZealousWeb Technologies
|
||||
# This file is distributed under the same license as the Abandoned Contact Form 7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Abandoned Contact Form 7 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/abandoned-forms-contact-form-7\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-08-17T07:23:53+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: cf7-abandoned-form\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Abandoned Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Abandoned Contact Form 7 provides an ability to track the data from Contact Form 7 even if the user does not submit the form."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ZealousWeb Technologies"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zealousweb.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:112
|
||||
msgid "Form Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:113
|
||||
#: inc/admin/class.cf7af.admin.action.php:508
|
||||
msgid "User Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:114
|
||||
#: inc/admin/class.cf7af.admin.action.php:515
|
||||
msgid "User IP"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:115
|
||||
msgid "is Enable Send Mail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:116
|
||||
msgid "Number of Send Mail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:117
|
||||
#: inc/admin/class.cf7af.admin.filter.php:227
|
||||
msgid "Submitted Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:169
|
||||
#: inc/admin/class.cf7af.admin.action.php:541
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:170
|
||||
#: inc/admin/class.cf7af.admin.action.php:542
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:219
|
||||
msgid "Abandoned Form Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:288
|
||||
#: inc/admin/class.cf7af.admin.action.php:552
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:290
|
||||
msgid "To enable this button please allow mail notification from detail page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:291
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:381
|
||||
msgid "Select Forms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:387
|
||||
msgid "Export CSV"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:424
|
||||
#: inc/admin/class.cf7af.admin.action.php:425
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:34
|
||||
msgid "Mail Notification Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:433
|
||||
#: inc/admin/class.cf7af.admin.action.php:434
|
||||
#: inc/admin/class.cf7af.admin.action.php:549
|
||||
#: inc/admin/class.cf7af.admin.filter.php:224
|
||||
msgid "Send Mail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:451
|
||||
msgid "Please select form to export."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:466
|
||||
msgid "No Abandoned data Found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:501
|
||||
msgid "CF7 Form Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:522
|
||||
msgid "Other Form Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:538
|
||||
msgid "Disable Mail Notification"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.filter.php:92
|
||||
msgid "Abandoned Form Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.filter.php:222
|
||||
msgid "Abandoned User's Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.filter.php:223
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.filter.php:225
|
||||
msgid "Number of Emails Sent"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.filter.php:226
|
||||
msgid "Fail Counter"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:13
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:37
|
||||
msgid "Nonce check failed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:26
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:28
|
||||
msgid "Settings are not saved."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:36
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:96
|
||||
msgid "Use {email} to insert the email into the mail body"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:37
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:97
|
||||
msgid "Use {contact_form} to insert the form name into the mail body"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:38
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:98
|
||||
msgid "Use {link} to insert the page contact link into the mail body"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:61
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:175
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:80
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:196
|
||||
msgid "Email Body"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:101
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:114
|
||||
msgid "<h3>Subject</h3><p>Please enter the subject for send mail.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:116
|
||||
msgid "<h3>Email Body </h3><p>It's a body content of mail which reflect on sent mail.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:73
|
||||
msgid "Error on Send Mail."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:84
|
||||
msgid "Send Mail Suceessfully to Abandoned User."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:86
|
||||
msgid "Mail has not send."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:92
|
||||
msgid "Send Mail to Abandoned User Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:120
|
||||
msgid "User Email Address (To)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:139
|
||||
msgid "From Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:157
|
||||
msgid "From Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:212
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:226
|
||||
msgid "<h3>User Email Address (To)</h3><p>This is an Abandoned user's email ID which will receive the email.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:228
|
||||
msgid "<h3>From Name</h3><p>This is a default 'Name' which is get from website general settings but if you use SMTP settings then From Name used from SMTP settings page.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:230
|
||||
msgid "<h3>From Email Address</h3><p>This is a default 'Email Address' which is get from website general settings but if you use SMTP settings then From Email used from SMTP settings page.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:232
|
||||
msgid "<h3>Subject</h3><p>This is the subject which is used in email.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:234
|
||||
msgid "<h3>Email Body</h3><p>This is an email body content which are reflect on email body.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.template.php:23
|
||||
msgid "Enable Abandoned"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.template.php:34
|
||||
#: inc/admin/template/cf7af.template.php:41
|
||||
msgid "Select Email Field"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.template.php:67
|
||||
msgid "<h3>Enable/Disable Abandoned</h3><p>You can enable/disable Abandoned form functionality.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.template.php:69
|
||||
msgid "<h3>Select Email Field</h3><p>Select the email field for tracking Abandoned user</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:92
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:94
|
||||
msgid "Document"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:345
|
||||
#: inc/class.cf7af.php:356
|
||||
msgid "Abandoned Users"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:346
|
||||
msgid "Abandoned User Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:347
|
||||
msgid "All Abandoned Users"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:348
|
||||
msgid "Edit Abandoned User"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:349
|
||||
msgid "Search Abandoned User"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:350
|
||||
msgid "View Abandoned User"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:351
|
||||
msgid "No Abandoned User found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:352
|
||||
msgid "No Abandoned User found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:400
|
||||
msgid "You are so close!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:402
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:403
|
||||
msgid "Contact into:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:404
|
||||
msgid "We noticed you left something behind."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:405
|
||||
msgid "No need to worry, you can still visit the page from where you left accidentally."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:406
|
||||
msgid "Use the following link to make submissions."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:408
|
||||
msgid "Thanks!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:424
|
||||
msgid "<b>Abandoned Contact Form 7 :</b> Contact Form 7 is not active! Please install <a target=\"_blank\" href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7</a>."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2020 WP White Security
|
||||
# This file is distributed under the same license as the WP Activity Log Extension for Yoast SEO plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Activity Log Extension for Yoast SEO 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-yoast-seo\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-10-01T10:55:48+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wsal-yoast\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Activity Log Extension for Yoast SEO"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpactivitylog.com/extensions/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A WP Activity Log plugin extension"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP White Security"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.wpwhitesecurity.com/"
|
||||
msgstr ""
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/addonify-quick-view/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/addonify-quick-view/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "addonify-quick-view",
|
||||
"version": "1.0.0",
|
||||
"description": "Addonify WooCoomerce Quick View plugin adds functionality to have a WooCoomerce product quick view preview on a modal window.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/addonify/addonify-quick-view.git"
|
||||
},
|
||||
"keywords": [
|
||||
"woocommerce",
|
||||
"quick",
|
||||
"view",
|
||||
"addonify"
|
||||
],
|
||||
"author": "Addonify",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/addonify/addonify-quick-view/issues"
|
||||
},
|
||||
"homepage": "https://github.com/addonify/addonify-quick-view#readme",
|
||||
"devDependencies": {
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-wp-pot": "^2.4.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"Blank WordPress Pot "
|
||||
"v1.0.0\n"
|
||||
"POT-Creation-Date: "
|
||||
"2020-07-27 14:57+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Fredrik Stigsson"
|
||||
"<info@annytab.se>\n"
|
||||
"Language-Team: Your Team "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Translator Name "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"1.6.4\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Language: en_US\n"
|
||||
"X-Generator: Poedit 2.4\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: annytab-photoswipe.php:85
|
||||
msgid "Share on Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:86
|
||||
msgid "Tweet"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:87
|
||||
msgid "Pin it"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:88
|
||||
msgid "Download image"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:114
|
||||
msgid "Close (Esc)"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:116
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:118
|
||||
msgid "Toggle fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:120
|
||||
msgid "Zoom in/out"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:137
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: annytab-photoswipe.php:140
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
88
spec/fixtures/dynamic_finders/plugin_version/app-log/translation_file/lang/aplg.pot
vendored
Normal file
88
spec/fixtures/dynamic_finders/plugin_version/app-log/translation_file/lang/aplg.pot
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
# Copyright (C) 2020 PRESSMAN
|
||||
# This file is distributed under the same license as the App Log plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: App Log 1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/app-log\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-29T02:35:19+00:00\n"
|
||||
"PO-Revision-Date: 2020-08-07T06:01:23+00:00\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: aplg\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/aplg-dashboard.php:48
|
||||
#: admin/aplg-settings.php:38
|
||||
msgid "App Log"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A simple logger for debugging."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "PRESSMAN"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.pressman.ne.jp/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:64
|
||||
msgid "File will be deleted. Are you sure you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:83
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:105
|
||||
msgid "No logs found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:117
|
||||
msgid "Log File List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:117
|
||||
msgid "Path"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:152
|
||||
msgid "Set path to where the application logs are stored"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:159
|
||||
msgid "※No need to set if default path will be used. (Default Path: %s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:191
|
||||
msgid "Invalid access"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-dashboard.php:231
|
||||
#: classes/class-aplg-logger.php:122
|
||||
msgid "%s successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-settings.php:37
|
||||
#: admin/aplg-settings.php:53
|
||||
msgid "App Log Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-settings.php:60
|
||||
msgid "Log Directory"
|
||||
msgstr ""
|
||||
|
||||
#: admin/aplg-settings.php:68
|
||||
msgid "Enable/Disable Mail Log"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-aplg-logger.php:114
|
||||
#: classes/class-aplg-logger.php:127
|
||||
msgid "Failed to delete log."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,94 @@
|
||||
# Copyright (C) 2020 AWSM Innovations
|
||||
# This file is distributed under the same license as the Auto Delete Applications - Add-on for WP Job Openings plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Auto Delete Applications - Add-on for WP Job Openings 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://awsm.in/support\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Awsm Innovations <hello@awsm.in>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-28T17:05:59+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: auto-delete-wp-job-openings\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: auto-delete.php:143
|
||||
msgid "Auto Delete Applications - Add-on for WP Job Openings"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpjobopenings.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This is an add-on for WP Job Openings Plugin, which will let you delete the received applications periodically."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "AWSM Innovations"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://awsm.in/"
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:110
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:120
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:127
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: main plugin, %2$s: current plugin, %3$s: plugin activation link, %4$s: line break
|
||||
#: auto-delete.php:146
|
||||
msgid "The plugin %2$s needs the plugin %1$s active. %4$s Please %3$s %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: main plugin, %2$s: current plugin, %3$s: minimum required version of the main plugin, %4$s: plugin updation link
|
||||
#: auto-delete.php:149
|
||||
msgid "%2$s plugin requires %1$s version %3$s. Please %4$s %1$s plugin to the latest version."
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:165
|
||||
msgid "Auto delete applications "
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:168
|
||||
msgid "CAUTION: Checking this option will delete applications after the selected period from the date of application. (For example, if you configure the option for 6 months, all the applications you have received before 6 months will be deleted immediately and every application that completes 6 months will be deleted from next day onwards automatically)."
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:5
|
||||
msgid "Day(s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:6
|
||||
msgid "Month(s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:7
|
||||
msgid "Year(s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:15
|
||||
msgid "Enable auto delete applications"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:23
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:46
|
||||
msgid "Enable force delete"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:48
|
||||
msgid "Whether to force delete applications or move it to trash."
|
||||
msgstr ""
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/badgeos-edd-integration/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/badgeos-edd-integration/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# Changelog
|
||||
|
||||
## 1.1
|
||||
- Fix: Resolve conflict with BadgeOS Community add-on
|
||||
|
||||
## 1.0
|
||||
- Initial
|
||||
@@ -0,0 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0
|
||||
- Initial
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
# Changelog
|
||||
|
||||
## 1.3
|
||||
- New: Removed OB features
|
||||
|
||||
## 1.2
|
||||
- New: Added option to allow only embed or social share on front-end
|
||||
- New: Made the popup compatible with badgeOS Congratulation add-on popup
|
||||
- Fix: UI Tweaks
|
||||
|
||||
## 1.1
|
||||
- New: Option to display social sharing popup on badge award
|
||||
- New: Option to display social sharing option with BadgeOS earned achievement shortcode
|
||||
- New: Option to share badges to social media from front-end
|
||||
- Fix: Fixed email image issue
|
||||
- Fix: string translation issues in email
|
||||
|
||||
## 1.0
|
||||
- Initial
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/badgeos-rest-api-addon/change_log/CHANGELOG.md
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/badgeos-rest-api-addon/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
# Changelog
|
||||
## 1.0
|
||||
- Initial
|
||||
25
spec/fixtures/dynamic_finders/plugin_version/blockmeister/change_log/changelog.md
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/blockmeister/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# Change Log
|
||||
|
||||
## [2.0.1] - 2020-09-03 ##
|
||||
|
||||
### Fixed
|
||||
- keywords taxonomy's edit capability
|
||||
|
||||
## [2.0.0] - 2020-08-20
|
||||
First public release.
|
||||
|
||||
### Fixed
|
||||
- refactored complete 1.0 code set
|
||||
|
||||
### Added
|
||||
- block settings menu item to add selected blocks to a new block pattern
|
||||
- category taxonomy
|
||||
- keyword taxonomy
|
||||
- viewport width setting
|
||||
- limit pattern building to administrators
|
||||
- admin capabilities
|
||||
- made translatable
|
||||
- Dutch translation
|
||||
|
||||
## [1.0.x] - 2020-07-10
|
||||
Private releases
|
||||
1506
spec/fixtures/dynamic_finders/plugin_version/boo-recipes/translation_file/languages/boo-recipes-de_DE.po
vendored
Normal file
1506
spec/fixtures/dynamic_finders/plugin_version/boo-recipes/translation_file/languages/boo-recipes-de_DE.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
22
spec/fixtures/dynamic_finders/plugin_version/book-block/composer_file/package.json
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/book-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "book-block",
|
||||
"version": "0.1.0",
|
||||
"description": "Displays information about a book.",
|
||||
"author": "The WordPress Contributors",
|
||||
"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": "^12.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"classnames": "^2.2.6"
|
||||
}
|
||||
}
|
||||
7236
spec/fixtures/dynamic_finders/plugin_version/branda-white-labeling/translation_file/languages/ub.pot
vendored
Normal file
7236
spec/fixtures/dynamic_finders/plugin_version/branda-white-labeling/translation_file/languages/ub.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,40 @@
|
||||
# Copyright (C) 2020 Rimes Gold
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CF7 File Download 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cf7-file-download\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-24 11:14+0300\n"
|
||||
"PO-Revision-Date: 2020-07-25 10:18+0300\n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
"X-Domain: cf-file-download\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en\n"
|
||||
|
||||
#: classes/class-cf7-file-download.php:34
|
||||
#: classes/class-cf7-file-download.php:35
|
||||
msgid "CF7 File Download"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-cf7-file-download.php:53
|
||||
msgid "File Download Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-cf7-file-download.php:59
|
||||
msgid "Download Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-cf7-file-download.php:78
|
||||
msgid "Contact Form ID"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-cf7-file-download.php:87
|
||||
msgid "Attachment URL"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-cf7-file-download.php:95
|
||||
msgid "Downloaded File Name"
|
||||
msgstr ""
|
||||
685
spec/fixtures/dynamic_finders/plugin_version/chatster/translation_file/languages/chatster.pot
vendored
Normal file
685
spec/fixtures/dynamic_finders/plugin_version/chatster/translation_file/languages/chatster.pot
vendored
Normal file
@@ -0,0 +1,685 @@
|
||||
# Copyright (C) 2020 Frankspress
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: chatster 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: yyyy-mm-dd hh:mm+0000\n"
|
||||
"PO-Revision-Date: 2020-07-18 14:46-0500\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"X-Generator: Eazy Po 0.9.5.3\n"
|
||||
|
||||
#: includes/api/class.request-all.php:207
|
||||
msgid "Testing Chatster! Your email setup works! "
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class.request-all.php:209
|
||||
msgid "Mock request message.. Customer original message will be shown here!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class.request-all.php:210
|
||||
msgid "This is a test email sent by"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class.request-all.php:211
|
||||
msgid "The plugin is working. For more testing, please read the documentation."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class.request-all.php:212
|
||||
msgid "Test your website link here: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/class.request-all.php:213
|
||||
msgid "Thank you."
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/action.global.php:17 views/admin/function.header.php:17
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:27
|
||||
msgid "Started"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:28
|
||||
msgid "more than one hour ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:29
|
||||
msgid "hour ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:30
|
||||
msgid "minutes ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:31
|
||||
msgid "minute ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:32
|
||||
msgid "just now"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:33
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:34
|
||||
#: views/admin/function.request.php:90
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:35
|
||||
msgid "Reset settings?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:36
|
||||
msgid "Reset All settings?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:37
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:38
|
||||
msgid "Replied by admin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:102
|
||||
msgid "Chatster"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-admin-menu.php:103
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.add-chat-public.php:118
|
||||
msgid "open"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:30
|
||||
msgid "Once every 3 minutes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:59
|
||||
msgid "New Request received on"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:60
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:61
|
||||
msgid "You have received "
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:62
|
||||
#, php-format
|
||||
msgid "%s new request"
|
||||
msgid_plural "%s new requests"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:63
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:64
|
||||
msgid "To login to your website go here:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.cron-manager.php:65
|
||||
msgid "Thank you for using Chatster!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.emailer.php:27
|
||||
msgid "Your original message: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.emailer.php:55
|
||||
msgid "RE:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:15
|
||||
msgid "Thank you and Welcome to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:15
|
||||
msgid "Chatster!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:17
|
||||
msgid "Testing:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:18
|
||||
msgid ""
|
||||
"- Please use only <b>incognito windows</b> or <b>second browser</b> to test "
|
||||
"chat functionalities.<br>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:19
|
||||
msgid "- API functionality <b>must be enabled!</b><br>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:20
|
||||
msgid ""
|
||||
"- Email delivery only works if you have a <b>transactional email service</b>."
|
||||
"<br>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:21
|
||||
msgid ""
|
||||
"- Go to <i>Settings->Request/Response->Test Functionality</i> and verify "
|
||||
"email delivery."
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:22
|
||||
msgid "Suggestions:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/core/class.notices.php:23
|
||||
msgid ""
|
||||
"- For any questions or suggestions please visit the <a target=\"_blank\" "
|
||||
"href=\""
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:32
|
||||
msgid "Bot Q & A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:43
|
||||
msgid "Add a question or questions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:44
|
||||
msgid "What are your opening hours? What time do you open?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:46
|
||||
msgid ""
|
||||
"The Bot will look for similarities between saved questions and user question."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:55
|
||||
msgid "Bot Response to the question or questions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:56
|
||||
msgid "Our stores are open from 7 a.m. to 8:30 p.m."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot-qa.php:58
|
||||
msgid "This answer will be given when a similar question is asked."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:27
|
||||
msgid "Hi!! How can I help you today?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:28
|
||||
msgid "If you have any other questions please feel free to ask."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:29
|
||||
msgid ""
|
||||
"Sorry, I couldn't find what you're looking for..\n"
|
||||
" Please try again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:79
|
||||
msgid "Give your bot your favorite name."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:89
|
||||
msgid "Give your bot a friendly image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:99
|
||||
msgid ""
|
||||
"Bot introductory sentece used when the chat is initially displayed.\n"
|
||||
" <br><span class=\"ch-field-descr-extra\">(Each "
|
||||
"line break is shown as separate message)</span>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:110
|
||||
msgid ""
|
||||
"The bot sentece that follows a successfull reply.\n"
|
||||
" <br><span class=\"ch-field-descr-extra\">"
|
||||
"(Each line break is shown as separate message)</span>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:121
|
||||
msgid ""
|
||||
"When no answer is found the bot will use this sentence.\n"
|
||||
" <br><span class=\"ch-field-descr-extra\">"
|
||||
"(Each line break is shown as separate message)</span>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:132
|
||||
msgid ""
|
||||
"BOT will search full text in both questions and answers. <br>When not "
|
||||
"enabled it will only search among the saved questions."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:155
|
||||
msgid "BOT settings have been reset!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-bot.php:171
|
||||
#: includes/options/class.add-options-bot.php:184
|
||||
#: includes/options/class.add-options-chat.php:279
|
||||
#, php-format
|
||||
msgid "A field text exceeds %d character"
|
||||
msgid_plural "A field text exceeds %d characters"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:24
|
||||
msgid "Chat or get in touch!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:25
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:47
|
||||
#: includes/options/class.add-options-chat.php:48
|
||||
#: includes/options/class.add-options-chat.php:49
|
||||
#: includes/options/class.add-options-chat.php:50
|
||||
#: includes/options/class.add-options-chat.php:51
|
||||
msgid "Customers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:57
|
||||
#: includes/options/class.add-options-chat.php:58
|
||||
#: includes/options/class.add-options-chat.php:59
|
||||
#: includes/options/class.add-options-chat.php:60
|
||||
#: includes/options/class.add-options-chat.php:66
|
||||
#: includes/options/class.add-options-chat.php:67
|
||||
#: includes/options/class.add-options-chat.php:68
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:81
|
||||
msgid "Small Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:82
|
||||
msgid "Medium Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:83
|
||||
msgid "Large Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:88
|
||||
msgid "Left Side of the screen"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:89
|
||||
msgid "Right Side of the screen"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:218
|
||||
msgid ""
|
||||
"Will automatically switch the current admin to offline mode when "
|
||||
"\"conversation\" screen is not open.\n"
|
||||
" <br/>You can choose how long before that happens."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:229
|
||||
msgid ""
|
||||
"Automatically disconnects conversations that have been inactive <br>for a "
|
||||
"selected amount of time."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:263
|
||||
msgid "Chatster Chat settings have been reset!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:290
|
||||
msgid "Wrong Hex color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-chat.php:302
|
||||
msgid "Wrong Volume Setting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:39
|
||||
msgid "Chatster Request Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:45
|
||||
msgid "Test Functionality"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:56
|
||||
msgid "Email Header Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:58
|
||||
msgid ""
|
||||
"Your response email can display an header image.<br>\n"
|
||||
" Go to Media -> Library -> Add New, then copy "
|
||||
"and paste the link in this field.<br>\n"
|
||||
" (Optimal aspect ratio: 600 X 230 px.)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:71
|
||||
msgid "Enable Reply Forward"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:84
|
||||
msgid "Replies will be sent to: your@email.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:85
|
||||
msgid ""
|
||||
"If your WordPress website sends email from an email address you don't check "
|
||||
"daily, <br>\n"
|
||||
" with this option you can redirect customer "
|
||||
"replies to an account of your choice.<br><br>\n"
|
||||
" Customers replying your initial response email "
|
||||
"sent from the <i>\"Received Messages\"</i> section <br>\n"
|
||||
" and all future back and forth emails will be "
|
||||
"routed to this email address instead."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:98
|
||||
msgid "Enable Email Alert"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:110
|
||||
msgid "Alerts sent to: your@email.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:111
|
||||
msgid ""
|
||||
"Receive an email alert when a new request is submitted.<br>\n"
|
||||
" (Wordpress will check for new requests every "
|
||||
"hour.)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:122
|
||||
msgid "Enter an Email Address."
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:124
|
||||
msgid "Ex: your@email.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:125
|
||||
msgid ""
|
||||
"You will receive a mock email to check functionalities.<br>\n"
|
||||
" (Depending on your server and service status "
|
||||
"it may take <br>\n"
|
||||
" a few minutes to receive the email. Also "
|
||||
"check your \"junk folder\".)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:141
|
||||
msgid "Chatster Request settings have been reset!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/options/class.add-options-request.php:158
|
||||
msgid "Wrong URL submitted"
|
||||
msgstr ""
|
||||
|
||||
#: views/functions.basic-templates.php:7
|
||||
msgid "support page"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.chat.php:25
|
||||
msgid "Your conversations will be shown here.."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.chat.php:36
|
||||
msgid "Current conversation will be shown here."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.chat.php:45
|
||||
#, php-format
|
||||
msgid "There is %s customer waiting in line"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.chat.php:48
|
||||
#, php-format
|
||||
msgid "There are %s customers waiting in line"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.chat.php:60
|
||||
msgid "Attach a link to a page or product."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.header.php:15
|
||||
msgid "Conversations"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.header.php:16
|
||||
msgid "Received Messages"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:16
|
||||
msgid "No Messages yet"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:28
|
||||
msgid "Show Replied Messages"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:35
|
||||
msgid "User Name"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:36
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:37
|
||||
msgid "Date Received"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:38
|
||||
msgid "Last Replied"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:39
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:42
|
||||
msgid "Message Data"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:70
|
||||
msgid "By: "
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:89
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:89
|
||||
msgid "Show/Reply"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:92
|
||||
msgid "asks"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:97 views/public/function.front-chat.php:56
|
||||
msgid "Type here your message.."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:100
|
||||
msgid "Send Email"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:121 views/admin/function.settings.php:54
|
||||
msgid "«"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.request.php:122 views/admin/function.settings.php:55
|
||||
msgid "»"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:16
|
||||
msgid "Bot Setup"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:25
|
||||
msgid "Reset Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:32
|
||||
msgid "Bot Q & A"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:35
|
||||
msgid "Q&A Was Reset Successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:36
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:43
|
||||
msgid "You didn't add any Q&A yet!"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:71
|
||||
msgid "Reset Bot Q&A"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:80
|
||||
msgid "Chat Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:100
|
||||
msgid "Request/Response"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:100
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:116
|
||||
msgid "Send Test Email"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:118
|
||||
msgid "Sent Successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:119
|
||||
msgid "Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#: views/admin/function.settings.php:131
|
||||
msgid "Reset All Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:22
|
||||
msgid "Customers already waiting: "
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:23
|
||||
msgid "An admin will be here shortly.."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:24
|
||||
msgid "You are beign helped by "
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:25
|
||||
msgid "Sorry, we are currently unavailable.. "
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:26
|
||||
msgid "You are now disconnected.."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:27
|
||||
msgid "You are chatting with "
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:32
|
||||
#: views/public/function.front-chat.php:100
|
||||
msgid "Your message here.."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:36
|
||||
msgid "End Chat"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:38
|
||||
#: views/public/function.front-chat.php:60
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:45
|
||||
msgid "Please fill out this form to get in touch!"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:61
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:63
|
||||
msgid "Try Again"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:64
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:72
|
||||
msgid "Start Chatting now!"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:74
|
||||
msgid "Your name"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:77
|
||||
msgid "Your email"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:80
|
||||
msgid "Type here your question.."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:84
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:86
|
||||
msgid "Start Chatting"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:97
|
||||
msgid "Our Bot "
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:97
|
||||
msgid "is here to help you."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:104
|
||||
msgid "Chat unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:104
|
||||
msgid "Live Chat"
|
||||
msgstr ""
|
||||
|
||||
#: views/public/function.front-chat.php:105
|
||||
msgid "Message Us"
|
||||
msgstr ""
|
||||
32
spec/fixtures/dynamic_finders/plugin_version/checkrobin/change_log/changelog.txt
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/checkrobin/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.0.6] - 2020-06-29
|
||||
### Added
|
||||
- First release version for wordpress repository
|
||||
|
||||
## [0.0.5] - 2020-02-26
|
||||
### Fixed
|
||||
- Avoid settings link in module overview overloading other modules settings links
|
||||
|
||||
## [0.0.4] - 2020-01-27
|
||||
### Added
|
||||
- count(): Parameter must be an array or an object that implements Countable as of as of PHP 7.2
|
||||
- Updating composer/installers (v1.5.0 => v1.7.0)
|
||||
|
||||
## [0.0.3] - 2018-04-27
|
||||
### Added
|
||||
- Added defined check and prefix to constants.php
|
||||
- Re-Worked Failsave email
|
||||
|
||||
## [0.0.2] - 2018-04-27
|
||||
### Added
|
||||
- Disabled Failsave email
|
||||
- Make sure default timezone is set
|
||||
|
||||
## [0.0.1] - 2018-04-13
|
||||
### Added
|
||||
- Started changelog
|
||||
@@ -0,0 +1,851 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Classic Quiz Feedback Survey 1.0.0\n"
|
||||
"POT-Creation-Date: 2020-08-28 19:56+0530\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:22+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Amit Biswas\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\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"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: assets\n"
|
||||
"X-Poedit-SearchPathExcluded-1: admin/js\n"
|
||||
"X-Poedit-SearchPathExcluded-2: admin/css\n"
|
||||
"X-Poedit-SearchPathExcluded-3: .git\n"
|
||||
"X-Poedit-SearchPathExcluded-4: .gitignore\n"
|
||||
|
||||
#: admin/admin-scripts.php:91
|
||||
msgid "Required field contains invalid entry."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-scripts.php:92
|
||||
msgid "Required field value cannot be null."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:203 admin/form-handle.php:318 inc/submission.php:87
|
||||
msgid "Security check unsuccessful."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:220 admin/form-handle.php:335
|
||||
msgid "Permission Denied."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:255
|
||||
#, php-format
|
||||
msgid "[Duplicate #%s]"
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:271
|
||||
msgid "Mail successfully sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:288
|
||||
msgid "Mail not send. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:356 inc/roles.php:93
|
||||
msgid "Cqfs Result"
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:358 inc/roles.php:95
|
||||
msgid "This page displays CQFS results. Please do not delete this page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:375
|
||||
msgid "Result page created successfully."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:390
|
||||
msgid "Cannot create result page. Please refresh and check."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:63
|
||||
#, php-format
|
||||
msgid "This email was sent from <a href=\"%s\">%s</a> © %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:82
|
||||
msgid "CQFS Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:83
|
||||
msgid "CQFS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:98 admin/menu-pages.php:99
|
||||
msgid "CQFS Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:118
|
||||
msgid "Welcome to CQFS Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:127 cqfs.php:219
|
||||
msgid "Classic Quiz Feedback Survey"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:130
|
||||
msgid ""
|
||||
"This plugin is a free open source project. If this plugin is useful to "
|
||||
"you, please support me and keep this alive."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:135
|
||||
msgid "Donate via PayPal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:140
|
||||
msgid "Full Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:147
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:156
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:165
|
||||
msgid "CQFS shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:174
|
||||
msgid "Action Hooks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:183
|
||||
msgid "Filter Hooks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:192
|
||||
msgid "Live Demos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:198
|
||||
msgid "Github Repositiroy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:203
|
||||
msgid "classic quiz feedback survey"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:223
|
||||
msgid "Result page is missing."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:233
|
||||
msgid "Create Result Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:242
|
||||
msgid "Great! Result page exists."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:272
|
||||
msgid "Mail Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:283
|
||||
msgid "Sender Email ID (from)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:285
|
||||
msgid ""
|
||||
"If not set, administrator email will be used. Try to use email id same as "
|
||||
"domain."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:295
|
||||
msgid "Email to admin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:297
|
||||
msgid ""
|
||||
"Send email to admin when a form is submitted by a user. Administrator "
|
||||
"email will be used."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:310
|
||||
msgid "Email to user."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:312
|
||||
msgid "Send email to the user when a form is submitted by that user."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:325
|
||||
msgid "Additional Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:327
|
||||
msgid ""
|
||||
"Add any additional notes in the email. It will appear above the footer. "
|
||||
"HTML allowed as post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:339
|
||||
msgid "Email Footer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:341
|
||||
msgid "Add custom footer content for the email. HTML allowed as post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:368 admin/menu-pages.php:369
|
||||
msgid "Add Question"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:378 admin/menu-pages.php:379
|
||||
msgid "Add Build"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:388 admin/menu-pages.php:389
|
||||
msgid "Add Entry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:39
|
||||
msgid "Build Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:49 inc/admin-columns.php:98
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:65
|
||||
msgid "Build Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:66
|
||||
msgid "Click to select the shortcode. Then copy it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:77
|
||||
msgid "Enable title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:78
|
||||
msgid "Enable ajax"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:79
|
||||
msgid "Enable guest"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:80
|
||||
msgid "Enable required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:81
|
||||
msgid "Enable pagination"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:82
|
||||
msgid "Custom class"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:83
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:84
|
||||
msgid "Orderby"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:87
|
||||
msgid "Available attributes and example use:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:100
|
||||
msgid "Full documentation is here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:137
|
||||
msgid "Questions by Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:138
|
||||
msgid "You have selected the following categories for questions."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:147
|
||||
msgid "No categories are selected. Please select a category."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:158 inc/admin-columns.php:97
|
||||
msgid "Build Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:158
|
||||
#: admin/meta-boxes/metabox-build.php:186
|
||||
#: admin/meta-boxes/metabox-question.php:70
|
||||
#: admin/meta-boxes/metabox-question.php:81
|
||||
#: admin/meta-boxes/metabox-question.php:108
|
||||
msgid "*"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:159
|
||||
msgid "Select a build type."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:165
|
||||
#: admin/meta-boxes/metabox-question.php:88
|
||||
msgid "Please Select..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:166
|
||||
msgid "Quiz"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:167
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:168
|
||||
msgid "Survey"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:186
|
||||
msgid "Pass Percentage"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:187
|
||||
msgid ""
|
||||
"Set a percentage for pass mark. It is needed for all types as it will help "
|
||||
"us to assess things better."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:190 inc/utilities.php:236
|
||||
#: inc/utilities.php:245
|
||||
msgid "%"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:203
|
||||
msgid "Pass Message (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:204
|
||||
#: admin/meta-boxes/metabox-build.php:215
|
||||
msgid "Leave empty for default."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:214
|
||||
msgid "Fail Message (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:40
|
||||
msgid "Entry Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:50
|
||||
msgid "Edit This Entry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:59
|
||||
msgid "Entry Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:78
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:79
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:97 inc/utilities.php:704
|
||||
msgid "View Result"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:98
|
||||
msgid "Email to user"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:146 inc/admin-columns.php:159
|
||||
msgid "Form ID (cqfs build)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:147
|
||||
msgid "The form ID which user have submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:160 inc/admin-columns.php:160
|
||||
msgid "Form Type (cqfs build)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:161
|
||||
msgid "The form type which user have submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:173 inc/admin-columns.php:161
|
||||
msgid "Result"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:174
|
||||
msgid "The result."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:180
|
||||
msgid "Passed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:181
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:198
|
||||
msgid "Percentage"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:199
|
||||
msgid "Percentage obtained."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:212 inc/cpt.php:36 inc/cpt.php:38
|
||||
#: inc/cpt.php:40 inc/cpt.php:57
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:213
|
||||
msgid ""
|
||||
"The CQFS question list for this entry. Each line break represents a "
|
||||
"question."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:223
|
||||
#: admin/meta-boxes/metabox-question.php:70
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:224
|
||||
msgid ""
|
||||
"The CQFS answer list for this entry. Each line break represents an answer."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:234
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:235
|
||||
msgid ""
|
||||
"The CQFS answer status list for this entry. Each line break represents a "
|
||||
"status."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:245
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:246
|
||||
msgid ""
|
||||
"The additional notes for each question. Each line break represents a note."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:256
|
||||
msgid "Remarks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:257
|
||||
msgid "Pass or fail message."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:267
|
||||
msgid "User Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:268
|
||||
msgid "Email ID of the user who have submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:38
|
||||
msgid "Question Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:71
|
||||
msgid ""
|
||||
"Please use separate line for each answer. Each line will be considered as "
|
||||
"1, 2, 3 ... and so on."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:81 inc/admin-columns.php:48
|
||||
msgid "Answer Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:82
|
||||
msgid ""
|
||||
"If this question have more than one correct answer, select check boxes. "
|
||||
"Otherwise select radio button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:89
|
||||
msgid "Radio Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:90
|
||||
msgid "Check Boxes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:108
|
||||
msgid "Correct Answer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:109
|
||||
msgid ""
|
||||
"Consider the answers (above) in each line as 1, 2, 3... and so on. Please "
|
||||
"separate with comma for multiple correct answers. eg; 2,3 (no space)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:118
|
||||
msgid "Additional Note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:119
|
||||
msgid ""
|
||||
"This is hidden in questionnaire and showed in the result page for build "
|
||||
"type \"quiz\"."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:40
|
||||
#: cqfs-templates/template-results.php:158
|
||||
msgid "Invalid Result."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:59 inc/utilities.php:233
|
||||
msgid "Congratulations! You have passed."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:61 inc/utilities.php:242
|
||||
msgid "Sorry! You have failed."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:93 cqfs.php:251
|
||||
msgid "You answered: "
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:94 cqfs.php:252
|
||||
msgid "Status: "
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:95 cqfs.php:253
|
||||
msgid "Note: "
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:129 cqfs.php:249 inc/utilities.php:610
|
||||
msgid "Thank you for your feedback."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:147 cqfs.php:250
|
||||
msgid "Thank you for your participation in the survey."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:166
|
||||
msgid "Sorry, something went terribly wrong. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:171
|
||||
msgid "No results found."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs.php:218
|
||||
#, php-format
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs.php:220
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: cqfs.php:260
|
||||
msgid "Invalid Result"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin-columns.php:162
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:37
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:39
|
||||
msgid "Question:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:41
|
||||
msgid "View Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:42
|
||||
msgid "Add New Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:43 inc/cpt.php:92 inc/cpt.php:140
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:44
|
||||
msgid "Edit Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:45
|
||||
msgid "Update Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:46
|
||||
msgid "Search Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:47
|
||||
msgid "Question Not found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:48 inc/cpt.php:97 inc/cpt.php:145
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:85 inc/cpt.php:86 inc/cpt.php:87 inc/cpt.php:89
|
||||
#: inc/cpt.php:106
|
||||
msgid "Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:88
|
||||
msgid "Build:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:90
|
||||
msgid "View Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:91
|
||||
msgid "Add New Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:93
|
||||
msgid "Edit Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:94
|
||||
msgid "Update Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:95
|
||||
msgid "Search Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:96
|
||||
msgid "Build Not found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:133 inc/cpt.php:134 inc/cpt.php:135 inc/cpt.php:154
|
||||
msgid "Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:136
|
||||
msgid "Entry:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:137
|
||||
msgid "Entries"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:138
|
||||
msgid "View Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:139
|
||||
msgid "Add New Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:141
|
||||
msgid "Edit Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:142
|
||||
msgid "Update Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:143
|
||||
msgid "Search Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:144
|
||||
msgid "Entry Not found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:77
|
||||
msgid "Something went terribly wrong. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:136
|
||||
msgid ". "
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:201
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:202
|
||||
msgid "Prev"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:203
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:216
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:217
|
||||
msgid "One or more fields are required. Please check again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:127 inc/submission.php:131
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<div class=\"cqfs-return-msg success\"><p><span class=\"cqfs-icon success-"
|
||||
"icon\"></span>%s</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:128
|
||||
msgid "Login Successful."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:132 inc/utilities.php:306
|
||||
msgid "You are now logged in."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:218
|
||||
msgid "Correct Answer."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:218
|
||||
msgid "Wrong Answer."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:231
|
||||
msgid "You have skipped this question."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:238
|
||||
msgid "Not Available."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:299
|
||||
msgid "Guest"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:235
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<div class=\"cqfs-pass-msg\"><p class=\"cqfs-percentage\">%s correct.</"
|
||||
"p><p>%s</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:244
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<div class=\"cqfs-fail-msg\"><p class=\"cqfs-percentage\">%s correct.</"
|
||||
"p><p class=\"cqfs-remark\">%s</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:315
|
||||
msgid "Login and submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:321
|
||||
msgid "Or you may submit as a guest. Please provide the following info."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:328
|
||||
msgid "Invalid Name. Min 3, max 24 characters allowed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:333
|
||||
msgid "Your Name *"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:335
|
||||
msgid "please type your name."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:340
|
||||
msgid "Invalid Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:345
|
||||
msgid "Your Email *"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:347
|
||||
msgid "please type email."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:399 inc/utilities.php:468
|
||||
msgid "×"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:400
|
||||
msgid "Please login to submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:413
|
||||
msgid "Secure Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:415
|
||||
msgid "Username or email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:419
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:423
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:469
|
||||
msgid "Please confirm"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:494
|
||||
msgid "Send Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:530
|
||||
msgid "Classic quiz feedback survey"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:601
|
||||
#, php-format
|
||||
msgid "Hello %s,"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:607
|
||||
msgid "Congratulations! You have passed the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:608
|
||||
msgid "Sorry! You did not passed the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:609
|
||||
msgid ""
|
||||
"Thank you for participating in the quiz. Here is your result page link "
|
||||
"below."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:611
|
||||
msgid "Thank you for participating in the survey."
|
||||
msgstr ""
|
||||
64
spec/fixtures/dynamic_finders/plugin_version/client-power-tools/change_log/changelog.txt
vendored
Normal file
64
spec/fixtures/dynamic_finders/plugin_version/client-power-tools/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
# Changelog for Client Power Tools
|
||||
|
||||
All notable changes to this project will be documented in this file. The format
|
||||
is based on [Keep a Changelog](https://keepachangelog.com).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
|
||||
## [1.0.5] - 2020-10-07
|
||||
|
||||
### Changed
|
||||
- Handle frontend login error on the front end.
|
||||
- General tidying up.
|
||||
|
||||
### Removed
|
||||
- Remove unused capabilities from Client Manager role (for now).
|
||||
- Remove unused functions cpt_get_client_profile_link and cpt_get_client_id.
|
||||
|
||||
### Fixed
|
||||
- Email notifications should now deliver with the intended formatting.
|
||||
|
||||
|
||||
## [1.0.4] - 2020-10-05
|
||||
|
||||
### Fixed
|
||||
- Prevent not-logged-in messages from displaying in the head when the_content filter is called (by Yoast SEO, for example).
|
||||
|
||||
|
||||
## [1.0.3] - 2020-10-05
|
||||
|
||||
### Fixed
|
||||
- Center the modal dismiss button.
|
||||
- Fix false negatives from cpt_is_client if the user is not logged in but the user ID is provided.
|
||||
- Prevent Client Power Tools from intercepting the password reset workflow for non-clients.
|
||||
|
||||
|
||||
## [1.0.2] - 2020-10-02
|
||||
|
||||
### Fixed
|
||||
- Fixed URL encoding.
|
||||
|
||||
|
||||
## [1.0.1] - 2020-10-02
|
||||
|
||||
### Fixed
|
||||
- Check for main query on client dashboard.
|
||||
- Fixed set/change password key sanitization.
|
||||
|
||||
|
||||
## [1.0.0] - 2020-10-02
|
||||
|
||||
### Added
|
||||
- Added some frontend form styles for greater compatibility with different themes.
|
||||
|
||||
### Changed
|
||||
- Override default button display style on dismiss button.
|
||||
- Change constant prefix from CPT_ to CLIENT_POWER_TOOLS_.
|
||||
- Data sanitization and validation.
|
||||
|
||||
|
||||
## [0.1.0 (Beta)] - 2020-09-23
|
||||
|
||||
### Added
|
||||
- Everything.
|
||||
@@ -1193,8 +1193,38 @@ s0.parentNode.insertBefore(s1,s0);
|
||||
<!-- This site has installed PayPal for WooCommerce v2.1.12 - https://www.angelleye.com/product/woocommerce-paypal-plugin/ -->
|
||||
|
||||
|
||||
|
||||
<!-- provesource -->
|
||||
<!-- Start of Async ProveSource Code (Wordpress / Woocommerce v2.1.0) -->
|
||||
|
||||
|
||||
<!-- augmented-reality-product-visualizer-and-configurator-for-woocommerce -->
|
||||
<!--
|
||||
* Plugin Name: Augmented Reality Product Visualizer and Configurator for WooCommerce
|
||||
* Description: Specially built for eCommerce, OGMO allows eCommerce users to easily examine digital products with the help of Augmented reality and 3D technology without having the physical product beside, allowing them to customize products according to their preference.
|
||||
* Version: 0.5.0
|
||||
* Requires at least: 5.2
|
||||
* Requires PHP: 7.2
|
||||
* Author: OGMO
|
||||
* Author URI: https://www.ogmo.xyz/
|
||||
* License: GPLv2 or later
|
||||
|
||||
Copyright 2020, by OGMO
|
||||
All rights reserved
|
||||
|
||||
This file is part of Augmented Reality Product Visualizer and Configurator for WooComerce.
|
||||
|
||||
Augmented Reality Product Visualizer and Configurator for WooComerce is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
|
||||
|
||||
Augmented Reality Product Visualizer and Configurator for WooComerce is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with Augmented Reality Product Visualizer and Configurator for WooComerce. If not, see <https://www.gnu.org/licenses/>
|
||||
|
||||
LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program “Augmented Reality Product Visualizer and Configurator” (Woocommerce plugin enables online product visualization and configuration in augmented reality and 3D) written by OGMO.
|
||||
|
||||
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
||||
* Text Domain: augmented-reality-product-visualizer-and-configurator-for-woocommerce
|
||||
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/cookiehub/change_log/changelog.txt
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/cookiehub/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
=== CookieHub ===
|
||||
|
||||
= 0.1 =
|
||||
*Release Date - 28 September 2020*
|
||||
|
||||
Initial release
|
||||
@@ -0,0 +1,192 @@
|
||||
# Copyright (C) 2020 Jeff Monteiro
|
||||
# This file is distributed under the same license as the Cool Admin Theme Lite for WordPress plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cool Admin Theme Lite for WordPress 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cool-admin-theme-lite-for-wp\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-08-25T16:51:57-03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: catforwp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Cool Admin Theme Lite for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/jeffsmonteiro/catliteforwp/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Turn your WordPress Admin Interface more clean, friendly and actual using this Free and Open Source WordPress Admin Theme. To get a more fun interface, you can enable this theme to use emojis to replace dashicons! ;)"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Jeff Monteiro"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.linkedin.com/in/jeff-monteiro"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:16
|
||||
#: inc/plugin-settings.php:17
|
||||
msgid "Cool Admin Theme Lite"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:30
|
||||
msgid "Emojify Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:31
|
||||
msgid "Thanks for using this plugin! Currently, Emojify offers 60 pre-configured emojis for the most popular plugins of WP.org repository. So, the major part of plugins will not display an icon on admin menu after activation. In this case, is recommended that you create a custom css to add this emoji. Over time, new emojis will be added by default."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:35
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:46
|
||||
msgid "Emojify Menu"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:47
|
||||
msgid "Check if you want to replace icons of the admin menu by emojis 😁"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:52
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:53
|
||||
msgid "Add new emojis using custom CSS code."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:62
|
||||
msgid "Be a PRO!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:64
|
||||
msgid "%1$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:66
|
||||
msgid "Get a White Label Admin with the Pro"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:68
|
||||
msgid "- Hide the WordPress brand in the navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:69
|
||||
msgid "- Use your own brand on the top bar"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:70
|
||||
msgid "- Replace the WordPress brand with your own brand on the login page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:71
|
||||
msgid "- Change the brand link on the login page to your homepage"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:72
|
||||
msgid "- Change the background color of the login page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:73
|
||||
msgid "- Replace the WordPress brand with your brand in the edit block (Gutenberg)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:74
|
||||
msgid "- Add a custom favicon to the Admin Area"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:75
|
||||
msgid "- Choose emojis for all sidebar menus using a picker"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:76
|
||||
msgid "- Hide or replace WordPress text at the bottom of the Admin Area"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:77
|
||||
msgid "- Hide the WordPress version text at the bottom of the Admin Area"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:78
|
||||
msgid "- Remove non functional widgets from dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:79
|
||||
msgid "- And more ..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:81
|
||||
msgid "Check it out at "
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:81
|
||||
msgid "wpadmintheme.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:94
|
||||
msgid "Emojify not working"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:95
|
||||
msgid "To enable emojify you need to check the option on Emojify Settings tab. If Emojify is already enabled, can be your OS don't have emoji characteres installed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:100
|
||||
msgid "Where do I customize emojis?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:101
|
||||
msgid "On free version you have a default set of emojis, but only for 60 items (the most popular). If you want to customize these items or add new items (when you get new plugins not coverted by our default sytlesheet), you can use the Custom CSS field to do it."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:106
|
||||
msgid "Can I use custom icons and emojis?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:107
|
||||
msgid "Maybe. After activation of the Emojify feature, all icons are replaced by emojis. May you can use the Custom CSS field to make changes. If you know a little bit of CSS you will do it."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:112
|
||||
msgid "Emojis that I set in the Custom CSS are not displayed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:113
|
||||
msgid "Try to clear browser cache and refresh the page. If you are using some cache plugin like Total Cache, try to refresh the cache."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:118
|
||||
msgid "Some emojis don't appear in the menu"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:119
|
||||
msgid "Our plugin cover the 60 most populars in WordPress Plugin Repository, maybe the plugin that you are using are not covered. So, try to add the emoji using the Custom CSS field."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:124
|
||||
msgid "Have a bug?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:125
|
||||
msgid "Open an issue on %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:125
|
||||
msgid "Git Hub Repository"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:136
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
87
spec/fixtures/dynamic_finders/plugin_version/courier-notices/change_log/CHANGELOG.md
vendored
Normal file
87
spec/fixtures/dynamic_finders/plugin_version/courier-notices/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
# Changelog #
|
||||
|
||||
## 1.2.3 ##
|
||||
* Fixed - issue with notice placement (whoops)
|
||||
|
||||
## 1.2.1 ##
|
||||
|
||||
* Updated sanitization to match wordpress.org audit.
|
||||
|
||||
## 1.2.0 ##
|
||||
|
||||
* Updated - Namespace changed from courier to courier-notices due to plugin conflict on wordpress.org
|
||||
* Fixed - Duplicate modal/popup issue
|
||||
* Submission to wordpress.org
|
||||
|
||||
## 1.1.4 ##
|
||||
|
||||
* Fixed - Fatal error when assigning data to a template view
|
||||
|
||||
## 1.1.3 ##
|
||||
|
||||
* Fixed - Icon font specificity
|
||||
|
||||
## 1.1.2 ##
|
||||
|
||||
* Remove - Notice font styles, allow styling to inherit from theme
|
||||
|
||||
## 1.1.1 ##
|
||||
|
||||
* Fixed - Issue with default styles not being created on install
|
||||
* Fixed - Security updates provided by github audit
|
||||
|
||||
## 1.1.0 ##
|
||||
|
||||
* Fixed - Minor security updates
|
||||
* Fixed - Minor code cleanup
|
||||
* Fixed - Link to Types/Design was broken
|
||||
* Fixed - Link to Settings was broken
|
||||
* Fixed - Minor updates to strings to allow for translation
|
||||
* Fixed - Modal notice was not working properly (dismissible)
|
||||
* Fixed - Error log was being utilized and should not have been
|
||||
* Fixed - Cron was running hourly and not every 5 minutes
|
||||
* Fixed - Various typos (We talk pretty one day)
|
||||
* Fixed - utilizing iris wpColorPicker (For the time being)
|
||||
* Fixed - Fixed an issue with color changes in the design panel did not show until page refresh
|
||||
* Added - New UI/UX for creating and styling "Types" of notices
|
||||
* Added - Courier actually has some branding now
|
||||
* Added - Default data on plugin activation
|
||||
* Added - Utility method to sanitize kses content
|
||||
* Added - Cleaned up CSS across the entire plugin
|
||||
* Added - New cron schedule (Every 5 minutes)
|
||||
* Added - New taxonomy for "Style of Notice". This will allow for all different kinds of notices in the future
|
||||
* Added - Base for CRUD in the future. Mainly just R right now.
|
||||
* Improved - Added more flexibility to how tabs and subtabs can extend the plugin
|
||||
* Improved - CSS is only generated and output if CSS is not disabled
|
||||
* Improved - Placement logic is more flexible now
|
||||
* Improved - UI/UX to show different notice options depending on other selections
|
||||
* Improved - How css and javascript is enqueued based on context of admin
|
||||
* Improved - Code Organization
|
||||
* Improved - Templates
|
||||
* Improved - Updated the expiration of notices to increment every 5 minutes for better accuracy and less stress on servers
|
||||
|
||||
## 1.0.4 ##
|
||||
|
||||
* Cleaned up deployment process further.
|
||||
|
||||
## 1.0.2 ##
|
||||
|
||||
* Migrated to using composer as our autoloader instead of a proprietary one
|
||||
* Added Parsedown dependency for Markdown display within the plugin
|
||||
* Added a changelog.md display to the settings page as a tab
|
||||
* Added more automation for release to get releases out the door quicker
|
||||
* Minor code formatting changes
|
||||
|
||||
## 1.0.1 ##
|
||||
|
||||
* Updated dependencies based on github security notification
|
||||
|
||||
## 1.0.0 ##
|
||||
|
||||
Initial Release
|
||||
|
||||
* Cleaned up UI for date and time selection.
|
||||
* You can no longer select an expiration date from the past.
|
||||
* Implemented datetimepicker so time selection is easier.
|
||||
* Minor typo fix in admin area.
|
||||
* Minor data sanitization/security hardening.
|
||||
43
spec/fixtures/dynamic_finders/plugin_version/courier-notices/composer_file/composer.json
vendored
Normal file
43
spec/fixtures/dynamic_finders/plugin_version/courier-notices/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"name": "linchpin/courier",
|
||||
"description": "Courier Notification for WordPress",
|
||||
"homepage": "https://github.com/linchpin/courier",
|
||||
"version": "1.2.3",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Linchpin",
|
||||
"email": "sayhi@linchpin.com",
|
||||
"homepage": "https://linchpin.com",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"keywords": [
|
||||
"WordPress",
|
||||
"linchpin",
|
||||
"notices",
|
||||
"notifications",
|
||||
"alerts",
|
||||
"gdpr"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/linchpin/courier/issues",
|
||||
"source": "https://github.com/linchpin/courier"
|
||||
},
|
||||
"license": "GPL-2.0+",
|
||||
"require-dev": {
|
||||
},
|
||||
"type": "wordpress-plugin",
|
||||
"require": {
|
||||
"php": ">=7.0",
|
||||
"erusev/parsedown": "^1.7"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"CourierNotices\\": "src/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "phpcs .",
|
||||
"lint-fix": "phpcbf ."
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
# Copyright (C) 2020 Automattic
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Crowdsignal Forms 0.9.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/crowdsignal-forms\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-27T13:38:00+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha-c4c9f7e\n"
|
||||
"X-Domain: crowdsignal-forms\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Crowdsignal Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://crowdsignal.com/crowdsignal-forms/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Crowdsignal Form Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Automattic"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://automattic.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-admin-notices.php:112
|
||||
msgid "Action failed. Please refresh the page and retry."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-admin-notices.php:116
|
||||
msgid "You don’t have permission to do this."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-admin.php:70
|
||||
msgid "Crowdsignal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-admin.php:71
|
||||
#: includes/admin/class-crowdsignal-forms-admin.php:86
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-admin.php:72
|
||||
#: includes/admin/class-crowdsignal-forms-admin.php:85
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:71
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:76
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:184
|
||||
msgid "Enter Crowdsignal API Key"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is a link to the Crowdsignal connection page.
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:163
|
||||
msgid "To collect responses and data with Crowdsignal Forms you need to <a href=\"%s\" target=\"_blank\">connect the plugin with a Crowdsignal account.</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:169
|
||||
msgid "You can do this by entering an API key below:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:176
|
||||
msgid "Settings successfully saved"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:204
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:210
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-crowdsignal-forms-settings.php:221
|
||||
msgid "If you don't have an API key we can help you here:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-notice-core-setup.php:17
|
||||
msgid "You are nearly ready to start creating polls with <strong>Crowdsignal</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-notice-core-setup.php:21
|
||||
msgid "Let's Get Started"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-notice-core-setup.php:22
|
||||
msgid "Skip Setup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:24
|
||||
msgid "Crowdsignal Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:24
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:25
|
||||
msgid "Terms of Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:25
|
||||
msgid "Terms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:26
|
||||
msgid "Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-footer.php:26
|
||||
msgid "Privacy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-header.php:43
|
||||
msgid "Could not disconnect. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-header.php:46
|
||||
msgid "Successfully disconnected from Crowdsignal."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-header.php:49
|
||||
msgid "Success! Your Crowdsignal account is successfully connected! You are ready!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-header.php:52
|
||||
msgid "You have been connected to Crowdsignal."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-header.php:55
|
||||
msgid "Your API key has not been updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-1.php:14
|
||||
msgid "Welcome to Crowdsignal Forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-1.php:24
|
||||
msgid "Let’s get started"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-2.php:20
|
||||
msgid "You're ready to start using Crowdsignal!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-3.php:15
|
||||
msgid "First time using Crowdsignal?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-3.php:20
|
||||
msgid "You can search for our blocks, like the Poll block, in the library of the block editor."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-setup-step-3.php:22
|
||||
msgid "Here is a short video to get you started:"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Argument is a link to Crowdsignal's contact page.
|
||||
#: includes/admin/views/html-admin-setup-step-3.php:37
|
||||
msgid "<a href=\"%1s\" target=\"_blank\">Any questions about Crowdsignal?</a>"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Argument is a link to Crowdsignal's support page.
|
||||
#: includes/admin/views/html-admin-setup-step-3.php:52
|
||||
msgid "<a href=\"%1s\" target=\"_blank\">Read more about us here.</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/frontend/blocks/class-crowdsignal-forms-poll-block.php:149
|
||||
msgid "Untitled Poll"
|
||||
msgstr ""
|
||||
|
||||
#: includes/frontend/blocks/class-crowdsignal-forms-poll-block.php:178
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/class-canned-api-gateway.php:60
|
||||
#: includes/gateways/class-canned-api-gateway.php:79
|
||||
msgid "Poll not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:210
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:235
|
||||
msgid "No Poll ID was provided."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:295
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:336
|
||||
msgid "Invalid poll ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:322
|
||||
msgid "Invalid post ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/controllers/class-polls-controller.php:413
|
||||
msgid "Resource not found"
|
||||
msgstr ""
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/cta-bar/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/cta-bar/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "pattonwebz/cta-bar-block",
|
||||
"description": "",
|
||||
"version": "1.0.0",
|
||||
"main": "build/index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/pattonwebz/cta-bar-block.git"
|
||||
},
|
||||
"author": "William Patton",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"bugs": {
|
||||
"url": "https://github.com/pattonwebz/cta-bar-block/issues"
|
||||
},
|
||||
"homepage": "https://github.com/pattonwebz/cta-bar-block#readme",
|
||||
"scripts": {
|
||||
"start": "wp-scripts start",
|
||||
"build": "wp-scripts build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
# Copyright (C) 2020 Condless
|
||||
# This file is distributed under the same license as the Default Attributes for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Default Attributes for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/default-"
|
||||
"attributes-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-09-02 10:14+0300\n"
|
||||
"PO-Revision-Date: 2020-09-03 18:20+0300\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: default-attributes-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 "Default Attributes for WooCommerce"
|
||||
msgstr "תכונות ברירת מחדל לווקומרס"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://en.condless.com/default-attributes-for-woocommerce/"
|
||||
msgstr "https://www.condless.com/default-attributes-for-woocommerce/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"WooCommerce plugin that allows you to apply rules for how default attributes "
|
||||
"will be set."
|
||||
msgstr "תוסף לווקומרס המאפשר לך להחיל חוקים על איך ייקבעו תכונות הברירת מחדל."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Condless"
|
||||
msgstr "Condless"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.condless.com/"
|
||||
msgstr "https://www.condless.com/"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:148
|
||||
msgid ""
|
||||
"Set as default an option if it is the only option that has in-stock "
|
||||
"variations"
|
||||
msgstr ""
|
||||
"קבע כברירת מחדל אפשרות אם זו האפשרות היחידה בעלת וריאציות אשר קיימות במלאי"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:155
|
||||
msgid "Set as default the first option of each attribute"
|
||||
msgstr "קבע כברירת מחדל את האפשרות הראשונה בכל תכונה"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:162
|
||||
msgid "Disable out of stock variations"
|
||||
msgstr "בטל וריאציות שאזלו מהמלאי"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:169
|
||||
msgid ""
|
||||
"In archive pages display for variable products the attribute name instead of"
|
||||
msgstr "בעמודי ארכיון הצג במוצרים עם וריאציות את שם התכונה במקום"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:176
|
||||
msgid ""
|
||||
"In single product pages remove the select options text if default attribute "
|
||||
"is set"
|
||||
msgstr "בעמודי מוצר הסר את הטקסט \"בחר אפשרויות\" אם הוגדרה תכונת ברירת מחדל"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:269
|
||||
msgid "Determines this attribute default value in variable products."
|
||||
msgstr "קובע את תכונת ברירת המחדל במוצרים עם וריאציות."
|
||||
File diff suppressed because it is too large
Load Diff
525
spec/fixtures/dynamic_finders/plugin_version/dynamic-content-for-elementor/change_log/CHANGELOG.txt
vendored
Normal file
525
spec/fixtures/dynamic_finders/plugin_version/dynamic-content-for-elementor/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,525 @@
|
||||
# Dynamic Content for Elementor - by Dynamic.ooo
|
||||
|
||||
#### 1.9.5.5 - 03/09/2020
|
||||
* Fix: Pagination and Infinite Scroll didn’t work correctly
|
||||
* Fix: Form Steps extension didn’t work correctly
|
||||
* Fix: Global Settings panel issue
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.9.5.4 - 25/08/2020
|
||||
* Fix: Theme Builder v3 conflict
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.9.5.3 - 21/08/2020
|
||||
* Fix: Elementor v3 compatibility
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.9.5.2 - 20/06/2020
|
||||
* New: File Browser private folder
|
||||
* New: Views Template Lazy Load
|
||||
* New: Views Template Lazy Progressive Load
|
||||
* New: Views Template Lazy Placeholders
|
||||
* New: Views Posts Not in Terms
|
||||
* New: OOO Query Control support for Dynamic Tags
|
||||
* New: Form Conditional Field support for Token Form
|
||||
* Add: Unwrap maintain Style option
|
||||
* Add: Unwrap strip tags
|
||||
* Add: Amount Field support for Conditional fields
|
||||
* Add: Unwrap support for Document and Strip Tags
|
||||
* Tweak: Dynamic Template other origin for User and Author
|
||||
* Speed: OOO Query Control for Roles
|
||||
* Speed: OOO Query Control for CPT
|
||||
* Speed: OOO Query Control for ACF fields
|
||||
* Speed: OOO Query Control for Meta fields
|
||||
* Speed: Tokens optimization
|
||||
* Update: aFrame library
|
||||
* Fix: Form Steps compatibility with Elementor PRO 2.10.x
|
||||
* Fix: Panorama multi instance and Image Lazy load
|
||||
* Fix: Template Style fix
|
||||
* Fix: Form Dynamic Email multiple File Upload attachments
|
||||
* Fix: Amount Field support for Elementor Form Shortcode
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.9.4.2 - 27/05/2020
|
||||
* Fix: Post Listing Background Image
|
||||
* Fix: Visibility works with less code
|
||||
* Fix: Google Maps default Markers
|
||||
|
||||
#### 1.9.4.1 - 26/05/2020
|
||||
* Tweak: Advanced Transforms
|
||||
|
||||
#### 1.9.4 - 26/05/2020
|
||||
* New: Frontend Navigator
|
||||
* New: Tracker Header Global Setting
|
||||
* New: Extension Mask for Elementor Image, Elementor ImageBox, Elementor Video
|
||||
* New: Extension Unwrap
|
||||
* New: Enchanted Editor add Edit Template on Context Menu
|
||||
* New: ACF Repeater render as Accordion, Table DataTable and List with Icons
|
||||
* New: Changelog from License Tab
|
||||
* Add: Save Action stop next Action on Error
|
||||
* Add: Dynamic Email Action send Email in HTML + Plain text version
|
||||
* Add: Visibility Trigger Max per User
|
||||
* Add: Views can ignore Sticky posts
|
||||
* Add: Views active Filters
|
||||
* Update: Isotope js library
|
||||
* Speed: prevent double Elementor page render when Template System is enabled
|
||||
* Tweak: Forced Dynamic Tags on all supported Controls
|
||||
* Fix: Views Exposed Sort
|
||||
* Fix: PDF unwrap for long text block
|
||||
* Fix: Dynamic Posts Ajax CSS
|
||||
* Fix: Content Widget works with the_content filtes
|
||||
* Fix: Dynamic Backgound on Loop of Terms or User
|
||||
* Fix: Dynamic Background Video on Section
|
||||
* Fix: Dynamic User filter
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.14 - 24/04/2020
|
||||
* Add: Form Submit button
|
||||
* Add: Amount Field support for Acceptance and Checkboxes
|
||||
* New: Token EXPR
|
||||
* Add: Term Taxonomy List Image Style
|
||||
* Add: Pause on Hover on all Swiper carousel
|
||||
* Add: Views Widget Infinite Button
|
||||
* Add: Form Reset button
|
||||
* Add: Form Steps Summary
|
||||
* Add: Dynamic Posts Widget new Type field in standard render
|
||||
* Add: Remote Content support for Authentication
|
||||
* Add: Enchanted Form automatic submit on Field Change
|
||||
* Add: Save Action store Multiple data as Array
|
||||
* Speed: load only necessary assets in Debug mode
|
||||
* Speed: faster Editor opening speed
|
||||
* Security: moved minified assets to Uploads
|
||||
* Fix: multiple Carousel instance in archive page
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.9 - 06/04/2020
|
||||
* New: Visibility works also for Columns
|
||||
* New: Visibility Term Triggers
|
||||
* New: Visibility Dynamic Tag Triggers
|
||||
* New: Enchanted Form Min e Max Length to Text and Textarea fields
|
||||
* Update: Vendors
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.8.5 - 02/04/2020
|
||||
* New: Smooth Transition in Global settings
|
||||
* New: WebGL Image Distortion Hover Widget
|
||||
* New: Smart Assets minification in production
|
||||
* New: Token QUERY
|
||||
* New: Enchanted Form WYSIWYG to Textarea fields
|
||||
* New: Enchanted Form Address Autocomplete to Text fields
|
||||
* New: Enchanted Form set GET or POST Action to Form instead standard Ajax
|
||||
* New: Visibility support for WooCommerce (Product in Cart, Membership)
|
||||
* New: Dynamic Redirect Action for Elementor PRO Form
|
||||
* Add: Views Widget display as Slideshow
|
||||
* Add: Views Widget more advanced Terms filtering
|
||||
* Tweak: Enchanted Form support for more Field Width
|
||||
* Tweak: OOO Query Control quick Add or Edit
|
||||
* Tweak: Form Field Condition now support Multiple Values for a Single Field
|
||||
* Style: add settings for Form Amount field
|
||||
* Fix: Added compatibility with WordPress v5.4
|
||||
* Fix: Form Extension now works also in Elementor PRO PopUp
|
||||
* Fix: ACF Repeater working for repeaters inside Groups or Tabs
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.7.2 - 16/03/2020
|
||||
* Add: Count, Ajax Pagination and GroupBy Accordion to Views Widget
|
||||
* Add: Extension for Video Widget more Style settings
|
||||
* Add: Widget Cursor Tracker new style controls
|
||||
* Add: Dynamic Posts Widget TextZone Animation effect in roll-hover
|
||||
* Add: Enchanted Form Tooltip option for Field Description
|
||||
* Add: Enchanted Form all Column Width are now available
|
||||
* Fix: more stability and compatibility with 3rd part widgets
|
||||
* Fix: CSS styles on Archive pages and Widgets with loop
|
||||
* Fix: Elementor PRO Utils error
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.6.1 - 29/02/2020
|
||||
* New: Extension for Video Widget
|
||||
* New: Widget Cursor Tracker
|
||||
* Add: Dynamic Tag Token to Color Control
|
||||
* Add: ACF Repeater support for nested Repeater fields
|
||||
* Tweak: Widget Post Term Taxonomy
|
||||
* Fix: Compatibility with Elementor 2.9
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.5 - 19/02/2020
|
||||
* New: ACF Maps Widget support ACF Repeater data
|
||||
* Add: now Tokens support "return as Data" setting for Media Controls
|
||||
* Update: Vendors
|
||||
* Fix: Form scripts (Steps and Conditional logic) are now in footer
|
||||
* Fix: Compatibility with Elementor 2.9
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.4.3 - 07/02/2020
|
||||
* New: Dynamic Tags Template
|
||||
* Add: Dynamic Posts Widget on ACF Relationship inverted mode
|
||||
* Add: Save Action for Elementor PRO Form save as Options
|
||||
* Add: Save Action for Elementor PRO Form update Post, User and Term
|
||||
* Add: Conditional Fields for Elementor PRO Form support for Steps
|
||||
* Add: now Tokens support "options" filter to generate dynamic options on Elementor PRO Form fields
|
||||
* Tweak: ThreeSixty 360 autodetect type and frame number
|
||||
* Security: removed eval function from some widgets
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.3 - 12/01/2020
|
||||
* New: now Tokens support ACF Fields
|
||||
* Add: ACF Maps Dynamic Infowindow
|
||||
* Add: now Tokens Date support Post, User & Term subfields
|
||||
* Add: Term & Taxonomy now support ACF Color in terms
|
||||
* Add: Trigger scroll for Animated Text
|
||||
* Add: Visibility support for Context COOKIE and SERVER parameters
|
||||
* Add: Visibility support for Language trigger (WPML, PolyLang, TranslatePress and WeGlot)
|
||||
* Add: support for ACF Fields on Options page
|
||||
* Fix: ThreeSixty 360 Widget responsive width
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.2.1 - 18/12/2019
|
||||
* New: Extension Amount for Elementor PRO Form
|
||||
* Add: Visiblity support for Language trigger (WPML, PolyLang and TranslatePress)
|
||||
* Fix: Template render speed improvements
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.2 - 12/12/2019
|
||||
* New: now Tokens support WooCommerce Products
|
||||
* New: now Tokens can display the Post Taxonomy Terms
|
||||
* Fix: ACF Gallery Masonry render
|
||||
* Fix: Dynamic Posts ACF Link
|
||||
* Fix: Copy/Paste Cross-site compatible with Elementor 2.8
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.1 - 04/12/2019
|
||||
* New: Copy Paste Cross-site interface working on All browser
|
||||
* Tweak: ACF Repeater in Template Preview
|
||||
* Add: ACF Map Marker Clustering
|
||||
* Add: form Upload fields as Attachments on Dynamic Email
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.0 - 29/11/2019
|
||||
* New: Copy & Paste across different site domains
|
||||
* New: Copy to Clipboard Widget
|
||||
* New: WebGL BG Canvas Widget
|
||||
* New: Easy Rollback to previous version after plugin update
|
||||
* New: Force Full-Width or Canvas Template to Single Page from Dynamic Template System
|
||||
* Add: Description on Fields in Enchanted Form for Elementor PRO Form
|
||||
* UX: new Enchanted Form setting Tab
|
||||
* Update: Vendors
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.7.1 - 19/11/2019
|
||||
* New: Dynamic Tag Token Wizard mode
|
||||
* New: Extension Enchanted Editor
|
||||
* New: Extension Steps for Elementor Pro Form
|
||||
* Add: ACF Repeater Widget add tab [link] ACF Repeater Url
|
||||
* Add: Views Widget filter by meta array subfield
|
||||
* Add: support for MU Plugins
|
||||
* Add: Template System can be disabled
|
||||
* Add: Document Horizontal Inertia
|
||||
* Optimization: minifyed Css and more lightweight
|
||||
* Optimization: Widget FeaturedImage
|
||||
* Optimization: Widget TitlePost
|
||||
* Fix: DynamicPosts Query of filters by masonry grig render
|
||||
* Fix: DymamicPosts Include/Exclude Terms
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.7.0 - 27/10/2019
|
||||
* New: Animated Text
|
||||
* New: Extension Enchanted for Elementor Pro Form
|
||||
* New: Widget Button PDF
|
||||
* New: Widget Barcode & QrCode
|
||||
* New: Widget Add to Calendar
|
||||
* New: Token variable System
|
||||
* Add: Dynamic Posts Include/Exclude for Terms
|
||||
* Add: Dynamic Posts Date Filter (Past, Future, Today, Yesterday from post date or meta value)
|
||||
* Add: Multiple conditions to Conditional Fields for Elementor PRO Form
|
||||
* Add: AutoLogin and update User for Save Data for Elementor PRO Form
|
||||
* Add: Add to Favorites Button: Hide Button for NON Logged Users and Cookie counter
|
||||
* Fix: Acf Justyfier gallery
|
||||
* Fix: Modals delay enter animation
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.6.0.1 - 12/10/2019
|
||||
* Fix: Minor fixes
|
||||
* Out of Beta
|
||||
|
||||
#### 1.6.0 - 06/10/2019
|
||||
* New: Category SVG
|
||||
* New: Widget SVG Mask
|
||||
* New: Widget SVG Fe FilterEffects
|
||||
* New: Widget SVG Distortion
|
||||
* New: Widget SVG Blob
|
||||
* New: Widget SVG PathText
|
||||
* New: Widget SVG Morphing pattern image
|
||||
* New: Widget ACF Repeater
|
||||
* New: Widget User Fields
|
||||
* New: Widget Add to Favorites
|
||||
* New: Extension use Tokens everywhere in Dynamic field (no Elementor PRO needed)
|
||||
* New: Extension Save Data (as Post, User or Term) for Elementor PRO Form
|
||||
* New: Extension Export Data for Elementor PRO Form
|
||||
* New: Extension Message for Elementor PRO Form
|
||||
* New: Extension PDF for Elementor PRO Form
|
||||
* New: Extension Dynamic Email for Elementor PRO Form
|
||||
* New: Extension Visibility Conditional Fields for Elementor PRO Form
|
||||
* New: Control Ajax Select2 in Elementor Settings
|
||||
* New: Document Navigation Snap Scroll style
|
||||
* Add: Views Widget now also list User and Term objects
|
||||
* Add: Token variable Term
|
||||
* Add: Token variable Wp_Query
|
||||
* Add: Token varable Author
|
||||
* Add: Group By option in Views Widget
|
||||
* Add: Ignore Posts option in Views Widget
|
||||
* Add: Post selection for Visibility Extension
|
||||
* Add: language trigger for Visibility Extension
|
||||
* Add: user Events trigger (click and page load) for Visibility Extension
|
||||
* Add: File Browser Widget can get files from Medias in Post Field and from a CSV
|
||||
* Add: Inverted relation in ACF Relationship Widget for Bidirectional relations
|
||||
* Add: fix links (lazy images, relative links, ecc) of scraped code in Remote Content Widget
|
||||
* Add: Author Query filter in Dynamic Posts
|
||||
* Fix: search posts by author in admin
|
||||
* Fix: plugin speed optimizations
|
||||
|
||||
#### 1.5.3 - 20/07/2019
|
||||
* New: Token varable Date ([date], [date|Y m d], [date:+1 mounth|d-m-Y]
|
||||
* New: PODS Gallery Widget
|
||||
* Add: Pagination options on Views Widget
|
||||
* Add: Period trigger on Visibility extension
|
||||
* Add: Random trigger on Visibility extension
|
||||
* Add: Max trigger on Visibility extension
|
||||
* Add: Text manipulation on Meta Widget
|
||||
* Add: File Browser Widget can select from "Media Library" and "Post Medias"
|
||||
* Tweak: The Animations are now compatible with motion effects, work together. In continuous movement and at the same time animated in scroll. (this compatibility requires re-enabling)
|
||||
* Tweak: Select2 on all select controls
|
||||
* Tweak: Page Scrolling animations
|
||||
* Tweak: Tokens are supported in all Text widgets (WP native and Elementor's)
|
||||
* Fix: ACF Google Map Marker ACF Image
|
||||
* Fix: ACF Field Wysiwyg autop
|
||||
* Fix: ACF Gallery Lightbox
|
||||
* Fix: ACF Gallery support all field return type (array, url, id)
|
||||
* Fix: Visibility with Elementor Free v2.6.x
|
||||
|
||||
#### 1.5.2 - 25/06/2019
|
||||
* New: Widget SVG Morphing
|
||||
* New: All our widgets now support Token in text fields controls
|
||||
* New: Pods Relationship widget
|
||||
* New: Toolset Relationship widget
|
||||
* New: GeoIP based trigger for Visibility ("GeoIP Detection" plugin needed)
|
||||
* New: setting to remove shortcode (like Visual Composer) in Post Content Widget
|
||||
* New: advanced configuration for Excerpt Widget
|
||||
* Improvement: Current Post based trigger for Visibility
|
||||
* Improvement: Period based trigger for Visibility
|
||||
* Improvement: sortable post in Single Post List widget
|
||||
* Optimization: compression and minimization on all dce js
|
||||
* Tweak: Dynamic Posts native Template from term and taxonomy
|
||||
* Tweak: debug mode for Visibility
|
||||
* Update: more settings on Views widget
|
||||
* Fix: compatible with Elementor Free v2.6.0-beta1
|
||||
* Fix: Image Acf in Dynamic Posts
|
||||
* Fix: Rendering Template
|
||||
* Fix: Minor fixies
|
||||
|
||||
#### 1.5.1 - 06/06/2019
|
||||
* Improvement: File Browser, custom folder path and dynamic folder via meta_field
|
||||
* Improvement: Modals Widget close button
|
||||
* Added: Modals close button X Style
|
||||
* Optimized: rendering of template
|
||||
* Fix: Modals changed class name (required resave)
|
||||
* Fix: Visibility
|
||||
|
||||
#### 1.5.0 - 04/06/2019
|
||||
* Improvement: Visibility extension:
|
||||
-Move: from Advanced tab to his new own dedicated, divided by section
|
||||
-Add: Parameter condition
|
||||
-Add: Debug mode to show trigger in frontend
|
||||
-Add: Keep HTML
|
||||
-Add: Responsive condition
|
||||
-Fix: Specific User
|
||||
* Improvement: Dynamic Posts
|
||||
-Improved UX
|
||||
-New Layout:
|
||||
--New mode of ordering elements
|
||||
--Changed layout Position Image
|
||||
--Added order image
|
||||
--Added Text-Zone: Float in front
|
||||
-Added style Text-Zone x/y movement
|
||||
-Added style for modal in Ajax Page Load
|
||||
-Image-Overlay Color/Image/Gradient and Opacity
|
||||
-Removed in/out option for title, meta, author, read more
|
||||
-Improved MetaData: Icon, taxonomy block, Space
|
||||
-Improved Author: Align, Space, Avatar image style
|
||||
-Improved ReadMore Button: Tabs Colors
|
||||
-Fix: Infinite Scroll if number of posts is less than total element, if the value is 0 or empty get default number
|
||||
* Improvement: ACF Field:
|
||||
-now get the field in Archive and User template
|
||||
* Improvement: List Widgets Style
|
||||
-border Weight and width
|
||||
-ux label_block
|
||||
* Improvement: Advanced Transforms structure
|
||||
* Fix: Post-Content in Archive for Home Category and Tag.
|
||||
|
||||
#### 1.4.2 - 17/05/2019
|
||||
* Added: ACF Map Dynamic mode for same Terms
|
||||
* Added: support for multiple Post Meta in Widget Meta
|
||||
* Added: activation domain check
|
||||
* Tweak: List widgets
|
||||
* Tweak: Remote content
|
||||
|
||||
#### 1.4.1 - 08/05/2019
|
||||
* Added: InfoWindow in ACF Map
|
||||
* Fix: Dynamic Posts Carousel (Slick)
|
||||
* Fix: Template system user and search
|
||||
* Fix: Template system get from Single and Archive by Theme Builder Elementor Pro
|
||||
|
||||
#### 1.4.0 - 26/04/2019
|
||||
* New: Widget Toolset Field
|
||||
* New: Widget ACF Relationship
|
||||
* New: Widget Views
|
||||
* New: Document Inertia Scroll
|
||||
* New: Post Widget Meta
|
||||
* New: Post Widget Meta
|
||||
* New: Unfold option in Content Post
|
||||
* Tweak: Widget Views with ajax and infinite scroll
|
||||
* Tweak: update engine crawler for Remote Content
|
||||
* Tweak: Document page scroll effects
|
||||
* Tweak: Widget Views with Pagination and Exposed sorting
|
||||
* Tweak: Post Breadcrumb use Yoast if is active
|
||||
* Tweak: ACF Slider Force-Width, Force-Height and Background-Mode
|
||||
* Fix: compatibility with PHP 7.3
|
||||
* Fix: Dynamic pots offset value
|
||||
* Fix: Document page snap scroll
|
||||
* Fix: Post Content strip all tags if use the content limit
|
||||
* Fix: minor fix
|
||||
* Added: Support ACF Field date in Dynamic Posts, Act Field Widget.
|
||||
* Added: Now Tokens support string Filters
|
||||
* Updated: vendor plugin-update-checker
|
||||
* Optimization: less memory utilization in Visibility for section
|
||||
* Security: more secure method to verify Custom condition in Visibility
|
||||
|
||||
#### 1.3.1.1 - 07/03/2019
|
||||
* Fix: Template System after element template in archive
|
||||
* Fix: Dynmic Posts Dynamic-mode in home and term archive
|
||||
* Fix: Pagination of document snap-scroll
|
||||
* Fix: minor fix
|
||||
|
||||
#### 1.3.1 - 05/03/2019
|
||||
* New: Template System rebuild ui
|
||||
* New: Scrolling effects for page controls
|
||||
* New: Widget Pods Field
|
||||
* New: Widget Tilt
|
||||
* New: Document Setting > Page Scroll
|
||||
* New: Document Setting > Page Scroll Effect
|
||||
* New: Custom condition for Visibility
|
||||
* Tweak: Dynamic Posts Dynamic Taxonomy and Terms
|
||||
* Tweak: Change name of widget "Popups" to "Modals"
|
||||
* Fix: compatibility with Visibility in Editor
|
||||
* Fix: Compatibility with Elementor 2.5.1
|
||||
* Fix: Visibility condition
|
||||
|
||||
#### 1.2.1.1 - 11/01/2019
|
||||
* Update: more settings for FileBrowser
|
||||
* Update: Visibility integration with Elementor Editor (Navigator and Context menu)
|
||||
* Fix: compatibility with deprecated PHP version (5.6)
|
||||
|
||||
#### 1.2.1 - 06/01/2019
|
||||
* Optimization: Complete code refactoring
|
||||
* New: added pagination in Dynamic Posts
|
||||
* New: "Load More" button in Dynamic Posts
|
||||
* New: InfiniteScroll in Dynamic Posts
|
||||
* New: set your own API keys on Google Maps
|
||||
* New: Visibility now works also with Sections
|
||||
* New Advanced: RevealFx
|
||||
* Update: more choice for Visibility (Context, Conditional Tags, ecc), please check compatibility
|
||||
* Update: Advanced Rellax responsive value
|
||||
* Fix: compatibility with Customization setting in OceanWP
|
||||
|
||||
#### 1.1.2 - 12/11/2018
|
||||
* Fix: minor fix
|
||||
|
||||
#### 1.1.1 - 01/11/2018
|
||||
* Tweak: FireModalWindow: padding, border radius, icon after/before, UX
|
||||
* Tweak: Dynamic Content > Settings (UI)
|
||||
* Tweak: Dynamic Content > Settings for Search page
|
||||
* Tweak: Optimized for WPML
|
||||
* Tweak: ReadMore post hover-style
|
||||
* Optimization: Plugin Core for future release
|
||||
* Upgrade: Library (Swiper, Anime, Reveal, Rellax)
|
||||
* New: Widget List-Single-Posts-Menu
|
||||
* New: Widget PopUps
|
||||
* New: Dashboard Info
|
||||
* New: Backend Column (Dynamic Content template) for Pages, Posts, CPT and Taxonomy
|
||||
|
||||
#### 1.1.0.1 - 13/09/2018
|
||||
* Fix: Ajax Page Open, compatibility with Astra Theme
|
||||
|
||||
#### 1.1.0 - 12/09/2018
|
||||
* New: Taxonomy in TemplateSystem global settings
|
||||
* Tweak: Transform, added condition Enabled Transforms (Requred activation for the elements used)
|
||||
* Tweak: ACF Maps, added Snazzy Style
|
||||
* Tweak: Dynamic Posts, Query Parent-child logic
|
||||
|
||||
#### 1.0.8.2 - 06/09/2018
|
||||
* Fix: Ajax Page Open (thanks Sylvia)
|
||||
* Tweak: Single Template blank page
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.8.1 - 01/09/2018
|
||||
* Fix: Transform
|
||||
|
||||
#### 1.0.8 - 31/08/2018
|
||||
* Fix: Dynamic Posts pophover transforms for single items
|
||||
* Fix: Post Title
|
||||
* Fix: ACF Fields
|
||||
* Fix: ACF Gallery
|
||||
* Fix: SnapScroll
|
||||
* Minor Fixes
|
||||
|
||||
#### 1.0.7 - 27/08/2018
|
||||
* New: Advanced Parallax for any widget (with Rellax https://dixonandmoe.com/rellax/)
|
||||
* Tweak: Post content shortcodes
|
||||
* Security: Dev widget configurable only by admin
|
||||
* Fix: Remote Content Cache working well and introduced Max Connection Time
|
||||
* Tweak: PhpRaw check for working code before save
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.6 - 25/08/2018
|
||||
* Tweak: Template settings archive for home
|
||||
* Tweak: TwentyTwenty Before/After Dynamic fields (Pro)
|
||||
* Tweak: FileBrowser style tab
|
||||
* New: Now the transformations controls is advanced for any widget
|
||||
* New: Group Controls HSB
|
||||
|
||||
#### 1.0.5 - 20/08/2018
|
||||
* New: Creative widget Panorama
|
||||
* New: Creative widget TwentyTwenty Before/After
|
||||
* Fix: Transforms container
|
||||
|
||||
#### 1.0.4 - 12/08/2018
|
||||
* New: Transformations responsive Controls
|
||||
* New: Creative widget Parallax
|
||||
* New: Creative widget Threesixty 360, image rotator
|
||||
* New: Dev widget RemoteContent
|
||||
* Fix: Fixed counter hits for FileBrowser
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.3 - 07/08/2018
|
||||
* Tweak: Transform on Featured-image and ACF-image
|
||||
* Tweak: Dynamic Posts, Query "From specific post "get from all cpt
|
||||
* Tweak: Enchanted FileBrowser with native WP Media meta
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.2 - 27/07/2018
|
||||
* Tweak: Featured Image
|
||||
* Tweak: ACF Fields / ACF Gallery / ACF Map
|
||||
* Added: Blend Mode and Filters
|
||||
* Added: In transform TranslateX/Y
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.1 - 25/07/2018
|
||||
* Tweak: ACF Fields / ACF Gallery / ACF Slider / ACF Map
|
||||
* Tweak: Updated Swiper library to v4.3.3
|
||||
* Compatibility for Elementor 2.1.0
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.0 - 26/06/2018
|
||||
* Initial relese
|
||||
|
||||
#### 0.0.1 - 03/05/2017
|
||||
* First steps
|
||||
54
spec/fixtures/dynamic_finders/plugin_version/editors-note/composer_file/package.json
vendored
Normal file
54
spec/fixtures/dynamic_finders/plugin_version/editors-note/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"name": "@hamworks/editors-note",
|
||||
"version": "0.0.3",
|
||||
"author": "Hiroshi Urabe <urabe@ham.works> (https://ham.works)",
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^4.4.0",
|
||||
"@wordpress/icons": "^2.5.0",
|
||||
"@wordpress/rich-text": "^3.21.0",
|
||||
"moment": "^2.28.0",
|
||||
"uuid": "^8.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/browserslist-config": "2.7.0",
|
||||
"@wordpress/scripts": "^12.1.1",
|
||||
"prettier": "npm:wp-prettier@^2.0.5"
|
||||
},
|
||||
"license": "GPL-2.0+",
|
||||
"main": "build/index.js",
|
||||
"release-it": {
|
||||
"hooks": {
|
||||
"before:bump": "bash ./bin/create-release.sh editors-note ${version}",
|
||||
"after:bump": "bash ./bin/create-zip.sh editors-note",
|
||||
"after:release": "bash ./bin/cleanup.sh editors-note"
|
||||
},
|
||||
"github": {
|
||||
"release": true,
|
||||
"assets": [
|
||||
"editors-note.zip"
|
||||
]
|
||||
},
|
||||
"npm": {
|
||||
"publish": false
|
||||
}
|
||||
},
|
||||
"repository": {
|
||||
"url": "git@github.com:team-hamworks/editors-note.git",
|
||||
"type": "git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "NODE_ENV=production npm run build:dev",
|
||||
"build:dev": "wp-scripts build",
|
||||
"format-js": "wp-scripts format-js",
|
||||
"env": "wp-scripts env",
|
||||
"lint-js": "wp-scripts lint-js src",
|
||||
"lint-js:fix": "npm run lint-js -- --fix",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"wp-env": {
|
||||
"plugin-dir": "editors-note",
|
||||
"plugin-name": "editors-note",
|
||||
"welcome-build-command": "npm run start"
|
||||
}
|
||||
}
|
||||
64
spec/fixtures/dynamic_finders/plugin_version/eladdon/translation_file/languages/elementaddon.pot
vendored
Normal file
64
spec/fixtures/dynamic_finders/plugin_version/eladdon/translation_file/languages/elementaddon.pot
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
# Copyright (C) 2020 ThemeAsia
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Element Addon 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ElementAddon\n"
|
||||
"POT-Creation-Date: 2020-09-16 09:40:47+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: elementaddon.php:175
|
||||
msgid "\"%1$s\" require \"%2$s\" to be installed and activated"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Element Addon"
|
||||
msgstr ""
|
||||
|
||||
#: elementaddon.php:177 elementaddon.php:191
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#: elementaddon.php:189 elementaddon.php:204
|
||||
msgid "\"%1$s\" require \"%2$s\" version \"%3$s\" or greater"
|
||||
msgstr ""
|
||||
|
||||
#: elementaddon.php:206
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/example.php:15
|
||||
msgid "Example Widget"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/example.php:41
|
||||
msgid "Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/pricing.php:14 widgets/pricing.php:41
|
||||
msgid "Pricing"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://example.com/plugin-name"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Element Addon is elementor addon plugin, after install you will get free "
|
||||
"matarial design addons"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "ThemeAsia"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://themeasia.net"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,4 @@
|
||||
/**1.0.1.2 - 2020.xx.xx **/
|
||||
- Fixed: shoretcode {user_login}
|
||||
|
||||
~ The first released.
|
||||
@@ -0,0 +1,457 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wordpress Contact Form 7 PDF-1.0.0\n"
|
||||
"POT-Creation-Date: 2020-10-01 11:28+0530\n"
|
||||
"PO-Revision-Date: 2019-04-17 20:31+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: RedefiningTheWeb(developer@redefiningtheweb.com)\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.4.1\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;esc_attr__;esc_attr_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-ciepdf-elementor-admin.php:152
|
||||
msgid "WP e-PDF Lite Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:109
|
||||
msgid "ePdf-Support Elements Pdf Creator Addon For Elementor Lite"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:113
|
||||
msgid "Basic Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:116
|
||||
msgid "Advance Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:119
|
||||
msgid "Header Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:121
|
||||
msgid "Footer Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:124
|
||||
msgid "CSS Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:127
|
||||
msgid "BODY Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:130
|
||||
msgid "WaterMark Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:182
|
||||
msgid ""
|
||||
"* All values which you enter like font-size, top-margin, body-left margin, "
|
||||
"body-right margin etc. are in <strong>mm</strong> not in px"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:186
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:9
|
||||
msgid "PDF File Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:14
|
||||
msgid "Post Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:16
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:21
|
||||
msgid "Select what is name of generated pdf file."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:25
|
||||
msgid "Rtl Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:29
|
||||
msgid ""
|
||||
"Check it if you want generate pdf in Arabic or languages which start from "
|
||||
"right align."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:33
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:37
|
||||
msgid "Select color for generated pdf file."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:41
|
||||
msgid "Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:47
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:99
|
||||
msgid "Upload/Add image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:48
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:100
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:49
|
||||
msgid "Select background image for generated pdf file."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:9
|
||||
msgid "Allowed Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:27
|
||||
msgid "Choose on which post type you want to generate pdf."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:31
|
||||
msgid "Display Post Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:34
|
||||
msgid "Check it if you want to show date of post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:38
|
||||
msgid "Display Post Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:41
|
||||
msgid "Check it if you want to show tag list of post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:45
|
||||
msgid "Display Post Category List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:48
|
||||
msgid "Check it if you want to show category of the post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:52
|
||||
msgid "Hide Page Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:55
|
||||
msgid "Check it if you want to hide page title."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:59
|
||||
msgid "Include Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:62
|
||||
msgid "Check it if you want to show featured image."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:9
|
||||
msgid "Body Top Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:11
|
||||
msgid ""
|
||||
"Enter your required top margin for main pdf body (By default 37).Minimum 37 "
|
||||
"required otherwise will not work."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:15
|
||||
msgid "Body Left Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:18
|
||||
msgid "Enter your required left margin for main pdf body (By default 15)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:22
|
||||
msgid "Body Right Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:26
|
||||
msgid "Enter your required right margin for main pdf body (By default 15)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:30
|
||||
msgid "Body Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:46
|
||||
msgid "Body Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:50
|
||||
msgid "Enter your required font size for Body of the Pdf(By default 15)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:316
|
||||
msgid "Page Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:330
|
||||
msgid "Choose the size of Pdf page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:334
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:338
|
||||
msgid "Enter your required custom css for pdf."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:342
|
||||
msgid "Page Orientation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:347
|
||||
msgid "Portrait"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:351
|
||||
msgid "Landscape"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:353
|
||||
msgid "Choose Your Required Orientation for PDF."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:8
|
||||
msgid "Remove Footer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:11
|
||||
msgid "Check it if you want to remove footer."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:19
|
||||
msgid "Footer Html"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:34
|
||||
msgid "Footer Top Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:37
|
||||
msgid "Enter your required top margin (By default 15)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:41
|
||||
msgid "Footer Section Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:46
|
||||
msgid "Enter your required font size for Pdf Footer(By default 15)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:50
|
||||
msgid "Footer Section Font"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:65
|
||||
msgid "Remove Page Numbering"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:68
|
||||
msgid "Check it if you want to remove page number."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:8
|
||||
msgid "Remove Header"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:11
|
||||
msgid "Check it if you want to remove header."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:19
|
||||
msgid "Header Html"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:34
|
||||
msgid "Header Section Font"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:51
|
||||
msgid "Header Top Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:54
|
||||
msgid "Enter your required top margin (By default 7)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:58
|
||||
msgid "Header Section Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:63
|
||||
msgid "Enter your required font size for Pdf Header(By default 15)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:8
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:48
|
||||
msgid "Watermark Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:15
|
||||
msgid "Check it if you want to show Watermark text."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:22
|
||||
msgid "Watermark Font"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:35
|
||||
msgid "Choose the font family of Watermark text."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:39
|
||||
msgid "Watermark Rotation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:44
|
||||
msgid "Enter your required rotation(in degree) for Watermark text."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:53
|
||||
msgid "Enter Watermark Text which you want to show on pdf."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:57
|
||||
msgid "Text Transparency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:62
|
||||
msgid "Enter the text Transparency of Watermark."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:69
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:90
|
||||
msgid "Watermark Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:75
|
||||
msgid "Check it if you want to show Watermark image."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:81
|
||||
msgid "Image Transparency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:86
|
||||
msgid "Enter the image Transparency of Watermark."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:101
|
||||
msgid "Choose your Watermark Image which you want to show on pdf."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:107
|
||||
msgid "Image Dimension"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:119
|
||||
msgid "Choose the dimension of Watermark Image."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:127
|
||||
msgid "Image Width"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:132
|
||||
msgid "Set the Width of Watermark Image."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:136
|
||||
msgid "Image Height"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:141
|
||||
msgid "Set the Height of Watermark Image."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:152
|
||||
msgid "Integer Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:163
|
||||
msgid "Image Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:180
|
||||
msgid "Horizontal Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:186
|
||||
msgid "Vertical Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:13
|
||||
msgid "Pdf - Generator"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:29
|
||||
msgid "PDF Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:36
|
||||
msgid "Pdf button Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:38
|
||||
msgid "Enter pdf button width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:46
|
||||
msgid "Pdf button Height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:48
|
||||
msgid "Enter pdf button height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:56
|
||||
msgid "PDF Button Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:67
|
||||
msgid "Class of Html element which exclude from pdf"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:69
|
||||
#: includes/elementor_pdf_generator.php:78
|
||||
msgid "For multiple use commma"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:76
|
||||
msgid "ID of Html element which exclude from pdf"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:191
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-ciepdf-elementor-public.php:143
|
||||
msgid "Some Thing Went Wrong! Please Try Again"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-ciepdf-elementor-public.php:236
|
||||
msgid "Categories : "
|
||||
msgstr ""
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/exs-widgets/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/exs-widgets/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 0.0.1 =
|
||||
* September, 7, 2020
|
||||
* Initial release.
|
||||
@@ -0,0 +1,49 @@
|
||||
# Copyright (C) 2020 F70 Simple Table of Contents
|
||||
# This file is distributed under the same license as the F70 Simple Table of Contents package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: F70 Simple Table of Contents 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/f70-simple-table-"
|
||||
"of-contents\n"
|
||||
"POT-Creation-Date: 2020-07-22 10:50:35+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-07-22 19:57+0900\n"
|
||||
"Language-Team: \n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"Language: ja\n"
|
||||
|
||||
#: includes/display.php:102 includes/meta_box.php:15
|
||||
msgid "Table of contents"
|
||||
msgstr "目次"
|
||||
|
||||
#: includes/meta_box.php:71
|
||||
msgid "Display the table of contents"
|
||||
msgstr "目次を表示する"
|
||||
|
||||
#: includes/meta_box.php:81
|
||||
msgid "Headers level to include in the table of contents"
|
||||
msgstr "目次に含める見出し"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "F70 Simple Table of Contents"
|
||||
msgstr "F70 シンプル目次"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://factory70.com/simple-table-of-contents/"
|
||||
msgstr "https://factory70.com/simple-table-of-contents/"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Display a table of contents in your posts by automatically generated from "
|
||||
"the headings. No Javascript code, simple to use."
|
||||
msgstr ""
|
||||
"記事に目次を表示します。目次は見出しから自動生成されます。余分なJavascriptな"
|
||||
"し。簡単に使えます。"
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Nao Matsuo"
|
||||
msgstr "Nao Matsuo"
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "five-star-ratings-shortcode",
|
||||
"version": "1.1.4",
|
||||
"description": "This plugin adds accessible, attractive 5-star ratings anywhere on your site with a simple shortcode. The plugin uses Font Awesome icons via their SVG + JavaScript method.",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"compile-sass": "node-sass -w assets/scss -o assets/css --output-style expanded",
|
||||
"minify-css": "postcss assets/css/admin.css -o assets/css/admin.min.css -w",
|
||||
"bundledDependencies": [
|
||||
"fontawesome"
|
||||
]
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/seezee/Five-Star-Ratings-Plugin.git"
|
||||
},
|
||||
"keywords": [
|
||||
"icon",
|
||||
"wordpress",
|
||||
"star",
|
||||
"ratings",
|
||||
"shortcode",
|
||||
"accessible"
|
||||
],
|
||||
"author": "Chris J. Zähller",
|
||||
"license": "GPL-3.0+",
|
||||
"bugs": {
|
||||
"url": "https://github.com/seezee/Five-Star-Ratings-Plugin/issues"
|
||||
},
|
||||
"homepage": "https://github.com/seezee/Five-Star-Ratings-Plugin#readme",
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-free": "^5.14.0",
|
||||
"node-sass": "^4.14.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"cssnano": "^4.1.10",
|
||||
"postcss-cli": "^6.1.3"
|
||||
}
|
||||
}
|
||||
61
spec/fixtures/dynamic_finders/plugin_version/gAppointments/change_log/changelog.txt
vendored
Normal file
61
spec/fixtures/dynamic_finders/plugin_version/gAppointments/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
============================
|
||||
Version 1.9.4 ( 11 June 2020 )
|
||||
============================
|
||||
|
||||
- Enhancement: New provider can prevent duplicate title
|
||||
- Enhancement: Appointments page now have available options in "Bulk actions" - "Cancel", "Confirm" appointments
|
||||
- Feature: Appointments page now have an option in "Bulk actions" - "Resend Email Notifications"
|
||||
- Feature: Appointments page can be sorted by chosen columns
|
||||
- Feature: Each provider now have a field "location", it can be synced with appointments in google calendar
|
||||
|
||||
|
||||
============================
|
||||
Version 1.9.3 ( 24 Oct 2019 )
|
||||
============================
|
||||
|
||||
- Fixed bug: Fixed an issue with ICS generation
|
||||
- Fixed bug: Default google calendar for appointments with no provider regardless of settings
|
||||
- Fixed bug: Assets unreachable
|
||||
- Fixed bug: Appointment date not being picked p in notifications upon submitting a form entry
|
||||
- Fixed bug: Email being picked up instead of phone number
|
||||
- Enhancement: Made some changes to work with thrive architect.
|
||||
- Enhancement: Added ability to complete appointments after X hours instead of instant completion
|
||||
- Enhancement: Extended cancellation functionality to allow cancelling until X hours before teh appointment
|
||||
- Feature: Clients can reschedule their appointments from the front-end
|
||||
|
||||
|
||||
|
||||
============================
|
||||
Version 1.9.2 ( 17 Jul 2019 )
|
||||
============================
|
||||
|
||||
- Fixed bug: Fixed google calendar api authentication not working in some cases
|
||||
- Fixed bug: Some calendar appearance colors not affecting front-end calendar
|
||||
- Fixed bug: Removed deprecated function usages
|
||||
- Fixed bug: Fixed an issue where appointment date was not being sent in initial gforms notification
|
||||
- Fixed bug: Custom time slots with the same starting hour being removed when saving service.
|
||||
- Fixed bug: Bad available time slot calculation on certain cases
|
||||
- Enhancement: Added %appointment_duration% merge tag to certain appointment notifications
|
||||
- Enhancement: Added the ability to override appointment email template, see the documentation for details
|
||||
- Enhancement: Provider and Service fields are now being sent as names instead of ids when exporting gravity forms entries
|
||||
- Enhancement: Added ability to paginate appointments in shortcodes, see the documentation for details.
|
||||
- Enhancement: Added ability to add a description to appointments when generating calendar links (ical)
|
||||
- Enhancement: Documentation is being moved to an online source instead of local ()
|
||||
|
||||
============================
|
||||
Version 1.9.1 ( 21 Dec 2018 )
|
||||
============================
|
||||
|
||||
- New Feature: Google Calendar synchronization.
|
||||
|
||||
============================
|
||||
Version 1.9 ( 8 Oct 2018 )
|
||||
============================
|
||||
|
||||
- Feature: Outlook event generator.
|
||||
- Update: Updated CMB2 library
|
||||
- Fixed bug: Email time always at 12:00AM
|
||||
- Fixed bug: Booking problem when submitting removed slots.
|
||||
- Fixed bug: Calendar is required when not marked as required.
|
||||
- Enhancement: New filters and hooks in ga_appointments_shortcode.
|
||||
- Enhancement: New filters and hooks in ga_provider_appointments_shortcode.
|
||||
@@ -0,0 +1,865 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#: includes/settings/settings-pyg.php:294
|
||||
#: includes/settings/settings-pyg.php:302
|
||||
#: includes/settings/settings-pyg.php:310
|
||||
#: includes/settings/settings-pyg.php:318
|
||||
#: includes/settings/settings-pyg.php:337
|
||||
#: includes/settings/settings-pyg.php:345
|
||||
#: includes/settings/settings-pyg.php:353
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-16 15:43+0200\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"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Gateway Payougo Checkout"
|
||||
msgstr "Passerelle Payougo de paiement"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://payougo.com/"
|
||||
msgstr "https://payougo.com/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Accept all Mobile money payment (Orange, MTN), Simplify your merchant services and your payment gateway today! "
|
||||
msgstr "Acceptez tous les paiements Mobile Money (Orange, MTN), simplifiez vos services marchands et votre passerelle de paiement dès aujourd'hui!"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "BusinessOne"
|
||||
msgstr "BusinessOne"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://payougo.com/"
|
||||
msgstr "https://payougo.com/"
|
||||
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:62
|
||||
msgid "Capture Charge"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:86
|
||||
msgid ""
|
||||
"NOTE: PaYouGo does not accept decimal places for the currency in which you "
|
||||
"are transacting. The \"Number of Decimals\" "
|
||||
"."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:181
|
||||
msgid "Unable to capture charge!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:189
|
||||
#, php-format
|
||||
msgid "PaYouGo Checkout charge complete (Charge ID: %s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:231
|
||||
msgid "Unable to void charge!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:233
|
||||
#, php-format
|
||||
msgid "PaYouGo Checkout charge voided (Charge ID: %s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:340
|
||||
msgid "This represents the fee PaYouGo collects for the transaction."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:341
|
||||
msgid "PaYouGo Fee:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:350
|
||||
msgid ""
|
||||
"This represents the net total that will be credited to your PaYouGo account. "
|
||||
"This may be in a different currency than is set in your PaYouGo account."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:351
|
||||
msgid "PaYouGo Payout:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:387
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%1$sWarning!%2$s PaYouGo Checkout will drop support for WooCommerce %3$s in "
|
||||
"a soon to be released update. To continue using PaYouGo Checkout please "
|
||||
"%4$supdate to %1$sWooCommerce 3.0%2$s or greater%5$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:22
|
||||
msgid "Unable to communicate with PaYouGo. Please try your payment again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:23
|
||||
msgid ""
|
||||
"PaYouGo rejected your email address because it is not valid. Please double-"
|
||||
"check your email address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:26
|
||||
msgid "Your PaYouGo checkout session is invalid. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:27
|
||||
msgid "Your PaYouGo checkout session has expired. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:29
|
||||
msgid ""
|
||||
"Your PaYouGo payment has already been completed. Please contact the store "
|
||||
"owner for more information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:30
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please check out again or "
|
||||
"contact PaYouGo for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:31
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please select an alternative "
|
||||
"method of payment or contact PaYouGo for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:33
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please return to PaYouGo and "
|
||||
"select a new method of payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:35
|
||||
msgid ""
|
||||
"You have not approved this transaction on the PaYouGo website. Please check "
|
||||
"out again and be sure to complete all steps of the PaYouGo checkout process."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:36
|
||||
msgid ""
|
||||
"Your shipping address may not be in a different country than your country of "
|
||||
"residence. Please double-check your shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:37
|
||||
msgid ""
|
||||
"This store does not accept transactions from buyers in your country. Please "
|
||||
"contact the store owner for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:38
|
||||
msgid ""
|
||||
"The transaction is over the threshold allowed by this store. Please contact "
|
||||
"the store owner for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:40
|
||||
msgid ""
|
||||
"Your transaction was declined. Please contact the store owner for "
|
||||
"assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:41
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:46
|
||||
msgid ""
|
||||
"The country in your shipping address is not valid. Please double-check your "
|
||||
"shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:42
|
||||
msgid ""
|
||||
"The street address in your shipping address is not valid. Please double-"
|
||||
"check your shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:43
|
||||
msgid ""
|
||||
"The city in your shipping address is not valid. Please double-check your "
|
||||
"shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:44
|
||||
msgid ""
|
||||
"The state in your shipping address is not valid. Please double-check your "
|
||||
"shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:45
|
||||
msgid ""
|
||||
"The ZIP code or postal code in your shipping address is not valid. Please "
|
||||
"double-check your shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:47
|
||||
msgid ""
|
||||
"PaYouGo rejected your shipping address because the city, state, and/or ZIP "
|
||||
"code are incorrect. Please double-check that they are all spelled correctly "
|
||||
"and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:49
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please contact PaYouGo for "
|
||||
"assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:51
|
||||
msgid ""
|
||||
"The redemption code(s) you entered on PaYouGo cannot be used at this time. "
|
||||
"Please return to PaYouGo and remove them."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:54
|
||||
msgid ""
|
||||
"Your funding instrument is invalid. Please check out again and select a new "
|
||||
"funding source."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:55
|
||||
#, php-format
|
||||
msgid ""
|
||||
"An error (%s) occurred while processing your PaYouGo payment. Please "
|
||||
"contact the store owner for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:65
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:135
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:156
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:314
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:359
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:394
|
||||
msgid "Check out with PaYouGo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:349
|
||||
msgid "— or —"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:364
|
||||
msgid "Pay with PaYouGo Credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:77
|
||||
msgid "Confirm your PaYouGo order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:258
|
||||
msgid "Billing details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:261
|
||||
msgid "Address:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:263
|
||||
msgid "Name:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:267
|
||||
msgid "Email:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:273
|
||||
msgid "Phone:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:297
|
||||
msgid "Create an account?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:306
|
||||
msgid ""
|
||||
"Create an account by entering the information below. If you are a returning "
|
||||
"customer please login at the top of the page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:346
|
||||
msgid "Shipping details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid "Your payment with Payougo is failed. Please check out again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid ""
|
||||
"You returned to the site without making a payment. Please check out again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid " : Paiement réussi pour la commande "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid "Paiement réussi pour la commande #"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:480
|
||||
msgid ""
|
||||
"Sorry, an error occurred while trying to retrieve your information from "
|
||||
"PaYouGo. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:481
|
||||
msgid "PAYMENT FAILED<br>Payougo transaction code : %s"
|
||||
msgstr "PAIEMENT ECHEC<br>Code de la transaction Payougo : %s"
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:514
|
||||
msgid "PAYMENT SUCCESS<br>Payougo transaction code : %s"
|
||||
msgstr "PAIEMENT SUCCESS<br>Code de la transaction Payougo : %s"
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:485
|
||||
msgid "Your Payougo checkout session has expired. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:588
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:648
|
||||
msgid "Your payment with PaYougo is failed. Please check out again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:653
|
||||
msgid ""
|
||||
"You have cancelled Checkout with Payougo. Please try to process your order "
|
||||
"again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1023
|
||||
#: includes/class-wc-gateway-pyg-ipn-handler.php:190
|
||||
msgid ""
|
||||
"Payment authorized. Change payment status to processing or complete to "
|
||||
"capture funds."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1025
|
||||
#: includes/class-wc-gateway-pyg-ipn-handler.php:192
|
||||
#, php-format
|
||||
msgid "Payment pending (%s)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1196
|
||||
msgid "Your PaYouGo checkout session has expired. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1207
|
||||
msgid "The payment method was updated for this subscription."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1212
|
||||
msgid "The payment method was updated for all your current subscriptions."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1221
|
||||
msgid ""
|
||||
"There was a problem updating your payment method. Please try again later or "
|
||||
"use a different payment method."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1244
|
||||
msgid ""
|
||||
"You have cancelled Checkout with PaYouGo. The payment method was not updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:82
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:287
|
||||
msgid "Error: You must enter API password."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:302
|
||||
msgid "Missing credential"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:306
|
||||
msgid "Invalid credential object"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:310
|
||||
msgid "Invalid environment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:508
|
||||
#, php-format
|
||||
msgctxt "data sent to PaYouGo"
|
||||
msgid "Orders with %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:157
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s in Gateway PaYouGo Checkout plugin can only be called once"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:281
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires WooCommerce to be activated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:285
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires WooCommerce version 2.5 or "
|
||||
"greater"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:289
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires cURL to be installed on your "
|
||||
"server"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:292
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires OpenSSL >= 1.0.1 to be "
|
||||
"installed on your server"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:319
|
||||
#, php-format
|
||||
msgid ""
|
||||
"PaYouGo Checkout is almost ready. To get started, <a href=\"%s\">connect "
|
||||
"your PaYouGo account</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:450
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:453
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-with-payougo-credit.php:15
|
||||
msgid "PaYouGo Credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:21
|
||||
msgid ""
|
||||
"You must be logged in to pay or go to the checkout page to fill in your "
|
||||
"information and pay with PaYougo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:18
|
||||
msgid "Payougo Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:19
|
||||
msgid "Allow customers to conveniently checkout directly with Payougo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:22
|
||||
msgid "Pay with Payougo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:169
|
||||
msgid ""
|
||||
"Sorry, an error occurred while trying to process your payment. Please try "
|
||||
"again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:202
|
||||
msgid "No API certificate on file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:211
|
||||
#, php-format
|
||||
msgid "expires on %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:215
|
||||
#, php-format
|
||||
msgid "expired on %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:225
|
||||
#, php-format
|
||||
msgid "Certificate belongs to API username %1$s; %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:227
|
||||
msgid "The certificate on file is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:298
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:332
|
||||
msgid ""
|
||||
"Error: The API credentials you provided are not valid. Please double-check "
|
||||
"that you entered them correctly and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:303
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:336
|
||||
msgid ""
|
||||
"An error occurred while trying to validate your API credentials. Unable to "
|
||||
"verify that your API credentials are correct."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:310
|
||||
msgid "Error: The API certificate is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:318
|
||||
msgid "Error: The API certificate has expired."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:323
|
||||
msgid ""
|
||||
"Error: The API username does not match the name in the API certificate. "
|
||||
"Make sure that you have the correct API certificate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:341
|
||||
msgid "Error: You must provide API signature or certificate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:359
|
||||
msgid ""
|
||||
"The \"require billing address\" option is not enabled by your account and "
|
||||
"has been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:378
|
||||
msgid "Refund Error: You need to specify a refund amount."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:398
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:421
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:471
|
||||
#, php-format
|
||||
msgid "PaYouGo refund completed; transaction ID = %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:445
|
||||
msgid ""
|
||||
"Refund Error: All transactions have been fully refunded. There is no amount "
|
||||
"left to refund"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:447
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Refund Error: The requested refund amount is too large. The refund amount "
|
||||
"must be less than or equal to %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:562
|
||||
#, php-format
|
||||
msgid "Already using URL as image: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:570
|
||||
msgid "Select a image to upload"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:571
|
||||
msgid "Use this image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:572
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:575
|
||||
msgid "Add image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:583
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:622
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: includes/exceptions/class-wc-gateway-pyg-api-exception.php:40
|
||||
#: includes/exceptions/class-wc-gateway-pyg-api-exception.php:68
|
||||
msgid "An error occurred while calling the PaYouGo API."
|
||||
msgstr ""
|
||||
|
||||
#: includes/exceptions/class-wc-gateway-pyg-api-exception.php:64
|
||||
#, php-format
|
||||
msgid "PaYouGo error (%1$s): %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/exceptions/class-wc-gateway-pyg-missing-session-exception.php:19
|
||||
msgid "The buyer's session information could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:24
|
||||
msgid "Setup or link an existing PaYouGo account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:25
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s or <a href=\"#\" class=\"pyg-toggle-settings\">click here to toggle "
|
||||
"manual API credential input</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:38
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To reset current credentials and use another account %1$sclick here%2$s. "
|
||||
"%3$sLearn more about your API Credentials%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:39 includes/settings/settings-pyg.php:61
|
||||
msgid "Reset current credentials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:41 includes/settings/settings-pyg.php:63
|
||||
msgid "Learn more"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:46
|
||||
msgid "Setup or link an existing PaYouGo Sandbox account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:47
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s or <a href=\"#\" class=\"pyg-toggle-sandbox-settings\">click here to "
|
||||
"toggle manual API credential input</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:60
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your account setting is set to sandbox, no real charging takes place. To "
|
||||
"accept live payments, switch your environment to live and connect your "
|
||||
"PaYouGo account. To reset current credentials and use other sandbox account "
|
||||
"%1$sclick here%2$s. %3$sLearn more about your API Credentials%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:67
|
||||
msgid "Enable PaYouGo Credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:69
|
||||
msgid ""
|
||||
"This option is disabled. Currently PaYouGo Credit only available for U.S. "
|
||||
"merchants using USD currency."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:72
|
||||
msgid ""
|
||||
"This enables Payougo Credit, which displays a Payougo Credit button next to "
|
||||
"the primary PaYouGo Checkout button. Payougo Checkout lets you give "
|
||||
"customers access to financing through PaYouGo Credit® - at no additional "
|
||||
"cost to you. You get paid up front, even though customers have more time to "
|
||||
"pay. A pre-integrated payment button shows up next to the PaYouGo Button, "
|
||||
"and lets customers pay quickly with PaYouGo Credit®. (Should be unchecked "
|
||||
"for stores involved in Real Money Gaming.)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:276
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Activer/Désactiver"
|
||||
|
||||
#: includes/settings/settings-pyg.php:278
|
||||
msgid "Enable Payougo Checkout"
|
||||
msgstr "Activer la passerelle Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:279
|
||||
msgid ""
|
||||
"This enables Payougo Checkout which allows customers to checkout directly "
|
||||
"via Payougo from your cart page."
|
||||
msgstr "Cela permet aux clients de payer directement via Payougo à partir de la page de votre panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:285
|
||||
#: includes/settings/settings-pyg.php:373
|
||||
msgid "Account Settings"
|
||||
msgstr "Paramètres de compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:291
|
||||
msgid "Username account"
|
||||
msgstr "Nom d'utilisateur du compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:293
|
||||
msgid ""
|
||||
"This reserve to your account in payougo. for example : youraddress@email.com"
|
||||
msgstr "Il s'agit de login votre compte dans payougo. par exemple: youraddress@email.com"
|
||||
|
||||
#: includes/settings/settings-pyg.php:299
|
||||
msgid "Password account"
|
||||
msgstr "Mot de passe du compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:301
|
||||
msgid "Put password for your account Payougo"
|
||||
msgstr "Mettez le mot de passe pour votre compte Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:307
|
||||
msgid "API Key Payougo"
|
||||
msgstr "Clé API Payougo généré dans votre compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:309
|
||||
msgid "for example : ASsqXEmw4KzmX-CPChWSVDNCNfd.A3YNR7uz-VncXXAERFDFDFDF"
|
||||
msgstr "par : ASsqXEmw4KzmX-CPChWSVDNCNfd.A3YNR7uz-VncXXAERFDFDFDF"
|
||||
|
||||
#: includes/settings/settings-pyg.php:315
|
||||
msgid "Payougo Version SSL"
|
||||
msgstr "Verson Payougo SSL"
|
||||
|
||||
#: includes/settings/settings-pyg.php:322
|
||||
msgid "TLSv1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:323
|
||||
msgid "TLSv1.2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:328
|
||||
msgid "Functions Settings"
|
||||
msgstr "Paramètres de fonctions"
|
||||
|
||||
#: includes/settings/settings-pyg.php:334
|
||||
msgid "Customer/Buyer"
|
||||
msgstr "Client/Payeur"
|
||||
|
||||
#: includes/settings/settings-pyg.php:336
|
||||
msgid "for example : CHRONO ASSURANCES"
|
||||
msgstr "par exemple : CHRONO ASSURANCES"
|
||||
|
||||
#: includes/settings/settings-pyg.php:342
|
||||
msgid "Merchant code for account Payougo"
|
||||
msgstr "Code marchand pour votre compte Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:344
|
||||
msgid "for example : 000"
|
||||
msgstr "par exemple : 000"
|
||||
|
||||
#: includes/settings/settings-pyg.php:350
|
||||
msgid "Payment send Email"
|
||||
msgstr "Email de notification lors d'un paiement"
|
||||
|
||||
#: includes/settings/settings-pyg.php:352
|
||||
msgid ""
|
||||
"This allows you to send a notification email with each payment made. for "
|
||||
"example : notifpayment@email.com"
|
||||
msgstr "Cela permet d'envoyer un e-mail de notification à chaque paiement effectué. par exemple: notifpayment@email.com"
|
||||
|
||||
#: includes/settings/settings-pyg.php:358
|
||||
msgid "Title"
|
||||
msgstr "Titre"
|
||||
|
||||
#: includes/settings/settings-pyg.php:360
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr "Cela définit le titre qui sera vu par l'utilisateur durant la validation de la commande"
|
||||
|
||||
#: includes/settings/settings-pyg.php:361
|
||||
msgid "Payougo"
|
||||
msgstr "Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:365
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: includes/settings/settings-pyg.php:368
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr "Cela contrôle la description qui sera vu par l'utilisateur durant la validation de la commande"
|
||||
|
||||
#: includes/settings/settings-pyg.php:369
|
||||
msgid "pay with your mobile money account (Orange, MTN) securely."
|
||||
msgstr "payer avec votre compte d'argent mobile (Orange, MTN) en toute sécurité"
|
||||
|
||||
#: includes/settings/settings-pyg.php:378
|
||||
msgid "Environment"
|
||||
msgstr "Environnement"
|
||||
|
||||
#: includes/settings/settings-pyg.php:381
|
||||
msgid ""
|
||||
"This setting specifies whether you will process live transactions, or "
|
||||
"whether you will process simulated transactions using the Payougo Sandbox."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:385
|
||||
msgid "Live"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:386
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:390
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Paramètres avancés"
|
||||
|
||||
#: includes/settings/settings-pyg.php:396
|
||||
msgid "Invoice Prefix"
|
||||
msgstr "Préfixe de facture"
|
||||
|
||||
#: includes/settings/settings-pyg.php:398
|
||||
msgid ""
|
||||
"Please enter a prefix for your invoice numbers. If you use your Payougo "
|
||||
"account for multiple stores ensure this prefix is unique as Payougo will not "
|
||||
"allow orders with the same invoice number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:403
|
||||
msgid "Billing Addresses"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:405
|
||||
msgid "Require Billing Address"
|
||||
msgstr "Exiger l'adresse de livraison"
|
||||
|
||||
#: includes/settings/settings-pyg.php:407
|
||||
msgid "Payougo only returns a shipping address back to the website. "
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:410
|
||||
#: includes/settings/settings-pyg.php:412
|
||||
msgid "Require Phone Number"
|
||||
msgstr "Exiger le numéro de téléphone"
|
||||
|
||||
#: includes/settings/settings-pyg.php:414
|
||||
msgid ""
|
||||
"Require buyer to enter their telephone number during checkout if none is "
|
||||
"provided by Payougo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:426
|
||||
msgid "Checkout on cart page"
|
||||
msgstr "Commander sur la page du panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:429
|
||||
msgid "Enable Payougo Checkout on the cart page"
|
||||
msgstr "Activer le bouton Payougo sur la page du panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:430
|
||||
msgid "This shows or hides the Payougo Checkout button on the cart page."
|
||||
msgstr "Cela permet de montrer ou cacher le bouton Payougo sur la page du panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:443
|
||||
msgid "Single Product Button Settings"
|
||||
msgstr "Paramètre du bouton sur la page produit"
|
||||
|
||||
#: includes/settings/settings-pyg.php:448
|
||||
#: includes/settings/settings-pyg.php:451
|
||||
msgid "Checkout on Single Product"
|
||||
msgstr "Commander sur la page du produit"
|
||||
|
||||
#: includes/settings/settings-pyg.php:454
|
||||
msgid "Enable Payougo Checkout on Single Product view"
|
||||
msgstr "Activer le bouton Payougo sur la page du produit"
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:298
|
||||
msgid "Username or password is incorrect"
|
||||
msgstr "Nom d'utilisateur ou mot de passe incorrect"
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:307
|
||||
msgid "Good, you are connected"
|
||||
msgstr "Bravo, vous êtes connectés"
|
||||
File diff suppressed because it is too large
Load Diff
128
spec/fixtures/dynamic_finders/plugin_version/gragrid/translation_file/languages/gragrid.pot
vendored
Normal file
128
spec/fixtures/dynamic_finders/plugin_version/gragrid/translation_file/languages/gragrid.pot
vendored
Normal file
@@ -0,0 +1,128 @@
|
||||
# Copyright (C) 2020 Vladimir Contreras
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gragrid: Gravity Forms + SendGrid 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gragrid\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-09-12T20:31:15+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: gragrid\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Gragrid: Gravity Forms + SendGrid"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/vlasscontreras/gragrid"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Integrates Gravity Forms with SendGrid, allowing form submissions to be automatically sent to your SendGrid contact lists."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Vladimir Contreras"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/vlasscontreras"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:130
|
||||
msgid "Gravity Forms: SendGrid Add-on"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: 1 open anchor tag, 2 close anchor tag, 3 open anchor tag, 4 close anchor tag.
|
||||
#: class-gragrid.php:183
|
||||
msgid "SendGrid makes it easy to reliably send email notifications. If you don't have a SendGrid account, you can %1$ssign up for one here%2$s. Once you have signed up, you can %3$sfind your API keys here%4$s."
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:193
|
||||
msgid "SendGrid API Key"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:216
|
||||
msgid "SendGrid Feed Settings"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:220
|
||||
#: class-gragrid.php:226
|
||||
#: class-gragrid.php:399
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:227
|
||||
msgid "Enter a feed name to uniquely identify this setup."
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:232
|
||||
#: class-gragrid.php:237
|
||||
msgid "SendGrid Contact List"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:238
|
||||
msgid "Select the contact list you would like to add emails s to."
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:247
|
||||
#: class-gragrid.php:252
|
||||
msgid "Map Fields"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:253
|
||||
msgid "Associate the SendGrid fields to the appropriate Gravity Form fields by selecting the appropriate form field from the list."
|
||||
msgstr ""
|
||||
|
||||
#. Translators: 1 line break, 2 error message.
|
||||
#: class-gragrid.php:288
|
||||
msgid "Could not load the contact lists. %1$sError: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:299
|
||||
msgid "You don't have contact lists in your account. Please create one first and try again."
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:307
|
||||
msgid "Select a SendGrid list"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:346
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:352
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:358
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:400
|
||||
msgid "SendGrid List"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:441
|
||||
msgid "Unable to process feed because API could not be initialized."
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %s error message.
|
||||
#: class-gragrid.php:459
|
||||
msgid "Unable to add recipient to contact DB: %s"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %s error message.
|
||||
#: class-gragrid.php:467
|
||||
#: class-gragrid.php:473
|
||||
msgid "Unable to add recipient to list: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gragrid-api.php:143
|
||||
msgid "API key must be defined to process an API request."
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
349
spec/fixtures/dynamic_finders/plugin_version/hey-notify/translation_file/languages/hey-notify.pot
vendored
Normal file
349
spec/fixtures/dynamic_finders/plugin_version/hey-notify/translation_file/languages/hey-notify.pot
vendored
Normal file
@@ -0,0 +1,349 @@
|
||||
# Copyright (C) 2020 FireTree Design, LLC <info@firetreedesign.com>
|
||||
# This file is distributed under the same license as the Hey Notify plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hey Notify 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hey-notify\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-21T19:21:51+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: hey-notify\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/cpt.php:35
|
||||
#: includes/services/class-email.php:99
|
||||
msgid "Hey Notify"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://heynotifywp.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Get notified when things happen in WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "FireTree Design, LLC <info@firetreedesign.com>"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://firetreedesign.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:33
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:34
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:36
|
||||
msgid "Parent Notification:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:37
|
||||
msgid "All Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:38
|
||||
msgid "View Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:39
|
||||
msgid "Add New Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:40
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:41
|
||||
msgid "Edit Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:42
|
||||
msgid "Update Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:43
|
||||
msgid "Search Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:44
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:45
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:100
|
||||
#: includes/fields.php:40
|
||||
msgid "Service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/cpt.php:101
|
||||
#: includes/fields.php:53
|
||||
#: includes/filters.php:49
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:30
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:43
|
||||
#: includes/events/post/class-post-event.php:43
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:46
|
||||
msgid "Page Draft"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:47
|
||||
msgid "Page Pending"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:48
|
||||
msgid "Page Published"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:49
|
||||
msgid "Page Scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:50
|
||||
msgid "Page Updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-event.php:51
|
||||
msgid "Page Moved to Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:42
|
||||
msgid "Hey, a new page was drafted!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:73
|
||||
msgid "Hey, a new page was published!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:103
|
||||
msgid "Hey, a new page was scheduled!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:134
|
||||
msgid "Hey, a new page is pending!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:155
|
||||
msgid "Hey, a page was updated!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:176
|
||||
msgid "Hey, a page was deleted!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:190
|
||||
#: includes/events/post/class-post-hook.php:190
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/page/class-page-hook.php:195
|
||||
#: includes/events/post/class-post-hook.php:195
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:30
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:46
|
||||
msgid "Post Draft"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:47
|
||||
msgid "Post Pending"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:48
|
||||
msgid "Post Published"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:49
|
||||
msgid "Post Scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:50
|
||||
msgid "Post Updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-event.php:51
|
||||
msgid "Post Moved to Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:42
|
||||
msgid "Hey, a new post was drafted!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:73
|
||||
msgid "Hey, a new post was published!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:103
|
||||
msgid "Hey, a new post was scheduled!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:134
|
||||
msgid "Hey, a new post is pending!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:155
|
||||
msgid "Hey, a post was updated!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:176
|
||||
msgid "Hey, a post was deleted!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:204
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/events/post/class-post-hook.php:213
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields.php:66
|
||||
msgid "Hey Notify Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields.php:68
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields.php:71
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields.php:75
|
||||
msgid "Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:31
|
||||
msgid "Select a service"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:46
|
||||
msgid "Notification Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:50
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:56
|
||||
msgid "Event Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:80
|
||||
msgid "Upon deletion of the plugin, you can optionally remove all custom data, settings, etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:85
|
||||
msgid "Remove all data when Hey Notify is deleted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:102
|
||||
msgid "General settings for Hey Notify."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:107
|
||||
msgid "Default service:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:44
|
||||
#: includes/services/class-slack.php:44
|
||||
msgid "Webhook URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:46
|
||||
msgid "The webhook that you created for your Discord channel."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:46
|
||||
#: includes/services/class-slack.php:46
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:57
|
||||
msgid "Discord Avatar"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:58
|
||||
msgid "Override the default avatar of the webhook. Not required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:70
|
||||
msgid "Discord Username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-discord.php:71
|
||||
#: includes/services/class-slack.php:71
|
||||
msgid "Override the default username of the webhook. Not required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-email.php:44
|
||||
msgid "Send notifications to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-email.php:47
|
||||
#: includes/services/class-email.php:53
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-email.php:52
|
||||
msgid "Email Addresses"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-email.php:105
|
||||
msgid "Hey, here's your notification!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:46
|
||||
msgid "The webhook that you created for your Slack channel."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:57
|
||||
msgid "Slack Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:58
|
||||
msgid "Override the default icon of the webhook. Not required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:70
|
||||
msgid "Slack Username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:83
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:84
|
||||
msgid "Select a color to use for the message attachment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/services/class-slack.php:230
|
||||
msgid "Attached image"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,60 @@
|
||||
# Copyright (C) 2020 Condless
|
||||
# This file is distributed under the same license as the Hide Address Fields for WooCommerce plugin.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hide Address Fields for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hide-address-fields-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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-10-09 09:22+0300\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: hide-address-fields-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Hide Address Fields for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://en.condless.com/hide-address-fields-for-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WooCommerce plugin for conditionally hiding the address fields on the Checkout based on the selected shipping/payment methods"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Condless"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.condless.com/"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:121
|
||||
msgid "Address options"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:159
|
||||
msgid "Address fields will be hidden on Checkout when both conditions are met"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:165
|
||||
msgid "Do not ask customer address if he selects those shipping methods"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:173
|
||||
msgid "Do not ask customer address if he pays with those payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:196
|
||||
msgid "Make sure the selected shipping methods do not require the customer address for beeing proccessed"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:210
|
||||
msgid "Make sure the selected payment methods do not require the customer address for beeing proccessed"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,165 @@
|
||||
# Copyright (C) 2020 ACT360
|
||||
# This file is distributed under the same license as the WooCommerce Fonepay plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce Fonepay 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-fonepay\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-08-20T02:34:50+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha\n"
|
||||
"X-Domain: woocommerce-fonepay\n"
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:38
|
||||
msgid "Proceed to Fonepay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:39
|
||||
#: includes/gateways/settings-fonepay.php:25
|
||||
msgid "Fonepay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:40
|
||||
msgid "Take payments via Fonepay - sends customers to Fonepay portal to enter their payment information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:60
|
||||
msgid "SANDBOX ENABLED. You can use testing accounts only."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:144
|
||||
msgid "Gateway Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:144
|
||||
msgid "Fonepay does not support your store currency."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-fonepay.php:105
|
||||
msgid "View WooCommerce Fonepay settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-fonepay.php:105
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: woocommerce version
|
||||
#: includes/class-woocommerce-fonepay.php:116
|
||||
msgid "WooCommerce Fonepay depends on the last version of %s or later to work!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: woocommerce version
|
||||
#: includes/class-woocommerce-fonepay.php:116
|
||||
msgid "WooCommerce 3.0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/class-wc-gateway-fonepay-ipn-handler.php:151
|
||||
msgid "IPN payment completed"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: payment status
|
||||
#: includes/gateways/class-wc-gateway-fonepay-ipn-handler.php:167
|
||||
msgid "Payment %s via IPN."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order link.
|
||||
#: includes/gateways/class-wc-gateway-fonepay-ipn-handler.php:179
|
||||
msgid "Payment for cancelled order %s received"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order ID.
|
||||
#: includes/gateways/class-wc-gateway-fonepay-ipn-handler.php:181
|
||||
msgid "Order #%s has been marked paid by Fonepay IPN, but was previously cancelled. Admin handling required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:15
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:17
|
||||
msgid "Enable Fonepay Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:21
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:24
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:28
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:31
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:32
|
||||
msgid "Pay via Fonepay; you can pay with Fonepay account securely."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:35
|
||||
msgid "Live Merchant Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:38
|
||||
#: includes/gateways/settings-fonepay.php:52
|
||||
msgid "Please enter your Fonepay Merchant Code; this is needed in order to take payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:42
|
||||
msgid "Test Merchant Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:45
|
||||
#: includes/gateways/settings-fonepay.php:59
|
||||
msgid "Please enter your Fonepay Merchant Secret; this is needed in order to take payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:63
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:68
|
||||
msgid "Sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:70
|
||||
msgid "Enable Sandbox Mode"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Fonepay contact page
|
||||
#: includes/gateways/settings-fonepay.php:73
|
||||
msgid "Enable Fonepay sandbox to test payments. Please contact Fonepay Merchant/Service Provider for a <a href=\"%s\" target=\"_blank\">developer account</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:76
|
||||
msgid "Debug log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:78
|
||||
msgid "Enable logging"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Fonepay log file path
|
||||
#: includes/gateways/settings-fonepay.php:81
|
||||
msgid "Log Fonepay events, such as IPN requests, inside <code>%s</code>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:84
|
||||
msgid "IPN Email Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:86
|
||||
msgid "Enable IPN email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:88
|
||||
msgid "Send notifications when an IPN is received from Fonepay indicating cancellations."
|
||||
msgstr ""
|
||||
2017
spec/fixtures/dynamic_finders/plugin_version/jobboardwp/translation_file/languages/jobboardwp-en_US.po
vendored
Normal file
2017
spec/fixtures/dynamic_finders/plugin_version/jobboardwp/translation_file/languages/jobboardwp-en_US.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,123 @@
|
||||
# Copyright (C) 2020 Richard Carlier
|
||||
# This file is distributed under the same license as the JSON Dashboard Infos plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JSON Dashboard Infos 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/json-dashboard-infos\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-08-27T13:25:55+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: json-dashboard-infos\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "JSON Dashboard Infos"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/rcarlier/json-dashboard-infos"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Get infos from your wordpress, in JSON format, to create centralized dashboards"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Richard Carlier"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://carlier.biz"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:65
|
||||
msgid "JSON to fetch:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:78
|
||||
msgid "Security Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:84
|
||||
msgid "Do NOT change without good reasons!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:85
|
||||
msgid "If you do, no spaces, no specials cars... (try suggestions bellow)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:86
|
||||
msgid "Don't forget to <b>update permalinks</b> if needed..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:97
|
||||
msgid "Transient timeout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:100
|
||||
msgid "In hour."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:103
|
||||
msgid "0 to disable the transient (no cache)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:107
|
||||
msgid "Reset cache"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:112
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:117
|
||||
msgid "If needed..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:122
|
||||
msgid "Expose Infos"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:127
|
||||
msgid "Expose Updates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:132
|
||||
msgid "Expose Comments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:137
|
||||
msgid "Expose Users"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:142
|
||||
msgid "Expose Sizes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:149
|
||||
msgid "Expose Contents"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:155
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:160
|
||||
msgid "JSON generated:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/get_datas.php:245
|
||||
msgid "last registration:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/tools.php:88
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/tools.php:93
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) 2020 kantbtrue
|
||||
# This file is distributed under the same license as the Kantbtrue Taxonomy Color plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Kantbtrue Taxonomy Color 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/kantbtrue-taxonomy-color\n"
|
||||
"Last-Translator: kantbtrue <shashikant1989yadav@gmail.com>\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-10-01T08:34:31+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: kbttc-term-color\n"
|
||||
|
||||
#: admin/columns.php:24
|
||||
#: admin/term-fields.php:26
|
||||
#: admin/term-fields.php:53
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/notices.php:31
|
||||
msgid "Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#: admin/notices.php:39
|
||||
msgid "Successfully updated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:69
|
||||
#: admin/options.php:70
|
||||
msgid "Taxonomy Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:102
|
||||
msgid "Kantbtrue taxonomy color settings page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:111
|
||||
msgid "Default Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:119
|
||||
#: admin/options.php:127
|
||||
msgid "Exclude Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:132
|
||||
msgid "Post category"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:134
|
||||
msgid "Post tag"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:152
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/activate.php:26
|
||||
msgid "Update WordPress version to use this plugin."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,145 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Kontur Copy Code Button 1.0.0 \n"
|
||||
"Report-Msgid-Bugs-To: https://profiles.wordpress.org/netzaufsicht/\n"
|
||||
"Last-Translator: Eilert Behrends <hello@kontur.us>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-25 20:09+0000\n"
|
||||
"PO-Revision-Date: 2020-07-25 22:25+0000\n"
|
||||
"X-Domain: kontur-copy-code-button\n"
|
||||
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Kontur Copy Code Button"
|
||||
msgstr "Kontur Copy Code Button"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/kontur-copy-code-button"
|
||||
msgstr "https://wordpress.org/kontur-copy-code-button"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Add your own \"kontur Copy Code Button\" <strong>with your own text, class, "
|
||||
"color</strong> and \"pre\" Background. Works as well with the \"WP Code Block"
|
||||
"\". The clicked button copies your code into the clipboard."
|
||||
msgstr ""
|
||||
"Erstelle Deinen eigenen \"kontur Copy Code Button\" <strong>mit Deinem Text, "
|
||||
"CSS-Klasse, Farbe</strong> und \"pre\" Background. Funktioniert mit dem "
|
||||
"\"WP Code Block\". Ein Klick auf den Button kopiert Deinen Code in die "
|
||||
"Zwischenablage."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Eilert Behrends"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/netzaufsicht"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:107
|
||||
msgid ">> Settings"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:120
|
||||
msgid "Coffee?"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:137
|
||||
msgid "kontur Copy Code Button"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:193
|
||||
msgid "SETTINGS UPDATED !"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:233
|
||||
msgid "Change Your Settings"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:239
|
||||
msgid "Set your own Text for the Button"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:242
|
||||
msgid "Copy Button Text:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:243
|
||||
msgid " e.g. \"Copy Code\""
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:246
|
||||
msgid "Text when copied:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:248
|
||||
msgid " e.g. \"Copied\""
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:251
|
||||
msgid "Save Button Label Texts"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:261
|
||||
msgid "You got the looks"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:263
|
||||
msgid "This is how it would look like right now:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:283
|
||||
msgid "Style it Baby"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:285
|
||||
msgid "Button <strong>Background Color</strong>:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:290 kontur-copy-code-button.php:297
|
||||
#: kontur-copy-code-button.php:305
|
||||
msgid "Current color: "
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:292
|
||||
msgid "Save Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:294
|
||||
msgid "Button <strong>Text Color</strong>:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:298
|
||||
msgid "Save Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:302
|
||||
msgid "Code \"pre\" Block Background"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:308
|
||||
msgid "Save Box Background"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:322
|
||||
msgid "Get Classy"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:325
|
||||
msgid "Add your custom class(es) to make the button match your theme."
|
||||
msgstr ""
|
||||
|
||||
|
||||
#: kontur-copy-code-button.php:326
|
||||
msgid " Input goes like this for multiple classes: \"class1 class2 class3\""
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:330
|
||||
msgid "Save added classes"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:353
|
||||
msgid "Save all settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,4 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0.0 - 17/09/2020
|
||||
* First version.
|
||||
16
spec/fixtures/dynamic_finders/plugin_version/lazy-youtube/composer_file/package.json
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/lazy-youtube/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "lazy-youtube",
|
||||
"version": "1.0.0",
|
||||
"description": "A gutenberg Youtube embed block that only loads Youtube assets when the user needs them.",
|
||||
"main": "",
|
||||
"scripts": {
|
||||
"start": "wp-scripts start block/src/lazy-youtube-block.js --output-path=block/dist",
|
||||
"build": "wp-scripts build block/src/lazy-youtube-block.js --output-path=block/dist",
|
||||
"lint:js": "wp-scripts lint-js"
|
||||
},
|
||||
"author": "Laytan Laats",
|
||||
"license": "GPL-2.0+",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "6.2.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
# Copyright (C) 2020 Laytan Laats
|
||||
# This file is distributed under the same license as the Lazy Youtube plugin.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lazy Youtube 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lazy-youtube\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-02-07 13:40+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: Poedit 1.8.7\n"
|
||||
"X-Domain: lazy-youtube\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Lazy Youtube"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/laytan/lazy-youtube"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A gutenberg Youtube embed block that only loads Youtube assets when the user needs them."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Laytan Laats"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/laytan"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:118 block/src/lazy-youtube-block.js:11
|
||||
msgid "Lazy youtube"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:119 block/src/lazy-youtube-block.js:12
|
||||
msgid "A youtube embed that only loads Youtube scripts when needed."
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:181 block/src/lazy-youtube-block.js:68
|
||||
msgid "Youtube embed options"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:183 block/src/lazy-youtube-block.js:71
|
||||
msgid "Youtube video link"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:184 block/src/lazy-youtube-block.js:72
|
||||
msgid "Youtube video link or embed link. allowed format is [https://www.youtube.com/watch?v=video_id]."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,75 @@
|
||||
# Copyright (C) 2020 Ledenbeheer
|
||||
# This file is distributed under the same license as the Ledenbeheer External Connection plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ledenbeheer External Connection 0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ledenbeheer-external-connection\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-11T12:56:58+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: ledenbeheer-external-connection\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Ledenbeheer External Connection"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A connection between Ledenbeheer and Wordpress"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ledenbeheer"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ledenbeheer.be"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:26
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:27
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:53
|
||||
msgid "Courses"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:54
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:81
|
||||
msgid "Activities"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:82
|
||||
msgid "Activity"
|
||||
msgstr ""
|
||||
|
||||
#: views/courses/show.php:28
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: views/courses/show.php:32
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: views/courses/show.php:36
|
||||
msgid "Location address"
|
||||
msgstr ""
|
||||
|
||||
#: views/courses/show.php:40
|
||||
msgid "Location label"
|
||||
msgstr ""
|
||||
|
||||
#: views/courses/show.php:44
|
||||
msgid "Age restriction"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,36 @@
|
||||
# Copyright (C) 2020 LifterLMS
|
||||
# This file is distributed under the same license as the Lite LMS Progress Tracker by LifterLMS plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lite LMS Progress Tracker by LifterLMS 0.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://lifterlms.com/my-account/my-tickets\n"
|
||||
"Last-Translator: Team LifterLMS <team@lifterlms.com>\n"
|
||||
"Language-Team: Team LifterLMS <team@lifterlms.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-13T14:47:03-07:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: llms-dev 1.0.0\n"
|
||||
"X-Domain: llms-lite-progress\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Lite LMS Progress Tracker by LifterLMS"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/gocodebox/lifterlms-lite-lms-progress-tracker"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Easily track progress through simple online courses and other types of public or membership-protected content on your WordPress website."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "LifterLMS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://lifterlms.com/"
|
||||
msgstr ""
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/lokalise/change_log/CHANGELOG.md
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/lokalise/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
= 1.1.3 =
|
||||
* Changed readme.txt
|
||||
|
||||
= 1.1.2 =
|
||||
* Added readme.txt, ReadmeOSS
|
||||
|
||||
= 1.1.1 =
|
||||
* Fixed hard-coded table prefix
|
||||
|
||||
= 1.1.0 =
|
||||
* Added list of post types that can be edited by current user to environment REST
|
||||
* Dependency to process request headers
|
||||
|
||||
= 1.0.3 - 2020-07-02 =
|
||||
* Added CHANGELOG.md
|
||||
* Changed correct link to documentation
|
||||
|
||||
= 1.0.2 - 2020-07-02 =
|
||||
* Fixed authorization secret regeneration
|
||||
|
||||
= 1.0.1 - 2020-07-01 =
|
||||
* Added default locale to environment REST
|
||||
|
||||
= 1.0.0 - 2020-06-19 =
|
||||
* Added plugin code
|
||||
@@ -0,0 +1,541 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mapplic Lite 1.0\n"
|
||||
"POT-Creation-Date: 2020-03-05 09:55+0200\n"
|
||||
"PO-Revision-Date: 2017-01-24 14:19+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: sekler\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.2.4\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/admin.php:57
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:58 admin/metaboxes.php:60 admin/metaboxes.php:235
|
||||
#: admin/metaboxes.php:297 admin/metaboxes.php:378
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:59 mapplic-lite.php:50
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:60 mapplic-lite.php:51
|
||||
msgid "Nothing found. Please try a different search."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:61 admin/admin.php:80 admin/metaboxes.php:177
|
||||
#: admin/metaboxes.php:213
|
||||
msgid "Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:62 admin/admin.php:151
|
||||
msgid "Raw"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:63
|
||||
msgid "Landmark ID is required and must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:78
|
||||
msgid "Maps Lite"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:79
|
||||
msgid "All Maps"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:81
|
||||
msgid "Add New Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:82
|
||||
msgid "New Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:83
|
||||
msgid "Edit Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:135
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:145
|
||||
msgid "Indent"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:152
|
||||
msgid "Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:161
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:162
|
||||
msgid "Floors"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:163
|
||||
msgid "Styles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:164 admin/metaboxes.php:117
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:165
|
||||
msgid "Geoposition"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:166
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:35
|
||||
msgid "World + US"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:36
|
||||
msgid "Canada"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:37
|
||||
msgid "Australia"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:38
|
||||
msgid "France"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:39
|
||||
msgid "Germany"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:40
|
||||
msgid "United Kingdom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:41
|
||||
msgid "Italy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:42
|
||||
msgid "Netherlands"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:43
|
||||
msgid "Switzerland"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:44
|
||||
msgid "Russia"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:45
|
||||
msgid "China"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:46
|
||||
msgid "Brazil"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:49
|
||||
msgid "Select Map Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:50
|
||||
msgid ""
|
||||
"Create a custom map using your own file(s) or select one of the built-in "
|
||||
"maps."
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:52
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:53
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:54
|
||||
msgid "Continents"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:55
|
||||
msgid "USA"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:61
|
||||
msgid "Upgrade Mapplic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:64
|
||||
msgid "Define Map File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:65
|
||||
msgid ""
|
||||
"Upload or select map file from library. SVG, JPG and PNG formats supported."
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:67 admin/metaboxes.php:172 admin/metaboxes.php:204
|
||||
#: admin/metaboxes.php:318 admin/metaboxes.php:338
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:71
|
||||
msgid "ID (required)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:76
|
||||
msgid "Map File (required)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:83
|
||||
msgid "Width (reqiured)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:87
|
||||
msgid "Height (reqiured)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:27
|
||||
msgid "Tooltip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:28
|
||||
msgid "Open link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:59 admin/metaboxes.php:258 admin/metaboxes.php:285
|
||||
#: admin/metaboxes.php:323 admin/metaboxes.php:369
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:65
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:66 admin/metaboxes.php:174 admin/metaboxes.php:205
|
||||
#: admin/metaboxes.php:320 admin/metaboxes.php:339
|
||||
msgid "ID (unique)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:72
|
||||
msgid "Geolocation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:77
|
||||
msgid "Color and Pin Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:86
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:89
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:90
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:93 admin/metaboxes.php:343
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:103
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:105
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:114
|
||||
msgid "Zoom Level"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:127
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:134
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:140
|
||||
msgid "Reveal Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:142 admin/metaboxes.php:357
|
||||
msgid "Hide from sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:144 admin/metaboxes.php:340
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:146
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:149
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:167 admin/metaboxes.php:172 admin/metaboxes.php:234
|
||||
msgid "New Floor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:184
|
||||
msgid "Minimap"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:191 admin/metaboxes.php:227 admin/metaboxes.php:260
|
||||
#: admin/metaboxes.php:287 admin/metaboxes.php:325 admin/metaboxes.php:371
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:209
|
||||
msgid "Show by default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:250 admin/metaboxes.php:296
|
||||
msgid "New Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:255
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:273
|
||||
msgid "Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:275
|
||||
msgid "Base"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:278
|
||||
msgid "Hover & Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:281
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:293
|
||||
msgid "There are no reusable styles yet."
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:312 admin/metaboxes.php:318 admin/metaboxes.php:377
|
||||
msgid "New Group"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:354
|
||||
msgid "Add to legend"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:360
|
||||
msgid "Enable toggle mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:363
|
||||
msgid "Switch off by default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:410
|
||||
msgid "Map file dimensions either not set or invalid!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:416
|
||||
msgid "Map container height"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:421
|
||||
msgid "Map file dimensions (REQUIRED)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:423
|
||||
msgid "File Width"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:424 admin/metaboxes.php:428
|
||||
msgid "REQUIRED"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:427
|
||||
msgid "File Height"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:432
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:434
|
||||
msgid "Portrait breakpoint"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:435
|
||||
msgid "668 (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:437
|
||||
msgid "Default action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:445
|
||||
msgid "Default style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:455
|
||||
msgid "More button text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:456 mapplic-lite.php:49
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:459
|
||||
msgid "Hover tooltip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:462
|
||||
msgid "Enable fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:465
|
||||
msgid "Smart tooltip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:468
|
||||
msgid "Deeplinking"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:471
|
||||
msgid "Open links in new tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:474
|
||||
msgid "Enable minimap"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:478
|
||||
msgid "Zoom options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:480
|
||||
msgid "Enable zoom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:484
|
||||
msgid "Maximum zoom level"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:485
|
||||
msgid "No zoom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:488
|
||||
msgid "Zoom margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:489
|
||||
msgid "200 (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:492
|
||||
msgid "Zoom buttons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:495
|
||||
msgid "Clear button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:498
|
||||
msgid "Zoom out when closing popup"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:501
|
||||
msgid "Close popup when zoomed out"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:504
|
||||
msgid "Mouse wheel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:507
|
||||
msgid "Always fill the container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:512
|
||||
msgid "Sidebar options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:514
|
||||
msgid "Enable sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:518
|
||||
msgid "Search field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:521
|
||||
msgid "Search description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:524
|
||||
msgid "Minimum keyword length"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:525
|
||||
msgid "1 (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:528
|
||||
msgid "Alphabetically ordered list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:531
|
||||
msgid "Thumbnail placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:534
|
||||
msgid "Hide locations when no filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:537
|
||||
msgid "Highlight map on filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:542
|
||||
msgid "CSV Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:544
|
||||
msgid "CSV file"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:550
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: mapplic-lite.php:37
|
||||
msgid "Map List"
|
||||
msgstr ""
|
||||
|
||||
#: mapplic-lite.php:71
|
||||
msgid "Error: map with the specified ID doesn't exist!"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,52 @@
|
||||
# Copyright (C) 2020 CT Talks
|
||||
# This file is distributed under the same license as the Minimum Purchase Amount For Woo Cart plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Minimum Purchase Amount For Woo Cart 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/minimum-purchase-amount-for-woocommerce-cart\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-09-13T19:06:25+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: ct-minimum-purchase-amount-for-woo-cart\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Minimum Purchase Amount For Woo Cart"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This woocommecre extension will allow you to specify the minimum purchase value for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "CT Talks"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://cttalks.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ct-class-settings-page.php:18
|
||||
#: includes/admin/ct-class-settings-page.php:19
|
||||
msgid "Cart Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ct-class-settings-page.php:20
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ct-class-settings-page.php:42
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ct-class-settings-page.php:47
|
||||
msgid "Minimum Cart Amount To Make a Purchase"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ct-class-settings-page.php:56
|
||||
msgid "If the total value of the clients cart is lesser that the value specified the checkout will be restricted for the user"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,175 @@
|
||||
# Copyright (C) 2020 Manfred Rodríguez
|
||||
# This file is distributed under the same license as the Mojito Sinpe plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mojito Sinpe 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mojito-sinpe\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-09-14T17:59:16-05:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: mojito-sinpe\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Mojito Sinpe"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://mojitowp.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Sinpe Móvil as Woocommerce gateway"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Manfred Rodríguez"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mojito-sinpe-require-plugins-woocommerce.php:9
|
||||
msgid "Mojito Sinpe Plugin requires WooCommerce to be active."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-compatibility-product-vendors.php:90
|
||||
#: includes/class-mojito-compatibility-product-vendors.php:106
|
||||
#: includes/class-mojito-compatibility-product-vendors.php:145
|
||||
msgid "Sinpe Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:33
|
||||
msgid "SINPE Móvil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:34
|
||||
msgid "Payment using SINPE Móvil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:99
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:101
|
||||
msgid "Enable SINPE Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:105
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:107
|
||||
msgid "Pay using SINPE Móvil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:108
|
||||
msgid "SINPE Móvil Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:112
|
||||
msgid "Phone number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:117
|
||||
#: includes/class-mojito-sinpe-gateway.php:119
|
||||
msgid "Show link in check-out page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:123
|
||||
#: includes/class-mojito-sinpe-gateway.php:125
|
||||
msgid "Sinpe logo size in check-out page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:128
|
||||
msgid "No logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:138
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:140
|
||||
msgid "Payment method description that the customer will see on your checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:141
|
||||
msgid "Make your payment with your mobile. Your order will not be shipped until the funds have cleared in our account."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:145
|
||||
msgid "Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:147
|
||||
msgid "Instructions that will be added to the thank you page and emails."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:172
|
||||
#: includes/class-mojito-sinpe-gateway.php:187
|
||||
msgid "Select your bank"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:197
|
||||
msgid "You will receive the SINPE Payment link in the order confirmation email. Open it on your mobile."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:207
|
||||
#: includes/class-mojito-sinpe-gateway.php:210
|
||||
msgid "Pay now: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:285
|
||||
msgid "Payment error: Please select your bank"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:293
|
||||
msgid "Awaiting SINPE payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:156
|
||||
msgid "Please open the link only in mobile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:168
|
||||
#: includes/class-mojito-sinpe.php:180
|
||||
msgid "Not a valid order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:187
|
||||
msgid "This order hasn't SINPE Móvil as payment method"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:194
|
||||
msgid "Order is paid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:206
|
||||
msgid "Bank was not selected"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:218
|
||||
#: includes/class-mojito-sinpe.php:289
|
||||
#: includes/class-mojito-sinpe.php:342
|
||||
msgid "Pase %s %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:291
|
||||
#: includes/class-mojito-sinpe.php:344
|
||||
msgid "Send a SMS to %s with the content: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:292
|
||||
msgid "Are you on mobile? "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:300
|
||||
#: includes/class-mojito-sinpe.php:361
|
||||
msgid "Pay here SINPE Móvil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:352
|
||||
msgid "Are you on mobile?"
|
||||
msgstr ""
|
||||
511
spec/fixtures/dynamic_finders/plugin_version/monarch/change_log/changelog.txt
vendored
Normal file
511
spec/fixtures/dynamic_finders/plugin_version/monarch/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,511 @@
|
||||
version 1.4.12 ( updated 03-11-2019 )
|
||||
- Security Update: Fixed a vulnerability that could allow some cross-site request forgery checks within our core product framework to be bypassed. In all cases, these checks were also hardened by user permission checks, however, user permissions checks alone are not sufficient to protect against all CSRF vectors. View the full disclosure here: https://us7.campaign-archive.com/?u=9ae7aa91c578052b052b864d6&id=917542a075.
|
||||
- Updated core to the latest version.
|
||||
* core/admin/css/core.css
|
||||
* core/admin/css/support-center.css
|
||||
* core/admin/js/support-center.js
|
||||
* core/components/Logger.php
|
||||
* core/components/PageResource.php
|
||||
* core/components/SupportCenter.php
|
||||
* core/components/SupportCenterMUAutoloader.php
|
||||
* core/components/Updates.php
|
||||
* core/components/init.php
|
||||
* core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php
|
||||
* core/functions.php
|
||||
* core/ui/utils/frames.js
|
||||
|
||||
version 1.4.11 ( updated 02-26-2019 )
|
||||
- Updated core to the latest version.
|
||||
* core/components/data/init.php
|
||||
|
||||
version 1.4.10 ( updated 12-12-2018 )
|
||||
- Updated core to the latest version.
|
||||
* core/components/data/Utils.php
|
||||
|
||||
version 1.4.9 ( updated 12-05-2018 )
|
||||
- Various security hardening fixes.
|
||||
- Added i18n support for visual builder toggle buttons.
|
||||
- Fixed post_max_size megabytes conversion.
|
||||
- Fixed a issue where Your Save Has Failed Modal Hides Wordfence's Blocked Request Notification.
|
||||
- Fixed Monarch metabox styles in Gutenberg Editor.
|
||||
- Removed LinkedIn share count API integration since it was deprecated and no longer supported by LinkedIn.
|
||||
- Various security hardening fixes.
|
||||
* core/admin/css/core.css
|
||||
* core/admin/css/portability.css
|
||||
* core/admin/js/core.js
|
||||
* core/components/PageResource.php
|
||||
* core/components/Portability.php
|
||||
* core/components/Updates.php
|
||||
* core/components/VersionRollback.php
|
||||
* core/components/api/OAuthHelper.php
|
||||
* core/components/api/Service.php
|
||||
* core/components/api/email/HubSpot.php
|
||||
* core/components/api/email/Provider.php
|
||||
* core/components/api/email/Providers.php
|
||||
* core/components/api/email/_MailPoet2.php
|
||||
* core/components/api/email/_MailPoet3.php
|
||||
* core/components/data/Utils.php
|
||||
* core/components/data/init.php
|
||||
* core/components/init.php
|
||||
* core/components/lib/WPHttp.php
|
||||
* core/components/post/Query.php
|
||||
* core/functions.php
|
||||
* core/ui/utils/attribute-binder.js
|
||||
* core/ui/utils/frames.js
|
||||
* css/stats-meta-styles.css
|
||||
* monarch.php
|
||||
|
||||
version 1.4.8 ( updated 10-30-2018 )
|
||||
- Applied some minor security hardening improvements.
|
||||
|
||||
version 1.4.7 ( updated 10-05-2018 )
|
||||
- Fixed the Facebook follower count.
|
||||
* monarch.php
|
||||
|
||||
version 1.4.6 ( updated 10-04-2018 )
|
||||
- Fixed a slightly outdated React version being loaded.
|
||||
- Updated custom fields retrieval and processing functions for Mailchimp to make it work with custom field names.
|
||||
- Fixed the Subscription error shown when using Custom fields in the Email Optin module with MailPoet service provider.
|
||||
- Fixed "et_social_stats" table missing error.
|
||||
* .github/PULL_REQUEST_TEMPLATE.md
|
||||
* core/admin/js/react-dom.production.min.js
|
||||
* core/admin/js/react.production.min.js
|
||||
* core/components/api/email/MailChimp.php
|
||||
* core/components/api/email/_MailPoet3.php
|
||||
* core/components/data/Utils.php
|
||||
* monarch.php
|
||||
|
||||
version 1.4.5 ( updated 08-13-2018 )
|
||||
- Fixed WSOD that occurred in some cases.
|
||||
* monarch.php
|
||||
|
||||
version 1.4.4 ( updated 08-13-2018 )
|
||||
- Corrected German translation of button text in WP Admin.
|
||||
- Fixed PHP notice that was occurring since introduction of rollback feature.
|
||||
- Fixed "et_social_stats" table missing error.
|
||||
* core/components/VersionRollback.php
|
||||
* core/languages/de_DE.mo
|
||||
* core/languages/de_DE.po
|
||||
* monarch.php
|
||||
|
||||
version 1.4.3 ( updated 7-13-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/*
|
||||
* monarch.php
|
||||
|
||||
version 1.4.2 ( updated 6-14-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
- Sanitized values used to generate sharing popup.
|
||||
* core/*
|
||||
* monarch.php
|
||||
|
||||
version 1.4.1 ( updated 5-31-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
- Added extra security hardening to the OAuth2 authorization callback.
|
||||
* core/*
|
||||
|
||||
version 1.4 ( updated 5-26-2018 )
|
||||
- updated core framework to the latest version.
|
||||
- Added the option to disable Google Fonts.
|
||||
* monarch.php
|
||||
* css/admin.css
|
||||
* includes/monarch_options.php
|
||||
* js/admin.js
|
||||
* core/*
|
||||
|
||||
version 1.3.27 ( updated 4-26-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/*
|
||||
|
||||
version 1.3.26 ( updated 4-19-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/*
|
||||
|
||||
version 1.3.25 ( updated 2-8-2018 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/*
|
||||
|
||||
version 1.3.24 ( updated 12-7-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/admin/js/portability.js
|
||||
* core/components/Portability.php
|
||||
* core/functions.php
|
||||
|
||||
version 1.3.23 ( updated 10-18-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/admin/css/portability.css
|
||||
|
||||
version 1.3.22 ( updated 10-18-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/admin/fonts/modules.eot
|
||||
* core/admin/fonts/modules.svg
|
||||
* core/admin/fonts/modules.ttf
|
||||
* core/admin/fonts/modules.woff
|
||||
|
||||
version 1.3.21 ( updated 9-29-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/api/email/ConstantContact.php
|
||||
* core/components/api/email/GetResponse.php
|
||||
* core/components/api/email/MailPoet.php
|
||||
* core/components/api/email/_MailPoet2.php
|
||||
* core/components/api/email/Provider.php
|
||||
* core/components/api/email/Providers.php
|
||||
|
||||
version 1.3.20 ( updated 9-21-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/functions.php
|
||||
* core/components/data/init.php
|
||||
* core/components/data/Utils.php
|
||||
* core/components/api/email/init.php
|
||||
* core/components/api/email/iContact.php
|
||||
* core/components/api/email/_ProviderName.php
|
||||
* core/components/api/email/Providers.php
|
||||
* core/components/api/email/Provider.php
|
||||
* core/components/api/email/MailPoet.php
|
||||
* core/components/api/email/MadMimi.php
|
||||
* core/components/api/email/HubSpot.php
|
||||
* core/components/api/email/GetResponse.php
|
||||
* core/components/api/email/Feedblitz.php
|
||||
* core/components/api/email/Emma.php
|
||||
* core/components/api/email/ConvertKit.php
|
||||
* core/components/api/email/ConstantContact.php
|
||||
* core/components/api/email/CampaignMonitor.php
|
||||
* core/components/api/email/Aweber.php
|
||||
* core/components/api/email/ActiveCampaign.php
|
||||
* core/components/api/Service.php
|
||||
* core/components/Logger.php
|
||||
* core/components/HTTPInterface.php
|
||||
|
||||
version 1.3.19 ( updated 9-6-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/init.php
|
||||
|
||||
version 1.3.18 ( updated 7-27-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/functions.php
|
||||
* core/admin/js/portability.js
|
||||
* core/components/Portability.php
|
||||
|
||||
version 1.3.17 ( updated 7-14-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/PageResource.php
|
||||
* core/components/PageResource.php
|
||||
* core/functions.php
|
||||
|
||||
version 1.3.16 ( updated 7-10-2017 )
|
||||
- Updated core framework to the latest versions.
|
||||
- Fixed a bug that caused errors to occur on SiteGround hosting accounts for some customers when the Elegant Themes caching system attempted to clear the SiteGround cache during plugin & theme activation.
|
||||
* core/components/PageResource.php
|
||||
* core/components/data/Utils.php
|
||||
* core/components/init.php
|
||||
* core/functions.php
|
||||
* core/init.php
|
||||
|
||||
version 1.3.15 ( updated 7-8-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/PageResource.php
|
||||
* core/components/init.php
|
||||
|
||||
version 1.3.14 ( updated 7-2-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/PageResource.php
|
||||
* core/components/init.php
|
||||
|
||||
version 1.3.13 ( updated 7-2-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/init.php
|
||||
* core/components/PageResource.php
|
||||
|
||||
version 1.3.12 ( updated 7-1-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/init.php
|
||||
|
||||
version 1.3.11 ( updated 7-1-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/PageResource.php
|
||||
|
||||
version 1.3.10 ( updated 6-30-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/PageResource.php
|
||||
|
||||
version 1.3.9 ( updated 6-30-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/components/init.php
|
||||
* core/components/PageResource.php
|
||||
|
||||
version 1.3.8 updated 6-28-2017 )
|
||||
- Fixed undefined function PHP error that occurred after upgrading to the latest version in some cases.
|
||||
* components/PageResource.php
|
||||
|
||||
version 1.3.7 ( updated 6-28-2017 )
|
||||
- Updated core framework to the latest version.
|
||||
* core/admin/js/page-resource-fallback.js
|
||||
* core/admin/js/page-resource-fallback.min.js
|
||||
* core/components/PageResource.php
|
||||
* core/components/data/Utils.php
|
||||
* core/components/init.php
|
||||
* core/components/lib/BluehostCache.php
|
||||
* core/functions.php
|
||||
* core/init.php
|
||||
|
||||
version 1.3.6 ( updated 5-31-2017 )
|
||||
- Updated Monarch to support the latest changes to the Facebook API.
|
||||
* monarch.php
|
||||
|
||||
version 1.3.5 ( updated 5-11-2017 )
|
||||
- Fixed an error that caused update notifications to fail when the latest version of Monarch was used with an old version of Divi.
|
||||
* monarch.php
|
||||
|
||||
version 1.3.4 ( updated 4-26-2017 )
|
||||
- Fixed error that occured on websites running PHP 5.2.
|
||||
- Fixed error that occured when updating plugins for some customers.
|
||||
* core/components/Updates.php
|
||||
* core/functions.php
|
||||
* core/main_functions.php
|
||||
* core/init.php
|
||||
|
||||
version 1.3.3 ( updated 4-25-2017 )
|
||||
- Updated Monarch with new core/ structure.
|
||||
- Updated Facebook open graph to version 2.8
|
||||
- Updated Delicious URL to the new version.
|
||||
- An admin notice will now be displayed when an API needs re-authorization due to API updates.
|
||||
- Added RTL support for the Monarch dashboard.
|
||||
- Fixed a bug that allowed any empty @ symbol to be added when sharing via Twitter.
|
||||
- Removed nofollow attribute that was mistakenly added to the data-social_link div.
|
||||
- Removed FriendFeed from the list of available networks.
|
||||
- Fixed a bug where media icons were not positioned correctly in some cases.
|
||||
- Added validation to manual share count input fields in the Monarch dashboard.
|
||||
- Added support for additional post types when choosing where social sharing buttons will appear.
|
||||
- Fixed broken Vkontakte API.
|
||||
- Added support for Vkontakte groups and public pages.
|
||||
- Fixed a design conflict between Divi gallery hover icons and the On Media sharing location in Monarch.
|
||||
- Fixed a bug that caused Monarch settings import to fail in some cases.
|
||||
* monarch.php
|
||||
* css/admin-rtl.css
|
||||
* css/style.css
|
||||
* includes/monarch_options.php
|
||||
* js/custom.js
|
||||
* js/admin.js
|
||||
* core/*
|
||||
|
||||
version 1.3.2 ( updated 08-15-2016 )
|
||||
- Fixed settings page font issues in WordPress 4.6
|
||||
* monarch.php
|
||||
* css/admin.css
|
||||
* core/admin/css/core.css
|
||||
* core/functions.php
|
||||
|
||||
version 1.3.1 ( updated 06-21-2016 )
|
||||
- Fixed the issue with Inline Sharing buttons jumping on page load
|
||||
- Fixed the issue with wrong hover effect for Outlook and Linkedin circle icons
|
||||
* css/style.css
|
||||
- Fixed an SQL error that showed up on posts/pages sharing stats page in some cases
|
||||
- Fixed the issue with "Display on Home" option working incorrectly with some themes
|
||||
* monarch.php
|
||||
|
||||
version 1.3 ( updated 05-16-2016 )
|
||||
- Fixed some issues with Facebook API calls
|
||||
* monarch.php
|
||||
|
||||
version 1.2.9 ( updated 05-10-2016 )
|
||||
- Updated core submodule to latest versions (Fonts files were moved to /core. If you are currently calling these font files, your CSS files should be updated with new file paths).
|
||||
* /core
|
||||
- Updated Google+ icon to match the new Google+ logo & branding guidlines.
|
||||
* core/admin/fonts
|
||||
- Updated Facebook follow counts to handle change in latest API version
|
||||
* monarch.php
|
||||
|
||||
version 1.2.8 ( updated 04-13-2016 )
|
||||
- Fixed an issue that caused theme updates to fail when Bloom, Monarch or the Divi Builder were installed.
|
||||
* core/admin/includes/class-updates.php
|
||||
|
||||
version 1.2.7.3 ( updated 04-12-2016 )
|
||||
- Added option to configure auto updates from the Plugin Settings
|
||||
* monarch.php
|
||||
* css/admin.css
|
||||
* includes/monarch_options.php
|
||||
* js/admin.js
|
||||
* /core
|
||||
- Fixed the issue with Linkedin wrong followers count
|
||||
* monarch.php
|
||||
|
||||
version 1.2.7.2 ( updated 02-26-2016 )
|
||||
- Fixed the issue with Facebook counts, not working properly
|
||||
* monarch.php
|
||||
|
||||
version 1.2.7.1 ( updated 02-18-2016 )
|
||||
- Fixed the issue with meta box settings, not being loaded properly for non-admin users
|
||||
* monarch.php
|
||||
|
||||
version 1.2.7 ( updated 02-17-2016 )
|
||||
- IMPORTANT: Fixed critical privilege escalation security vulnerability that, if properly exploited, could allow unprivileged registered WordPress users to modify plugin settings.
|
||||
* For more detailed information, please refer to the full public disclosure that was emailed to all customers on 2-17-2016: http://bit.ly/1Q9P13N
|
||||
|
||||
version 1.2.6 ( 11-23-2015 )
|
||||
- Fixed warning messages, displayed on a fresh installation
|
||||
- Twitter Share counts: Removed a request to an outdated endpoint
|
||||
* monarch.php
|
||||
|
||||
version 1.2.5 ( 09-09-2015 )
|
||||
- Fixed Facebook Follow count
|
||||
* monarch.php
|
||||
|
||||
version 1.2.4 ( 08-18-2015 )
|
||||
- GitHub: Fixed the issue with followers count for Organizations
|
||||
- LinkedIn: Fixed the issues with followers count retrieval from linkedin network
|
||||
- Pinterest: Fixed the issue with followers count in some cases
|
||||
- Fixed the issue with quotes encoding in post title
|
||||
- Fixed the issue with reset of share counts to 0 sometimes
|
||||
- Fixed the issue with HTML tags in title when sharing
|
||||
- Fixed the issue with sharing URL for buddypress pages
|
||||
- Fixed the issue with localization of some strings in Dashboard
|
||||
- Fixed the issue when Open Sans font loaded multiple times if Bloom and/or Divi was enabled
|
||||
- Added localization for the "k" and "Mil" suffixes
|
||||
* monarch.php
|
||||
- Twitter: Fixed the issue with OAuthException class conflicts with some plugins
|
||||
* includes/oauth.php
|
||||
- YouTube: Added YouTube API v3 support
|
||||
* monarch.php
|
||||
* includes/monarch_options.php
|
||||
- Fixed the issue with circle icons animation
|
||||
* css/style.css
|
||||
- Fixed WP_Widget class constructor warning message in WordPress 4.3
|
||||
* includes/monarch-widget.php
|
||||
- Added WPML support
|
||||
* includes/monarch_options.php
|
||||
* monarch.php
|
||||
- "On media" location is supported on Product post type pages now
|
||||
* includes/monarch_options.php
|
||||
* js/custom.js
|
||||
* monarch.php
|
||||
- Added ability to set an empty title for the widget
|
||||
* includes/monarch-widget.php
|
||||
- Improved visibility of API settings in Dashboard, depending on selected networks
|
||||
* css/admin.css
|
||||
* includes/monarch_options.php
|
||||
* js/admin.js
|
||||
* monarch.php
|
||||
- Added ability to filter the stats by location on Stats Page
|
||||
* css/admin.css
|
||||
* js/admin.js
|
||||
* js/custom.js
|
||||
* monarch.php
|
||||
|
||||
version 1.2.3 ( 05-02-2015 )
|
||||
- Integrated Facebook API changes. Due to changes in Facebook's API, Monarch must be authorized to obtain follow/share counts from Facebook. Please get an App ID and App Secret from Facebook.
|
||||
* includes/monarch_options.php
|
||||
* js/admin.js
|
||||
* monarch.php
|
||||
- Updated localization files
|
||||
* languages/Monarch-en_US.po
|
||||
* languages/Monarch-en_US.mo
|
||||
|
||||
version 1.2.2 ( 04-21-2015 )
|
||||
- Fixed the issue with "loading icon" visibility in WordPress 4.2
|
||||
* css/admin.css
|
||||
* js/admin.js
|
||||
|
||||
version 1.2.1 ( 02-19-2015 )
|
||||
- Added support for all Pinterest data formats
|
||||
- Fixed the issue with disabled "Share Count" option, visible on the mobile version
|
||||
- Fixed the issue with Like count, not displaying inside the mobile sidebar
|
||||
* monarch.php
|
||||
- Added alt attribute ( alternate text ) to images in the Pinterest picker
|
||||
* js/custom.js
|
||||
|
||||
version 1.2 ( 02-05-2015 )
|
||||
|
||||
- Monarch widget: Fixed the issue with likes count error
|
||||
* monarch.php
|
||||
- Added option for Sidebar on Right Browser Edge:
|
||||
* css/style.css
|
||||
* includes/monarch_options.php
|
||||
* monarch.php
|
||||
- Added a "Home" Option Within The Post Type Settings Of All Locations
|
||||
* includes/monarch_options.php
|
||||
* monarch.php
|
||||
- Added All Time Stats Graph
|
||||
* css/admin.css
|
||||
* js/admin.js
|
||||
* monarch.php
|
||||
- Added Twitter Followers Auto Count
|
||||
* includes/monarch_options.php
|
||||
* includes/oauth.php
|
||||
* includes/twitter_auth.php
|
||||
* js/admin.js
|
||||
* monarch.php
|
||||
- Added Pinterest Followers Auto Count
|
||||
- Added YouTube Api Support
|
||||
- Improved YouTube response handling
|
||||
- Fixed the issue with Pinterest icon, conflicting with the official Pinterest plugin icon
|
||||
- Fixed the issue with wrong Google+ share counts
|
||||
- Fixed the issue with Twitter sharing link on mobile devices
|
||||
* monarch.php
|
||||
- Added Stats Meta Box
|
||||
* css/stats-meta-styles.css
|
||||
* js/monarch-post-meta.js
|
||||
* monarch.php
|
||||
- Added "All Networks" Front-end Icon
|
||||
* css/fonts
|
||||
* css/style.css
|
||||
* includes/monarch_options.php
|
||||
* monarch.php
|
||||
* js/custom.js
|
||||
- Added "After Inactivity" Trigger
|
||||
- Added "After Comment" Trigger To Fly-In & Pop-Up
|
||||
- Added "Percentage Down The Page" trigger to Fly-In & Pop-Up
|
||||
- Added "After WooCommerce Purchase" Trigger To Fly-In & Pop-Up
|
||||
* includes/monarch_options.php
|
||||
* js/custom.js
|
||||
* js/idle-timer.js
|
||||
* monarch.php
|
||||
- Added Fadein/FadeOut Animation To Popup Overlay
|
||||
* css/style.css
|
||||
* js/custom.js
|
||||
- Fixed the issue with monarch widget class that had no width defined
|
||||
* css/style.css
|
||||
- Added Highest performing posts to stats
|
||||
* css/admin.css
|
||||
* monarch.php
|
||||
|
||||
version 1.1.2 ( 11-21-2014 )
|
||||
- Fixed the issue with override settings that were not saved correctly
|
||||
- Fixed the issue with incorrectly encoded symbols in the sharing popup window
|
||||
- Fixed the issue with a backslash displayed before apostrophes in popup/flyin titles and descriptions
|
||||
- Fixed some issues with the Contact Form module in the Divi theme
|
||||
- Counters display 1 Mil ( 1 million ) as opposed to 1000k now
|
||||
* monarch.php
|
||||
- Fixed the issue with image size / alignment inside of the media shortcode
|
||||
- Fixed styling issues with some themes
|
||||
* css/style.css
|
||||
* js/custom.js
|
||||
- Pinterest Modal window: added an error message if there are no images on a page, improved functionality
|
||||
- Added "Hide/Show Sidebar" button
|
||||
* css/style.css
|
||||
* js/custom.js
|
||||
* monarch.php
|
||||
- Improved Auto Width styles, auto width buttons remain auto width on mobile.
|
||||
* css/style.css
|
||||
|
||||
version 1.1.1 ( 10-28-2014 )
|
||||
- Fixed the issue with page url, not working properly, when some additional information was appended to it.
|
||||
* js/custom.js
|
||||
|
||||
version 1.1 ( 10-24-2014 )
|
||||
- Fixed Pinterest Modal Images visibility issue
|
||||
- Fixed styling issues
|
||||
- Fixed OpenSans typo - the font was not being used
|
||||
* css/style.css
|
||||
- Added % Height to "Add Network" modal window
|
||||
* css/admin.css
|
||||
* js/admin.js
|
||||
- Fixed the issue with cached share counts
|
||||
- Fixed Pinterest modal warning message, when no networks were selected
|
||||
* monarch.php
|
||||
- Fixed the issue with automatic share counts, not properly calculated after a comment is made
|
||||
* js/custom.js
|
||||
* monarch.php
|
||||
|
||||
version 1.0 ( 10-22-2014 )
|
||||
|
||||
- Initial release
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/my-medium-article/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/my-medium-article/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.0 =
|
||||
* Initial Public Release
|
||||
37
spec/fixtures/dynamic_finders/plugin_version/mycookie-gdpr-compliance/composer_file/package.json
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/mycookie-gdpr-compliance/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "my-cookie",
|
||||
"version": "1.0.0",
|
||||
"description": "Another cookie plugin.",
|
||||
"main": "index.js",
|
||||
"babel": {
|
||||
"presets": [
|
||||
"@babel/preset-env"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "webpack --mode=development --watch --config webpack-config.js",
|
||||
"build": "webpack --mode=production --config webpack-config.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://gitlab.com/s60v5/mycookie-gdpr-compliance-for-wordpress.git"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://gitlab.com/s60v5/mycookie-gdpr-compliance-for-wordpress/issues"
|
||||
},
|
||||
"homepage": "https://gitlab.com/s60v5/mycookie-gdpr-compliance-for-wordpress#readme",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.7.7",
|
||||
"@babel/core": "^7.7.7",
|
||||
"@babel/preset-env": "^7.7.7",
|
||||
"babel-loader": "^8.0.6",
|
||||
"css-loader": "^3.4.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.13.0",
|
||||
"sass-loader": "^8.0.0",
|
||||
"webpack": "^4.41.5",
|
||||
"webpack-cli": "^3.3.10"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,331 @@
|
||||
# Copyright (C) 2020 Efraim Bayarri
|
||||
# This file is distributed under the same license as the Nic-app Crono plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Nic-app Crono 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/nicappcrono\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-09-09T11:17:23+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: nicappcrono\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Nic-app Crono"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://nic-app.com/nic-app-crono/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
#: admin/partials/nicappcrono-admin-display.php:25
|
||||
msgid "Nic-app Crono is a plugin that allows you to unify different calendars (Google Calendar, Apple iCloud, Exchange, Office 365 / Outlook) into a single calendar."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Efraim Bayarri"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://efraim.cat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:117
|
||||
#: admin/class-nicappcrono-admin.php:134
|
||||
msgid "Nic-app Crono Calendars"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:120
|
||||
#: admin/class-nicappcrono-admin.php:130
|
||||
#: admin/class-nicappcrono-admin.php:131
|
||||
#: public/class-nicappcrono-public.php:185
|
||||
msgid "Calendars"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:121
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:122
|
||||
msgid "Add Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:123
|
||||
msgid "Add New Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:124
|
||||
msgid "Edit Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:125
|
||||
msgid "New Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:126
|
||||
msgid "View Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:127
|
||||
msgid "Search Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:128
|
||||
msgid "No Calendars Found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:129
|
||||
msgid "No Calendarss Found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:161
|
||||
#: admin/partials/nicappcrono-admin-display.php:21
|
||||
#: admin/partials/nicappcrono-admin-settings-display.php:17
|
||||
msgid "Nic-app Crono Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:161
|
||||
#: admin/class-nicappcrono-admin.php:1029
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:162
|
||||
#: admin/partials/nicappcrono-admin-scheduling-display.php:17
|
||||
msgid "Nic-app Crono Scheduling"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:162
|
||||
msgid "Scheduling"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:163
|
||||
#: admin/partials/nicappcrono-admin-support-display.php:21
|
||||
msgid "Nic-app Crono Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:163
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:199
|
||||
msgid "Calendar information"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:218
|
||||
#: admin/class-nicappcrono-admin.php:548
|
||||
msgid "Calendar ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:224
|
||||
msgid "Calendar Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:230
|
||||
msgid "Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:236
|
||||
msgid "Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:242
|
||||
msgid "Profile Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:248
|
||||
msgid "Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:254
|
||||
msgid "Provider ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:260
|
||||
msgid "Check if you want product number to be displayed in calendar instead of content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:264
|
||||
msgid "Product Display"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:270
|
||||
#: admin/class-nicappcrono-admin.php:551
|
||||
msgid "Product ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:276
|
||||
msgid "Check if you want two way synchronization when new order is added to calendar. (Requires Pluginhive WooCommerce Bookings and Appointments Premium plugin)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:278
|
||||
msgid "Two Way Synchronization"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:285
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:446
|
||||
msgid "There was an error adding this setting. Please try again. If this persists, shoot us an email."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:476
|
||||
msgid "Use European Data Center"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:479
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:482
|
||||
msgid "Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:485
|
||||
msgid "Master Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:488
|
||||
msgid "Master Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:491
|
||||
msgid "Master Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:494
|
||||
msgid "Authorization Page ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:497
|
||||
msgid "Create new Authorization Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:520
|
||||
msgid "These settings refer to your Cronofy account for master calendar an apply to all Nic-app Crono functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:522
|
||||
msgid "Cronofy currently provides two data centers one in the USA, the default, and one in Germany. They are run as completely separate instances with no data flow between. This allows you to ensure data is kept within jurisdictional boundaries, eg. the EEA."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:524
|
||||
msgid "Because there is no data flow then separate developer accounts need to be created on the instance that suits your requirements. Functionally the APIs are identical."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:547
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:549
|
||||
msgid "Product display"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:550
|
||||
msgid "Two Way"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:552
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:569
|
||||
#: admin/class-nicappcrono-admin.php:572
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:569
|
||||
#: admin/class-nicappcrono-admin.php:572
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:595
|
||||
msgid "Authorization"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:965
|
||||
msgid "No scheduled jobs. No calendar entries will be checked."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:992
|
||||
msgid "View log file"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:26
|
||||
msgid "Plugins developed for WordPress and WooCommerce usually work by connecting to a single calendar. What happens if you need information contained in more than one calendar?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:27
|
||||
msgid "With this plugin with the help of Cronofy you can solve this problem, keeping information from multiple sources in a single calendar."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:29
|
||||
msgid "Configuration is an important part of proper operation and must be given the necessary attention. You can find all the necessary help in"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:30
|
||||
msgid "the support tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:30
|
||||
msgid "or in"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:31
|
||||
msgid "Nic-app Crono web page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:35
|
||||
#: admin/partials/nicappcrono-admin-support-display.php:23
|
||||
msgid "Contact us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:35
|
||||
#: admin/partials/nicappcrono-admin-support-display.php:23
|
||||
msgid "with any questions."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-scheduling-display.php:20
|
||||
msgid "Next schedule (UTC): "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-scheduling-display.php:25
|
||||
msgid "Log files: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-settings-display.php:24
|
||||
msgid "When creating the developer account in the chosen data center and later when creating our app, we already authorize the use of the master calendar. To authorize the following calendars, it is necessary to define a page from which to carry out this authorization."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-settings-display.php:25
|
||||
msgid "It can be any page that contains the shortcode [NicappAuth]. In that case we will simply enter the ID of the page. We can create a new page with the shortcode in it if we check the option to create a new page."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:138
|
||||
msgid "Authorization Processed"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:139
|
||||
msgid "Thank you for authorizing access to your calendar."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:140
|
||||
msgid "Your calendar was already authorized."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:141
|
||||
msgid "Your inputs have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:186
|
||||
msgid "Please choose the calendar you wish to share"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:208
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
209
spec/fixtures/dynamic_finders/plugin_version/ohdear/translation_file/languages/ohdear.pot
vendored
Normal file
209
spec/fixtures/dynamic_finders/plugin_version/ohdear/translation_file/languages/ohdear.pot
vendored
Normal file
@@ -0,0 +1,209 @@
|
||||
# Copyright (C) 2020 flowdee
|
||||
# This file is distributed under the same license as the Oh Dear plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Oh Dear 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ohdear\n"
|
||||
"Last-Translator: flowdee <coder@flowdee.de>\n"
|
||||
"Language-Team: KryptoniteWP <support@kryptonitewp.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-05T15:24:49+03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: ohdear\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
|
||||
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
|
||||
"esc_html_x:1,2c\n"
|
||||
"Language: en_US\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: assets\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/admin/class-menu.php:29
|
||||
msgid "Oh Dear"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/ohdear/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Websites uptime monitoring."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-menu.php:31
|
||||
#: includes/admin/plugins.php:25
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-menu.php:33
|
||||
#: includes/admin/plugins.php:26
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:250
|
||||
msgid "API Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:256
|
||||
msgid "API Token"
|
||||
msgstr ""
|
||||
|
||||
#. translators: OhDear page link
|
||||
#: includes/admin/class-settings.php:259
|
||||
msgid "Enter your OhDear API token, found on your <a href=\"%s\" target=\"_blank\">OhDear api settings page</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:265
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:267
|
||||
msgid "Select the website from which the data will be taken from"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:272
|
||||
msgid "Grant Access"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:274
|
||||
msgid "Select which user roles can access the Oh Dear monitoring (administrators have access by default)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:323
|
||||
msgid "Please enter a valid API token before selecting a site"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Callback name, passed by the setting
|
||||
#: includes/admin/class-settings.php:427
|
||||
msgid "The callback function used for the <strong>%s</strong> setting is missing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:476
|
||||
msgid "No sites found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:488
|
||||
msgid "Please select a site"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/dashboard.php:13
|
||||
msgid "Oh Dear Monitoring"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin settings page link, 2: 'Settings' word
|
||||
#: includes/admin/views/dashboard.php:20
|
||||
msgid "Please set the valid Oh Dear API token at <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/dashboard.php:22
|
||||
#: includes/admin/views/dashboard.php:35
|
||||
msgid "Settings page"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin settings page link, 2: 'Settings' word
|
||||
#: includes/admin/views/dashboard.php:33
|
||||
msgid "Please set the site at <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:11
|
||||
msgid "Oh Dear Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/broken-widget.php:22
|
||||
#: includes/admin/views/templates/broken.php:50
|
||||
msgid "Status Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/broken-widget.php:28
|
||||
#: includes/admin/views/templates/broken.php:52
|
||||
msgid "Broken Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/broken-widget.php:34
|
||||
#: includes/admin/views/templates/broken.php:54
|
||||
msgid "Found on"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/broken.php:20
|
||||
msgid "Broken Links"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/broken.php:25
|
||||
#: includes/admin/views/templates/performance.php:25
|
||||
#: includes/admin/views/templates/uptime.php:24
|
||||
msgid "Open on Oh Dear"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/broken.php:35
|
||||
#: includes/admin/views/templates/performance.php:56
|
||||
msgid "Last time checked"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/broken.php:58
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/broken.php:86
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/broken.php:109
|
||||
msgid "No Broken Links for the current site"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/performance.php:20
|
||||
msgid "Performance"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/performance.php:56
|
||||
msgid "Last 7 days"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/performance.php:194
|
||||
msgid "No Performance stats for the current site"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/uptime.php:19
|
||||
msgid "Uptime"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Days count, 2: Date
|
||||
#: includes/admin/views/templates/uptime.php:47
|
||||
msgid "Last %1$s days. Last time checked: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/templates/uptime.php:115
|
||||
msgid "No Uptime stats for the current site"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/widgets.php:23
|
||||
msgid "Oh Dear Uptime"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/widgets.php:24
|
||||
msgid "Oh Dear Performance"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/widgets.php:25
|
||||
msgid "Oh Dear Broken Links"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/widgets.php:156
|
||||
msgid "View all "
|
||||
msgstr ""
|
||||
|
||||
#: ohdear.php:93
|
||||
msgid "Your version of PHP is below the minimum version of PHP required by this plugin. Please contact your host and request that your version be upgraded to 5.6 or later."
|
||||
msgstr ""
|
||||
|
||||
#: ohdear.php:107
|
||||
#: ohdear.php:118
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
4
spec/fixtures/dynamic_finders/plugin_version/order-tip-woo/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/order-tip-woo/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* First stable version
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user