Compare commits
28 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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,8 @@ AllCops:
|
||||
- 'vendor/**/*'
|
||||
Layout/LineLength:
|
||||
Max: 120
|
||||
Lint/MissingSuper:
|
||||
Enabled: false
|
||||
Lint/UriEscapeUnescape:
|
||||
Enabled: false
|
||||
Metrics/AbcSize:
|
||||
@@ -24,6 +26,8 @@ Metrics/MethodLength:
|
||||
Max: 20
|
||||
Exclude:
|
||||
- 'app/controllers/enumeration/cli_options.rb'
|
||||
Metrics/PerceivedComplexity:
|
||||
Max: 11
|
||||
Style/ClassVars:
|
||||
Enabled: false
|
||||
Style/Documentation:
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.4'
|
||||
VERSION = '3.8.7'
|
||||
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
|
||||
|
||||
@@ -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))) }
|
||||
|
||||
3045
spec/fixtures/db/dynamic_finders.yml
vendored
3045
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1139
spec/fixtures/dynamic_finders/expected.yml
vendored
1139
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
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
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 ""
|
||||
@@ -1193,8 +1193,8 @@ 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) -->
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -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 "קובע את תכונת ברירת המחדל במוצרים עם וריאציות."
|
||||
@@ -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,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
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 ""
|
||||
File diff suppressed because it is too large
Load Diff
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,145 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Kontur Copy Code Button 1.0.0 \n"
|
||||
"Report-Msgid-Bugs-To: https://profiles.wordpress.org/netzaufsicht/\n"
|
||||
"Last-Translator: Eilert Behrends <hello@kontur.us>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-25 20:09+0000\n"
|
||||
"PO-Revision-Date: 2020-07-25 22:25+0000\n"
|
||||
"X-Domain: kontur-copy-code-button\n"
|
||||
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Kontur Copy Code Button"
|
||||
msgstr "Kontur Copy Code Button"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/kontur-copy-code-button"
|
||||
msgstr "https://wordpress.org/kontur-copy-code-button"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Add your own \"kontur Copy Code Button\" <strong>with your own text, class, "
|
||||
"color</strong> and \"pre\" Background. Works as well with the \"WP Code Block"
|
||||
"\". The clicked button copies your code into the clipboard."
|
||||
msgstr ""
|
||||
"Erstelle Deinen eigenen \"kontur Copy Code Button\" <strong>mit Deinem Text, "
|
||||
"CSS-Klasse, Farbe</strong> und \"pre\" Background. Funktioniert mit dem "
|
||||
"\"WP Code Block\". Ein Klick auf den Button kopiert Deinen Code in die "
|
||||
"Zwischenablage."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Eilert Behrends"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/netzaufsicht"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:107
|
||||
msgid ">> Settings"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:120
|
||||
msgid "Coffee?"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:137
|
||||
msgid "kontur Copy Code Button"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:193
|
||||
msgid "SETTINGS UPDATED !"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:233
|
||||
msgid "Change Your Settings"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:239
|
||||
msgid "Set your own Text for the Button"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:242
|
||||
msgid "Copy Button Text:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:243
|
||||
msgid " e.g. \"Copy Code\""
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:246
|
||||
msgid "Text when copied:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:248
|
||||
msgid " e.g. \"Copied\""
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:251
|
||||
msgid "Save Button Label Texts"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:261
|
||||
msgid "You got the looks"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:263
|
||||
msgid "This is how it would look like right now:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:283
|
||||
msgid "Style it Baby"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:285
|
||||
msgid "Button <strong>Background Color</strong>:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:290 kontur-copy-code-button.php:297
|
||||
#: kontur-copy-code-button.php:305
|
||||
msgid "Current color: "
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:292
|
||||
msgid "Save Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:294
|
||||
msgid "Button <strong>Text Color</strong>:"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:298
|
||||
msgid "Save Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:302
|
||||
msgid "Code \"pre\" Block Background"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:308
|
||||
msgid "Save Box Background"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:322
|
||||
msgid "Get Classy"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:325
|
||||
msgid "Add your custom class(es) to make the button match your theme."
|
||||
msgstr ""
|
||||
|
||||
|
||||
#: kontur-copy-code-button.php:326
|
||||
msgid " Input goes like this for multiple classes: \"class1 class2 class3\""
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:330
|
||||
msgid "Save added classes"
|
||||
msgstr ""
|
||||
|
||||
#: kontur-copy-code-button.php:353
|
||||
msgid "Save all settings"
|
||||
msgstr ""
|
||||
16
spec/fixtures/dynamic_finders/plugin_version/lazy-youtube/composer_file/package.json
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/lazy-youtube/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "lazy-youtube",
|
||||
"version": "1.0.0",
|
||||
"description": "A gutenberg Youtube embed block that only loads Youtube assets when the user needs them.",
|
||||
"main": "",
|
||||
"scripts": {
|
||||
"start": "wp-scripts start block/src/lazy-youtube-block.js --output-path=block/dist",
|
||||
"build": "wp-scripts build block/src/lazy-youtube-block.js --output-path=block/dist",
|
||||
"lint:js": "wp-scripts lint-js"
|
||||
},
|
||||
"author": "Laytan Laats",
|
||||
"license": "GPL-2.0+",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "6.2.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
# Copyright (C) 2020 Laytan Laats
|
||||
# This file is distributed under the same license as the Lazy Youtube plugin.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lazy Youtube 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lazy-youtube\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-02-07 13:40+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: Poedit 1.8.7\n"
|
||||
"X-Domain: lazy-youtube\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Lazy Youtube"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/laytan/lazy-youtube"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A gutenberg Youtube embed block that only loads Youtube assets when the user needs them."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Laytan Laats"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/laytan"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:118 block/src/lazy-youtube-block.js:11
|
||||
msgid "Lazy youtube"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:119 block/src/lazy-youtube-block.js:12
|
||||
msgid "A youtube embed that only loads Youtube scripts when needed."
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:181 block/src/lazy-youtube-block.js:68
|
||||
msgid "Youtube embed options"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:183 block/src/lazy-youtube-block.js:71
|
||||
msgid "Youtube video link"
|
||||
msgstr ""
|
||||
|
||||
#: block/dist/lazy-youtube-block.js:184 block/src/lazy-youtube-block.js:72
|
||||
msgid "Youtube video link or embed link. allowed format is [https://www.youtube.com/watch?v=video_id]."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,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 ""
|
||||
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"
|
||||
}
|
||||
}
|
||||
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
|
||||
30
spec/fixtures/dynamic_finders/plugin_version/paperview-publisher/change_log/changelog.txt
vendored
Normal file
30
spec/fixtures/dynamic_finders/plugin_version/paperview-publisher/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
# 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).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.7.3] - 2020-07-31
|
||||
### Added
|
||||
- Released to WordPress Plugin Directory.
|
||||
### Fixed
|
||||
- Some under-the-hood improvements to the code (kudos to the WordPress Plugin Review team!).
|
||||
|
||||
## [0.7.2] - 2020-07-24
|
||||
### Added
|
||||
- Configuration option: default paywall availability.
|
||||
### Fixed
|
||||
- Corrected javascript bug that occurred when the Classic Editor was being used (with the WordPress plugin).
|
||||
- Texts in Portuguese now display correctly.
|
||||
|
||||
## [0.7.1] - 2020-07-22
|
||||
### Added
|
||||
- Configuration option: default user to associate to articles.
|
||||
### Changed
|
||||
- The Paperview User that is associated to an Article is now determined by: 1) article author; 2) current user; and 3) default user (in this order).
|
||||
|
||||
## [0.7.0] - 2020-05-18
|
||||
### Added
|
||||
- Initial release.
|
||||
@@ -0,0 +1,277 @@
|
||||
# Copyright (C) 2020 PhotoShelter
|
||||
# This file is distributed under the same license as the PhotoShelter Importer plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PhotoShelter Importer 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/photoshelter-importer\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-31T17:06:01+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: photoshelter-importer\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "PhotoShelter Importer"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.photoshelter.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "PhotoShelter Digital Asset Manager integration with WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: assets/src/js/blocks/ps-media/index.js:24
|
||||
msgid "PhotoShelter"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: list of required fields
|
||||
#: includes/classes/API/Auth/DataSource.php:45
|
||||
msgid "Auth\\authenticate_organization() is missing the following required fields: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: list of required fields
|
||||
#: includes/classes/API/Auth/DataSource.php:83
|
||||
msgid "Auth\\deauthenticate_organization() is missing the following required fields: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$d: Numeric HTTP status code (e.g. 400, 403, 500, etc.), %2$s Error message, if any.
|
||||
#: includes/classes/API/ClientRemote.php:75
|
||||
#: includes/classes/APIv3/ClientRemote.php:76
|
||||
#: includes/classes/APIv3/ClientRemote.php:88
|
||||
msgid "Bad response from API (%1$d): %2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: list of required fields
|
||||
#: includes/classes/API/Media/DataSource.php:49
|
||||
msgid "Media\\download_media() is missing the following required fields: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: list of required fields
|
||||
#: includes/classes/API/Media/DataSource.php:92
|
||||
msgid "Media\\get_media() is missing the following required fields: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: list of required fields
|
||||
#: includes/classes/API/OAuth/DataSource.php:58
|
||||
msgid "OAuth\\register() is missing the following required fields: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: list of required fields
|
||||
#: includes/classes/API/OAuth/DataSource.php:106
|
||||
#: includes/classes/APIv3/Organization/DataSource.php:91
|
||||
msgid "OAuth\\token() is missing the following required fields: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: list of required fields
|
||||
#: includes/classes/APIv3/Organization/DataSource.php:43
|
||||
msgid "OAuth\\get_organization() is missing the following required fields: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:63
|
||||
msgid "Account Details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:71
|
||||
msgid "PhotoShelter API Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:79
|
||||
msgid "Where can I find my API Key?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:101
|
||||
msgid "Authorize through PhotoShelter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:112
|
||||
msgid "PhotoShelter Org ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:120
|
||||
msgid "Where can I find my Org ID?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:160
|
||||
msgid "PhotoShelter Importer Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:161
|
||||
#: includes/functions/admin.php:169
|
||||
#: includes/functions/admin.php:170
|
||||
msgid "PS Importer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:357
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:385
|
||||
msgid "Please enter your PhotoShelter API Key in order to access your Library."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:408
|
||||
msgid "Enter API Key here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:473
|
||||
msgid "Enter Org ID here, if you have one."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:502
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:536
|
||||
msgid "Invalid API key specified."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:549
|
||||
msgid "Invalid Org ID specified."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:670
|
||||
msgid "organization"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:675
|
||||
#: includes/functions/rest-api.php:101
|
||||
msgid "Library"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the organition name
|
||||
#: includes/functions/admin.php:719
|
||||
msgid "Logged into %s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the organition name
|
||||
#: includes/functions/admin.php:721
|
||||
msgid "Logged out of %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/admin.php:755
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/rest-api.php:241
|
||||
msgid "Access granted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/rest-api.php:268
|
||||
#: includes/functions/rest-api.php:351
|
||||
msgid "Unexpected input"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/rest-api.php:282
|
||||
#: includes/functions/rest-api.php:464
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the tmp file path
|
||||
#: includes/functions/rest-api.php:376
|
||||
msgid "Response in unexpected format: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the tmp file path
|
||||
#: includes/functions/rest-api.php:399
|
||||
msgid "Unable to write to file system: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the tmp file path
|
||||
#: includes/functions/rest-api.php:424
|
||||
msgid "Unable to sideload attachment: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the error message
|
||||
#: includes/helpers/api.php:26
|
||||
msgid "API Response error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/blocks/ps-media/index.js:25
|
||||
msgid "PhotoShelter Media Block"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/blocks/ps-media/index.js:29
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/Breadcrumbs.js:38
|
||||
msgid "Galleries"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/Collection.js:12
|
||||
msgid "Retrieving collection..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/Collection.js:31
|
||||
msgid "Collection is empty"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/Gallery.js:12
|
||||
msgid "Retrieving gallery..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/Gallery.js:35
|
||||
msgid "Gallery is empty"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/LibraryHome.js:29
|
||||
msgid "Fetching library..."
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/LibraryPlaceholder.js:47
|
||||
msgid "Browse or search your PhotoShelter Library"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/LibraryPlaceholder.js:49
|
||||
msgid "Open Library"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/SearchForm.js:44
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/SearchResults.js:40
|
||||
msgid "There are no results yet"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/SearchResults.js:41
|
||||
msgid "Try a new search or change your filters."
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/SearchResults.js:47
|
||||
msgid "Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/ThumbnailGallery.js:50
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/components/ThumbnailGallery.js:50
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/utilities/fetch.js:23
|
||||
msgid "Bad JSON response."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s is the status code, and %2$s is the status text.
|
||||
#: assets/src/js/utilities/fetch.js:76
|
||||
msgid "Status code: %1$s | %2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the stringified JSON response.
|
||||
#: assets/src/js/utilities/fetch.js:86
|
||||
msgid "Got unexpected response object: %s"
|
||||
msgstr ""
|
||||
|
||||
#: assets/src/js/utilities/fetch.js:101
|
||||
msgid "An unknown error occurred."
|
||||
msgstr ""
|
||||
10
spec/fixtures/dynamic_finders/plugin_version/post-to-flarum/change_log/CHANGELOG.md
vendored
Normal file
10
spec/fixtures/dynamic_finders/plugin_version/post-to-flarum/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
# Version 0.2.1 beta 2020-07-22
|
||||
* Changed `apply_filter` for `do_shortcode` to avoid iframes
|
||||
|
||||
# Version 0.2.0 beta 2020-07-18
|
||||
* The plugin has been completely rewritten and now it uses the Flarum API instead of making changes directly in the database
|
||||
|
||||
# Version 0.1.0 beta 2018-10-15
|
||||
|
||||
## Initial version
|
||||
* Initial version of `post-to-flarum` plugin submitted
|
||||
@@ -0,0 +1,839 @@
|
||||
# Copyright (C) 2020 Posti
|
||||
# This file is distributed under the same license as the Posti Shipping for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Posti Shipping for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
|
||||
"shipping-plugin\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-30T12:25:24+00:00\n"
|
||||
"PO-Revision-Date: 2020-04-30 15:46+0300\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: en\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Posti Shipping for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/PostiDigital/plugin-woocommerce-itella"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Posti shipping service for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: posti_shipping/classes/class-text.php:15
|
||||
msgid "Posti"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.posti.fi/"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:94 core/class-admin.php:117
|
||||
msgid ""
|
||||
"Thank you for installing WooCommerce Pakettikauppa! To get started smoothly, "
|
||||
"please open our setup wizard."
|
||||
msgstr ""
|
||||
"Thank you for installing WooCommerce Posti! To get started smoothly, please "
|
||||
"open our setup wizard."
|
||||
|
||||
#: core/class-admin.php:174
|
||||
msgid "HS tariff number"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:176
|
||||
msgid ""
|
||||
"The HS tariff number must be based on the Harmonized Commodity Description "
|
||||
"and Coding System developed by the World Customs Organization."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:182
|
||||
msgid "Country of origin"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:184
|
||||
msgid ""
|
||||
"\"Country of origin\" means the country where the goods originated, e.g. "
|
||||
"were produced/manufactured or assembled."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:249
|
||||
msgid "Create and fetch shipping labels"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:280
|
||||
msgid "Create shipping label"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:327
|
||||
msgid "Cannot find shipments with given shipment numbers."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:389
|
||||
msgid ""
|
||||
"WooCommerce Pakettikauppa has been installed/updated but no shipping methods "
|
||||
"are currently active!"
|
||||
msgstr ""
|
||||
"WooCommerce Posti has been installed/updated but no shipping methods are "
|
||||
"currently active!"
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-admin.php:426 core/class-admin.php:888 core/class-admin.php:915
|
||||
#: core/class-shipment.php:213
|
||||
msgid "An error occurred: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:445
|
||||
msgid "Visit Pakettikauppa"
|
||||
msgstr "Visit Posti"
|
||||
|
||||
#: core/class-admin.php:446
|
||||
msgid "Show site Pakettikauppa"
|
||||
msgstr "Show site Posti"
|
||||
|
||||
#: core/class-admin.php:494
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:506 core/class-admin.php:646 core/class-admin.php:1002
|
||||
#: core/class-admin.php:1009
|
||||
msgid "Requested pickup point"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:510
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:528
|
||||
msgid ""
|
||||
"Please add shipping info to the order to manage Pakettikauppa shipments."
|
||||
msgstr "Please add shipping info to the order to manage Posti shipments."
|
||||
|
||||
#: core/class-admin.php:583 core/class-admin.php:609
|
||||
msgid "Label code"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:587 core/class-admin.php:613
|
||||
#: core/class-shipment.php:251
|
||||
msgid "Print document"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:589 core/class-admin.php:614
|
||||
#: core/class-shipment.php:252
|
||||
msgid "Track"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:593
|
||||
msgid "Update Status"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:594
|
||||
msgid "Create Return Label"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:597 core/class-admin.php:617
|
||||
msgid "Delete Shipping Label"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:599
|
||||
msgid "Delete Shipping Label and return labels"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:626
|
||||
msgid "Additional services"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:637 core/class-admin.php:687
|
||||
msgid "Parcel count"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:656 core/class-text.php:50
|
||||
msgid "No shipping"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:697
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:700
|
||||
msgid "Change shipping..."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:826
|
||||
msgid "Unable to create return label for this shipment type."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %%s: tracking code
|
||||
#: core/class-admin.php:869 core/class-admin.php:877
|
||||
msgid "Successfully deleted Pakettikauppa shipping label %s."
|
||||
msgstr "Successfully deleted Posti shipping label %s."
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-admin.php:895
|
||||
msgid "Deleting Pakettikauppa shipment failed! Errors: %s"
|
||||
msgstr "Deleting Posti shipment failed! Errors: %s"
|
||||
|
||||
#: core/class-admin.php:928
|
||||
msgid "Shipment tracking code is not defined."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:938
|
||||
msgid "Cannot find shipment with given shipment number."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Shipment tracking url
|
||||
#: core/class-admin.php:1006
|
||||
msgid ""
|
||||
"You can track your order at %1$s.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:1013
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Shipment tracking URL 2: Shipment tracking code
|
||||
#: core/class-admin.php:1015
|
||||
msgid "You can <a href=\"%1$s\">track your order</a> with tracking code %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:60
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:62
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:163
|
||||
msgid "An error occurred. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:366 core/class-frontend.php:367
|
||||
#: core/class-frontend.php:516
|
||||
msgid "Pickup point"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:377
|
||||
msgid "Insert your shipping details to view nearby pickup points"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Postcode
|
||||
#: core/class-frontend.php:383
|
||||
msgid "Invalid postcode \"%1$s\". Please check your address information."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:419
|
||||
msgid "Choose one of pickup points close to the address you entered:"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:489
|
||||
msgid "Select a pickup point"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:530
|
||||
msgid "Please choose a pickup point."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:92
|
||||
msgid "Item is collected from sender - picked up"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:95
|
||||
msgid "Exception"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:98
|
||||
msgid "Item has been handed over to the recipient"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:101
|
||||
msgid "Item is in transport"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:104
|
||||
msgid "C.O.D payment is paid to the sender"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:107
|
||||
msgid "Informed consignee of arrival"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:110
|
||||
msgid "Item is loaded onto a means of transport"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:113
|
||||
msgid "Item not delivered – delivery attempt made"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:116
|
||||
msgid "Pre-information is received from sender"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:119
|
||||
msgid "Item is ready for delivery transportation"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:122
|
||||
msgid "Item is returning to the sender"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:125
|
||||
msgid "Item is arrived to a post office"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:128
|
||||
msgid "Outbound"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Status code
|
||||
#: core/class-shipment.php:132
|
||||
msgid "Unknown status: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:167
|
||||
msgid ""
|
||||
"The shipping label was not created because the order does not contain valid "
|
||||
"shipping method."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:179
|
||||
msgid ""
|
||||
"The shipping label was not created because the order does not contain valid "
|
||||
"shipping details."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-shipment.php:208
|
||||
msgid "Failed to create Pakettikauppa shipment. Errors: %s"
|
||||
msgstr "Failed to create Posti shipment. Errors: %s"
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-shipment.php:222 core/class-shipment.php:227
|
||||
msgid "Failed to create Pakettikauppa shipment."
|
||||
msgstr "Failed to create Posti shipment."
|
||||
|
||||
#. translators: 1: Shipping service title 2: Shipment tracking code 3: Shipping label URL 4: Shipment tracking URL
|
||||
#: core/class-shipment.php:259
|
||||
msgid "Created Pakettikauppa %1$s shipment.<br>%2$s<br>%1$s - %3$s<br>%4$s"
|
||||
msgstr "Created Posti %1$s shipment.<br>%2$s<br>%1$s - %3$s<br>%4$s"
|
||||
|
||||
#: core/class-shipment.php:272
|
||||
msgid "Posting label to URL failed!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:276
|
||||
msgid "Label posted to URL successfully."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-shipment.php:639
|
||||
msgid "WooCommerce Pakettikauppa: tracking code creation failed: %s"
|
||||
msgstr "WooCommerce Posti: tracking code creation failed: %s"
|
||||
|
||||
#: core/class-shipping-method.php:192
|
||||
msgid "Zone name"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:195
|
||||
msgid "Zone regions"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:197
|
||||
msgid "Shipping method(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:294 core/class-shipping-method.php:313
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:315
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:331
|
||||
msgid "Shipping class costs"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: URL for link.
|
||||
#: core/class-shipping-method.php:335
|
||||
msgid ""
|
||||
"These costs can optionally be added based on the <a href=\"%s\">product "
|
||||
"shipping class</a>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: shipping class cost
|
||||
#: core/class-shipping-method.php:349
|
||||
msgid "\"%s\" shipping class cost"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:359 core/class-shipping-method.php:396
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:374
|
||||
msgid "Calculation type"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:379
|
||||
msgid "Per class: Charge shipping for each shipping class individually"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:380
|
||||
msgid "Per order: Charge shipping for the most expensive shipping class"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order status
|
||||
#: core/class-shipping-method.php:477 core/class-shipping-method.php:489
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order status
|
||||
#: core/class-shipping-method.php:478 core/class-shipping-method.php:491
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:602 core/class-shipping-method.php:611
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:603 core/class-shipping-method.php:612
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:26
|
||||
msgid "WooCommerce Pakettikauppa › Setup Wizard"
|
||||
msgstr "WooCommerce Posti › Setup Wizard"
|
||||
|
||||
#: core/class-text.php:30
|
||||
msgid "Start the setup wizard"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:34
|
||||
msgid "Pakettikauppa"
|
||||
msgstr "Posti"
|
||||
|
||||
#: core/class-text.php:38
|
||||
msgid "Edit to select shipping company and shipping prices."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: shipping method
|
||||
#: core/class-text.php:44
|
||||
msgid "Selected shipping method: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:54
|
||||
msgid "includes pickup points"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:58
|
||||
msgid "Select one shipping method"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:62
|
||||
msgid ""
|
||||
"Can not connect to Pakettikauppa server - please check Pakettikauppa API "
|
||||
"credentials, servers error log and firewall settings."
|
||||
msgstr ""
|
||||
"Can not connect to Posti server - please check Pakettikauppa API "
|
||||
"credentials, servers error log and firewall settings."
|
||||
|
||||
#. translators: Vendor name, not translatable
|
||||
#: core/class-text.php:72
|
||||
msgid ""
|
||||
"Only use this shipping method if no other shipping methods are available and "
|
||||
"suitable. Using this shipping method is not required to be able to use %s "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:81
|
||||
msgid "Shipping methods"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:85
|
||||
msgid "Shipping method"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:89
|
||||
msgid "Price (vat included)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:93
|
||||
msgid "Shipping cost"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:97
|
||||
msgid "Shipping cost (vat included)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:101
|
||||
msgid "Free shipping tier"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:105
|
||||
msgid "After which amount shipping is free."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:109
|
||||
msgid "Default shipping class cost"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:113
|
||||
msgid "No shipping class cost (vat included)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Vendor name, not translatable
|
||||
#: core/class-text.php:123
|
||||
msgid "Link to %s website"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:127
|
||||
msgid "Not now"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:131
|
||||
msgid "Skip this step"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:135
|
||||
msgid "Let's start!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:139
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:143
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:147
|
||||
msgid ""
|
||||
"Thank you for installing WooCommerce Pakettikauppa! This wizard will guide "
|
||||
"you through the setup process to get you started."
|
||||
msgstr ""
|
||||
"Thank you for installing WooCommerce Posti! This wizard will guide you "
|
||||
"through the setup process to get you started."
|
||||
|
||||
#. translators: %1$s: Vendor name, not translateable %2$s: Vendor url, not translateable
|
||||
#: core/class-text.php:165
|
||||
msgid ""
|
||||
"If you have already registered with %1$s, please choose \"Production mode\" "
|
||||
"and enter the credentials you received from %1$s. If you have not yet "
|
||||
"registered, please register at <a target=\"_blank\" rel=\"noopener noreferrer"
|
||||
"\" href=\"%2$s\">%2$s</a>. If you wish to test the plugin before making a "
|
||||
"contract with %1$s, please choose \"Test mode\" and leave the API secret/key "
|
||||
"fields empty."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:175
|
||||
msgid ""
|
||||
"Please fill the details of the merchant below. The information provided here "
|
||||
"will be used as the sender in shipping labels."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: link to WooCommerce shipping zone setting page %2$s: link to external WooCommerce documentation
|
||||
#: core/class-text.php:188
|
||||
msgid ""
|
||||
"Please configure the shipping methods of the currently active shipping zones "
|
||||
"to use Pakettikauppa shipping. Note that this plugin requires WooCommerce "
|
||||
"shipping zones and methods to be preconfigured in <a href=\"%1$s"
|
||||
"\">WooCommerce > Settings > Shipping > Shipping zones</a>. For more "
|
||||
"information, visit <a target=\"_blank\" href=\"%2$s\">%2$s</a>."
|
||||
msgstr ""
|
||||
"Please configure the shipping methods of the currently active shipping zones "
|
||||
"to use Posti shipping. Note that this plugin requires WooCommerce shipping "
|
||||
"zones and methods to be preconfigured in <a href=”%1$s”>WooCommerce > "
|
||||
"Settings > Shipping > Shipping zones</a>. For more information, visit <a "
|
||||
"target=”_blank” href=”%2$s”>%2$s</a>."
|
||||
|
||||
#: core/class-text.php:195
|
||||
msgid "Customize the order processing phase."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:199
|
||||
msgid ""
|
||||
"Congratulations, everything is now set up and you are now ready to start "
|
||||
"using the plugin!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:203
|
||||
msgid "Credentials"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:207
|
||||
msgid "Merchant"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:211
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:215
|
||||
msgid "Order Processing"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:219
|
||||
msgid "Ready!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:223
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:227
|
||||
msgid "Mode"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:231
|
||||
msgid "Testing environment"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:235
|
||||
msgid "Production environment"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:239
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: Vendor name, not translatable
|
||||
#: core/class-text.php:248
|
||||
msgid "API key provided by %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:254
|
||||
msgid "API secret"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: Vendor name, not translatable
|
||||
#: core/class-text.php:263
|
||||
msgid "API secret provided by %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:269
|
||||
msgid "Shipping methods mapping"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:273
|
||||
msgid "Shipping settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: WooCommerce URL, not translatable
|
||||
#: core/class-text.php:282
|
||||
msgid ""
|
||||
"You can activate new shipping method to checkout in <b>WooCommerce > "
|
||||
"Settings > Shipping > Shipping zones</b>. For more information, see <a "
|
||||
"target=\"_blank\" href=\"%1$s\">%1$s</a>"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:288
|
||||
msgid "Add tracking link to the order completed email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:292
|
||||
msgid "Add selected pickup point information to the order completed email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:296
|
||||
msgid "When creating shipping label change order status to"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:300
|
||||
msgid "No order status change"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:304
|
||||
msgid "Create shipping labels automatically"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:308
|
||||
msgid "No automatic creation of shipping labels"
|
||||
msgstr ""
|
||||
|
||||
#. translators: order status, pretranslated
|
||||
#: core/class-text.php:313
|
||||
msgid "When order status is \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:317
|
||||
msgid "Print labels"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:321
|
||||
msgid "Browser"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:325
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:329
|
||||
msgid "Post shipping label to URL"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:333
|
||||
msgid ""
|
||||
"Plugin can upload shipping label to an URL when creating shipping label. "
|
||||
"Define URL if you want to upload PDF."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:337
|
||||
msgid "Pickup point search limit"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:341
|
||||
msgid "Limit the amount of nearest pickup points shown."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:345
|
||||
msgid "Show pickup points as"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:349
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:353
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:357
|
||||
msgid "Store owner information"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:361
|
||||
msgid "Sender name"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:365
|
||||
msgid "Sender address"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:369
|
||||
msgid "Sender postal code"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:373
|
||||
msgid "Sender city"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:377
|
||||
msgid "Sender country"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:381
|
||||
msgid "Sender phone"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:385
|
||||
msgid "Sender email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:389
|
||||
msgid "Info-code for shipments"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:393
|
||||
msgid "Cash on Delivery (COD) Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:397
|
||||
msgid "Bank account number for Cash on Delivery (IBAN)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:401
|
||||
msgid "BIC code for Cash on Delivery"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:405
|
||||
msgid "Advanced settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:409
|
||||
msgid "Show Pakettikauppa shipping method"
|
||||
msgstr "Show Posti shipping method"
|
||||
|
||||
#: core/class-text.php:413
|
||||
msgid ""
|
||||
"WooCommerce Pakettikauppa requires WooCommerce to be installed and activated!"
|
||||
msgstr "WooCommerce Posti requires WooCommerce to be installed and activated!"
|
||||
|
||||
#: core/class-text.php:417
|
||||
msgid "No pickup points were found. Check the address."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:421
|
||||
msgid "An error occurred while searching for pickup points."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:425
|
||||
msgid ""
|
||||
"If none of your preferred pickup points are listed, fill in a custom address "
|
||||
"above and select another pickup point."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:429
|
||||
msgid "Custom pickup address"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:433
|
||||
msgid "Pickup address"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:437
|
||||
msgid "Search pickup points near you by typing your address above."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:441
|
||||
msgid "Show pickup point override in checkout"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:445
|
||||
msgid ""
|
||||
"The pickup point you've chosen is not available for public access. Are you "
|
||||
"sure that you can retrieve the package?"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:11
|
||||
msgid "WooCommerce Posti › Setup Wizard"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:19
|
||||
msgid ""
|
||||
"Thank you for installing WooCommerce Posti! This wizard will guide you "
|
||||
"through the setup process to get you started."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: link to WooCommerce shipping zone setting page %2$s: link to external WooCommerce documentation
|
||||
#: posti_shipping/classes/class-text.php:29
|
||||
msgid ""
|
||||
"Please configure the shipping methods of the currently active shipping zones "
|
||||
"to use Posti shipping. Note that this plugin requires WooCommerce shipping "
|
||||
"zones and methods to be preconfigured in <a href=\"%1$s\">WooCommerce > "
|
||||
"Settings > Shipping > Shipping zones</a>. For more information, visit <a "
|
||||
"target=\"_blank\" href=\"%2$s\">%2$s</a>."
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:36
|
||||
msgid "Show Posti shipping method"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:40
|
||||
msgid "WooCommerce Posti requires WooCommerce to be installed and activated!"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:44
|
||||
msgid ""
|
||||
"WooCommerce Posti can't be activated at the same time with WooCommerce "
|
||||
"Pakettikauppa. Deactivate WooCommerce Pakettikauppa!"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -82,6 +82,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3dprint-lite/includes/ext/easyaspie/assets/js/easyaspie.js?ver=1.7.1"></script>
|
||||
|
||||
|
||||
<!-- 5usujian-bottom-pop -->
|
||||
<link rel="stylesheet" id="5usujian-bottom-pop-css-css" href="//wp.lab/wp-content/plugins/5usujian-bottom-pop/asset/css/5usujian-bottom-pop.css?ver=1.0.2" media="all">
|
||||
<script src="//wp.lab/wp-content/plugins/5usujian-bottom-pop/asset/js/5usujian-bottom-pop.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- 5usujian-super-serv -->
|
||||
<link rel="stylesheet" id="5usujian-serv-icon-css-css" href="http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/css/wysj-iconfont.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="5usujian-serv-trade-css-css" href="http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/css/5usujian-serv-trade.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -398,6 +403,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/admin-keys/assets/js/mousetrap-global-bind.min.js?ver=1.4.0"></script>
|
||||
|
||||
|
||||
<!-- ads-pixel -->
|
||||
<link rel="stylesheet" id="facebook-pixel-css" href="http://wp.lab/wp-content/plugins/ads-pixel/public/css/facebook-pixel-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/ads-pixel/public/js/facebook-pixel-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- adsense-plugin -->
|
||||
<link rel="stylesheet" id="adsns_css-css" href="http://wp.lab/wp-content/plugins/adsense-plugin/css/adsns.css?ver=1.47" type="text/css" media="all">
|
||||
|
||||
@@ -636,6 +646,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ainow/assets/scripts/front.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- aio-contact-lite -->
|
||||
<link rel="stylesheet" id="animate.css-css" href="http://wp.lab/wp-content/plugins/aio-contact-lite/vendor/animate/animate.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="fontawesome-free-css" href="http://wp.lab/wp-content/plugins/aio-contact-lite/vendor/fontawesome-free/all.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="aio-contact-lite-css" href="http://wp.lab/wp-content/plugins/aio-contact-lite/public/css/aio-contact-lite-public.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/aio-contact-lite/public/js/aio-contact-lite-public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ajar-productions-in5-embed -->
|
||||
<link rel="stylesheet" id="in5-public-css" href="http://wp.lab/wp-content/plugins/ajar-productions-in5-embed/assets/css/public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ajar-productions-in5-embed/assets/js/screenfull.js?ver=1.0.0"></script>
|
||||
@@ -947,6 +964,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/apex-notification-bar-lite/js/frontend/frontend.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- api-car-trawler -->
|
||||
<link rel="stylesheet" id="api-for-car-trawler-css" href="http://wp.lab/wp-content/plugins/api-car-trawler/public/css/api-for-car-trawler-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/api-car-trawler/public/js/api-for-car-trawler-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- apostle-social-wall -->
|
||||
<link rel="stylesheet" id="apostle-social-wall-css" href="http://wp.lab/wp-content/plugins/apostle-social-wall/public/css/apostle-social-wall-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/apostle-social-wall/public/js/apostle-social-wall-public.js?ver=1.0.0"></script>
|
||||
@@ -1168,6 +1190,11 @@
|
||||
<link rel="stylesheet" id="atsi-style-css" href="http://wp.lab/wp-content/plugins/atticthemes-social-icons/css/atticthemes-social-icons-style.min.css?ver=2.1.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- auctions-near-me -->
|
||||
<link rel="stylesheet" id="auctions-near-me-font-css-css" href="http://wp.lab/wp-content/plugins/auctions-near-me/assets/css/auctions-near-me-font.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="auctions-near-me-style-css" href="http://wp.lab/wp-content/plugins/auctions-near-me/assets/css/auctions-near-me.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- audio-player-with-playlist-ultimate -->
|
||||
<link rel="stylesheet" id="apwpultimate-public-style-css" href="http://wp.lab/wp-content/plugins/audio-player-with-playlist-ultimate/assets/css/apwpultimate-public-style.css?ver=1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="apwpultimate-jplayer-style-css" href="http://wp.lab/wp-content/plugins/audio-player-with-playlist-ultimate/assets/css/jplayer.blue.monday.min.css?ver=1.1" type="text/css" media="all">
|
||||
@@ -2267,6 +2294,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/br-knowledge-base/public/js/BR_KNOWLEDGE_BASE-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- brader-kits -->
|
||||
<link rel="stylesheet" id="brader-kits-css" href="http://wp.lab/wp-content/plugins/brader-kits/public/css/brader-kits-public.css?ver=20.8.21" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/brader-kits/public/js/brader-kits-public.js?ver=20.8.21"></script>
|
||||
|
||||
|
||||
<!-- branding -->
|
||||
<link rel="stylesheet" id="lolita-css-loader-css" href="http://wp.lab/wp-content/plugins/branding/LolitaFramework/CssLoader/assets/css/lolita_css_loader.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -3020,6 +3052,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chessgame-shizzle/frontend/js/chessgame-shizzle-frontend.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- chilexpress-oficial -->
|
||||
<link rel="stylesheet" id="chilexpress-woo-oficial-css" href="http://wp.lab/wp-content/plugins/chilexpress-oficial/public/css/chilexpress-woo-oficial-public.css?ver=1.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/chilexpress-oficial/public/js/chilexpress-woo-oficial-public.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- chiliforms -->
|
||||
<link rel="stylesheet" id="chiliforms_css-css" href="http://wp.lab/wp-content/plugins/chiliforms/assets/css/bundle/chiliforms.css?ver=0.5.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chiliforms/js/build/clientside/chiliforms.js?ver=0.5.1"></script>
|
||||
@@ -3082,6 +3119,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/classy/public/js/classy-public.js?ver=1.2.3"></script>
|
||||
|
||||
|
||||
<!-- clean-social-icons -->
|
||||
<link rel="stylesheet" id="clean-social-icons-css" href="http://wp.lab/wp-content/plugins/clean-social-icons/public/css/style.css?ver=0.9.11" media="all">
|
||||
<link rel="stylesheet" id="clean-social-icons-fa-css" href="http://wp.lab/wp-content/plugins/clean-social-icons/public/icons/css/all.min.css?ver=0.9.11" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/clean-social-icons/public/js/clean-social-icons-public.js?ver=0.9.11"></script>
|
||||
|
||||
|
||||
<!-- cleantalk-spam-protect -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cleantalk-spam-protect/inc/cleantalk_nocache.js?ver=5.82"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cleantalk-spam-protect/js/apbct-public.js?ver=5.82"></script>
|
||||
@@ -3184,6 +3227,13 @@
|
||||
<link rel="stylesheet" id="cm-idin-css" href="http://wp.lab/wp-content/plugins/cm-idin/css/style.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- cm-tiktok-feed -->
|
||||
<link rel="stylesheet" id="wtiktok-styles-css" href="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/wtiktok.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="wtik_instag-slider-css" href="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/templates.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="wtik_wtik-header-css" href="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/css/wtik-header.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/cm-tiktok-feed/assets/js/jquery.flexslider-min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- cn-custom-tabs -->
|
||||
<link rel="stylesheet" id="cn-custom-woo-tabs-css" href="http://wp.lab/wp-content/plugins/cn-custom-tabs/public/css/cn-custom-woo-tabs-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cn-custom-tabs/public/js/cn-custom-woo-tabs-public.js?ver=1.0.0"></script>
|
||||
@@ -3212,6 +3262,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/code-editor-and-compiler/code-prettify-master/loader/run_prettify.js?callback=cdbx_publicInit&ver=1.4.1"></script>
|
||||
|
||||
|
||||
<!-- code-for-cj-affiliate-network -->
|
||||
<script src="http://wp.lab/wp-content/plugins/code-for-cj-affiliate-network/inc/save_affiliate_referral_info.js?ver=2.11"></script>
|
||||
|
||||
|
||||
<!-- code-prettify -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/code-prettify/prettify/run_prettify.js?ver=1.3.4"></script>
|
||||
|
||||
@@ -3685,6 +3739,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/coupons/frontend/js/frontend.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- courier-notices -->
|
||||
<link rel="stylesheet" id="courier-notices-css" href="http://wp.lab/wp-content/plugins/courier-notices/css/courier-notices.css?ver=1.2.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/courier-notices/js/courier-notices.js?ver=1.2.3"></script>
|
||||
|
||||
|
||||
<!-- course-migration-for-learndash -->
|
||||
<link rel="stylesheet" id="sfwd-lms-course-migration-css" href="http://wp.lab/wp-content/plugins/course-migration-for-learndash/public/css/sfwd-lms-course-migration-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/course-migration-for-learndash/public/js/sfwd-lms-course-migration-public.js?ver=1.0.0"></script>
|
||||
@@ -3742,6 +3801,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cpf-e-cnpj-para-contact-form-7/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- cpt-ajax-load-more -->
|
||||
<script src="http://wp.lab/wp-content/plugins/cpt-ajax-load-more/assets/js/app.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cpt-list -->
|
||||
<link rel="stylesheet" id="cpt-list-style-css" href="http://wp.lab/wp-content/plugins/cpt-list/css/cpt-list.css?ver=0.1.1" type="text/css" media="all">
|
||||
|
||||
@@ -3882,6 +3945,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-accordion-block/js/custom-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- custom-api-for-wp -->
|
||||
<link rel="stylesheet" id="custom-api-for-wp-css" href="http://wp.lab/wp-content/plugins/custom-api-for-wp/public/css/custom-api-for-wordpress-public.css?ver=1.1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/custom-api-for-wp/public/js/custom-api-for-wordpress-public.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- custom-checkout-layouts-for-woocommerce -->
|
||||
<link rel="stylesheet" id="custom-checkout-css-css" href="http://wp.lab/wp-content/plugins/custom-checkout-layouts-for-woocommerce/css/custom-checkout.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -4686,6 +4754,10 @@
|
||||
<script type='text/javascript' src='http://wp.lab/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=1.7.11'></script>
|
||||
|
||||
|
||||
<!-- eli-for-digital-magazines -->
|
||||
<script src="http://wp.lab/wp-content/plugins/eli-for-digital-magazines/script.js?ver=2.2"></script>
|
||||
|
||||
|
||||
<!-- ellie-code-snippet -->
|
||||
<link rel="stylesheet" id="ellie-code-snippet-css" href="http://wp.lab/wp-content/plugins/ellie-code-snippet/public/css/ellie-code-snippet-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ellie-code-snippet/public/js/ellie-code-snippet-public.js?ver=1.0.0"></script>
|
||||
@@ -6116,6 +6188,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/getwid/assets/js/frontend.blocks.js?ver=1.3.1"></script>
|
||||
|
||||
|
||||
<!-- getwid-megamenu -->
|
||||
<link rel="stylesheet" id="getwid-megamenu-block-style-css" href="http://wp.lab/wp-content/plugins/getwid-megamenu/build/style-index.css?ver=0.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/getwid-megamenu/build/frontend.js?ver=0.0.1"></script>
|
||||
|
||||
|
||||
<!-- gf-fields-persistence -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gf-fields-persistence/assets/js/gf-field-persistence.js?ver=1.0.1"></script>
|
||||
|
||||
@@ -6332,6 +6409,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/graph-lite/public/js/graphs-lite-public.js?ver=2.0.2"></script>
|
||||
|
||||
|
||||
<!-- graphina-elementor-charts-and-graphs -->
|
||||
<link rel="stylesheet" id="graphina-charts-for-elementor-css" href="http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/css/graphina-charts-for-elementor-public.css?ver=0.0.5" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/js/apexcharts.min.js?ver=0.0.5"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/graphina-elementor-charts-and-graphs/elementor/js/graphina-charts-for-elementor-public.js?ver=0.0.5"></script>
|
||||
|
||||
|
||||
<!-- gravitate-event-tracking -->
|
||||
<script type="text/javascript" defer src="http://wp.lab/wp-content/plugins/gravitate-event-tracking/gravitate_event_tracking.js?v=1.5.3"></script>
|
||||
|
||||
@@ -6405,6 +6488,23 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gridable/public/js/gridable-scripts.js?ver=1.2.2"></script>
|
||||
|
||||
|
||||
<!-- grit-portfolio -->
|
||||
<link rel="stylesheet" id="grit-portfolio-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/css/grit-portfolio-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="grit-portfoliofont-awesome-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="grit-portfolioanimate-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/animate.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="grit-portfoliomagnific-popup-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/magnific-popup.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="grit-portfolioowl-carousel-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/owl.carousel.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="grit-portfoliostyle-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/style.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="grit-portfolioresponsive-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/responsive.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/js/grit-portfolio-public.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/jquery.magnific-popup.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/owl.carousel.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/wow.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/isotope.pkgd.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/imagesloaded.pkgd.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/main.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- grit-taxonomy-filter -->
|
||||
<link rel="stylesheet" id="grit_taxonomy_filter-css" href="http://wp.lab/wp-content/plugins/grit-taxonomy-filter/public/css/grit-taxonomy-filter-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/grit-taxonomy-filter/public/js/grit-taxonomy-filter-public.js?ver=1.0.0"></script>
|
||||
@@ -6764,6 +6864,8 @@
|
||||
<!-- hootkit -->
|
||||
<link rel="stylesheet" id="hootkit-css" href="http://wp.lab/wp-content/plugins/hootkit/assets/hootkit.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hootkit/assets/hootkit.min.js?ver=1.0.1"></script>
|
||||
<link rel="stylesheet" id="lightSlider-css" href="http://wp.lab/wp-content/plugins/hootkit/assets/lightSlider.min.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/hootkit/assets/jquery.lightSlider.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- horizontal-post-slider -->
|
||||
@@ -7058,6 +7160,12 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/immonex-kickstart/skins/default/js/index.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- immonex-kickstart-team -->
|
||||
<link rel="stylesheet" id="inx-team-skin-css" href="http://wp.lab/wp-content/plugins/immonex-kickstart-team/skins/default/css/index.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/immonex-kickstart-team/js/frontend.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/immonex-kickstart-team/skins/default/js/index.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- improved-let-it-snow -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/improved-let-it-snow/script/snowstorm-min.js?ver=3.5"></script>
|
||||
|
||||
@@ -7445,6 +7553,20 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/job-postings/include/../js/script.js?v=1.4.1&ver=4.9.1"></script>
|
||||
|
||||
|
||||
<!-- jobboardwp -->
|
||||
<link rel="stylesheet" id="select2-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/select2/css/select2.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="jb-tipsy-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/tipsy/css/tipsy.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="jb-helptip-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/css/helptip.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="jb-common-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/css/common.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="jb-job-css" href="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/css/job.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/select2/js/select2.full.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/libs/tipsy/js/tipsy.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/dropdown.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/common/js/helptip.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/global.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/jobboardwp/assets/frontend/js/single-job.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- jobsoid -->
|
||||
<link rel="stylesheet" id="jobsoid_plugin_css-css" href="http://wp.lab/wp-content/plugins/jobsoid/css/jobsoid.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -7560,6 +7682,23 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/k5hh-ham-radio-calculators/js/antenna-calculation-min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- kahaf-kit -->
|
||||
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/bootstrap.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="animate-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/animate.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="lity-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/lity.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="owl-carousel-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/owl-carousel.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="owl-theme-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/owl-theme.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="kahaf-kit-design-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/kahaf-kit-design.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/owl-carousel.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/popper.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/bootstrap.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/wow.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/lity.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/waypoints.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/counterup.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/kahaf-kit-design-js.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- kalendar-cz -->
|
||||
<link rel="stylesheet" id="kalendar_cz-css" href="http://wp.lab/wp-content/plugins/kalendar-cz/kalendar_cz_style.css?ver=2.0" type="text/css" media="all">
|
||||
|
||||
@@ -7883,6 +8022,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lazy-load-videos-and-sticky-control/assets/js/llvasc-public.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- lazy-map -->
|
||||
<script src="http://wp.lab/wp-content/plugins/lazy-map/block/src/lazy-map-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- lazy-widget-loader -->
|
||||
<link rel="stylesheet" id="lazy-widget-loader-css" href="http://wp.lab/wp-content/plugins/lazy-widget-loader/css/lwl.css?ver=1.2.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lazy-widget-loader/js/lazy-widget-loader.js?ver=1.2.8"></script>
|
||||
@@ -8266,6 +8409,9 @@
|
||||
|
||||
<!-- loginer-custom-login-page-builder -->
|
||||
<link rel="stylesheet" id="loginer-style-css" href="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/loginer-public.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="login-bootstrap-css" href="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/bootstrap.min.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="login-style-css" href="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/css/login-public.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/loginer-custom-login-page-builder/public/js/login-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- logistia -->
|
||||
@@ -9233,6 +9379,13 @@
|
||||
|
||||
<!-- mon-laboratoire -->
|
||||
<link rel="stylesheet" id="MonLabo-css" href="http://wp.lab/wp-content/plugins/mon-laboratoire/MonLabo.css?ver=3.0" media="all">
|
||||
<link rel="stylesheet" id="MonLabo-css" href="http://wp.lab/wp-content/plugins/mon-laboratoire/mon-laboratoire.css?ver=3.0" media="all">
|
||||
|
||||
|
||||
<!-- monarch -->
|
||||
<link rel="stylesheet" id="et_monarch-css-css" href="https://wp.lab/wp-content/plugins/monarch/css/style.css?ver=1.4.12" type="text/css" media="all">
|
||||
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/monarch/js/idle-timer.min.js?ver=1.4.12"></script>
|
||||
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/monarch/js/custom.js?ver=1.4.12"></script>
|
||||
|
||||
|
||||
<!-- monk -->
|
||||
@@ -9537,6 +9690,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/mybox-b2b/public/js/mybox-b2b-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- mycookie-gdpr-compliance -->
|
||||
<script src="http://wp.lab/wp-content/plugins/mycookie-gdpr-compliance/assets/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- myego2go-verified-login-for-woocommerce -->
|
||||
<link rel="stylesheet" id="myego2go-css" href="http://wp.lab/wp-content/plugins/myego2go-verified-login-for-woocommerce/public/css/myego2go-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myego2go-verified-login-for-woocommerce/public/js/myego2go-public.js?ver=1.0.0"></script>
|
||||
@@ -9803,6 +9960,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nitek-carousel-cool-transitions/public/js/nitek-carousel-public.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- nk-search -->
|
||||
<link rel="stylesheet" id="nks-css-css" href="http://wp.lab/wp-content/plugins/nk-search//nk-assets/css/nk-search.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/nk-search//nk-assets/js/nk-search.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- nnsmarttooltip -->
|
||||
<link rel="stylesheet" id="NnSmartTooltip-css" href="http://wp.lab/wp-content/plugins/nnsmarttooltip/plugin-assets/public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nnsmarttooltip/plugin-assets/public.bundle.js?ver=1.0.0"></script>
|
||||
@@ -10414,6 +10576,32 @@
|
||||
<link rel="stylesheet" id="past-events-extension-css" href="http://wp.lab/wp-content/plugins/past-events-extension/public/css/past-events-extension-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- pathomation -->
|
||||
<link rel="stylesheet" id="pma-wordpress-css" href="http://wp.lab/wp-content/plugins/pathomation/public/css/pma-wordpress-public.css?ver=2.2.0" media="all">
|
||||
<link rel="stylesheet" id="pma-wordpress_perfect-scrollbar-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/perfect-scrollbar.css?ver=2.2.0" media="">
|
||||
<link rel="stylesheet" id="pma-wordpress_ol-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/ol.css?ver=2.2.0" media="">
|
||||
<link rel="stylesheet" id="pma-wordpress_nouislider-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/nouislider.css?ver=2.2.0" media="">
|
||||
<link rel="stylesheet" id="pma-wordpress_fancytree-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/jquery.fancytree.css?ver=2.2.0" media="">
|
||||
<link rel="stylesheet" id="pma-wordpress_font-awesome-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/font-awesome.css?ver=2.2.0" media="">
|
||||
<link rel="stylesheet" id="pma-wordpress_pmaui-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/pma.ui.css?ver=2.2.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/public/js/pma-wordpress-public.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/webpack.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/elm-pep.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/file-saver.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/font-awesome.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/ieee754.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/jquery.fancytree.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/nouislider.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/ol.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/pbf.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/perfect-scrollbar.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/pixelworks.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/rbush.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/turf.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/turf-jsts.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/pma.ui.js?ver=2.2.0"></script>
|
||||
|
||||
|
||||
<!-- pathshala -->
|
||||
<link rel="stylesheet" id="pathshala-css" href="http://wp.lab/wp-content/plugins/pathshala/public/css/pathshala-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pathshala/public/js/pathshala-public.js?ver=1.0.0"></script>
|
||||
@@ -10971,6 +11159,11 @@
|
||||
<link rel="stylesheet" id="psac-public-style-css" href="http://wp.lab/wp-content/plugins/post-slider-and-carousel/assets/css/psac-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- post-slider-for-elementor -->
|
||||
<link rel="stylesheet" id="psea_css-css" href="http://wp.lab/wp-content/plugins/post-slider-for-elementor/assets/css/slider-style.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/post-slider-for-elementor/assets/js/slider-style.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- post-slider-wd -->
|
||||
<link rel="stylesheet" id="wdps_frontend-css" href="http://wp.lab/wp-content/plugins/post-slider-wd/css/wdps_frontend.css?ver=1.0.52" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wdps_effects-css" href="http://wp.lab/wp-content/plugins/post-slider-wd/css/wdps_effects.css?ver=1.0.52" type="text/css" media="all">
|
||||
@@ -11258,6 +11451,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/product-customizer-light/public/js/customizer.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- product-feature-request -->
|
||||
<script src="http://wp.lab/wp-content/plugins/product-feature-request/assets/public/js/thpfr-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- product-qa-for-woocommerce -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/product-qa-for-woocommerce/public/js/faq-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -11446,6 +11643,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pws-better-widget-title/public/js/pws-better-widget-title-public.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- pyxis-mobile-menu -->
|
||||
<link rel="stylesheet" id="pyxis-mobile-menu-css" href="http://wp.lab/wp-content/plugins/pyxis-mobile-menu/assets/css/style.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/pyxis-mobile-menu/assets/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- q2w3-fixed-widget -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/q2w3-fixed-widget/js/q2w3-fixed-widget.min.js?ver=5.0.4"></script>
|
||||
|
||||
@@ -11593,6 +11795,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/raileo/public/js/raileo-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- random-and-popular-post -->
|
||||
<link rel="stylesheet" id="random-and-popular-post-css" href="http://wp.lab/wp-content/plugins/random-and-popular-post/public/css/random-and-popular-post-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- random-banner -->
|
||||
<link rel="stylesheet" id="bc_rb_global_style-css" href="http://wp.lab/wp-content/plugins/random-banner/assets/style/bc_rb_global.css?ver=4.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bc_rb_animate-css" href="http://wp.lab/wp-content/plugins/random-banner/assets/style/animate.css?ver=4.0" type="text/css" media="all">
|
||||
@@ -12319,6 +12525,11 @@
|
||||
<link rel="stylesheet" id="rd-downloads-front-css-css" href="http://wp.lab/wp-content/plugins/rundiz-downloads/assets/css/front/rd-downloads.min.css?ver=0.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- rut-chileno-con-validacion -->
|
||||
<link rel="stylesheet" id="wc-chilean-bundle-css" href="http://wp.lab/wp-content/plugins/rut-chileno-con-validacion/public/css/wc-chilean-bundle-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/rut-chileno-con-validacion/public/js/wc-chilean-bundle-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- rw-elephant-rental-inventory -->
|
||||
<link rel="stylesheet" id="rwe-frontend-css" href="http://wp.lab/wp-content/plugins/rw-elephant-rental-inventory/lib/assets/css/rw-elephant.min.css?ver=2.1.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rw-elephant-rental-inventory/lib/assets/js/rw-elephant.min.js?ver=2.1.2"></script>
|
||||
@@ -12417,11 +12628,15 @@
|
||||
<!-- save-as-image-by-pdfcrowd -->
|
||||
<link rel="stylesheet" id="save-as-image-pdfcrowd-css" href="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/css/save-as-image-pdfcrowd-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/js/save-as-image-pdfcrowd-public.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="save-as-image-pdfcrowdindicators-css" href="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/css/save-as-image-pdfcrowd-indicators.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/js/save-as-image-pdfcrowd-indicators.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- save-as-pdf-by-pdfcrowd -->
|
||||
<link rel="stylesheet" id="save-as-pdf-pdfcrowd-css" href="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/css/save-as-pdf-pdfcrowd-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/js/save-as-pdf-pdfcrowd-public.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="save-as-pdf-pdfcrowdindicators-css" href="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/css/save-as-pdf-pdfcrowd-indicators.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/js/save-as-pdf-pdfcrowd-indicators.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- save-page-to-pdf -->
|
||||
@@ -12883,6 +13098,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shortcodes-finder/public/js/shortcodes-finder-public.js?ver=1.1.3"></script>
|
||||
|
||||
|
||||
<!-- shortcodes-for-font-awesome -->
|
||||
<link rel="stylesheet" id="shortcodes-for-font-awesome-css" href="http://wp.lab/wp-content/plugins/shortcodes-for-font-awesome/public/css/all.min.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- shortest-website-monetization -->
|
||||
<link rel="stylesheet" id="shortest-website-monetization-plugin-styles-css" href="http://wp.lab/wp-content/plugins/shortest-website-monetization/css/public.css?ver=1.1.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shortest-website-monetization/js/public.js?ver=1.1.6"></script>
|
||||
@@ -13211,6 +13430,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-responsive-images//ressources/js/responsive.min.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- simple-sermon-media-podcast -->
|
||||
<link rel="stylesheet" id="sermon-media-css" href="http://wp.lab/wp-content/plugins/simple-sermon-media-podcast/public/css/sermon-media-public.css?ver=1.0.12" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/simple-sermon-media-podcast/public/js/sermon-media-public.js?ver=1.0.12"></script>
|
||||
|
||||
|
||||
<!-- simple-share-sticky -->
|
||||
<link rel="stylesheet" id="simple_share_sticky-css" href="http://wp.lab/wp-content/plugins/simple-share-sticky/simple-share-sticky.css?ver=0.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-share-sticky/simple-share-sticky.js?ver=0.0.1"></script>
|
||||
@@ -13402,6 +13626,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/slatre/public/js/slatre-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- slazzer-background-changer -->
|
||||
<link rel="stylesheet" id="slazzer-background-changer-css" href="http://wp.lab/wp-content/plugins/slazzer-background-changer/public/css/slazzer-background-changer-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/slazzer-background-changer/public/js/slazzer-background-changer-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- slicewp -->
|
||||
<link rel="stylesheet" id="slicewp-style-css" href="http://wp.lab/wp-content/plugins/slicewp/assets/css/style-front-end.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/slicewp/assets/js/script-tracking.js?ver=1.0.0"></script>
|
||||
@@ -13466,6 +13695,12 @@
|
||||
<link rel="stylesheet" id="wp-spaios-public-css-css" href="http://wp.lab/wp-content/plugins/sliderspack-all-in-one-image-sliders/assets/css/wp-spaios-public.css?ver=1.1.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- sliderview -->
|
||||
<script src="http://wp.lab/wp-content/plugins/sliderview/js/jquery.cycle2.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/sliderview/js/frontend.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/sliderview/js/vimeo-player.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- slideshow -->
|
||||
<link rel="stylesheet" id="slideshow-css" href="http://wp.lab/wp-content/plugins/slideshow/slideshow.css?ver=0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/slideshow/slideshow.js?ver=0.1"></script>
|
||||
@@ -13736,6 +13971,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-rocket/js/script.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- social-share-buttons-by-elixirs-io -->
|
||||
<link rel="stylesheet" id="social-share-buttons-fontawesome-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/fontawesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="social-share-buttons-fontawesome-brands-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/brands.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="social-share-buttons-fontawesome-regular-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/regular.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="social-share-buttons-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/social-share-buttons-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/js/social-share-buttons-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- social-sharing-buttons-and-counters -->
|
||||
<link rel="stylesheet" id="jcss-styles-css" href="http://wp.lab/wp-content/plugins/social-sharing-buttons-and-counters/assets/css/jc-social-sharing.css?ver=1.1.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-sharing-buttons-and-counters/assets/js/jc-social-sharing.js?ver=1.1.5"></script>
|
||||
@@ -14067,6 +14310,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-related-posts/js/sticky-related-posts.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- sticky-social-icons -->
|
||||
<link rel="stylesheet" id="sticky-social-icons-css" href="http://wp.lab/wp-content/plugins/sticky-social-icons/public/assets/build/css/sticky-social-icons-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- stickyadmin -->
|
||||
<link rel="stylesheet" id="sticky-fonts-css" href="http://wp.lab/wp-content/plugins/stickyadmin/lib/css/sticky-fonts.css?ver=1.0.6" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="sticky-adminbar-css" href="http://wp.lab/wp-content/plugins/stickyadmin/lib/css/sticky-adminbar.css?ver=1.0.6" type="text/css" media="all">
|
||||
@@ -14290,6 +14537,12 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/surplus-essentials/public/js/surplus-essentials-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- survey-popup -->
|
||||
<link rel="stylesheet" id="survey-popupfont-awesome-css" href="http://wp.lab/wp-content/plugins/survey-popup/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="survey-popup-css" href="http://wp.lab/wp-content/plugins/survey-popup/public/css/survey-popup-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/survey-popup/public/js/survey-popup-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- suspended-lists-for-sportspress -->
|
||||
<link rel="stylesheet" id="suspended-lists-for-sportspress-front-styles-css" href="http://wp.lab/wp-content/plugins/suspended-lists-for-sportspress/assets/css/front/styles.css?ver=0.0.1" type="text/css" media="all">
|
||||
|
||||
@@ -14298,6 +14551,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sv-sticky-menu/js/sv-sticky-menu.min.js?ver=1.0.5"></script>
|
||||
|
||||
|
||||
<!-- svg-favicon -->
|
||||
<link rel="stylesheet" id="svg-favicon-css" href="http://wp.lab/wp-content/plugins/svg-favicon/public/css/svg-favicon-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/svg-favicon/public/js/svg-favicon-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- svg-map-by-saedi -->
|
||||
<link rel="stylesheet" id="svg-map-by-saedi-css" href="http://wp.lab/wp-content/plugins/svg-map-by-saedi/public/css/svg-map-by-saedi-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/svg-map-by-saedi/public/js/svg-map-by-saedi-public.js?ver=1.0.0"></script>
|
||||
@@ -14339,6 +14597,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sympose/public/libs/font-awesome/svg-with-js/js/fontawesome-all.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="sympose-css" href="http://wp.lab/wp-content/plugins/sympose/public/css/sympose.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sympose/public/js/sympose.min.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="sympose-css" href="http://wp.lab/wp-content/plugins/sympose/css/dist/public/sympose.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sympose/js/dist/public/sympose.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- syndication-links -->
|
||||
@@ -14562,6 +14822,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/telaalbums/public/assets/js/jssor.slider-23.1.5.min.js?ver=1.4.6"></script>
|
||||
|
||||
|
||||
<!-- template-builder-elementor -->
|
||||
<link rel="stylesheet" id="tmpenvo-css" href="http://wp.lab/wp-content/plugins/template-builder-elementor/public/css/tmpenvo-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/template-builder-elementor/public/js/tmpenvo-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- templatesnext-onepager -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/templatesnext-onepager/js/circle-progress.min.js?ver=1.2.0"></script>
|
||||
|
||||
@@ -14732,6 +14997,18 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/three-d-cube/includes/admin/assets/js/OrbitControls.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- thrive-esig-gen -->
|
||||
<link rel="stylesheet" id="siggen-frontend-css" href="http://wp.lab/wp-content/plugins/thrive-esig-gen/assets/css/frontend.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/thrive-esig-gen/assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- thundertix -->
|
||||
<link rel="stylesheet" id="thundertix-css" href="http://wp.lab/wp-content/plugins/thundertix/public//css/thundertix-public.css?ver=2020.8.31" media="all">
|
||||
<link rel="stylesheet" id="thundertix-events-block-css" href="http://wp.lab/wp-content/plugins/thundertix/public//css/thundertix-public-events-block.css?ver=2020.8.31" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/thundertix/commun/js/thundertix-commun-base-api.js?ver=2020.8.31"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/thundertix/public//js/thundertix-public-polyfills.js?ver=2020.8.31"></script>
|
||||
|
||||
|
||||
<!-- ticker-ultimate -->
|
||||
<link rel="stylesheet" id="wptu-front-style-css" href="http://wp.lab/wp-content/plugins/ticker-ultimate/assets/css/wptu-front.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -14781,6 +15058,11 @@
|
||||
<link rel="stylesheet" id="tahs-public-style-css" href="http://wp.lab/wp-content/plugins/timeline-and-history-slider/assets/css/slick-slider-style.css?ver=1.2.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- timeline-awesome -->
|
||||
<link rel="stylesheet" id="timeline-awesome-css" href="http://wp.lab/wp-content/plugins/timeline-awesome/public/css/timeline-awesome-public.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="timeline-awesome-responsive-css" href="http://wp.lab/wp-content/plugins/timeline-awesome/public/css/responsive.css?ver=1.0.1" media="all">
|
||||
|
||||
|
||||
<!-- timeline-feed -->
|
||||
<link rel="stylesheet" id="st-timeline-feed-css" href="http://wp.lab/wp-content/plugins/timeline-feed/assets/css/style.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
@@ -14940,6 +15222,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tour-operator-search/assets/js/to-search.min.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- tp-product-tooltip -->
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-tooltip-css" href="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/css/tp-woocommerce-product-tooltip-public.css?ver=1.0.2" media="all">
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-tooltip-tp_animate-css" href="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/css/tp_animate.css?ver=1.0.2" media="all">
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-tooltip-lity-css" href="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/css/lity.min.css?ver=1.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/js/tp-woocommerce-product-tooltip-public.js?ver=1.0.2"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/js/lity.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- tp-woocommerce-product-gallery -->
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-gallery-css" href="http://wp.lab/wp-content/plugins/tp-woocommerce-product-gallery/public/css/woocommerce-product-gallery-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-gallery-tpslick-css" href="http://wp.lab/wp-content/plugins/tp-woocommerce-product-gallery/public/css/tpslick.css?ver=1.0.0" media="all">
|
||||
@@ -15093,6 +15383,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/twenty20/assets/js/jquery.event.move.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- twentyfourth-wp-scraper -->
|
||||
<link rel="stylesheet" id="twentyfourth-wp-scraper-css" href="http://wp.lab/wp-content/plugins/twentyfourth-wp-scraper/public/css/twentyfourth-wp-scraper-public.css?ver=0.1.9" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/twentyfourth-wp-scraper/public/js/twentyfourth-wp-scraper-public.js?ver=0.1.9"></script>
|
||||
|
||||
|
||||
<!-- twitch-status -->
|
||||
<link rel="stylesheet" id="twitch_status-css" href="http://wp.lab/wp-content/plugins/twitch-status/css/twitch-status.css?ver=1.4.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="twitch_status_fontello-css" href="http://wp.lab/wp-content/plugins/twitch-status/font/fontello/css/fontello.css?ver=1.4.2" type="text/css" media="all">
|
||||
@@ -15420,6 +15715,30 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- ultra-elementor-addons -->
|
||||
<link rel="stylesheet" id="ua-style-accordion-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/accordion.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-style-animated-headlines-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/animated-headlines.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-style-box-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/box.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-twentytwenty-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/css/twentytwenty.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-style-image-comparison-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/image-comparison.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-style-team-member-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/team-member.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-slick-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/slick/slick.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-style-team-members-carousel-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/team-members-carousel.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-style-testimonial-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/testimonial.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-owl-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/css/owl.carousel.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-owl-default-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/css/owl.theme.default.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ua-style-testimonial-carousel-css" href="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/css/testimonial-carousel.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/accordion.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/animated-headlines.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/js/jquery.event.move.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/twentytwenty/js/jquery.twentytwenty.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/image-comparison.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/slick/slick.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/team-members-carousel.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/vendor/owl-carousel/js/owl.carousel.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/ultra-elementor-addons/assets/public/js/testimonial-carousel.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- um-events-lite-for-ultimate-member -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/um-events-lite-for-ultimate-member/assets/js/um-events.min.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -15826,6 +16145,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vies-validator/public/js/vies-validator-public.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- vindi-payment-gateway -->
|
||||
<link rel="stylesheet" id="vindi_woocommerce_style-css" href="http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/css/frontend.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/js/imask.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/js/frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- vinteotv-video-ads -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vinteotv-video-ads/modules/js/front.js?ver=1.0"></script>
|
||||
|
||||
@@ -15846,6 +16171,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/virtual-marketplace-store/public/js/vmstore-public.js?ver=1.2.0"></script>
|
||||
|
||||
|
||||
<!-- virtual-real-estate-agent -->
|
||||
<link rel="stylesheet" id="virtual-agent-css" href="http://wp.lab/wp-content/plugins/virtual-real-estate-agent/public/css/virtual-agent-public.css?ver=1.1.2" media="all">
|
||||
|
||||
|
||||
<!-- visideign-login -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/visideign-login/js/login.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/visideign-login/js/blockui.js?ver=1.0"></script>
|
||||
@@ -16187,6 +16516,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/weaver-themes-shortcode-compatibility/includes/wvr.compatibility.min.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- web-notification-bar -->
|
||||
<script src="http://wp.lab/wp-content/plugins/web-notification-bar/assets/js/logic.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- webamps-remove-double-menu -->
|
||||
<script src="http://wp.lab/wp-content/plugins/webamps-remove-double-menu/js/doublemenuscript.js?ver=1.0"></script>
|
||||
|
||||
@@ -16221,6 +16554,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webhotelier/public/js/wp-webhotelier-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- webinar-manager-for-zoom-meetings -->
|
||||
<link rel="stylesheet" id="webinar-manager-for-zoom-meetings-css" href="http://wp.lab/wp-content/plugins/webinar-manager-for-zoom-meetings/assets/public/css/main.min.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- webiots-teamshowcase -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webiots-teamshowcase/assets/js/owl.carousel.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webiots-teamshowcase/assets/js/teamshowcase.js?ver=1.0"></script>
|
||||
@@ -16349,6 +16686,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wetter/public/js/wetter-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wettervorhersage -->
|
||||
<link rel="stylesheet" id="wettervorhersage-css" href="http://wp.lab/wp-content/plugins/wettervorhersage/public/css/wettervorhersage-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wettervorhersage/public/js/wettervorhersage-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wext-woocommerce-product-tab -->
|
||||
<link rel="stylesheet" id="customstyle-css" href="http://wp.lab/wp-content/plugins/wext-woocommerce-product-tab/css/customstyle.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wext-woocommerce-product-tab/js/tab-active.js?ver=1.0"></script>
|
||||
@@ -16372,6 +16714,10 @@
|
||||
<link rel="stylesheet" id="whats-new-style-css" href="http://wp.lab/wp-content/plugins/whats-new-genarator/whats-new.css?ver=2.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- whoframed -->
|
||||
<script src="http://wp.lab/wp-content/plugins/whoframed/js/whoframed.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- whois-dashboard-widget -->
|
||||
<link rel="stylesheet" id="whoisdashboard-plugin-styles-css" href="http://wp.lab/wp-content/plugins/whois-dashboard-widget/public/assets/css/public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/whois-dashboard-widget/public/assets/js/public.js?ver=1.0.0"></script>
|
||||
@@ -16505,6 +16851,7 @@
|
||||
<!-- wonderplugin-slider-lite -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wonderplugin-slider-lite/engine/wonderpluginsliderskins.js?ver=6.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wonderplugin-slider-lite/engine/wonderpluginslider.js?ver=6.2"></script>
|
||||
<link rel="stylesheet" id="wonderplugin-slider-css-css" href="http://wp.lab/wp-content/plugins/wonderplugin-slider-lite/engine/wonderpluginsliderengine.css?ver=6.2" media="all">
|
||||
|
||||
|
||||
<!-- wonderplugin-video-embed -->
|
||||
@@ -17428,6 +17775,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-customer-reviews/js/wp-customer-reviews.js?ver=3.1.5"></script>
|
||||
|
||||
|
||||
<!-- wp-dark-mode -->
|
||||
<link rel="stylesheet" id="wp-dark-mode-frontend-css" href="http://wp.lab/wp-content/plugins/wp-dark-mode/assets/css/frontend.css?ver=1.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-dark-mode/assets/js/frontend.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- wp-database-error-manager -->
|
||||
<link rel="stylesheet" id="wp-db-error-manager-css" href="http://wp.lab/wp-content/plugins/wp-database-error-manager/public/css/wp-db-error-manager-public.css?ver=2.1.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-database-error-manager/public/js/wp-db-error-manager-public.js?ver=2.1.6"></script>
|
||||
@@ -18042,6 +18394,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-post-search//public/js/wp-live-post-search-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-live-tv -->
|
||||
<link rel="stylesheet" id="wptv-frontend-css" href="http://wp.lab/wp-content/plugins/wp-live-tv//assets/css/frontend.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-live-tv//assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-load-list -->
|
||||
<link rel="stylesheet" id="load-list-css" href="http://wp.lab/wp-content/plugins/wp-load-list/public/css/load-list-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="load-listjqueryuimin-css" href="http://wp.lab/wp-content/plugins/wp-load-list/public/css/smoothness/jquery-ui.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -18094,6 +18451,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-lucky-wheel/js/wp-lucky-wheel.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-magazine-modules-lite -->
|
||||
<link rel="stylesheet" id="wpmagazine-modules-lite-frontend-css" href="http://wp.lab/wp-content/plugins/wp-magazine-modules-lite/includes/assets/css/build.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-magazine-modules-lite/includes/assets/js/frontend.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-magazine-modules-lite/includes/assets/library/jQuery.Marquee/jquery.marquee.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-magic-carousel -->
|
||||
<link rel="stylesheet" id="a-custom-css" href="http://wp.lab/wp-content/plugins/wp-magic-carousel/css/custom.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -18485,6 +18848,15 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-recall/add-on/rating-system//js/scripts.js?ver=16.12.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-recall/add-on/publicpost//js/scripts.js?ver=16.12.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-recall/add-on/rcl-chat//js/scripts.js?ver=16.12.0"></script>
|
||||
<link rel="stylesheet" id="animate-css-css" href="http://wp.lab/wp-content/plugins/wp-recall/assets/css/animate-css/animate.min.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-core-css" href="http://wp.lab/wp-content/plugins/wp-recall/assets/css/core.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-users-list-css" href="http://wp.lab/wp-content/plugins/wp-recall/assets/css/users.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-register-form-css" href="http://wp.lab/wp-content/plugins/wp-recall/assets/css/regform.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-bar-css" href="http://wp.lab/wp-content/plugins/wp-recall/assets/css/recallbar.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="cab_15-css" href="http://wp.lab/wp-content/plugins/wp-recall/add-on/theme-sunshine/style.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-rating-system-css" href="http://wp.lab/wp-content/plugins/wp-recall/add-on/rating-system/style.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-publics-css" href="http://wp.lab/wp-content/plugins/wp-recall/add-on/publicpost/style.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-chat-css" href="http://wp.lab/wp-content/plugins/wp-recall/add-on/rcl-chat/style.css?ver=16.12.0" media="all">
|
||||
|
||||
|
||||
<!-- wp-recaptcha-appsaur -->
|
||||
@@ -19058,6 +19430,13 @@
|
||||
<link rel="stylesheet" id="WP-ViperGB-Default-css" href="http://wp.lab/wp-content/plugins/wp-vipergb/styles/Default.css?ver=1.4.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-visualize -->
|
||||
<link rel="stylesheet" id="wp-visualize-css" href="http://wp.lab/wp-content/plugins/wp-visualize/public/css/wp-visualize-public.css?v=1.4.1&ver=1.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-visualize/public/js/wp-visualize-public.js?v=1.3.4&ver=1.0.2"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-visualize/public/js/scene.js?ver=1.0.2"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-visualize/public/js/moveable.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- wp-wdfy-integration-of-wodify -->
|
||||
<link rel="stylesheet" id="soswodify-css" href="http://wp.lab/wp-content/plugins/wp-wdfy-integration-of-wodify/css/style.css?ver=1.12.1" type="text/css" media="all">
|
||||
|
||||
@@ -19077,6 +19456,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-whydonate/public/js/wp-whydonate-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-widget-styler -->
|
||||
<link rel="stylesheet" id="wpws-style-css" href="http://wp.lab/wp-content/plugins/wp-widget-styler/assets/css/minified/style.min.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- wp-wiki-tooltip -->
|
||||
<link rel="stylesheet" id="wp-wiki-tooltip-css-css" href="http://wp.lab/wp-content/plugins/wp-wiki-tooltip/static/css/wp-wiki-tooltip.css?ver=1.7.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-wiki-tooltip/static/js/wp-wiki-tooltip.js?ver=1.7.4"></script>
|
||||
@@ -19112,6 +19495,10 @@
|
||||
<link rel="stylesheet" id="cws_ytp_slick_carousel_css_theme-css" href="http://wp.lab/wp-content/plugins/wp-youtube-embed/shortcodes/pro/lib/slick/slick-theme.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-youtube-video-gallery -->
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-youtube-video-gallery/assets/js/logic.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-zillow-review-slider -->
|
||||
<link rel="stylesheet" id="wpzillow_w3-css" href="http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/css/wpzillow_w3.css?ver=1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="unslider-css" href="http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/css/wprs_unslider.css?ver=1.1" type="text/css" media="all">
|
||||
@@ -19813,6 +20200,15 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zone-marker/public/js/gil-zone-marker.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- zone-pandemic-covid-19 -->
|
||||
<link rel="stylesheet" id="pandemic-covid19-css" href="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/pandemic-covid19-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="zone-pandemic-covid19-bulma-css" href="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/bulma.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="zone-pandemic-covid19-datatable-css-css" href="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/datatable/jquery.dataTables.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/pandemic-covid19-public.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/pandemic-covid19-ajax.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/datatable/jquery.dataTables.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- zoorvy-social-share -->
|
||||
<link rel="stylesheet" id="zoorvy-social-share-css" href="http://wp.lab/wp-content/plugins/zoorvy-social-share/public/css/zoorvy-social-share-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zoorvy-social-share/public/js/zoorvy-social-share-public.js?ver=1.0.0"></script>
|
||||
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/questionscout/composer_file/package.json
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/questionscout/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "questionscout-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.0",
|
||||
"whatwg-fetch": "3.2.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
# Copyright (C) 2014 Responsive Calendar Widget
|
||||
# This file is distributed under the same license as the Responsive Calendar Widget package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Responsive Calendar Widget 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/Responsive-Calendar-Widget\n"
|
||||
"POT-Creation-Date: 2014-04-07 11:28:06+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: classes/post-types/class-responsive-calendar-widget-post_type.php:52
|
||||
#: includes/post-types/class-responsive-calendar-widget-post_type.php:42
|
||||
msgctxt "post type general name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/sb-children-block/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/sb-children-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "sb-children-block",
|
||||
"version": "1.0.0",
|
||||
"description": "List children of the current content as links.",
|
||||
"author": "bobbingwide",
|
||||
"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",
|
||||
"dev": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"makepot": "wp i18n make-pot . languages/sb-children-block.pot --exclude=node_modules,vendor,src",
|
||||
"makejson": "wp i18n make-json languages --no-purge",
|
||||
"l10n": "l10n sb-children-block"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
# Copyright (C) 2020 bobbingwide
|
||||
# This file is distributed under the same license as the SB Children block plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SB Children block 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sb-children-block\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
||||
"Language: bb_BB\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-06T13:06:19+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: sb-children-block\n"
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SB Children block"
|
||||
msgstr "SB Cihdlern bolck"
|
||||
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.oik-plugins.com/oik-plugins/sb-children-block"
|
||||
msgstr "https://www.oik-plugins.com/oik-plugins/sb-children-block"
|
||||
|
||||
|
||||
#. Description of the plugin
|
||||
#: build/index.js:1
|
||||
msgid "List children of the current content as links."
|
||||
msgstr "Lsit cihdlern Of thE cruernt cnoetnt As lniks."
|
||||
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bobbingwide"
|
||||
msgstr "bboibgniwde"
|
||||
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.bobbingwide.com/about-bobbing-wide"
|
||||
msgstr "https://www.bobbingwide.com/about-bobbing-wide"
|
||||
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Children"
|
||||
msgstr "Cihdlern"
|
||||
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Tree"
|
||||
msgstr "Tere"
|
||||
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Descendents"
|
||||
msgstr "Dseecdnnets"
|
||||
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Child list"
|
||||
msgstr "Cihld lsit"
|
||||
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "0 for all levels, 1-n for defined,-1 for flat."
|
||||
msgstr "0 fOr All lveles, 1-n fOr dfenied,-1 fOr falt."
|
||||
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Depth"
|
||||
msgstr "Dpeth"
|
||||
|
||||
63
spec/fixtures/dynamic_finders/plugin_version/seo-ready/translation_file/languages/seo-ready.pot
vendored
Normal file
63
spec/fixtures/dynamic_finders/plugin_version/seo-ready/translation_file/languages/seo-ready.pot
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) 2020 MyPreview
|
||||
# This file is distributed under the GPL-3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SEO Ready 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/seo-ready\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-25T20:19:33+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: seo-ready\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SEO Ready"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.mypreview.one"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin offers a GUI to generate most commonly used meta tags, so you can optimize your WordPress site for search engines… and do it in less time than it takes to brew a cup of coffee."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MyPreview"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://mahdiyazdani.com"
|
||||
msgstr ""
|
||||
|
||||
#: seo-ready.php:119
|
||||
msgctxt "clone"
|
||||
msgid "Cloning instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: seo-ready.php:130
|
||||
msgctxt "wakeup"
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: seo-ready.php:306
|
||||
msgctxt "plugin link"
|
||||
msgid "%1$sHire Me!%2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: seo-ready.php:306
|
||||
msgctxt "upsell"
|
||||
msgid "Looking for help? Hire Me!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: seo-ready.php:308
|
||||
msgctxt "plugin link"
|
||||
msgid "%1$sSupport%2$s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,161 @@
|
||||
# SCFA Language Template File (.POT)
|
||||
# Copyright (C) 2020 Joaquim Homrighausen
|
||||
# This file is distributed under the same license as the SCFA package.
|
||||
# Joaquim Homrighausen <joho@webbplatsen.se>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SCFA 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-08-25 10:48+0200\n"
|
||||
"PO-Revision-Date: 2020-08-31 11:55+0200\n"
|
||||
"Last-Translator: Joaquim Homrighausen <joho@webbplatsen.se>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
# Description
|
||||
msgid "Generate inline HTML for Font Awesome using shortcodes"
|
||||
msgstr ""
|
||||
|
||||
# URL settings
|
||||
msgid "URL settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:131 admin/class-scfa-admin.php:131
|
||||
msgid "Insert SCFA"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:152 admin/class-scfa-admin.php:152
|
||||
msgid ""
|
||||
"Please note that to serve the specified asset URL as CSS, Font Awesome "
|
||||
"expects to be able to include web fonts relative to the URL you specify."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:153 admin/class-scfa-admin.php:153
|
||||
msgid ""
|
||||
"If you specify https://mysite.com/assets/css/all.min.css, Font Awesome will "
|
||||
"attempt to include web fonts from https://mysite.com/assets/webfonts/..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:157 admin/class-scfa-admin.php:157
|
||||
msgid "Please make sure you include the Font Awesome assets in some other way."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:167 admin/class-scfa-admin.php:167
|
||||
msgid "Quick reference"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:168 admin/class-scfa-admin.php:168
|
||||
msgid ""
|
||||
"This is intended as a quick reference for the shortcode. For a complete list "
|
||||
"of Font Awesome classes, please see"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:170 admin/class-scfa-admin.php:170
|
||||
msgid "Some icon styles may only be available with a Pro license"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:172 admin/class-scfa-admin.php:172
|
||||
msgid ""
|
||||
"You can (obviously) specify everything class related in the class=\"\" "
|
||||
"parameter if that is more convenient for you"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:174 admin/class-scfa-admin.php:174
|
||||
msgid "General format"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:177 admin/class-scfa-admin.php:177
|
||||
msgid "Generate <span> element with icon and default (icon) style:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:182 admin/class-scfa-admin.php:182
|
||||
msgid "Generate <span> element with the specified style and icon:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:187 admin/class-scfa-admin.php:187
|
||||
msgid "Generate <span> element with the specified style and icon and size:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:192 admin/class-scfa-admin.php:192
|
||||
msgid ""
|
||||
"Generate <span> element with the specified style and icon and custom CSS:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:197 admin/class-scfa-admin.php:197
|
||||
msgid ""
|
||||
"Generate <span> element with the specified style and icon and custom class:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:202 admin/class-scfa-admin.php:202
|
||||
msgid ""
|
||||
"Generate <span> element with the specified style and icon and fixed width:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:217 admin/class-scfa-admin.php:217
|
||||
msgid "SCFA settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:233 admin/class-scfa-admin.php:233
|
||||
msgid "Asset URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:242 admin/class-scfa-admin.php:242
|
||||
msgid "Enter a valid URL for the CSS or JS file to be used"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:244 admin/class-scfa-admin.php:244
|
||||
msgid ""
|
||||
"The URL of a Font Awesome CSS or JS file to be included when your site "
|
||||
"loads. Leave empty to use included Font Awesome CSS resources. If this is "
|
||||
"configured correctly, you will see some Font Awesome icons below the SCFA "
|
||||
"header on this page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:254 admin/class-scfa-admin.php:254
|
||||
msgid "Other settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:256 admin/class-scfa-admin.php:256
|
||||
msgid "Asset type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:270 admin/class-scfa-admin.php:270
|
||||
msgid "How the asset URL (above) should be used"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:277 admin/class-scfa-admin.php:277
|
||||
msgid "Default style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:291 admin/class-scfa-admin.php:291
|
||||
msgid "Default icon style if not specified"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:298 admin/class-scfa-admin.php:298
|
||||
msgid "Remove settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:306 admin/class-scfa-admin.php:306
|
||||
msgid "Remove all SCFA plugin settings and data when plugin is uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:265
|
||||
msgid "Serve local Font Awesome CSS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:266
|
||||
msgid "Serve asset URL as CSS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:267
|
||||
msgid "Serve asset URL as Font Awesome CDN kit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:268
|
||||
msgid "None of the above, Font Awesome is activated elsewhere"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,206 @@
|
||||
# Copyright (C) 2020 SkyMonitor.com
|
||||
# This file is distributed under the same license as the Simple Login Limit & Protect plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simple Login Limit & Protect 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-login-limit-protect\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-28T11:28:05-03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: simple-login-limit-protect\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Simple Login Limit & Protect"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://skymonitor.com/products/simple-login-limit-protect-for-wordpress/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Protect your Wordpress instalation against hackers attempts, easy and fast"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "SkyMonitor.com"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://skymonitor.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-login-limit-protect-admin.php:48
|
||||
msgid "Simple Login Limit & Protect is running on a Private Network IP Address or behind a Proxy or Load Balancer. If you are running on a test computer or on a local Network, this is expected. If you are running behind a Proxy, Firewall or Load Balancer, you may need to configure the option \"Identify Remote IP Address\", if those are not the case, please contact us."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-login-limit-protect-admin.php:81
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-login-limit-protect-admin.php:109
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-allowlist.php:9
|
||||
msgid "Allow List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-blocklist.php:11
|
||||
msgid "Block List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-display.php:30
|
||||
msgid "Dismiss this notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-display.php:47
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:11
|
||||
msgid "Sorry, your nonce was not correct. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:38
|
||||
msgid "Options successfully updated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:60
|
||||
msgctxt "number"
|
||||
msgid "%s invalid login attempts has been blocked since installation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:66
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:79
|
||||
msgid "Security Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:82
|
||||
msgid "Intelligent"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:89
|
||||
msgid "<strong>Intelligent Mode</strong> will Learn to determine if the visitor is a good or bad guy. This will block a hacker in the first or second try, and will allow a legitimate user to try many times."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:101
|
||||
msgid "GDPR Compliance"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:105
|
||||
msgid "Makes the plugin <a href=\"https://gdpr-info.eu/\" target=\"_blank\" >GDPR</a> compliant"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:106
|
||||
msgid "<a target=\"_blank\" href=\"https://skymonitor.com/why-hash-dont-anonimize-an-ip-address-and-what-this-affects-gdpr/\">Why other plugins are doing it wrong</a>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:111
|
||||
msgid "Action for blocked IPs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:114
|
||||
msgid "Show Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:115
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:137
|
||||
msgid "Redirect to URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:116
|
||||
msgid "Do Nothing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:119
|
||||
msgid "Doing nothing will make hackers loosing time trying again and again and again while blocked, but this will also consume your servers resources and real users may become confused, since they won't know that they has been blocked"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:125
|
||||
msgid "Messsage for Blocked IPs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:131
|
||||
msgid "The message will be followed by the time remaining, i.e. 1m10s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:150
|
||||
msgid "Identify Remote IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:153
|
||||
msgid "REMOTE_ADDR - the usual, if your server is facing Internet directly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:154
|
||||
msgid "HTTP_X_FORWARDED_FOR - the mostly used behind Proxies and Load Balancers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:155
|
||||
msgid "HTTP_X_FORWARDED - used behind Proxies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:156
|
||||
msgid "HTTP_FORWARDED - used behind Proxies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:157
|
||||
msgid "HTTP_X_REAL_IP - used behind Proxies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:158
|
||||
msgid "HTTP_CF_CONNECTING_IP - if you are customer of CloudFlare"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:159
|
||||
msgid "HTTP_X_SUCURI_CLIENTIP - if you are customer of Sucuri Web Firewall"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:162
|
||||
msgid "This option tries to identify if your server is behind a Proxy, Firewall or WAF, since this could change how we get the real user IP, and we want to do this in the most secure way. Some plugins tries to determine this automatically, but only REMOTE_ADDR is trusted, all the other options can be faked by an attacker. Bellow are the results that we identified from your access:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:172
|
||||
msgid "Option: %s, Captured IP: %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:177
|
||||
msgid "Options not displayed should not be used."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:185
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:188
|
||||
msgid "Any thoughts? Help us improve"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:189
|
||||
msgid "fill the form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-logs.php:9
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: login/simple-login-limit-protect-login.php:59
|
||||
msgid "Welcome, this site is protected by Simple Login Limit & Protect"
|
||||
msgstr ""
|
||||
|
||||
#: login/simple-login-limit-protect-login.php:125
|
||||
msgid "Your IP has been blocked. You can try again in"
|
||||
msgstr ""
|
||||
|
||||
#: login/simple-login-limit-protect-login.php:171
|
||||
#: login/simple-login-limit-protect-login.php:187
|
||||
msgid "Invalid login or password"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,419 @@
|
||||
# Copyright (C) 2020 Konstantin Kröpfl
|
||||
# This file is distributed under the same license as the Simplify Menu Usage plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simplify Menu Usage 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simplify-menu-"
|
||||
"usage-\n"
|
||||
"POT-Creation-Date: 2020-07-22 10:39+0200\n"
|
||||
"PO-Revision-Date: 2020-07-22 10:42+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.12\n"
|
||||
"X-Domain: simplify-menu-usage\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Simplify Menu Usage"
|
||||
msgstr "Simplify Menu Usage"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/simplify-menu-usage/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Improves the handling of the menu section in the dashboard. Fast deleting "
|
||||
"and inserting/moving menu items."
|
||||
msgstr ""
|
||||
"Verbessert die Bedienung der Menüs im Dashboard. Schnelles entfernen und "
|
||||
"einfügen/verschieben von Menüelementen."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Konstantin Kröpfl"
|
||||
msgstr "Konstantin Kröpfl"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/konstk/"
|
||||
msgstr "https://profiles.wordpress.org/konstk/"
|
||||
|
||||
#: admin/classes/rating-banner.php:34
|
||||
msgid "No valid Ajax request"
|
||||
msgstr "keine gültige Ajax-Anfrage"
|
||||
|
||||
#: admin/classes/rating-banner.php:39
|
||||
msgid "Banner has been dismissed"
|
||||
msgstr "Banner wurde entfernt."
|
||||
|
||||
#: admin/classes/rating-banner.php:41
|
||||
msgid "Something went wrong - try again."
|
||||
msgstr "Etwas ging schief - versuch es nochmal."
|
||||
|
||||
#: admin/partials/downwards-inserting-behavior.php:9
|
||||
#: admin/partials/leftwards-inserting-behavior.php:9
|
||||
msgid "Default behaviour"
|
||||
msgstr "standardmäßiges Verhalten"
|
||||
|
||||
#: admin/partials/downwards-inserting-behavior.php:11
|
||||
msgid ""
|
||||
"Choosing the default behavior is the standard way how WordPress handles "
|
||||
"inserting menu items downwards. To put it simply, if the next menu item is "
|
||||
"on the same level inserting downwards will be on the same level. If the next "
|
||||
"menu item has children elements, the item, which is about to be inserted/"
|
||||
"moved downwards will become a new children element of the next menu item. It "
|
||||
"should be familiar as it is the default way of handling the downwards move. "
|
||||
"For better visualization, the following image show the behavior."
|
||||
msgstr ""
|
||||
"Die Auswahl vom Standardverhalten entspricht dem Verhalten wie WordPress das "
|
||||
"abwärts Verschieben/Einfügen von Menüelementen handhabt. Kurz gesagt, wenn "
|
||||
"sich das nächste Menüelement auf der selben Ebene befindet, wird das zu "
|
||||
"verschiebende/einfügende Element danach eingefügt. Falls das nächste "
|
||||
"Menüelement ein Sub-Menü ist und Kindselemente verwaltet, wird das zu "
|
||||
"verschiebende/einfügende Element zu einem neuen Kindselement. Das dürfte "
|
||||
"vertraut sein, weil das das Standardverhalten von WordPress beim abwärts "
|
||||
"Verschieben/Einfügen ist. Für eine bessere Darstellung stellt das "
|
||||
"nachstehende Bild das Verhalten dar."
|
||||
|
||||
#: admin/partials/downwards-inserting-behavior.php:19
|
||||
#: admin/partials/leftwards-inserting-behavior.php:17
|
||||
msgid "Showing the default behavior of moving/inserting elements downwards."
|
||||
msgstr ""
|
||||
"Zeige das standardmäßige Verhalten beim abwärts Verschieben/Einfügen von "
|
||||
"Elementen."
|
||||
|
||||
#: admin/partials/downwards-inserting-behavior.php:23
|
||||
msgid "Same-Level behaviour"
|
||||
msgstr "gleiches Level Verhalten"
|
||||
|
||||
#: admin/partials/downwards-inserting-behavior.php:25
|
||||
msgid ""
|
||||
"Choosing the same level behavior is very intuitive. It simply inserts/moves "
|
||||
"the menu item on the same level one step downwards. Special case when the "
|
||||
"next menu item has children elements it will be inserted after the entire "
|
||||
"sub-menu with its original level. For better visualization, the following "
|
||||
"imagenav-menu-settings-explainations show the behavior."
|
||||
msgstr ""
|
||||
"Die Auswahl für das Verhalten der selben Ebene ist sehr intuitiv. Es fügt "
|
||||
"bzw. verschriebt ein Menüelement ganz einfach einen Schritt weiter nach "
|
||||
"unter, aber auf dem selben Level. Ein Spezialfall ist, wenn das nächste "
|
||||
"Menüelement ein Sub-Menü ist, dann wird das zu verschiebende Element erst "
|
||||
"nach dem ganzen Sub-Menü eingefügt. Für eine bessere Vorstellung zeigt das "
|
||||
"nachfolgende Bild das Verhalten."
|
||||
|
||||
#: admin/partials/downwards-inserting-behavior.php:31
|
||||
msgid "Showing the same-level behavior of moving/inserting elements downwards."
|
||||
msgstr ""
|
||||
"Zeige das gleiche Level Verhalten beim abwärts Verschieben/Einfügen von "
|
||||
"Elementen."
|
||||
|
||||
#: admin/partials/downwards-inserting-behavior.php:35
|
||||
#: admin/partials/leftwards-inserting-behavior.php:21
|
||||
msgid "Take-Children elements behaviour"
|
||||
msgstr "Kinderelemente-Übernehmen Verhalten"
|
||||
|
||||
#: admin/partials/downwards-inserting-behavior.php:37
|
||||
msgid ""
|
||||
"Choosing the behavior of taking children elements can be very handy. "
|
||||
"Especially if you have very large nested menus, which would require to "
|
||||
"manually drag and drop every child element to its new parent element. This "
|
||||
"is the scenario when the \"take-children\" behavior should be used when "
|
||||
"inserting an menu item downwards. For better visualization, the following "
|
||||
"image show the behavior."
|
||||
msgstr ""
|
||||
"Die Auswahl für das Übernehmen von Kindselementen kann sehr nützlich sein. "
|
||||
"Dies ist der Fall, wenn man sehr große verschachtelte Menüs/Sub-Menüs hat, "
|
||||
"welche sonst eine manuelle Anpassung jedes einzelnen Kindselement erfordert. "
|
||||
"Das ist das Szenario für welches man dieses Verhalten beim abwärts Einfügen/"
|
||||
"Verschieben von Menüelementen verwenden sollte. Für eine bessere Vorstellung "
|
||||
"zeigt das nachfolgende Bild das Verhalten."
|
||||
|
||||
#: admin/partials/downwards-inserting-behavior.php:44
|
||||
#: admin/partials/leftwards-inserting-behavior.php:28
|
||||
msgid ""
|
||||
"Showing the take-children behavior of moving/inserting elements downwards."
|
||||
msgstr ""
|
||||
"Zeige das Kinderelemente-Übernehmen Verhalten beim abwärts Verschieben/"
|
||||
"Einfügen von Elementen."
|
||||
|
||||
#: admin/partials/explaination-inserting-behavior-menu.php:7
|
||||
msgid "Settings applied for inserting/moving menu items"
|
||||
msgstr ""
|
||||
"Einstellungen angewendet für das Einfügen/Verschieben von Menüelementen"
|
||||
|
||||
#: admin/partials/explaination-inserting-behavior-menu.php:10
|
||||
msgid ""
|
||||
"The current behavior for inserting/moving items downwards is: <span class="
|
||||
"\"current-behavior bold\">%s</span>"
|
||||
msgstr ""
|
||||
"Das momentate Verhalten für das abwärts Einfügen/Verschieben ist: <span "
|
||||
"class=\"current-behavior bold\">%s</span>"
|
||||
|
||||
#: admin/partials/explaination-inserting-behavior-menu.php:13
|
||||
msgid ""
|
||||
"By clicking the info icon you will see the description and an image "
|
||||
"illustrating the different behaviors. Clicking again removes the section. "
|
||||
"This is the behavior set on the settings page <a href=\"%s\" target=\"_blank"
|
||||
"\">Simplify Menu Usage Settings</a>. To modify the current behavior just "
|
||||
"temporarily you can click on the downwards arrow, which will change the "
|
||||
"behavior just temporarily without saving it in the database. "
|
||||
msgstr ""
|
||||
"Durch das Drücken des Information-Icons siehst du die Beschreibung sowie ein "
|
||||
"Bild, welches das jeweilige Verhalten darstellt. Erneutes drücken entfernt "
|
||||
"diesen Abschnitt. Das ist das Verhalten, welches auf der Einstellungs-Seite "
|
||||
"<a href=\"%s\" target=\"_blank\">Simplify Menu Usage Einstellungen</a> "
|
||||
"gesetzt ist. Um das momentane Verhalten temporär zu ändern, kannst du auf "
|
||||
"den Abwärtspfeil drücken. Dieser ändert das Verhalten nur temporär und "
|
||||
"speichert nichts in der Datenbank."
|
||||
|
||||
#: admin/partials/explaination-inserting-down-behavior-settings.php:9
|
||||
#: admin/partials/explaination-inserting-left-behavior-settings.php:15
|
||||
msgid ""
|
||||
"By clicking the info icon you will see the description and an image "
|
||||
"illustrating the different behaviors. Clicking again removes the section."
|
||||
msgstr ""
|
||||
"Durch das Drücken des Information-Icons siehst du die Beschreibung sowie ein "
|
||||
"Bild, welches das jeweilige Verhalten darstellt. Erneutes drücken entfernt "
|
||||
"diesen Abschnitt."
|
||||
|
||||
#: admin/partials/explaination-inserting-left-behavior-settings.php:10
|
||||
msgid ""
|
||||
"The behavior when moving/inserting menu elements downwards is explained "
|
||||
"below the relevant setting. The modification for leftwards moving/inserting "
|
||||
"can be explained as follows. The behavior of moving/inserting menu elements "
|
||||
"leftwards is the same as provided by WordPress except when the following "
|
||||
"menu items become child elements and represent a submenu."
|
||||
msgstr ""
|
||||
"Das Verhalten beim abwärts Verschieben/Einfügen von Menüelementen ist "
|
||||
"unterhalb der relevanten Einstellung beschrieben. Die Veränderung für "
|
||||
"seitwärts (links) Verschieben/Einfügen kann wie folgt beschrieben werden. "
|
||||
"Das Verhalten beim Verschieben/Einfügen von Menüelementen ist dasselbe wie "
|
||||
"von WordPress ausgenommen wenn die nachfolgenden Menüelemente zu "
|
||||
"Kindselemente werden würden und dadurch ein Sub-Menü darstellen."
|
||||
|
||||
#: admin/partials/leftwards-inserting-behavior.php:11
|
||||
msgid ""
|
||||
"The default behavior is the standard way how WordPress handles inserting "
|
||||
"menu items leftwards. To put it simply, if the next menu item will not "
|
||||
"become a child element of the element, which is going to be moved left the "
|
||||
"behavior is the default one used by WordPress."
|
||||
msgstr ""
|
||||
"Das Standardverhalten ist dasselbe wie es WordPress handelt beim seitwärts "
|
||||
"(links) Einfügen von Menüelementen. Kurz gesagt, wenn das folgende "
|
||||
"Menüelement kein Kindselement von dem zu einfügenden/verschiebenden Element "
|
||||
"wird, kommt das standardmäßige WordPress-Verhalten zum Einsatz."
|
||||
|
||||
#: admin/partials/leftwards-inserting-behavior.php:23
|
||||
msgid ""
|
||||
"The behavior of taking children elements is automatically applied when the "
|
||||
"next menu item becomes a child element of the menu item, which is moved/"
|
||||
"inserted leftwards."
|
||||
msgstr ""
|
||||
"Das Verhalten vom Übernehmen von Kindselementen wird automatisch angewendet "
|
||||
"wenn das nächste Menüelement ein Kindselement darstellen würde von dem "
|
||||
"seitwärts (links) zu einfügenden/verschiebenden Element."
|
||||
|
||||
#: admin/partials/rating-banner.php:7
|
||||
msgid "Simplify Menu Usage says Thank you!"
|
||||
msgstr "Simplify Menu Usage bedankt sich vielmals."
|
||||
|
||||
#: admin/partials/rating-banner.php:9
|
||||
msgid ""
|
||||
"I hope the \"Simplify Menu Usage\" plugin helps you working more efficient "
|
||||
"on your site. If you like it, it would be very kind if you rate the plugin."
|
||||
msgstr ""
|
||||
"Ich hoffe das Plugin \"Simplify Menu Usage\" hilft dir effizienter an deiner "
|
||||
"Seite zu arbeiten. Falls du es magst, wäre es nett wenn du eine Bewertung "
|
||||
"für das Plugin abgibst."
|
||||
|
||||
#: admin/partials/rating-banner.php:13
|
||||
msgid "Dismiss"
|
||||
msgstr "verwerfen"
|
||||
|
||||
#: admin/partials/rating-banner.php:15
|
||||
msgid "Rate Simplify Menu Usage"
|
||||
msgstr "Simplify Menu Usage bewerten"
|
||||
|
||||
#: admin/settings_page/elements/validators/email-validator.php:9
|
||||
msgid "No valid Email"
|
||||
msgstr "keine gültige E-Mail"
|
||||
|
||||
#: admin/settings_page/elements/validators/file-validator.php:9
|
||||
msgid "The entered data is no valid attachment id"
|
||||
msgstr "keine gültige Anhangs-Id"
|
||||
|
||||
#: admin/settings_page/elements/validators/number-validator.php:9
|
||||
msgid "The entered data is not valid - just numbers"
|
||||
msgstr "Daten sind nicht gültig - nur Zahlen"
|
||||
|
||||
#: admin/settings_page/elements/validators/string-validator.php:12
|
||||
msgid "The entered data is not valid - just text"
|
||||
msgstr "Daten sind nicht gültig - nur Text"
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/options.php:8
|
||||
msgid "Simplify Menu Usage Settings"
|
||||
msgstr "Simplify Menu Usage Einstellungen"
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:10
|
||||
msgid "Info"
|
||||
msgstr "Information"
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:14
|
||||
msgid ""
|
||||
"The Simplify Menu Usage plugin let you work faster with menus in the "
|
||||
"backend. The behavior of inserting/moving menu items is partially modified."
|
||||
msgstr ""
|
||||
"Das Simplify Menu Usage Plugin hilft dir dabei schneller mit den Menüs im "
|
||||
"Backend zu arbeiten. Das Verhalten beim Einfügen/Verschieben von "
|
||||
"Menüelementen ist teilweise verändert."
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:24
|
||||
msgid "General Settings"
|
||||
msgstr "Generelle Einstellungen"
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:28
|
||||
msgid ""
|
||||
"In this section you can define the default behavior of inserting/moving menu "
|
||||
"items downwards."
|
||||
msgstr ""
|
||||
"In diesem Bereich kann man das standardmäßige Verhalten für das abwärts "
|
||||
"Einfügen/Verschieben von Menüelementen hinterlegen."
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:39
|
||||
msgid "Display description on menu page"
|
||||
msgstr "zeige Beschreibung auf der Menüseite an"
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:45
|
||||
msgid ""
|
||||
"This option displays the description of the different behaviors on the menu "
|
||||
"edit page in the admin dashboard."
|
||||
msgstr ""
|
||||
"Diese Einstellung zeigt die Beschreibungen der verschiedenen "
|
||||
"Verhaltensweisen auf der Menüseite im Admin-Dashboard an."
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:50
|
||||
msgid "Display description"
|
||||
msgstr "zeige Beschreibung an"
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:51
|
||||
msgid "Do not display description"
|
||||
msgstr "zeige Beschreibung nicht an"
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:59
|
||||
msgid "Behavior when inserting a menu item downwars"
|
||||
msgstr "Verhalten wenn ein Menüelement abwärts eingefügt wird."
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:65
|
||||
msgid ""
|
||||
"The different options change the behavior of inserting/moving menu items "
|
||||
"downwards."
|
||||
msgstr ""
|
||||
"Die verschiedenen Einstellungen können das Verhalten vom abwärts Einfügen/"
|
||||
"Verschieben der Menüelemente verändern."
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:71
|
||||
msgid "Default inserting"
|
||||
msgstr "standardmäßiges Einfügen"
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:72
|
||||
msgid "Insert on same level"
|
||||
msgstr "Einfügen auf selber Ebene"
|
||||
|
||||
#: admin/settings_page/pages/simplify_menu_usage_page/page_elements.php:73
|
||||
msgid "Take children elements"
|
||||
msgstr "Kinder-Elemente übernehmen"
|
||||
|
||||
#: admin/settings_page/setting-string-helper.php:8
|
||||
msgid "Field \"%s\" is required"
|
||||
msgstr "Feld \"%s\" ist verpflichtend"
|
||||
|
||||
#: admin/settings_page/setting-string-helper.php:9
|
||||
msgid "Do not change value of field \"%s\""
|
||||
msgstr "ändere nicht den Wert von Feld \"%s\""
|
||||
|
||||
#: admin/settings_page/setting-string-helper.php:19
|
||||
msgid "Field is required"
|
||||
msgstr "Feld ist verpflichtend"
|
||||
|
||||
#: admin/settings_page/setting-string-helper.php:20
|
||||
msgid "Do not change value of field"
|
||||
msgstr "ändere nicht den Wert vom Feld"
|
||||
|
||||
#: admin/settings_page/templates/pages/menu_page.php:16
|
||||
#: admin/settings_page/templates/pages/tabbed_menu_page.php:31
|
||||
msgid "Fields marked with * are required"
|
||||
msgstr "Felder mit einem * sind verpflichtend"
|
||||
|
||||
#: admin/settings_page/templates/pages/menu_page.php:19
|
||||
msgid "Save Settings"
|
||||
msgstr "Einstellungen speichern"
|
||||
|
||||
#: admin/settings_page/templates/settings/fields/file.php:7
|
||||
msgid "Upload File"
|
||||
msgstr "Datei hochladen"
|
||||
|
||||
#: admin/settings_page/templates/settings/fields/file.php:14
|
||||
msgid "Remove File"
|
||||
msgstr "Datei entfernen"
|
||||
|
||||
#: admin/settings_page/templates/settings/fields/image.php:8
|
||||
msgid "Upload Image"
|
||||
msgstr "Bild hochladen"
|
||||
|
||||
#: admin/settings_page/templates/settings/fields/image.php:11
|
||||
msgid "Remove Image"
|
||||
msgstr "Bild entfernen"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Choosing the default behavior is the standard way how WordPress handles "
|
||||
#~ "inserting menu items downwards. To put it simply, if the next menu item "
|
||||
#~ "will not become a child element of the element, which is going to be "
|
||||
#~ "moved left the behavior is the default one used by WordPress."
|
||||
#~ msgstr "Die Auswahl für das Standardverhalten "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Choosing the behavior of taking children elements can be very handy. "
|
||||
#~ "Especially if you have very large nested menus, which would require to "
|
||||
#~ "manually drag and drop every child element to its new parent element. "
|
||||
#~ "This is the scenario when the \"take-children\" behavior should be used "
|
||||
#~ "when inserting an menu item leftwards. For better visualization, the "
|
||||
#~ "following image show the behavior."
|
||||
#~ msgstr ""
|
||||
#~ "Die Auswahl für das Übernehmen von Kindselementen kann sehr nützlich "
|
||||
#~ "sein. Dies ist der Fall, wenn man sehr große verschachtelte Menüs/Sub-"
|
||||
#~ "Menüs hat, welche sonst eine manuelle Anpassung jedes einzelnen "
|
||||
#~ "Kindselement erfordert. Das ist das Szenario für welches man dieses "
|
||||
#~ "Verhalten beim seitwärts (links) Einfügen/Verschieben von Menüelementen "
|
||||
#~ "verwenden sollte. Für eine bessere Vorstellung zeigt das nachfolgende "
|
||||
#~ "Bild das Verhalten."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Simplify Menu Usage plugin let you work faster with menus in the "
|
||||
#~ "backend. The behavior of inserting/moving menu items is partially "
|
||||
#~ "modified. This is the case for downwards and leftwards inserting/moving. "
|
||||
#~ "The different behaviors concerning downwards moving are described below "
|
||||
#~ "the relevant setting. The behavior for the leftwards moving is nearly the "
|
||||
#~ "same as provided by WordPress. The only difference is that leftwards "
|
||||
#~ "moving can lead to new submenus if the menu item would become a new "
|
||||
#~ "submenu parent by moving one step left."
|
||||
#~ msgstr ""
|
||||
#~ "Das Simplify Menu Usage - Plugin lässt dich schneller mit Menüs im "
|
||||
#~ "Backend arbeiten. Das Verhalten vom Einfügen/Verschieben der Menüelemente "
|
||||
#~ "ist teilweise verändert. Das ist der Fall für das abwärts und seitwärts "
|
||||
#~ "(links) Einfügen/Verschieben. Die unterschiedlichen Verhaltensweisen "
|
||||
#~ "bezüglich der abwärts Bewegung sind unterhalb der relevanten Einstellung "
|
||||
#~ "beschrieben. Das Verhalten für die seitwärts (links) Bewegung ist beinahe "
|
||||
#~ "dieselbe wie von WordPress. Der einzige Unterschied liegt darin, dass die "
|
||||
#~ "seitwärts (links) Bewegung zu neuen Sub-Menüs führen kann, falls das zu "
|
||||
#~ "bewegende/einfügende Menü-Element ein Sub-Menü verwalten würde."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "In this section you can define the default behavior of inserting/moving "
|
||||
#~ "menu items downwards. Furthermore you can define addtional settings "
|
||||
#~ "enriching the usability."
|
||||
#~ msgstr ""
|
||||
#~ "In diesem Abschnitt kannst du das standardmäßige Verhalten vom abwärts "
|
||||
#~ "Einfügen/Verschieben der Menüelemente definieren."
|
||||
@@ -0,0 +1,761 @@
|
||||
# Copyright (C) 2020 John West, StefanBoonstra
|
||||
# This file is distributed under the same license as the Slideshow SE plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Slideshow SE 2.5.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/SlideshowSE\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-03T17:50:51+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: slideshow-jquery-image-gallery\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Slideshow SE"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The slideshow plugin is easily deployable on your website. Add any image that has already been uploaded to add to your slideshow, add text slides, or even add a video. Options and styles are customizable for every single slideshow on your website."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "John West, StefanBoonstra"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://stefanboonstra.com/"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:85
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:86
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings.php:15
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:153
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:154
|
||||
msgid "Are you sure you want to delete this custom style?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:210
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:8
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:211
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:9
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:367
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:145
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:800
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:405
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:83
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:112
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:49
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:801
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:406
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:84
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:113
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:50
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:543
|
||||
msgid "The style used for this slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:804
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:128
|
||||
msgid "Custom style editor"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:451
|
||||
msgid "Animation used for transition between slides"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
msgid "Slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Fade"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
#: classes/SlideshowSEPluginInstaller.php:806
|
||||
#: classes/SlideshowSEPluginInstaller.php:807
|
||||
#: classes/SlideshowSEPluginInstaller.php:808
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:481
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:482
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:483
|
||||
msgid "Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:806
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:452
|
||||
msgid "Number of seconds the slide takes to slide in"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:807
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:453
|
||||
msgid "Number of seconds the description takes to slide in"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:808
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:454
|
||||
msgid "Seconds between changing slides"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:809
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:455
|
||||
msgid "Number of slides to fit into one slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:809
|
||||
#: classes/SlideshowSEPluginInstaller.php:810
|
||||
#: classes/SlideshowSEPluginInstaller.php:811
|
||||
#: classes/SlideshowSEPluginInstaller.php:812
|
||||
#: classes/SlideshowSEPluginInstaller.php:813
|
||||
#: classes/SlideshowSEPluginInstaller.php:814
|
||||
#: classes/SlideshowSEPluginInstaller.php:815
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:484
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:485
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:486
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:487
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:489
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:490
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:491
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:492
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:810
|
||||
msgid "Width of the slideshow, set to parent's width on 0"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:811
|
||||
msgid "Height of the slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:812
|
||||
msgid "Height of the description boxes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:813
|
||||
msgid "Fit image into slide (stretching it)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:814
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:462
|
||||
msgid "Show title and description"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:815
|
||||
msgid "Hide description box, it will pop up when a mouse hovers over the slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:816
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:464
|
||||
msgid "Automatically slide to the next slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:816
|
||||
#: classes/SlideshowSEPluginInstaller.php:817
|
||||
#: classes/SlideshowSEPluginInstaller.php:818
|
||||
#: classes/SlideshowSEPluginInstaller.php:819
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:493
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:494
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:495
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:496
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:497
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:498
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:499
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:500
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:501
|
||||
msgid "Control"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:817
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:465
|
||||
msgid "Return to the beginning of the slideshow after last slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:818
|
||||
msgid "Activate buttons (so the user can scroll through the slides)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:819
|
||||
msgid "Show control panel (play and pause button)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:45
|
||||
msgid "Slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:46
|
||||
#: views/SlideshowSEPluginWidget/form.php:9
|
||||
#: build/index.js:230
|
||||
#: src/edit.js:38
|
||||
msgid "Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:47
|
||||
msgid "Add New Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:48
|
||||
msgid "Edit slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:49
|
||||
msgid "New slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:50
|
||||
msgid "View slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:51
|
||||
msgid "Search slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:52
|
||||
#: classes/SlideshowSEPluginPostType.php:53
|
||||
msgid "No slideshows found"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:100
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:109
|
||||
msgid "Slides List"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:118
|
||||
msgid "Slideshow Style"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:127
|
||||
msgid "Slideshow Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:169
|
||||
msgid "Slideshow created"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:173
|
||||
msgid "Slideshow updated"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:262
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:313
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginShortcode.php:147
|
||||
msgid "No slideshow selected."
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideInserter.php:77
|
||||
msgid "Are you sure you want to delete this slide?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideInserter.php:78
|
||||
msgid "Insert image slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:456
|
||||
msgid "Maximum width. When maximum width is 0, maximum width is ignored"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:457
|
||||
msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:457
|
||||
msgid "More info"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:457
|
||||
msgid "Proportional relationship%s between slideshow's width and height (width:height)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:458
|
||||
msgid "Slideshow's height"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:459
|
||||
msgid "Image behaviour"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:460
|
||||
msgid "Shrink slideshow's height when width shrinks"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:461
|
||||
msgid "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:463
|
||||
msgid "Hide description box, pop up when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:466
|
||||
msgid "Pause slideshow when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:467
|
||||
msgid "Activate navigation buttons"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:468
|
||||
msgid "Hide navigation buttons, show when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:469
|
||||
msgid "Activate pagination"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:470
|
||||
msgid "Hide pagination, show when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:471
|
||||
msgid "Activate control panel (play and pause button)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:472
|
||||
msgid "Hide control panel, show when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:473
|
||||
msgid "Wait until the next slide has loaded before showing it"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:474
|
||||
msgid "Show a loading icon until the first slide appears"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:475
|
||||
msgid "Randomize slides"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:476
|
||||
msgid "Avoid content filter (disable if '%s' is shown)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Left"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Right"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Up"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Down"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Cross Fade"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Direct Fade"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Random Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
msgid "Natural and centered"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
msgid "Crop to fit"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
msgid "Stretch to fit"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:502
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:503
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:504
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:505
|
||||
msgid "Miscellaneous"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginWidget.php:23
|
||||
msgid "Enables you to show your slideshows in the widget area of your website."
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginWidget.php:29
|
||||
msgid "Slideshow Widget"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:37
|
||||
msgid "Play"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:37
|
||||
msgid "Pause"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:38
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:39
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:40
|
||||
msgid "Go to slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:48
|
||||
msgid "Default stylesheets"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:62
|
||||
msgid "Create a new custom style from this style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:64
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:78
|
||||
msgid "Custom stylesheets"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:91
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:174
|
||||
msgid "Edit this style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:93
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:176
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:118
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:100
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:183
|
||||
msgid "Delete this style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:102
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:185
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:132
|
||||
msgid "Select a stylesheet to start customizing it."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:141
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:194
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:126
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:19
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:188
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:84
|
||||
#: views/SlideshowSEPluginWidget/form.php:4
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:150
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:202
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:13
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:19
|
||||
msgid "The settings set on this page apply only to newly created slideshows and therefore do not alter any existing ones. To adapt a slideshow's settings, %1$sclick here.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:31
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings.php:16
|
||||
msgid "Default Slideshow Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:43
|
||||
#: views/SlideshowSEPluginPostType/settings.php:13
|
||||
msgid "settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:79
|
||||
msgid "Default Slideshow Stylesheet"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:14
|
||||
msgid "Add slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:15
|
||||
msgid "Edit slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:16
|
||||
msgid "Delete slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:23
|
||||
msgid "User Capabilities"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:25
|
||||
msgid "Select the user roles that will able to perform certain actions."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:41
|
||||
msgid "Untitled role"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:68
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:72
|
||||
msgid "Stylesheet location"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:75
|
||||
msgid "top"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:76
|
||||
msgid "bottom"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:81
|
||||
msgid "Enable lazy loading"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings.php:17
|
||||
msgid "Custom Styles"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:3
|
||||
msgid "To use this slideshow in your website either add this piece of shortcode to your posts or pages"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:7
|
||||
msgid "Or add this piece of code to where ever in your website you want to place the slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:11
|
||||
msgid "Or go to the %1$swidgets page%2$s and show the slideshow as a widget."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:13
|
||||
msgid "Or choose this slideshow in the Slideshow block using the Gutenberg editor"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/settings.php:27
|
||||
#: views/SlideshowSEPluginPostType/style-settings.php:12
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:3
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:5
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:107
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:173
|
||||
msgid "Image slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:6
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:10
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:73
|
||||
msgid "Text slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:7
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:95
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:32
|
||||
msgid "Video slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:11
|
||||
msgid "Open all"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:12
|
||||
msgid "Close all"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:16
|
||||
msgid "Add slides to this slideshow by using one of the buttons above."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/style-settings.php:22
|
||||
msgid "Custom styles can be created and customized %1$shere%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:6
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:11
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:20
|
||||
msgid "Insert a Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:14
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:53
|
||||
msgid "Insert Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:29
|
||||
msgid "Select a slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:38
|
||||
#: views/SlideshowSEPluginWidget/form.php:14
|
||||
msgid "Untitled slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:58
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:69
|
||||
msgid "It seems you haven't created any slideshows yet. %1$sYou can create a slideshow here!%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:141
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:34
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:203
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:99
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:156
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:60
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:218
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:125
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:159
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:63
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:221
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:128
|
||||
msgid "Open URL in"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:161
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:65
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:223
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:130
|
||||
msgid "Same window"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:162
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:66
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:224
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:131
|
||||
msgid "New window"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:166
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:70
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:228
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:135
|
||||
msgid "Don't let search engines follow link"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:174
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:235
|
||||
msgid "Alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:180
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:77
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:118
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:155
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:241
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:142
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:55
|
||||
msgid "Delete slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:49
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:114
|
||||
msgid "Text color"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:52
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:117
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:54
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:119
|
||||
msgid "(Leave empty for a transparent background)"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:104
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:41
|
||||
msgid "Youtube Video ID"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:111
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:48
|
||||
msgid "Show related videos"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:136
|
||||
msgid "Embedded Media slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:145
|
||||
msgid "Media URL to embed"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginWidget/form.php:11
|
||||
msgid "Random Slideshow"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,35 @@
|
||||
##### [Version 1.0.8](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.7...v1.0.8) (2020-07-29)
|
||||
|
||||
> Things are getting better every day. 🚀
|
||||
|
||||
##### [Version 1.0.7](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.6...v1.0.7) (2020-07-29)
|
||||
|
||||
chore: adds SVN deployment workflow
|
||||
|
||||
##### [Version 1.0.6](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.5...v1.0.6) (2020-07-27)
|
||||
|
||||
> Things are getting better every day. 🚀
|
||||
|
||||
##### [Version 1.0.5](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.4...v1.0.5) (2020-07-27)
|
||||
|
||||
> Things are getting better every day. 🚀
|
||||
|
||||
##### [Version 1.0.4](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.3...v1.0.4) (2020-07-24)
|
||||
|
||||
Fetch starter sites remotely
|
||||
|
||||
##### [Version 1.0.3](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.2...v1.0.3) (2020-07-23)
|
||||
|
||||
> Things are getting better every day. 🚀
|
||||
|
||||
##### [Version 1.0.2](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.1...v1.0.2) (2020-07-23)
|
||||
|
||||
> Things are getting better every day. 🚀
|
||||
|
||||
##### [Version 1.0.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.0...v1.0.1) (2020-07-21)
|
||||
|
||||
- adds plugin code
|
||||
|
||||
#### Version1.0.0 (2020-07-21)
|
||||
|
||||
Initial Release
|
||||
18
spec/fixtures/dynamic_finders/plugin_version/the-courier-guy/change_log/changelog.txt
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/the-courier-guy/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
= 4.2.0 - Jul 25, 2020
|
||||
* Add conditional free shipping feature.
|
||||
* Add custom label and location for suburb area field.
|
||||
* Fix shipment notifications.
|
||||
* Fix parcel size, volume and weight calculations.
|
||||
* Add parcel dimension configuration at both global and product levels.
|
||||
* Add order id as WayBill reference.
|
||||
* Add order notes for Parcel Perfect endpoint queries.
|
||||
* Problem of variable products not calculating resolved with new methods.
|
||||
* Adjust Waybill position and add clickable link in emails.
|
||||
* Fix deprecated code warnings.
|
||||
* Fix PHP missing index warnings.
|
||||
* Fix collections submitted for the following day.
|
||||
* Fix contact number is present where the name is supposed to go.
|
||||
* Add option: If free shipping is active, remove all other shipping methods from checkout.
|
||||
* Add option: Enable free shipping if selected products are in the cart.
|
||||
* Add option: Enable free shipping if shipping total is a selected percentage of the total order value.
|
||||
* Added VAT option for TCG shipping.
|
||||
@@ -0,0 +1,175 @@
|
||||
# Copyright (C) 2020 Themehigh Multiple Addresses
|
||||
# This file is distributed under the same license as the Themehigh Multiple Addresses package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Themehigh Multiple Addresses 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: support@themehigh.com\n"
|
||||
"POT-Creation-Date: 2020-06-25 12:07+0530\n"
|
||||
"PO-Revision-Date: 2020-06-25 11:55+0530\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: admin/class-thmaf-admin.php:77
|
||||
msgid "Manage Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin.php:105
|
||||
msgid "premium version provides more features to manage the users addresses."
|
||||
|
||||
msgstr ""
|
||||
#: admin/class-thmaf-admin.php:108
|
||||
msgid "Let Your Shoppers Choose from a List of Saved Addresses"
|
||||
|
||||
msgstr ""
|
||||
#: admin/class-thmaf-admin.php:111
|
||||
msgid "Manage All Addresses from My Account Page"
|
||||
msgstr ""
|
||||
#: admin/class-thmaf-admin.php:115
|
||||
msgid "Save Time with Google Autocomplete Feature"
|
||||
msgstr ""
|
||||
#: admin/class-thmaf-admin.php:118
|
||||
msgid "Custom Address Formats through Overriding"
|
||||
msgstr ""
|
||||
#: admin/class-thmaf-admin.php:121
|
||||
msgid "Display Your Multiple Address Layouts in Style"
|
||||
msgstr ""
|
||||
#: admin/class-thmaf-admin.php:124
|
||||
msgid "Highly Compatible with"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin-settings.php:24
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin-settings-general.php:37
|
||||
msgid "Enable multiple address for billing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin-settings-general.php:40
|
||||
msgid "Enable multiple address for shipping"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin-settings-general.php:43
|
||||
msgid "Address Properties"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin-settings-general.php:62
|
||||
msgid "Your changes were saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin-settings-general.php:64
|
||||
msgid "Your changes were not saved due to an error (or you made none!)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin-settings-general.php:159
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin-settings-general.php:160
|
||||
msgid "Reset to default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin-settings-general.php:93
|
||||
msgid "Settings successfully reset"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-thmaf-admin.php:89 includes/class-thmaf.php:172
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-thmaf.php:171
|
||||
msgid "Premium plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/utils/class-thmaf-utils.php:62
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:62
|
||||
msgid "Billing Addresses"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:63
|
||||
msgid "Shipping Addresses"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:64
|
||||
msgid "Addresses"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:181
|
||||
msgid "Additional billing addresses"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:186 public/class-thmaf-public.php:204
|
||||
msgid "There are no saved addresses yet "
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:199
|
||||
msgid "Additional shipping addresses"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:235
|
||||
msgid "Are you sure you want to delete this address?"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:248
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:256 public/class-thmaf-public.php:264
|
||||
msgid "Set as default"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:333
|
||||
msgid "Address Added successfully."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:335
|
||||
msgid "Address Changed successfully."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:525 public/class-thmaf-public.php:537
|
||||
#: public/class-thmaf-public.php:546
|
||||
msgid "hidden value"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:634 public/class-thmaf-public.php:673
|
||||
msgid "Billing Address"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:669 public/class-thmaf-public.php:749
|
||||
msgid "Add New Address"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:683 public/class-thmaf-public.php:762
|
||||
msgid "Choose an Address.."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-thmaf-public.php:715 public/class-thmaf-public.php:753
|
||||
msgid "Shipping Address"
|
||||
msgstr ""
|
||||
|
||||
#: public/templates/myaccount/my-address.php:27
|
||||
#: public/templates/myaccount/my-address.php:32
|
||||
msgid "Billing address"
|
||||
msgstr ""
|
||||
|
||||
#: public/templates/myaccount/my-address.php:28
|
||||
msgid "Shipping address"
|
||||
msgstr ""
|
||||
|
||||
#: public/templates/myaccount/my-address.php:41
|
||||
msgid "The following addresses will be used on the checkout page by default."
|
||||
msgstr ""
|
||||
|
||||
#: public/templates/myaccount/my-address.php:53
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: public/templates/myaccount/my-address.php:57
|
||||
msgid "You have not set up this type of address yet."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) 2020 Theme.id
|
||||
# This file is distributed under the same license as the Theme.id's Caldera Form to Slack plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Theme.id's Caldera Form to Slack 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/themeid-caldera-form-to-slack\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-25T09:31:49+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: caladea-slack\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Theme.id's Caldera Form to Slack"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://caladea.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Send notifications to Slack channels when certain on Caldera Form submission."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Theme.id"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://theme.id"
|
||||
msgstr ""
|
||||
|
||||
#: includes/caldera.php:57
|
||||
msgid "Hook Url"
|
||||
msgstr ""
|
||||
|
||||
#: includes/caldera.php:64
|
||||
msgid "The name of Bot that will be display in message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/caldera.php:65
|
||||
msgid "Bot Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/caldera.php:71
|
||||
msgid "Overrides the default channel for this web hook (e.g #myChannel) or leave blank to use default"
|
||||
msgstr ""
|
||||
|
||||
#: includes/caldera.php:73
|
||||
msgid "Channel Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/caldera.php:79
|
||||
msgid "You can put URL (https://domain.com/image.png) or emoji (:taco:) here"
|
||||
msgstr ""
|
||||
|
||||
#: includes/caldera.php:81
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/twst-login-block/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/twst-login-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "twst-login-block",
|
||||
"version": "1.0.1",
|
||||
"description": "Easily insert a login form block into your post",
|
||||
"author": "TWST",
|
||||
"license": "GPL-3.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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "real-time-auto-find-and-replace",
|
||||
"version": "1.0.0",
|
||||
"description": "Find replace plugin",
|
||||
"main": "app.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "webpack --mode production",
|
||||
"watch": "webpack --watch --mode development"
|
||||
},
|
||||
"author": "M.Tuhin",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.10.5",
|
||||
"@babel/polyfill": "^7.10.4",
|
||||
"@babel/preset-env": "^7.10.4",
|
||||
"autoprefixer": "^9.8.5",
|
||||
"babel-loader": "^8.1.0",
|
||||
"css-loader": "^3.6.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.14.1",
|
||||
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
||||
"postcss-loader": "^3.0.0",
|
||||
"sass-loader": "^9.0.2",
|
||||
"uglifyjs-webpack-plugin": "^2.2.0",
|
||||
"webpack": "^4.43.0",
|
||||
"webpack-cli": "^3.3.12",
|
||||
"webpack-fix-style-only-entries": "^0.5.1"
|
||||
}
|
||||
}
|
||||
10
spec/fixtures/dynamic_finders/plugin_version/unofficial-convertkit/change_log/CHANGELOG.md
vendored
Normal file
10
spec/fixtures/dynamic_finders/plugin_version/unofficial-convertkit/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
Changelog
|
||||
==========
|
||||
|
||||
#### 1.0.1 - Aug 4, 2020
|
||||
|
||||
Fixes an issue where the plugin would silently fail on PHP version 7.2 or lower.
|
||||
|
||||
#### 1.0.0 - Aug 3, 2020
|
||||
|
||||
Initial plugin release.
|
||||
15
spec/fixtures/dynamic_finders/plugin_version/virtual-real-estate-agent/change_log/CHANGELOG.md
vendored
Normal file
15
spec/fixtures/dynamic_finders/plugin_version/virtual-real-estate-agent/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
*** WordPress Virtual Real Estate Agent Changelog ***
|
||||
|
||||
14.08.2020 - Version 1.1.2
|
||||
* Modify the settings page pictures and content
|
||||
|
||||
12.08.2020 - Version 1.1.1
|
||||
* Update the plugin structure
|
||||
|
||||
11.08.2020 - Version 1.1.0
|
||||
* Change the name of the WordPress plugin
|
||||
|
||||
20.07.2020 - Version 1.0.0
|
||||
* Initial version of the plugin to serve standalone chatbot to the frontend of WordPress websites
|
||||
* English and the German translation to follow the instructions to display the chatbot
|
||||
* Display chatbot on the bottom right or bottom left of the screen
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/wc-missing-addons/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/wc-missing-addons/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "springdevs_wma",
|
||||
"version": "1.0.0",
|
||||
"description": "WooCommerce Missing Addons",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "npm run development",
|
||||
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"watch": "npm run development -- --watch",
|
||||
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"prod": "npm run production",
|
||||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"cross-env": "^7.0.2",
|
||||
"laravel-mix": "^5.0.4",
|
||||
"vue": "^2.6.11"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/web-vitals-block/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/web-vitals-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "web-vitals-block",
|
||||
"version": "1.0.1",
|
||||
"description": "Display web vitals in a block.",
|
||||
"author": "adamsilverstein",
|
||||
"license": "MIT",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"watch": "wp-scripts build --watch",
|
||||
"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": {
|
||||
"web-vitals-element": "^1.0.2"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/wijntransport/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/wijntransport/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
= 1.0.0 =
|
||||
Release Date: August 20, 2020
|
||||
|
||||
* Initial release
|
||||
@@ -0,0 +1,239 @@
|
||||
# Copyright (C) 2020 Inspire Labs
|
||||
# This file is distributed under the same license as the WooCommerce SMSAPI.pl plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce SMSAPI.pl 2.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-smsapi-pl\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-21T14:51:26+02:00\n"
|
||||
"PO-Revision-Date: 2020-07-21 14:53+0200\n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"X-Domain: woocommerce-smsapi\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
|
||||
"|| n%100>14) ? 1 : 2);\n"
|
||||
"Language: pl_PL\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WooCommerce SMSAPI.pl"
|
||||
msgstr "WooCommerce SMSAPI.pl"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://www.wpdesk.pl/sklep/smsapi-woocommerce/"
|
||||
msgstr "http://www.wpdesk.pl/sklep/smsapi-woocommerce/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"WooCommerce integration with <a href=\"https://ssl.smsapi.pl/"
|
||||
"rejestracja/4PT2\" target=\"_blank\">SMSAPI.pl</a>."
|
||||
msgstr ""
|
||||
"Integracja WooCommerce z SMSAPI <a href=\"https://ssl.smsapi.pl/"
|
||||
"rejestracja/4PT2\" target=\"_blank\">SMSAPI.pl</a>."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Inspire Labs"
|
||||
msgstr "Inspire Labs"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.inspirelabs.pl/"
|
||||
msgstr "http://www.inspirelabs.pl/"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:38
|
||||
msgid "SMSAPI"
|
||||
msgstr "SMSAPI"
|
||||
|
||||
#. translators: %s: URL
|
||||
#: class/wcSmsApiIntegration.php:42
|
||||
msgid ""
|
||||
"WooCommerce integration with SMSAPI. <a href=\"%s\" target=\"_blank\">Check "
|
||||
"out the docs →</a>"
|
||||
msgstr ""
|
||||
"Integracja WooCommerce z SMSAPI. <a href=\"%s\" target=\"_blank\">Sprawdź "
|
||||
"dokumentację →</a>"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:95
|
||||
msgid "{customer} - Customer first name and last name"
|
||||
msgstr "{customer} - Imię i nazwisko klienta"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:100
|
||||
msgid "{number} - Order number"
|
||||
msgstr "{number} - Numer zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:105
|
||||
msgid "{phone} - Customer phone number"
|
||||
msgstr "{phone} - Numer telefonu klienta"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:110
|
||||
msgid "{total_price} - Total Order value"
|
||||
msgstr "{total_price} - Całkowita wartość zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:202 class/wcSmsApiIntegration.php:350
|
||||
msgid "SMS Marketing"
|
||||
msgstr "SMS Marketing"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:305
|
||||
msgid "Error. Please fill in valid API Token."
|
||||
msgstr "Błąd. Proszę, uzupełnij poprawny token API."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:308
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:312
|
||||
msgid "Connection status:"
|
||||
msgstr "Status połączenia:"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:329 class/wcSmsApiIntegration.php:371
|
||||
#: class/wcSmsApiIntegration.php:392 class/wcSmsApiIntegration.php:413
|
||||
msgid "Enable"
|
||||
msgstr "Włącz"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:330
|
||||
msgid "Enable SMSAPI integration"
|
||||
msgstr "Włącz integrację z SMSAPI"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:335
|
||||
msgid "API version"
|
||||
msgstr "Wersja API"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:342
|
||||
msgid "API Token"
|
||||
msgstr "Token API"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:345
|
||||
msgid "SMSAPI API Token. You can generate it in SMSAPI customer panel."
|
||||
msgstr "Token SMSAPI. Token można wygenerować w panelu klienta SMSAPI."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:418
|
||||
msgid "SMS Sender name"
|
||||
msgstr "Pole nadawcy SMS"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:422
|
||||
msgid ""
|
||||
"Only names with \"Active\" status are available. The status can be checked "
|
||||
"in the SMSAPI customer panel."
|
||||
msgstr ""
|
||||
"Do wyboru są tylko nazwy o statusie \"Aktywny\". Status można sprawdzic "
|
||||
"w panelu klienta SMSAPI."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:349
|
||||
msgid "Enable user consent to SMS Marketing"
|
||||
msgstr "Włącz zgodę użytkownika na SMS marketing"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:353
|
||||
msgid ""
|
||||
"Checkbox will be added to checkout page allowing users to agree to SMS "
|
||||
"marketing."
|
||||
msgstr ""
|
||||
"Zostanie dodany checkbox do strony zamówienia, który umożliwi użytkownikowi "
|
||||
"wyrażenie zgody na SMS marketing."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:356
|
||||
msgid "Checkbox label"
|
||||
msgstr "Etykieta przy checkboksie"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:358
|
||||
msgid "I agree to receiving marketing content via SMS"
|
||||
msgstr "Zgadzam się na otrzymywanie marketingowych wiadomości SMS"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:361
|
||||
msgid "Checkbox position"
|
||||
msgstr "Pozycja checkboksa"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:364
|
||||
msgid "Above Place order button"
|
||||
msgstr "Nad przyciskiem złożenia zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:365
|
||||
msgid "Below Place order button"
|
||||
msgstr "Pod przyciskiem złożenia zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:370
|
||||
msgid "Processing order SMS"
|
||||
msgstr "SMS dla zamówienia w trakcie realizacji"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:374
|
||||
msgid "SMS will be sent when order status is changed to processing."
|
||||
msgstr ""
|
||||
"SMS zostanie wysłany po zmianie statusu zamówienia na w trakcje realizacji."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:378
|
||||
msgid "Processing order SMS text"
|
||||
msgstr "Treść SMSa dla zamówienia w trakcje realizacji"
|
||||
|
||||
#. translators: %s: Name of a blog
|
||||
#: class/wcSmsApiIntegration.php:382
|
||||
msgid "Your order number {number} status at %s changed to processing."
|
||||
msgstr ""
|
||||
"Status twojego zamówienia numer {number} w %s został zmieniony na w trakcie "
|
||||
"realizacji."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:384 class/wcSmsApiIntegration.php:405
|
||||
msgid ""
|
||||
"One SMS is a maximum of 160 characters. Note that if you enter special "
|
||||
"characters (including Polish characters), the limit will be 70 characters. If "
|
||||
"this value is exceeded, the system will send a message as several linked "
|
||||
"SMSes - up to 1530 characters (or 670 with special characters) as 10 linked "
|
||||
"SMSs, charging the account according to the current price list."
|
||||
msgstr ""
|
||||
"Jedna wiadomość SMS to maksymalnie 160 znaków. Zwróć uwagę, że jeśli wpiszesz "
|
||||
"znaki specjalne (w tym polskie znaki) limit wyniesie 70 znaków. Po "
|
||||
"przekroczeniu tej wartości system wyśle wiadomość jako kilka połączonych SMS-"
|
||||
"ów - maksymalnie 1530 znaków (lub 670 ze znakami specjalnymi) jako 10 "
|
||||
"połączonych SMS-ów obciążając konto zgodnie z aktualnym cennikiem."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:386 class/wcSmsApiIntegration.php:407
|
||||
msgid "List of available parameters that can be used in the message:"
|
||||
msgstr "Lista dostępnych parametrów które można wykorzystać w wiadomości:"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:391
|
||||
msgid "Completed order SMS"
|
||||
msgstr "SMS dla zrealizowanego zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:395
|
||||
msgid "SMS will be sent when order status is changed to completed."
|
||||
msgstr "SMS zostanie wysłany po zmianie statusu zamówienia na zrealizowane."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:399
|
||||
msgid "Completed order SMS text"
|
||||
msgstr "Treść SMSa dla zrealizowanego zamówienia"
|
||||
|
||||
#. translators: %s: Name of a blog
|
||||
#: class/wcSmsApiIntegration.php:403
|
||||
msgid "Your order number {number} status at %s changed to completed."
|
||||
msgstr ""
|
||||
"Status twojego zamówienia numer {number} w %s został zmieniony na "
|
||||
"zrealizowane."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:412
|
||||
msgid "Customer note SMS"
|
||||
msgstr "SMS dla notatki dla klienta"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:416
|
||||
msgid "Text will be taken from the customer note."
|
||||
msgstr "Tekst zostanie pobrany z treści notatki."
|
||||
|
||||
#. translators: %s: URL
|
||||
#: class/wcSmsApiIntegration.php:480
|
||||
msgid ""
|
||||
"You are running out of funds. In order to keep sending SMS messages, <a href="
|
||||
"\"%s\" target=\"_blank\">log in</a> to you SMSAPI account and buy more points."
|
||||
msgstr ""
|
||||
"Środki na twoim koncie się kończą. Aby dalej wysyłać wiadomości SMS, <a href="
|
||||
"\"%s\" target=\"_blank\">zaloguj się</a> na swoje konto w SMSAPI i kup więcej "
|
||||
"punktów."
|
||||
|
||||
#: woocommerce-smsapi.php:107
|
||||
msgid "Settings"
|
||||
msgstr "Ustawienia"
|
||||
|
||||
#: woocommerce-smsapi.php:108
|
||||
msgid "Docs"
|
||||
msgstr "Dokumentacja"
|
||||
|
||||
#: woocommerce-smsapi.php:109
|
||||
msgid "Support"
|
||||
msgstr "Wsparcie"
|
||||
@@ -0,0 +1,226 @@
|
||||
# Copyright (C) 2020 ThemeMantis
|
||||
# This file is distributed under the same license as the WP Full Screen Search plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Full Screen Search 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-full-screen-search\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-22T05:53:20+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-full-screen-search\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Full Screen Search"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://thememantis.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Converts default WordPress search to full screen search overlay"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ThemeMantis"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Mayank Majeji"
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:157
|
||||
msgid "Sorry, you are not allowed to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:168
|
||||
msgid "nonce field is missing. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:172
|
||||
msgid "'Invalid nonce specified. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:184
|
||||
msgid "Settings Saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:29
|
||||
msgid "WP Full Screen Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:32
|
||||
msgid "Full Screen Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:35
|
||||
msgid "Full Screen Background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:39
|
||||
msgid "Choose full screen background color."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:46
|
||||
msgid "Search Box Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:49
|
||||
msgid "Search Box Background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:53
|
||||
msgid "Choose background color of search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:58
|
||||
msgid "Search Box Placeholder Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:62
|
||||
msgid "Choose placeholder color of search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:67
|
||||
msgid "Search Box Placeholder Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:71
|
||||
msgid "Enter placeholder text for search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:76
|
||||
msgid "Search Box Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:80
|
||||
msgid "Choose text color of search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:87
|
||||
msgid "Close Button Settings Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:90
|
||||
msgid "Make Close Button Round Shape"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:95
|
||||
msgid "Enable / Disable round shape for close button background."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:100
|
||||
msgid "Close Button Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:104
|
||||
msgid "Choose background color of close button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:108
|
||||
msgid "Close Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:113
|
||||
msgid "Choose text color of close button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:123
|
||||
msgid "Save WP Full Screen Search Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Name of this plugin
|
||||
#: admin/dashboard-notices.php:11
|
||||
msgid "Thank you for installing %1$s!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/dashboard-notices.php:14
|
||||
msgid "Click here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/dashboard-notices.php:14
|
||||
msgid "to configure the plugin."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Link to TheMaverickSpirit blog
|
||||
#: views/sidebar.php:9
|
||||
msgid "Learn More About WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:17
|
||||
msgid "Want to learn more about WordPress? Check out our free WordPress tutorials on %s."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:18
|
||||
msgid "TheMaverickSpirit blog"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:25
|
||||
msgid "Some of our popular guides:"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:31
|
||||
msgid "Add Alt Tags to WordPress Images"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:36
|
||||
msgid "Disable Self Pingbacks & Trackbacks"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:41
|
||||
msgid "Essential Settings After WordPress Installation"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:46
|
||||
msgid "Improve WordPress Speed & Performance"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:51
|
||||
msgid "Improve WordPress Security"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:62
|
||||
msgid "Looking for a WordPress Theme?"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:66
|
||||
msgid "Check out our list of WordPress themes articles that covers different niches."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:71
|
||||
msgid "Best WordPress Theme Marketplaces"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:76
|
||||
msgid "Amazon Affiliate WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:81
|
||||
msgid "WooCommerce WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:86
|
||||
msgid "Multipurpose WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:91
|
||||
msgid "One Page WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:96
|
||||
msgid "Blog WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:101
|
||||
msgid "Lifestyle Blog WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:106
|
||||
msgid "Personal Blog WordPress Themes"
|
||||
msgstr ""
|
||||
12243
spec/fixtures/dynamic_finders/plugin_version/wp-job-portal/translation_file/languages/wp-job-portal-en_US.po
vendored
Normal file
12243
spec/fixtures/dynamic_finders/plugin_version/wp-job-portal/translation_file/languages/wp-job-portal-en_US.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,145 @@
|
||||
# Copyright (C) 2020 Grepstad Nilsen
|
||||
# This file is distributed under the same license as the WP Pagespeed Score plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Pagespeed Score 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: Grepstad Nilsen <https://www.grepstadnilsen.no/>\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-03-27T21:36:30+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-pagespeed-score\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Pagespeed Score"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.grepstadnilsen.no/wp-pagespeed-score-uri/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This is a short description of what the plugin does. It's displayed in the WordPress admin area."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Grepstad Nilsen"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.grepstadnilsen.no/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Main.php:190
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin name(s).
|
||||
#: src/Bootstrap.php:150
|
||||
msgid "The following plugin needs to be updated to its latest version to ensure maximum compatibility with "
|
||||
msgid_plural "The following plugins need to be updated to their latest version to ensure maximum compatibility with "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: 1: plugin name
|
||||
#: src/Bootstrap.php:157
|
||||
msgid "Plugin not activated. A higher version of %s is needed for this plugin. Please update the plugin."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin display name, 2: required minimum PHP version, 3: current PHP version, help link
|
||||
#: src/Bootstrap.php:176
|
||||
msgid "%1$s requires at least PHP version %2$s in order to work. You have version %3$s. Please see %4$s for more information."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: child theme name
|
||||
#: src/Bootstrap.php:245
|
||||
msgid " and %1$s child theme "
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin display name, 2: parent theme name, 3: child theme name message, 4: wp-admin link to themes, if applicable
|
||||
#: src/Bootstrap.php:252
|
||||
msgid "The %1$s plugin requires the %2$s parent theme%3$sin order to work.%4$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:58
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:63
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:68
|
||||
msgid "Pinterest"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:73
|
||||
msgid "LinkedIn"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Main.php:99
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin display name, 2: name of debug function, 3: PHP End of Line character, 4: name of function triggering debug function, 5: debug log message
|
||||
#: src/Common/Utilities/Debug.php:58
|
||||
msgid "%1$s - Message from %2$s():%3$s%4$s%5$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Utilities/Debug.php:80
|
||||
msgctxt "Successfully emailed from output_to_log()"
|
||||
msgid "Email sent."
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Utilities/Debug.php:82
|
||||
msgctxt "Unsuccessfully emailed from output_to_log()"
|
||||
msgid "Email attempted but failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:88
|
||||
msgid "Plugin options and settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:96
|
||||
msgid "Example Section"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:97
|
||||
msgid "Example Section description."
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:162
|
||||
msgid "Social Network(s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:163
|
||||
msgid "Checked ones will output; unchecked ones will not. Drag and drop to set your preferred display order."
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:212
|
||||
msgid "Post Type(s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:213
|
||||
msgid "Which Post Types should be enabled?"
|
||||
msgstr ""
|
||||
|
||||
#: src/PluginData.php:85
|
||||
msgctxt "Plugin name for display"
|
||||
msgid "WP Pagespeed Score"
|
||||
msgstr ""
|
||||
|
||||
#: src/Shortcodes/Shortcode.php:149
|
||||
msgctxt "Shortcode error cause default text"
|
||||
msgid "Unspecified"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: shortcode tag, 2: cause, 3: raw capability required
|
||||
#: src/Shortcodes/Shortcode.php:154
|
||||
msgctxt "Shortcode error message"
|
||||
msgid "Your attempt to use the `[%1$s]` shortcode resulted in an error because: %2$s. Please reference the documentation or inspect the code and try again. (Message only shown to users with the `%3$s` capability.)"
|
||||
msgstr ""
|
||||
11
spec/fixtures/dynamic_finders/plugin_version/wp-simplemind-map/composer_file/package.json
vendored
Normal file
11
spec/fixtures/dynamic_finders/plugin_version/wp-simplemind-map/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "opcodespace",
|
||||
"version": "1.0.0",
|
||||
"description": "Wordpress plugin development boilerplate",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Mehedee Rahman",
|
||||
"license": "ISC"
|
||||
}
|
||||
@@ -0,0 +1,235 @@
|
||||
# Copyright (C) 2020 ThemeMantis
|
||||
# This file is distributed under the same license as the WP Utility and Performance plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Utility and Performance 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-utility-and-performance\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-22T05:53:20+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-utility-and-performance\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Utility and Performance"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://thememantis.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allows you to remove unused resources and improve speed and performance of your WordPress website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ThemeMantis"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Mayank Majeji"
|
||||
msgstr ""
|
||||
|
||||
#: class-mantis-wp-utility.php:141
|
||||
msgid "nonce field is missing. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: class-mantis-wp-utility.php:144
|
||||
msgid "'Invalid nonce specified. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: class-mantis-wp-utility.php:166
|
||||
msgid "Settings Saved."
|
||||
msgstr ""
|
||||
|
||||
#: class-mantis-wp-utility.php:288
|
||||
msgid "No feed available, please visit the"
|
||||
msgstr ""
|
||||
|
||||
#: class-mantis-wp-utility.php:288
|
||||
msgid "homepage"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Name of this plugin
|
||||
#: views/dashboard-notices.php:11
|
||||
msgid "Thank you for installing %1$s!"
|
||||
msgstr ""
|
||||
|
||||
#: views/dashboard-notices.php:14
|
||||
msgid "Click here"
|
||||
msgstr ""
|
||||
|
||||
#: views/dashboard-notices.php:14
|
||||
msgid "to configure the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:6
|
||||
#: views/settings.php:29
|
||||
msgid "WP Utility & Performance WordPress Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:34
|
||||
msgid "Script & Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:38
|
||||
msgid "Hide CSS Files Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:42
|
||||
msgid "Hide JS Files Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:46
|
||||
msgid "Disable Dashicons in Frontend"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:50
|
||||
msgid "Disable Embeds"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:54
|
||||
msgid "Disable Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:59
|
||||
msgid "WordPress Meta Tag Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:63
|
||||
msgid "Remove RSD Link"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:67
|
||||
msgid "Hide WordPress Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:71
|
||||
msgid "Disable XML RPC"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:75
|
||||
msgid "Remove WLW Manifest Link"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:79
|
||||
msgid "Remove Shortlink"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:84
|
||||
msgid "WordPress Autoupdate Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:88
|
||||
msgid "Enable Plugin Autoupdate"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:92
|
||||
msgid "Enable Theme Autoupdate"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:97
|
||||
msgid "RSS Feed Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:101
|
||||
msgid "Disable RSS Feed"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:105
|
||||
msgid "Remove RSS Feed Links"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:109
|
||||
msgid "Add Feature Image To RSS Feed"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:115
|
||||
msgid "WordPress Widget Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:115
|
||||
msgid "Enable Shortcode in WP Widgets"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Link to TheMaverickSpirit blog
|
||||
#: views/sidebar.php:9
|
||||
msgid "Learn More About WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:17
|
||||
msgid "Want to learn more about WordPress? Check out our free WordPress tutorials on %s."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:18
|
||||
msgid "TheMaverickSpirit blog"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:25
|
||||
msgid "Some of our popular guides:"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:31
|
||||
msgid "Add Alt Tags to WordPress Images"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:36
|
||||
msgid "Disable Self Pingbacks & Trackbacks"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:41
|
||||
msgid "Essential Settings After WordPress Installation"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:46
|
||||
msgid "Improve WordPress Speed & Performance"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:51
|
||||
msgid "Improve WordPress Security"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:62
|
||||
msgid "Looking for a WordPress Theme?"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:66
|
||||
msgid "Check out our list of WordPress themes articles that covers different niches."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:71
|
||||
msgid "Best WordPress Theme Marketplaces"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:76
|
||||
msgid "Amazon Affiliate WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:81
|
||||
msgid "WooCommerce WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:86
|
||||
msgid "Multipurpose WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:91
|
||||
msgid "One Page WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:96
|
||||
msgid "Blog WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:101
|
||||
msgid "Lifestyle Blog WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:106
|
||||
msgid "Personal Blog WordPress Themes"
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/wp-widget-styler/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/wp-widget-styler/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
Version 1.0.0 - Wednesday, 02nd September 2020
|
||||
- Initial release
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user