Compare commits
53 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
105d06c8f8 | ||
|
|
82941906ca | ||
|
|
470fbb1ff3 | ||
|
|
8c6234879e | ||
|
|
689252c715 | ||
|
|
19cf00227b | ||
|
|
c9795dc560 | ||
|
|
188c8f31b2 | ||
|
|
76b2c067f6 | ||
|
|
01316ceac1 | ||
|
|
52f14c5f06 | ||
|
|
6782730d80 | ||
|
|
4235871a00 | ||
|
|
cb27a22fc4 | ||
|
|
e639d4eee3 | ||
|
|
d95b70f1c2 | ||
|
|
fb97553f7c | ||
|
|
b3b3bec6b0 | ||
|
|
baab7a49f6 | ||
|
|
6843fe700e | ||
|
|
0c193de70e | ||
|
|
e42ce414de | ||
|
|
6d347ada98 | ||
|
|
3638241513 | ||
|
|
1c30743a11 | ||
|
|
48d363031b | ||
|
|
d083719b9c | ||
|
|
7fd59b27f4 | ||
|
|
6f4b216bb0 | ||
|
|
5fa82a3f27 | ||
|
|
02d1e30b08 | ||
|
|
1e2d227c56 | ||
|
|
cfc895e658 | ||
|
|
3f789b39c4 | ||
|
|
16002576d2 | ||
|
|
7b0e352d29 | ||
|
|
da85729254 | ||
|
|
6a48f6c42b | ||
|
|
8eabcd9df3 | ||
|
|
6b89bc9f55 | ||
|
|
1e250796ca | ||
|
|
c73f9028f0 | ||
|
|
71c89371a9 | ||
|
|
9043ddca71 | ||
|
|
6c461e778d | ||
|
|
3f1a71c643 | ||
|
|
b0df6dcade | ||
|
|
ac0d2fb536 | ||
|
|
48f107021a | ||
|
|
64ac4ecf72 | ||
|
|
ddc680a9ae | ||
|
|
43b04da5a2 | ||
|
|
bc28dd392d |
@@ -1 +1 @@
|
||||
2.7.1
|
||||
2.7.2
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
FROM ruby:2.7.1-alpine AS builder
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
FROM ruby:2.7.2-alpine AS builder
|
||||
LABEL maintainer="WPScan Team <contact@wpscan.com>"
|
||||
|
||||
RUN echo "install: --no-document --no-post-install-message\nupdate: --no-document --no-post-install-message" > /etc/gemrc
|
||||
|
||||
@@ -19,8 +19,8 @@ RUN rake install --trace
|
||||
RUN chmod -R a+r /usr/local/bundle
|
||||
|
||||
|
||||
FROM ruby:2.7.1-alpine
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
FROM ruby:2.7.2-alpine
|
||||
LABEL maintainer="WPScan Team <contact@wpscan.com>"
|
||||
LABEL org.opencontainers.image.source https://github.com/wpscanteam/wpscan
|
||||
|
||||
RUN adduser -h /wpscan -g WPScan -D wpscan
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<p align="center">
|
||||
<a href="https://wpscan.org/">
|
||||
<a href="https://wpscan.com/">
|
||||
<img src="https://raw.githubusercontent.com/wpscanteam/wpscan/gh-pages/images/wpscan_logo.png" alt="WPScan logo">
|
||||
</a>
|
||||
</p>
|
||||
@@ -176,7 +176,7 @@ Example cases which do not require a commercial license, and thus fall under the
|
||||
- Using WPScan to test your own systems.
|
||||
- Any non-commercial use of WPScan.
|
||||
|
||||
If you need to purchase a commercial license or are unsure whether you need to purchase a commercial license contact us - team@wpscan.org.
|
||||
If you need to purchase a commercial license or are unsure whether you need to purchase a commercial license contact us - contact@wpscan.com.
|
||||
|
||||
Free-use Terms and Conditions;
|
||||
|
||||
|
||||
@@ -8,13 +8,13 @@ module WPScan
|
||||
def cli_options
|
||||
[OptURL.new(['--url URL', 'The URL of the blog to scan'],
|
||||
required_unless: %i[update help hh version], default_protocol: 'http')] +
|
||||
super.drop(1) + # delete the --url from CMSScanner
|
||||
super.drop(2) + # delete the --url and --force from CMSScanner
|
||||
[
|
||||
OptChoice.new(['--server SERVER', 'Force the supplied server module to be loaded'],
|
||||
choices: %w[apache iis nginx],
|
||||
normalize: %i[downcase to_sym],
|
||||
advanced: true),
|
||||
OptBoolean.new(['--force', 'Do not check if the target is running WordPress']),
|
||||
OptBoolean.new(['--force', 'Do not check if the target is running WordPress or returns a 403']),
|
||||
OptBoolean.new(['--[no-]update', 'Whether or not to update the Database'])
|
||||
]
|
||||
end
|
||||
|
||||
@@ -8,7 +8,10 @@ module WPScan
|
||||
|
||||
def cli_options
|
||||
[
|
||||
OptString.new(['--api-token TOKEN', 'The WPVulnDB API Token to display vulnerability data'])
|
||||
OptString.new(
|
||||
['--api-token TOKEN',
|
||||
'The WPScan API Token to display vulnerability data, available at https://wpscan.com/profile']
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
@@ -19,7 +22,7 @@ module WPScan
|
||||
|
||||
api_status = DB::VulnApi.status
|
||||
|
||||
raise Error::InvalidApiToken if api_status['error']
|
||||
raise Error::InvalidApiToken if api_status['status'] == 'forbidden'
|
||||
raise Error::ApiLimitReached if api_status['requests_remaining'] == 0
|
||||
raise api_status['http_error'] if api_status['http_error']
|
||||
end
|
||||
|
||||
@@ -6,6 +6,7 @@ require_relative 'interesting_findings/multisite'
|
||||
require_relative 'interesting_findings/debug_log'
|
||||
require_relative 'interesting_findings/backup_db'
|
||||
require_relative 'interesting_findings/mu_plugins'
|
||||
require_relative 'interesting_findings/php_disabled'
|
||||
require_relative 'interesting_findings/registration'
|
||||
require_relative 'interesting_findings/tmm_db_migrate'
|
||||
require_relative 'interesting_findings/upload_sql_dump'
|
||||
@@ -26,7 +27,7 @@ module WPScan
|
||||
%w[
|
||||
Readme DebugLog FullPathDisclosure BackupDB DuplicatorInstallerLog
|
||||
Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate
|
||||
UploadSQLDump EmergencyPwdResetScript WPCron
|
||||
UploadSQLDump EmergencyPwdResetScript WPCron PHPDisabled
|
||||
].each do |f|
|
||||
finders << InterestingFindings.const_get(f).new(target)
|
||||
end
|
||||
|
||||
21
app/finders/interesting_findings/php_disabled.rb
Normal file
21
app/finders/interesting_findings/php_disabled.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
module InterestingFindings
|
||||
# See https://github.com/wpscanteam/wpscan/issues/1593
|
||||
class PHPDisabled < CMSScanner::Finders::Finder
|
||||
PATTERN = /\$wp_version =/.freeze
|
||||
|
||||
# @return [ InterestingFinding ]
|
||||
def aggressive(_opts = {})
|
||||
path = 'wp-includes/version.php'
|
||||
|
||||
return unless PATTERN.match?(target.head_and_get(path).body)
|
||||
|
||||
Model::PHPDisabled.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -132,5 +132,19 @@ module WPScan
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
class PHPDisabled < InterestingFinding
|
||||
# @return [ String ]
|
||||
def to_s
|
||||
@to_s ||= 'PHP seems to be disabled'
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= {
|
||||
url: ['https://github.com/wpscanteam/wpscan/issues/1593']
|
||||
}
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<% unless @status.empty? -%>
|
||||
<% if @status['http_error'] -%>
|
||||
<%= critical_icon %> WPVulnDB API, <%= @status['http_error'].to_s %>
|
||||
<%= critical_icon %> WPScan DB API, <%= @status['http_error'].to_s %>
|
||||
<% else -%>
|
||||
<%= info_icon %> WPVulnDB API OK
|
||||
<%= info_icon %> WPScan DB API OK
|
||||
| Plan: <%= @status['plan'] %>
|
||||
| Requests Done (during the scan): <%= @api_requests %>
|
||||
| Requests Remaining: <%= @status['requests_remaining'] %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
<%= warning_icon %> No WPVulnDB API Token given, as a result vulnerability data has not been output.
|
||||
<%= warning_icon %> No WPScan API Token given, as a result vulnerability data has not been output.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpscan.com/register
|
||||
<% end -%>
|
||||
|
||||
@@ -8,6 +8,6 @@
|
||||
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpscan.com/register"
|
||||
"error": "No WPScan API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpscan.com/register"
|
||||
<% end -%>
|
||||
},
|
||||
@@ -7,7 +7,7 @@ module WPScan
|
||||
|
||||
# @return [ String ]
|
||||
def default_user_agent
|
||||
@default_user_agent ||= "WPScan v#{VERSION} (https://wpscan.org/)"
|
||||
@default_user_agent ||= "WPScan v#{VERSION} (https://wpscan.com/wordpress-security-scanner)"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -4,7 +4,7 @@ module WPScan
|
||||
module DB
|
||||
# WPVulnDB API
|
||||
class VulnApi
|
||||
NON_ERROR_CODES = [200, 401].freeze
|
||||
NON_ERROR_CODES = [200, 403].freeze
|
||||
|
||||
class << self
|
||||
attr_accessor :token
|
||||
@@ -26,7 +26,7 @@ module WPScan
|
||||
# Typhoeus.get is used rather than Browser.get to avoid merging irrelevant params from the CLI
|
||||
res = Typhoeus.get(uri.join(path), default_request_params.merge(params))
|
||||
|
||||
return {} if res.code == 404 # This is for API inconsistencies when dots in path
|
||||
return {} if res.code == 404 || res.code == 429
|
||||
return JSON.parse(res.body) if NON_ERROR_CODES.include?(res.code)
|
||||
|
||||
raise Error::HTTP, res
|
||||
@@ -34,6 +34,8 @@ module WPScan
|
||||
retries ||= 0
|
||||
|
||||
if (retries += 1) <= 3
|
||||
@default_request_params[:headers]['X-Retry'] = retries
|
||||
|
||||
sleep(1)
|
||||
retry
|
||||
end
|
||||
@@ -68,7 +70,7 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
# @note Those params can not be overriden by CLI options
|
||||
def self.default_request_params
|
||||
Browser.instance.default_connect_request_params.merge(
|
||||
@default_request_params ||= Browser.instance.default_connect_request_params.merge(
|
||||
headers: {
|
||||
'User-Agent' => Browser.instance.default_user_agent,
|
||||
'Authorization' => "Token token=#{token}"
|
||||
|
||||
@@ -11,9 +11,10 @@ module WPScan
|
||||
module WordPress
|
||||
include CMSScanner::Target::Platform::PHP
|
||||
|
||||
WORDPRESS_PATTERN = %r{/(?:(?:wp-content/(?:themes|(?:mu-)?plugins|uploads))|wp-includes)/}i.freeze
|
||||
WP_JSON_OEMBED_PATTERN = %r{/wp-json/oembed/}i.freeze
|
||||
WP_ADMIN_AJAX_PATTERN = %r{\\?/wp-admin\\?/admin-ajax\.php}i.freeze
|
||||
WORDPRESS_PATTERN = %r{/(?:(?:wp-content/(?:themes|(?:mu-)?plugins|uploads))|wp-includes)/}i.freeze
|
||||
WORDPRESS_HOSTED_PATTERN = %r{https?://s\d\.wp\.com#{WORDPRESS_PATTERN}}i.freeze
|
||||
WP_JSON_OEMBED_PATTERN = %r{/wp-json/oembed/}i.freeze
|
||||
WP_ADMIN_AJAX_PATTERN = %r{\\?/wp-admin\\?/admin-ajax\.php}i.freeze
|
||||
|
||||
# These methods are used in the associated interesting_findings finders
|
||||
# to keep the boolean state of the finding rather than re-check the whole thing again
|
||||
@@ -103,11 +104,8 @@ module WPScan
|
||||
return true if /\.wordpress\.com$/i.match?(uri.host)
|
||||
|
||||
unless content_dir
|
||||
pattern = %r{https?://s\d\.wp\.com#{WORDPRESS_PATTERN}}i.freeze
|
||||
xpath = '(//@href|//@src)[contains(., "wp.com")]'
|
||||
|
||||
uris_from_page(homepage_res, xpath) do |uri|
|
||||
return true if uri.to_s.match?(pattern)
|
||||
uris_from_page(homepage_res, '(//@href|//@src)[contains(., "wp.com")]') do |uri|
|
||||
return true if uri.to_s.match?(WORDPRESS_HOSTED_PATTERN)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -7,7 +7,8 @@ module Typhoeus
|
||||
#
|
||||
# @return [ Boolean ]
|
||||
def from_vuln_api?
|
||||
effective_url.start_with?(WPScan::DB::VulnApi.uri.to_s) && !effective_url.include?('/status')
|
||||
effective_url.start_with?(WPScan::DB::VulnApi.uri.to_s) &&
|
||||
!effective_url.start_with?(WPScan::DB::VulnApi.uri.join('status').to_s)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.10'
|
||||
VERSION = '3.8.13'
|
||||
end
|
||||
|
||||
@@ -7,6 +7,7 @@ describe WPScan::Controller::VulnApi do
|
||||
|
||||
before do
|
||||
WPScan::ParsedCli.options = rspec_parsed_options(cli_args)
|
||||
WPScan::DB::VulnApi.instance_variable_set(:'@default_request_params', nil)
|
||||
end
|
||||
|
||||
describe '#cli_options' do
|
||||
@@ -27,7 +28,7 @@ describe WPScan::Controller::VulnApi do
|
||||
let(:cli_args) { "#{super()} --api-token token" }
|
||||
|
||||
context 'when the token is invalid' do
|
||||
before { expect(WPScan::DB::VulnApi).to receive(:status).and_return('error' => 'HTTP Token: Access denied.') }
|
||||
before { expect(WPScan::DB::VulnApi).to receive(:status).and_return('status' => 'forbidden') }
|
||||
|
||||
it 'raise an InvalidApiToken error' do
|
||||
expect { controller.before_scan }.to raise_error(WPScan::Error::InvalidApiToken)
|
||||
|
||||
50
spec/app/finders/interesting_findings/php_disabled_spec.rb
Normal file
50
spec/app/finders/interesting_findings/php_disabled_spec.rb
Normal file
@@ -0,0 +1,50 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::PHPDisabled do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'php_disabled') }
|
||||
let(:file_path) { 'wp-includes/version.php' }
|
||||
let(:file_url) { target.url(file_path) }
|
||||
|
||||
describe '#aggressive' do
|
||||
before do
|
||||
expect(target).to receive(:sub_dir).at_least(1).and_return(false)
|
||||
expect(target).to receive(:head_or_get_params).and_return(method: :head)
|
||||
end
|
||||
|
||||
context 'when not a 200' do
|
||||
it 'return nil' do
|
||||
stub_request(:head, file_url).to_return(status: 404)
|
||||
|
||||
expect(finder.aggressive).to eql nil
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a 200' do
|
||||
before do
|
||||
stub_request(:head, file_url)
|
||||
stub_request(:get, file_url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when the body does not match' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should be_nil }
|
||||
end
|
||||
|
||||
context 'when the body matches' do
|
||||
let(:body) { File.read(fixtures.join('version.php')) }
|
||||
|
||||
it 'returns the PHPDisabled' do
|
||||
expect(finder.aggressive).to eql WPScan::Model::PHPDisabled.new(
|
||||
file_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -10,7 +10,7 @@ describe WPScan::Finders::InterestingFindings::Base do
|
||||
%w[
|
||||
Readme DebugLog FullPathDisclosure
|
||||
Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate
|
||||
UploadSQLDump
|
||||
UploadSQLDump PHPDisabled
|
||||
]
|
||||
end
|
||||
|
||||
|
||||
3755
spec/fixtures/db/dynamic_finders.yml
vendored
3755
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1532
spec/fixtures/dynamic_finders/expected.yml
vendored
1532
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,426 @@
|
||||
# Copyright (C) 2020 ZealousWeb Technologies
|
||||
# This file is distributed under the same license as the Accept 2Checkout Payments Using Contact Form 7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Accept 2Checkout Payments Using Contact Form 7 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accept-2checkout-payments-using-contact-form-7-free\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-21T15:36:36+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: accept-2checkout-payments-using-contact-form-7\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Accept 2Checkout Payments Using Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin will integrate 2checkout payment gateway for making your payments through Contact Form 7."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ZealousWeb Technologies"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zealousweb.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.action.php:81
|
||||
msgid "From Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.action.php:82
|
||||
#: inc/admin/class.cf72ch.admin.action.php:329
|
||||
msgid "Do you need help for configuration?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.action.php:283
|
||||
msgid "Select Forms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.filter.php:53
|
||||
msgid "2checkout"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.filter.php:101
|
||||
#: inc/admin/template/cf72ch.template.php:114
|
||||
msgid "Document Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.filter.php:104
|
||||
msgid "Support Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.filter.php:140
|
||||
msgid "Invoice ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.filter.php:141
|
||||
msgid "Order ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.filter.php:142
|
||||
msgid "Transaction Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.filter.php:143
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf72ch.admin.filter.php:144
|
||||
msgid "Submitted Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:79
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:80
|
||||
msgid "Live"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:113
|
||||
msgid "To use 2Checkout option, first you need to create and save form tags."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:123
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:133
|
||||
msgid "Enable Debug Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:143
|
||||
msgid "Payment Mode "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:160
|
||||
msgid "2Checkout Order Item Name *"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:171
|
||||
msgid "Merchant Code "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:182
|
||||
msgid "Secret Key "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:193
|
||||
msgid "Amount Field Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:199
|
||||
msgid "Select field name for amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:212
|
||||
msgid "Quantity Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:218
|
||||
msgid "Select field name for quantity"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:231
|
||||
msgid "Customer Email "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:237
|
||||
msgid "Select field name for customer email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:251
|
||||
msgid "Select Currency"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:270
|
||||
msgid "Return Success URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:276
|
||||
#: inc/admin/template/cf72ch.template.php:296
|
||||
msgid "Select page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:290
|
||||
msgid "Return Cancel URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:314
|
||||
msgid "Customer Billing Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:323
|
||||
msgid "Billing First Name Field "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:329
|
||||
msgid "Select field name for billing first name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:342
|
||||
msgid "Billing Last Name Field "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:348
|
||||
msgid "Select field name for billing last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:361
|
||||
msgid "Billing Address Field "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:367
|
||||
msgid "Select field name for billing address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:380
|
||||
msgid "Billing City Field "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:386
|
||||
msgid "Select field name for billing city name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:399
|
||||
msgid "Billing State Field "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:405
|
||||
msgid "Select field name for billing state name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:418
|
||||
msgid "Billing Zipcode Field "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:424
|
||||
msgid "Select field name for billing Zipcode name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:438
|
||||
msgid "Billing Country Field "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:444
|
||||
msgid "Select field name for billing country name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:479
|
||||
msgid "<h3>Merchant Code</h3><p>Get Merchant Code from <a href=\"#\" target=\"_blank\">here</a></p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:483
|
||||
msgid "<h3>Order Item Name</h3><p>Set Order Item Name</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:487
|
||||
msgid "<h3>Secret Key</h3><p>Get Secret Key from <a href=\"#\" target=\"_blank\">here</a></p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:491
|
||||
msgid "<h3>Select Currency</h3><p>Select the currency.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:495
|
||||
msgid "<h3>Amount Field</h3><p>Select field from where amount value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:499
|
||||
msgid "<h3>Quantity Field</h3><p>Select field from where quantity value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:503
|
||||
msgid "<h3>Customer Email Field</h3><p>Select field from where customer email value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:507
|
||||
msgid "<h3>Success Return URL Field </h3><p>Select page and redirect customer after succesfully payment done.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:511
|
||||
msgid "<h3>Cancel Return URL Field </h3><p>Select page and redirect customer after cancel payment process or payment not done.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:515
|
||||
msgid "<h3>Billing First Name Field</h3><p>Select field from where billing first name value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:519
|
||||
msgid "<h3>Billing Last Name Field</h3><p>Select field from where billing last name value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:523
|
||||
msgid "<h3>Billing Address Field</h3><p>Select field from where billing address value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:527
|
||||
msgid "<h3>Billing City Field</h3><p>Select field from where billing city value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:531
|
||||
msgid "<h3>Billing State Field</h3><p>Select field from where billing state value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:535
|
||||
msgid "<h3>Billing ZipCode Field</h3><p>Select field from where billing zipcode value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf72ch.template.php:539
|
||||
msgid "<h3>Billing Country Field</h3><p>Select field from where billing country value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf72ch.php:108
|
||||
msgid "<strong><a href=\"https://wordpress.org/plugins/contact-form-7/\" target=\"_blank\">Contact Form 7</a></strong> is required to use <strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf72ch.php:135
|
||||
#: inc/class.cf72ch.php:136
|
||||
#: inc/class.cf72ch.php:141
|
||||
msgid "2Checkout Payment Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf72ch.php:137
|
||||
msgid "Transaction Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf72ch.php:182
|
||||
msgid "2Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf72ch.php:189
|
||||
msgid "2Checkout Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf72ch.php:292
|
||||
msgid "Generate a form-tag for to display 2Checkout payment form"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf72ch.php:301
|
||||
#: inc/class.cf72ch.php:353
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf72ch.php:317
|
||||
#: inc/class.cf72ch.php:368
|
||||
msgid "Insert Tag"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf72ch.php:324
|
||||
#: inc/class.cf72ch.php:375
|
||||
msgid "To use the value input through this field in a mail field, you need to insert the corresponding mail-tag (%s) into the field on the Mail tab."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf72ch.php:344
|
||||
msgid "Generate a form-tag for to display 2Checkout Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:232
|
||||
msgid "2checkout creadit card info not there, please contact admin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:241
|
||||
msgid "2checkout API credentials are missing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:249
|
||||
msgid "Account not configured properly, please contact admin"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:599
|
||||
#: inc/lib/class.cf72ch.lib.php:612
|
||||
msgid "Due to Some technical issue, please try again!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:653
|
||||
msgid "Response :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:665
|
||||
msgid "Payment Successfully Done."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:667
|
||||
msgid "Payment is in process from 2 checkout side."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:672
|
||||
msgid "Transaction Amount :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:676
|
||||
msgid "Invoice No :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:680
|
||||
msgid "Payment Status :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:720
|
||||
#: inc/lib/class.cf72ch.lib.php:1319
|
||||
#: inc/lib/class.cf72ch.lib.php:1353
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:723
|
||||
msgid "Expiry Date And Year"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:726
|
||||
#: inc/lib/class.cf72ch.lib.php:1328
|
||||
#: inc/lib/class.cf72ch.lib.php:1384
|
||||
msgid "CVV"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:729
|
||||
msgid "Correct CVV Number"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:732
|
||||
#: inc/lib/class.cf72ch.lib.php:1331
|
||||
#: inc/lib/class.cf72ch.lib.php:1344
|
||||
msgid "Card Holder Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:735
|
||||
msgid "Correct Expiry Month And Year"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:793
|
||||
msgid "One or more fields have an error. Please check and try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:801
|
||||
msgid "Please enter amount or valid amount."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:803
|
||||
msgid "The field is required."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:1316
|
||||
msgid "Card Verification Number (CVV)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:1322
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:1325
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:1334
|
||||
msgid "Pay via 2Checkout. Accept Credit Cards, Debit Cards"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf72ch.lib.php:1363
|
||||
msgid "Expiration Date"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,232 @@
|
||||
# Copyright (C) 2019 ZealousWeb Technologies
|
||||
# This file is distributed under the same license as the Contact Form 7 - Authorize.NET Add-on plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Contact Form 7 - Authorize.NET Add-on 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/contact-form-7-authorize-net-addon\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: 2019-08-26T13:43:18+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: contact-form-7-authorize-net-addon\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Contact Form 7 - Authorize.NET Add-on"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin will integrate Authorize.NET payment gateway for making your payments through Contact Form 7."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ZealousWeb Technologies"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zealousweb.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7adn.admin.action.php:213
|
||||
msgid "From Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7adn.admin.action.php:214
|
||||
msgid "Do you need help for configuration?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7adn.admin.action.php:390
|
||||
msgid "All Forms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7adn.admin.action.php:438
|
||||
msgid "Please select Form to export."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:113
|
||||
msgid "Enable Authorize.Net Payment Form"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:123
|
||||
msgid "Enable Test API Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:134
|
||||
msgid "Enable Debug Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:144
|
||||
msgid "Sandbox Login ID (required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:155
|
||||
msgid "Sandbox Transaction Key (required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:166
|
||||
msgid "Live Login ID (required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:177
|
||||
msgid "Live Transaction Key (required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:188
|
||||
msgid "Amount Field Name (required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:199
|
||||
msgid "Quantity Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:209
|
||||
msgid "Customer Email Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:219
|
||||
msgid "Description Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:229
|
||||
msgid "Select Currency"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:248
|
||||
msgid "Success Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:253
|
||||
#: inc/admin/template/cf7adn.template.php:272
|
||||
msgid "Select page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:267
|
||||
msgid "Cancel Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:295
|
||||
msgid "Customer Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:304
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:314
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:324
|
||||
msgid "Company Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:334
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:344
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:354
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:364
|
||||
msgid "Zip Code"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:374
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:416
|
||||
msgid "<h3>Sandbox mode</h3><p>Check the Authorize.Net testing guide <a href=\"https://developer.authorize.net/hello_world/testing_guide/\" target=\"_blank\">here</a>.This will display \"sandbox mode\" warning on checkout.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:429
|
||||
msgid "<h3>Get Your Sandbox Login ID</h3><p>Get it from <a href=\"https://sandbox.authorize.net\" target=\"_blank\"> Sandbox Authorize.net</a> then <strong> Account > Security Settings > API Credentials & Keys </strong> page in your Authorize.Net account.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:442
|
||||
msgid "<h3>Get Your Sandbox Transaction Key</h3><p>Get it from <a href=\"https://sandbox.authorize.net\" target=\"_blank\"> Sandbox Authorize.net</a> then <strong>Account > Security Settings > API Credentials & Keys </strong> page in your Authorize.Net account. For security reasons, you cannot view your Transaction Key, but you will be able to generate a new one. </p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:455
|
||||
msgid "<h3>Get Your Live Login ID</h3><p>Get it from <a href=\"https://account.authorize.net\" target=\"_blank\">Authorize.net</a> then <strong>Account > Security Settings > API Credentials & Keys </strong> page in your Authorize.Net account.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:468
|
||||
msgid "<h3>Get Your Live Transaction Key</h3><p>Get it from <a href=\"https://account.authorize.net\" target=\"_blank\">Authorize.net</a> then <strong> Account > Security Settings > API Credentials & Keys </strong> page in your Authorize.Net account. For security reasons, you cannot view your Transaction Key, but you will be able to generate a new one. </p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:481
|
||||
msgid "<h3>Add Amount Name</h3><p>Add here the Name of amount field</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7adn.template.php:494
|
||||
msgid "<h3>Select Currency</h3><p>Select the currency which is selected from your authorize.net merchant account.<br/><strong>Note:</strong>Authorize.net dont provide multiple currencies for single account</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7adn.admin.filter.php:55
|
||||
#: inc/class.cf7adn.php:95
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7adn.admin.filter.php:114
|
||||
msgid "Form ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7adn.admin.filter.php:115
|
||||
msgid "Transaction Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7adn.admin.filter.php:116
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7adn.admin.filter.php:117
|
||||
msgid "Submitted Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7adn.lib.php:564
|
||||
#: inc/lib/class.cf7adn.lib.php:569
|
||||
msgid "Something goes wrong! Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7adn.lib.php:608
|
||||
msgid "Transaction Amount :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7adn.lib.php:612
|
||||
msgid "Payment Status :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7adn.lib.php:616
|
||||
msgid "Transaction Id :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7adn.lib.php:625
|
||||
msgid "ERROR : Invalid response"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7adn.lib.php:628
|
||||
msgid "Response :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7adn.php:118
|
||||
#: inc/class.cf7adn.php:119
|
||||
#: inc/class.cf7adn.php:123
|
||||
msgid "Authorize.Net Add-on"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7adn.php:271
|
||||
msgid "Button Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7adn.php:272
|
||||
msgid "Make Payment"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,381 @@
|
||||
# Copyright (C) 2020 ZealousWeb Technologies
|
||||
# This file is distributed under the same license as the Accept Qpay payments Using Contact form 7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Accept Qpay payments Using Contact form 7 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accept-qpay-payments-using-contact-form-7\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-16T16:31:20+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: accept-qpay-payments-using-contact-form-7\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Accept Qpay payments Using Contact form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin will integrate QPay payment gateway for making your payments through Contact Form 7."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ZealousWeb Technologies"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zealousweb.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:237
|
||||
msgid "From Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:238
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:641
|
||||
msgid "Do you need help for configuration?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:577
|
||||
msgid "Select Forms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:624
|
||||
msgid "Please select Form to export."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:666
|
||||
msgid "Import your CSV."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:668
|
||||
msgid "Check demo CSV "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:668
|
||||
msgid "here.."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:670
|
||||
msgid "Enter New Form Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:672
|
||||
msgid "Upload File"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Accept Qpay payments Using Contact form 7
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:851
|
||||
msgid "<p>Import is done successfully.</p>"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Accept Qpay payments Using Contact form 7
|
||||
#: inc/admin/class.cf7qpay.admin.action.php:864
|
||||
msgid "<p>File type is not correct. Please upload CSV.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.filter.php:54
|
||||
msgid "QPay"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.filter.php:104
|
||||
msgid "Licensing Page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.filter.php:107
|
||||
#: inc/admin/template/cf7qpay.template.php:83
|
||||
msgid "Document Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.filter.php:126
|
||||
msgid "Order ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.filter.php:127
|
||||
msgid "Transaction ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.filter.php:128
|
||||
msgid "Transaction Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.filter.php:129
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7qpay.admin.filter.php:130
|
||||
msgid "Submitted Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:49
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:50
|
||||
msgid "Live"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:82
|
||||
msgid "To use QPay option, first you need to create and save form tags."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:92
|
||||
msgid "QPay Enable"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:102
|
||||
msgid "Payment Mode "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:119
|
||||
msgid "QPay Gateway ID "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:130
|
||||
msgid "QPay Secret Key "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:142
|
||||
msgid "Amount Field Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:148
|
||||
msgid "Select field name for amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:162
|
||||
msgid "Quantity Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:168
|
||||
msgid "Select field name for quantity"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:181
|
||||
msgid "Select Currency"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:200
|
||||
msgid "Order Unique Prefix (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:211
|
||||
msgid "Success Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:217
|
||||
msgid "Select page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:233
|
||||
msgid "Customer Billing Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:242
|
||||
msgid "Customer Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:248
|
||||
msgid "Select field name for customer name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:261
|
||||
msgid "Customer Address "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:267
|
||||
msgid "Select field name for customer address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:280
|
||||
msgid "Customer City "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:286
|
||||
msgid "Select field name for customer city"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:299
|
||||
msgid "Customer State "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:305
|
||||
msgid "Select field name for customer state"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:318
|
||||
msgid "Customer Country "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:324
|
||||
msgid "Select field name for customer country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:337
|
||||
msgid "Customer Phone "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:343
|
||||
msgid "Select field name for customer phone"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:356
|
||||
msgid "Customer Email "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:362
|
||||
msgid "Select field name for customer email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:395
|
||||
msgid "<h3>QPay Gateway ID</h3><p>You can get your QPay Gateway ID from <a href=\"#\" target=\"_blank\">here</a>. </p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:398
|
||||
msgid "<h3>QPay Secret Key</h3><p>You can get your QPay Secret Key from <a href=\"#\" target=\"_blank\">here</a>. </p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:401
|
||||
msgid "<h3>Amount Field </h3><p>Select field from where amount value needs to be retrieved. </p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:405
|
||||
msgid "<h3>Quantity Field </h3><p>Select field from where quantity value needs to be retrieved. </p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:409
|
||||
msgid "<h3>Select Currency</h3><p>Select the currency.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:412
|
||||
msgid "<h3>Order Prefix</h3><p>Please enter unique prefix name which display in invoice order ( Special Characters are not allowed ). </p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:415
|
||||
msgid "<h3>Success Return URL</h3><p>Select page and redirect customer after successfully payment done. </p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:418
|
||||
msgid "<h3>Customer Name Field </h3><p>Select field from where customer billing name value needs to be retrieved. </p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:422
|
||||
msgid "<h3>Customer Address Field </h3><p>Select field from where customer billing address value needs to be retrieved. </p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:426
|
||||
msgid "<h3>Customer City Field </h3><p>Select field from where customer billing city value needs to be retrieved. </p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:430
|
||||
msgid "<h3>Customer State Field </h3><p>Select field from where customer billing state value needs to be retrieved. </p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:434
|
||||
msgid "<h3>Customer Country Field </h3><p>Select field from where customer billing country value needs to be retrieved. </p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:438
|
||||
msgid "<h3>Customer Phone No. Field </h3><p>Select field from where customer billing phone no. value needs to be retrieved. </p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7qpay.template.php:442
|
||||
msgid "<h3>Customer Email Field </h3><p>Select field from where customer billing email value needs to be retrieved. </p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Contact Form 7 - Sagepay Add-on
|
||||
#: inc/class.cf7qpay.php:117
|
||||
msgid "<strong><a href=\"https://wordpress.org/plugins/contact-form-7/\" target=\"_blank\">Contact Form 7</a></strong> is required to use <strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7qpay.php:142
|
||||
#: inc/class.cf7qpay.php:143
|
||||
#: inc/class.cf7qpay.php:153
|
||||
msgid "QPay Payment Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7qpay.php:144
|
||||
msgid "All QPay Payment Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7qpay.php:145
|
||||
msgid "Edit QPay Payment Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7qpay.php:146
|
||||
msgid "View QPay Payment Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7qpay.php:147
|
||||
msgid "Search QPay Payment Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7qpay.php:148
|
||||
msgid "No QPay Payment Detail Found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7qpay.php:149
|
||||
msgid "No QPay Payment Details Found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7qpay.php:187
|
||||
msgid "QPay Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7qpay.php:260
|
||||
msgid "Generate a form-tag to display Country field"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:385
|
||||
#: inc/lib/class.cf7qpay.lib.php:395
|
||||
msgid "QPay Response Details:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:503
|
||||
msgid "Payment Page not Configured Properly. Please Conatct Admin. "
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:547
|
||||
#: inc/lib/class.cf7qpay.lib.php:556
|
||||
#: inc/lib/class.cf7qpay.lib.php:789
|
||||
msgid "Please Enter Amount value or Value in Numeric."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:701
|
||||
msgid "Transaction Amount :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:705
|
||||
msgid "Payment Status :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:709
|
||||
msgid "Transaction Id :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:713
|
||||
msgid "Invoice ID :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:722
|
||||
msgid "Response :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:726
|
||||
msgid "Response Message :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:791
|
||||
msgid "The field is required."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:811
|
||||
msgid "One or more fields have an error. Please check and try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7qpay.lib.php:860
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,495 @@
|
||||
# Copyright (C) 2020 ZealousWeb
|
||||
# This file is distributed under the same license as the Accept SagePay Payments Using Contact Form 7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Accept SagePay Payments Using Contact Form 7 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accept-sagepay-payments-using-contact-form-7\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-11-27T08:04:48+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: accept-sagepay-payments-using-contact-form-7\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Accept SagePay Payments Using Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin will integrate Sagepay payment gateway for making your payments through Contact Form 7."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ZealousWeb"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zealousweb.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.action.php:81
|
||||
msgid "From Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.action.php:82
|
||||
#: inc/admin/class.cfspzw.admin.action.php:344
|
||||
msgid "Do you need help for configuration?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.action.php:347
|
||||
msgid "Refer the document."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.action.php:349
|
||||
msgid "Support Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:55
|
||||
msgid "SagePay"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:104
|
||||
#: inc/admin/template/cfspzw.template.php:140
|
||||
msgid "Document Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:139
|
||||
msgid "User Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:140
|
||||
msgid "Invoice ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:141
|
||||
msgid "Transaction Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:142
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cfspzw.admin.filter.php:143
|
||||
msgid "Submitted Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:68
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:69
|
||||
msgid "Live"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:73
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:74
|
||||
msgid "Deferred"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:75
|
||||
msgid "Authenticate"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:79
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:80
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:139
|
||||
msgid "To use SagePay option, first you need to create and save form tags."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:149
|
||||
msgid "Sagepay Enable"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:159
|
||||
msgid "Enable Debug Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:169
|
||||
msgid "Payment Mode "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:186
|
||||
msgid "Sandbox Vendor Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:197
|
||||
msgid "Sandbox Encryption Password "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:209
|
||||
msgid "Live Vendor Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:220
|
||||
msgid "Live Encryption Password "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:232
|
||||
msgid "Amount Field Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:238
|
||||
msgid "Select field name for amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:251
|
||||
msgid "Customer Email "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:257
|
||||
msgid "Select field name for customer email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:270
|
||||
msgid "Quantity Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:276
|
||||
msgid "Select field name for quantity"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:290
|
||||
msgid "Transaction type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:308
|
||||
msgid "Apply 3D Secure"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:326
|
||||
msgid "Select Currency"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:345
|
||||
msgid "VendorTXCode Prefix (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:356
|
||||
msgid "Success Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:362
|
||||
#: inc/admin/template/cfspzw.template.php:382
|
||||
msgid "Select page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:376
|
||||
msgid "Cancel Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:400
|
||||
msgid "Customer Billing Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:409
|
||||
msgid "Billing First Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:415
|
||||
msgid "Select field name for billing first name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:428
|
||||
msgid "Billing Last Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:434
|
||||
msgid "Select field name for billing last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:447
|
||||
msgid "Billing Address "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:453
|
||||
msgid "Select field name for billing address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:466
|
||||
msgid "Billing City "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:472
|
||||
msgid "Select field name for billing city"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:485
|
||||
msgid "Billing State "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:491
|
||||
msgid "Select field name for billing state"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:504
|
||||
msgid "Select Billing Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:510
|
||||
msgid "Select field name for billing country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:523
|
||||
msgid "Billing Zipcode "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:529
|
||||
msgid "Select field name for billing zipcode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:546
|
||||
msgid "Customer Shipping Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:555
|
||||
msgid "Shipping First Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:561
|
||||
msgid "Select field name for shipping first name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:574
|
||||
msgid "Shipping Last Name "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:580
|
||||
msgid "Select field name for shipping last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:593
|
||||
msgid "Shipping Address "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:599
|
||||
msgid "Select field name for shipping address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:612
|
||||
msgid "Shipping City "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:618
|
||||
msgid "Select field name for shipping city"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:631
|
||||
msgid "Shipping State "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:637
|
||||
msgid "Select field name for shipping state"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:650
|
||||
msgid "Select Shipping Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:656
|
||||
msgid "Select field name for shipping country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:669
|
||||
msgid "Shipping Zipcode "
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:675
|
||||
msgid "Select field name for shipping zipcode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:709
|
||||
msgid "<h3>Vendor Name </h3><p>Get Vendor Name from <a href=\"#\" target=\"_blank\">here</a></p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:713
|
||||
msgid "<h3>Encryption Password</h3><p>Get Encryption Password from <a href=\"#\" target=\"_blank\">here</a></p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:717
|
||||
msgid "<h3>Select Currency</h3><p>Select the currency.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:721
|
||||
msgid "<h3>Amount Field</h3><p>Select field from where amount value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:725
|
||||
msgid "<h3>Quantity Field</h3><p>Select field from where quantity value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:729
|
||||
msgid "<h3>Customer Email Field</h3><p>Select field from where customer email value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:733
|
||||
msgid "<h3>VendorTXCode Prefix Field</h3><p>Please enter unique prefix name which display in invoice order.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:737
|
||||
msgid "<h3>Success Return URL Field </h3><p>Select page and redirect customer after succesfully payment done.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:741
|
||||
msgid "<h3>Cancel Return URL Field </h3><p>Select page and redirect customer after cancel payment process or payment not done.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:745
|
||||
msgid "<h3>Billing First Name Field</h3><p>Select field from where billing first name value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:749
|
||||
msgid "<h3>Billing Last Name Field</h3><p>Select field from where billing last name value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:753
|
||||
msgid "<h3>Billing Address Field</h3><p>Select field from where billing address value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:757
|
||||
msgid "<h3>Billing City Field</h3><p>Select field from where billing city value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:761
|
||||
msgid "<h3>Billing State Field</h3><p>Select field from where billing state value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:765
|
||||
msgid "<h3>Billing Country Field</h3><p>Select field from where billing country value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:769
|
||||
msgid "<h3>Billing ZipCode Field</h3><p>Select field from where billing zipcode value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:773
|
||||
msgid "<h3>Shipping First Name Field</h3><p>Select field from where shipping first name value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:777
|
||||
msgid "<h3>Shipping Last Name Field</h3><p>Select field from where shipping last name value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:781
|
||||
msgid "<h3>Shipping Address Field</h3><p>Select field from where shipping address value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:785
|
||||
msgid "<h3>Shipping City Field</h3><p>Select field from where shipping city value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:789
|
||||
msgid "<h3>Shipping State Field</h3><p>Select field from where shipping state value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:793
|
||||
msgid "<h3>Shipping Country Field</h3><p>Select field from where shipping country value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cfspzw.template.php:797
|
||||
msgid "<h3>Shipping ZipCode Field</h3><p>Select field from where shipping zipcode value needs to be retrieved.</p><p><b>Note: </b> Save the FORM details to view the list of fields.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:112
|
||||
#: inc/class.cfspzw.php:113
|
||||
#: inc/class.cfspzw.php:118
|
||||
msgid "Sagepay Payment Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:114
|
||||
msgid "Transaction Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:158
|
||||
msgid "<strong><a href=\"https://wordpress.org/plugins/contact-form-7/\" target=\"_blank\">Contact Form 7</a></strong> is required to use <strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:177
|
||||
msgid "Sagepay Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:280
|
||||
msgid "Generate a form-tag for to display Sagepay Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:289
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:304
|
||||
msgid "Insert Tag"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cfspzw.php:311
|
||||
msgid "To use the value input through this field in a mail field, you need to insert the corresponding mail-tag (%s) into the field on the Mail tab."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:213
|
||||
msgid "SagePay Payment Notification"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:427
|
||||
#: inc/lib/class.cfspzw.lib.php:437
|
||||
msgid "Sagepay Response Details:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:568
|
||||
msgid "Payment Page not Configured Properly. Please Conatct Admin. "
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:631
|
||||
#: inc/lib/class.cfspzw.lib.php:640
|
||||
#: inc/lib/class.cfspzw.lib.php:967
|
||||
msgid "Please Enter Amount value or Value in Numeric."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:732
|
||||
msgid "Order #%s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:846
|
||||
msgid "Something goes wrong! Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:866
|
||||
msgid "Transaction Amount :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:870
|
||||
msgid "Payment Status :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:874
|
||||
msgid "Transaction Id :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:878
|
||||
msgid "Invoice ID :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:886
|
||||
msgid "Response :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:934
|
||||
msgid "Please wait you are redirecting to sagepay..!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:969
|
||||
msgid "The field is required."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cfspzw.lib.php:993
|
||||
msgid "One or more fields have an error. Please check and try again."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,227 @@
|
||||
# Copyright (C) 2019 ZealousWeb Technologies
|
||||
# This file is distributed under the same license as the Contact Form 7 - Stripe Add-on plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Contact Form 7 - Stripe Add-on 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/contact-form-7-stripe-addon\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: 2019-08-26T14:04:14+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: contact-form-7-stripe-addon\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Contact Form 7 - Stripe Add-on"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin will integrate Stripe payment gateway for making your payments through Contact Form 7."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ZealousWeb Technologies"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zealousweb.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7sa.admin.action.php:208
|
||||
msgid "From Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7sa.admin.action.php:209
|
||||
msgid "Do you need help for configuration?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7sa.admin.action.php:378
|
||||
msgid "All Forms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7sa.admin.action.php:426
|
||||
msgid "Please select Form to export."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7sa.admin.filter.php:54
|
||||
#: inc/class.cf7sa.php:68
|
||||
msgid "Stripe"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7sa.admin.filter.php:113
|
||||
msgid "Form ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7sa.admin.filter.php:114
|
||||
msgid "Transaction Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7sa.admin.filter.php:115
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7sa.admin.filter.php:116
|
||||
msgid "Submitted Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:102
|
||||
msgid "Enable Stripe Payment Form"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:112
|
||||
msgid "Enable Debug Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:122
|
||||
msgid "Enable Test Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:132
|
||||
msgid "Test Publishable key (Required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:143
|
||||
msgid "Test Secret key (Required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:154
|
||||
msgid "Live Publishable key (Required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:165
|
||||
msgid "Live Secret key (Required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:176
|
||||
msgid "Customer Email Field Name (Required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:186
|
||||
msgid "Amount Field Name (Required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:197
|
||||
msgid "Quantity Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:207
|
||||
msgid "Description Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:217
|
||||
msgid "Select Currency"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:236
|
||||
msgid "Success Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:241
|
||||
#: inc/admin/template/cf7sa.template.php:260
|
||||
msgid "Select page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:255
|
||||
msgid "Cancel Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:283
|
||||
msgid "Customer Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:292
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:302
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:312
|
||||
msgid "Company Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:322
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:332
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:342
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:352
|
||||
msgid "Zip Code"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:362
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:404
|
||||
#: inc/admin/template/cf7sa.template.php:417
|
||||
msgid "<h3>Get Your Publishable Key</h3><p>Get it from <a href=\"https://dashboard.stripe.com/\" target=\"_blank\"> Stripe</a> then <strong> Developers > API Keys </strong> page in your Stripe account.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:430
|
||||
msgid "<h3>Get Your Secret Key</h3><p>Get it from <a href=\"https://dashboard.stripe.com/\" target=\"_blank\"> Stripe</a> then <strong> Developers > API Keys </strong> page in your Stripe account.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:445
|
||||
msgid "<h3>Add Amount Name</h3><p>Add here the Name of amount field</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7sa.template.php:458
|
||||
msgid "<h3>Select Currency</h3><p>Select the currency which is selected from your stripe.net merchant account.<br/><strong>Note:</strong>Authorize.net dont provide multiple currencies for single account</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7sa.php:116
|
||||
#: inc/class.cf7sa.php:117
|
||||
#: inc/class.cf7sa.php:121
|
||||
msgid "Stripe Add-on"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Contact Form 7 - Stripe Add-on
|
||||
#: inc/class.cf7sa.php:155
|
||||
msgid "<p><strong><a href=\"https://wordpress.org/plugins/contact-form-7/\" target=\"_blank\">Contact Form 7</a></strong> is required to use <strong>%s</strong>.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7sa.php:213
|
||||
msgid "Button Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7sa.php:214
|
||||
msgid "Make Payment"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7sa.lib.php:587
|
||||
#: inc/lib/class.cf7sa.lib.php:598
|
||||
#: inc/lib/class.cf7sa.lib.php:605
|
||||
msgid "Something goes wrong! Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7sa.lib.php:636
|
||||
msgid "Transaction Amount :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7sa.lib.php:640
|
||||
msgid "Payment Status :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7sa.lib.php:644
|
||||
msgid "Transaction Id :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7sa.lib.php:650
|
||||
msgid "Card Type :"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.cf7sa.lib.php:881
|
||||
msgid "Stripe Payments requires Javascript to be supported by the browser in order to operate."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,108 @@
|
||||
# Copyright (C) 2019 ZealousWeb Technologies
|
||||
# This file is distributed under the same license as the Contact Form 7 - Worldpay Add-on plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Contact Form 7 - Worldpay Add-on 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accept-worldpay-payments-using-contact-form-7\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-08-28T12:57:38+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: accept-worldpay-payments-using-contact-form-7\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Contact Form 7 - Worldpay Add-on"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin will integrate Worldpay payment gateway for making your payments through Contact Form 7."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ZealousWeb Technologies"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zealousweb.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:101
|
||||
msgid "Enable Worldpay"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:111
|
||||
msgid "Enable WorldPay Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:122
|
||||
msgid "Enable Debug Mode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:132
|
||||
msgid "WorldPay Installation ID (required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:143
|
||||
msgid "Amount Field Name (required)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:154
|
||||
msgid "Quantity Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:164
|
||||
msgid "Customer Email Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:174
|
||||
msgid "Description Field Name (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:184
|
||||
msgid "Select Currency"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:203
|
||||
msgid "Success Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:208
|
||||
#: inc/admin/template/cf7wpa.template.php:227
|
||||
msgid "Select page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:222
|
||||
msgid "Cancel Return URL (Optional)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:263
|
||||
msgid "<h3>TEST MODE</h3><p>Check the Worldpay testing guide <a href=\"http://support.worldpay.com/support/kb/bg/testandgolive/tgl5103.html\" target=\"_blank\">here</a>.This will display \"This is not a live transaction.\" warning on payment page.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:276
|
||||
msgid "<h3>Get Your Installation ID</h3><ul><li><b>Step 1:</b> Login from <a href=\"https://secure.worldpay.com/sso/public/auth/login.html?serviceIdentifier=merchantadmin\" target=\"_blank\">here</a> using your username and password </li><li><b>Step 2:</b> To know the Installation ID, find the screenshot <a href=\"https://prnt.sc/nqs21l\" target=\"_blank\">Here</a></li><li><b>Step 3:</b> Use the Installation ID in Plugin setting and try to make payment.</li></ul>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:289
|
||||
msgid "<h3>Get Your Sandbox Transaction Key</h3><p>Get it from <a href=\"https://sandbox.authorize.net\" target=\"_blank\"> Sandbox Authorize.net</a> then <strong>Account > Security Settings > API Credentials & Keys </strong> page in your Worldpay account. For security reasons, you cannot view your Transaction Key, but you will be able to generate a new one. </p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:302
|
||||
msgid "<h3>Get Your Live Login ID</h3><p>Get it from <a href=\"https://account.authorize.net\" target=\"_blank\">Authorize.net</a> then <strong>Account > Security Settings > API Credentials & Keys </strong> page in your Worldpay account.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:315
|
||||
msgid "<h3>Get Your Live Transaction Key</h3><p>Get it from <a href=\"https://account.authorize.net\" target=\"_blank\">Authorize.net</a> then <strong> Account > Security Settings > API Credentials & Keys </strong> page in your Worldpay account. For security reasons, you cannot view your Transaction Key, but you will be able to generate a new one. </p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:328
|
||||
msgid "<h3>Add Amount Name</h3><p>Add here the Name of amount field</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7wpa.template.php:341
|
||||
msgid "<h3>Select Currency</h3><p>Select the currency which is selected from your Worldpay merchant account.<br/></p>"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,56 @@
|
||||
# Copyright (C) 2020 Eduardo Marcolino
|
||||
# This file is distributed under the same license as the ACF: Fields in Custom Table plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ACF: Fields in Custom Table 0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acf-fields-in-custom-table\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-11-25T14:25:51+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: acffict\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "ACF: Fields in Custom Table"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Stores ACF custom fields in a custom table instead of WordPress' core meta tables."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Eduardo Marcolino"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://eduardomarcolino.com"
|
||||
msgstr ""
|
||||
|
||||
#: acf-fields-in-custom-table.php:74
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: acf-fields-in-custom-table.php:75
|
||||
msgid "Enable Store fields in custom table for this field group?"
|
||||
msgstr ""
|
||||
|
||||
#: acf-fields-in-custom-table.php:85
|
||||
msgid "Custom table name"
|
||||
msgstr ""
|
||||
|
||||
#: acf-fields-in-custom-table.php:86
|
||||
msgid "Define the custom table name. Make sure it doesn't conflict with others tables names."
|
||||
msgstr ""
|
||||
|
||||
#: acf-fields-in-custom-table.php:156
|
||||
#: acf-fields-in-custom-table.php:203
|
||||
msgid "ACF: Fields in Custom Table error:"
|
||||
msgstr ""
|
||||
|
||||
#: acf-fields-in-custom-table.php:273
|
||||
msgid "Unable to alter table"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,162 @@
|
||||
# Copyright (C) 2020 Acowebs
|
||||
# This file is distributed under the same license as the Aco Wishlist for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Aco Wishlist for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-wish-list-dev\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-11-07T11:54:36+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: aco-wishlist-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Aco Wishlist for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WooCommerce wishlist manager helps to manage wishlist in WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://acowebs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-backend.php:122
|
||||
msgid "Wishlist For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-backend.php:122
|
||||
#: includes/class-awwlm-front-end.php:1294
|
||||
#: includes/class-awwlm-wishlist.php:80
|
||||
#: includes/class-awwlm-wishlist.php:81
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-backend.php:141
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-front-end.php:130
|
||||
#: templates/wishlist.php:21
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-front-end.php:133
|
||||
msgid "Product added to cart successfully"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-front-end.php:426
|
||||
msgid "You must be login to use Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-front-end.php:506
|
||||
msgid "Product successfully removed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-front-end.php:992
|
||||
msgid "My wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-front-end.php:993
|
||||
#: includes/class-awwlm-front-end.php:1084
|
||||
msgid "Add to cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-front-end.php:1169
|
||||
#: templates/wishlist-empty.php:16
|
||||
msgid "Your Wishlist is currently empty"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-wishlist.php:83
|
||||
msgid "Add New Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-wishlist.php:84
|
||||
msgid "Add New %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-wishlist.php:85
|
||||
msgid "Edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-wishlist.php:86
|
||||
msgid "New %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-wishlist.php:87
|
||||
msgid "Wishlists"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-wishlist.php:88
|
||||
msgid "View %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-wishlist.php:89
|
||||
msgid "Search %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-wishlist.php:90
|
||||
msgid "No %s Found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-awwlm-wishlist.php:91
|
||||
msgid "No %s Found In Trash"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-empty.php:17
|
||||
msgid "Return to shop"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:26
|
||||
msgid "Add all to cart"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:45
|
||||
#: templates/wishlist-view.php:81
|
||||
msgid "Product name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:47
|
||||
#: templates/wishlist-view.php:92
|
||||
msgid "Unit price"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:50
|
||||
#: templates/wishlist-view.php:97
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:53
|
||||
#: templates/wishlist-view.php:102
|
||||
msgid "Added on"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:56
|
||||
#: templates/wishlist-view.php:107
|
||||
msgid "Stock status"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:109
|
||||
msgid "Out of stock"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:109
|
||||
msgid "In Stock"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:121
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:124
|
||||
msgid "Move to another list"
|
||||
msgstr ""
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/affiliatebooster-blocks/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/affiliatebooster-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "my-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/compose": "^3.19.1",
|
||||
"@wordpress/icons": "^2.4.0",
|
||||
"cgb-scripts": "1.23.1",
|
||||
"classnames": "^2.2.6",
|
||||
"memize": "^1.1.0",
|
||||
"npm-upgrade": "^2.0.3",
|
||||
"react-select": "^3.1.0",
|
||||
"striptags": "^2.2.1",
|
||||
"uglify-js": "^3.10.0",
|
||||
"uglifyjs-webpack-plugin": "^2.2.0",
|
||||
"update": "^0.7.4",
|
||||
"webfontloader": "^1.6.28"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,220 @@
|
||||
# Agy is a powerful solution to add any kind of verification restriction on your website. Easy to setup, optimized for all devices, and modern design option to match your
|
||||
# Copyright (C) YEAR Marko Radulovic
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <upss070288@gmail.com>, 2021.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Agy Verification 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-05 19:48+0100\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=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: agy-verification.php:69
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: agy-verification.php:83
|
||||
msgid "Docs & FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: agy-verification.php:88
|
||||
msgid "GitHub"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:24
|
||||
msgid "You have successfully saved your settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:93
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\" target=\"%s\" class=\"%s\">"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:145
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\" target=\"%s\"><img src=\"%s\" class=\"%s\"></a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:159
|
||||
msgid "_blank"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:161
|
||||
msgid "agy-logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:176 includes/Agy_Dashboard.php:262
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:177 includes/Agy_Dashboard.php:267
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:179 includes/Agy_Dashboard.php:272
|
||||
msgid "Design"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:186
|
||||
msgid "Agy Verification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:222
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:244
|
||||
msgid "Set your General settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:249
|
||||
msgid "Set all of the text for your modal verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:254
|
||||
msgid "Set the desirable design for the modal verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:278
|
||||
msgid "Enable / Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:283
|
||||
msgid "Show for unregistered users only"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:288
|
||||
msgid "Activate Debug mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:293
|
||||
msgid "Exit URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:299
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:304
|
||||
msgid "Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:309
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:314
|
||||
msgid "Enter Button Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:319
|
||||
msgid "Exit Button Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:324
|
||||
msgid "Separator Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:329
|
||||
msgid "Slogan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:335
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:340
|
||||
msgid "Z-Index ( Overlay )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:345
|
||||
msgid "Content Box width ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:350
|
||||
msgid "Headline Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:355
|
||||
msgid "Headline Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:360
|
||||
msgid "Subtitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:365
|
||||
msgid "Subtitle Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:370
|
||||
msgid "Message Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:375
|
||||
msgid "Message Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:380
|
||||
msgid "Enter Button background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:385
|
||||
msgid "Enter Button font color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:390
|
||||
msgid "Enter Button border style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:395
|
||||
msgid "Enter Button border color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:400
|
||||
msgid "Enter Button font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:405
|
||||
msgid "Exit Button background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:410
|
||||
msgid "Exit Button font color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:415
|
||||
msgid "Exit Button border style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:420
|
||||
msgid "Exit Button border color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:425
|
||||
msgid "Exit Button font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:430
|
||||
msgid "Separator Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:435
|
||||
msgid "Separator Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:440
|
||||
msgid "Slogan Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:445
|
||||
msgid "Slogan Font size ( in px )"
|
||||
msgstr ""
|
||||
11
spec/fixtures/dynamic_finders/plugin_version/appsy/composer_file/package.json
vendored
Normal file
11
spec/fixtures/dynamic_finders/plugin_version/appsy/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "appsy-wordpress",
|
||||
"version": "1.0.0",
|
||||
"description": "=== Plugin Name === Requires at least: 3.0.1 Tested up to: 3.4 Stable tag: 5.5 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
30
spec/fixtures/dynamic_finders/plugin_version/asura-connector/composer_file/package.json
vendored
Normal file
30
spec/fixtures/dynamic_finders/plugin_version/asura-connector/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "asura-connector",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"development": "mix",
|
||||
"watch": "mix watch",
|
||||
"watch-poll": "mix watch -- --watch-options-poll=1000",
|
||||
"hot": "mix watch --hot",
|
||||
"production": "mix --production"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/thelostasura/asura-connector.git"
|
||||
},
|
||||
"author": "thelostasura <mail@thelostasura.com>",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/thelostasura/asura-connector/issues"
|
||||
},
|
||||
"homepage": "https://github.com/thelostasura/asura-connector",
|
||||
"devDependencies": {
|
||||
"@vue/compiler-sfc": "^3.0.4",
|
||||
"axios": "^0.21.0",
|
||||
"laravel-mix": "^6.0.0",
|
||||
"lodash": "^4.17.20",
|
||||
"vue": "^3.0.4",
|
||||
"vue-loader": "^16.1.2",
|
||||
"vue-router": "4"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
# Copyright (C) 2020 Gifford Nowland
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Auto-Deselect Uncategorized 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/auto-deselect-uncategorized\n"
|
||||
"POT-Creation-Date: 2020-12-03 09:25:27+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: auto-deselect-uncategorized.php:76
|
||||
msgid "Cloning this object is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: auto-deselect-uncategorized.php:85
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Auto-Deselect Uncategorized"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/gnowland/auto-deselect-uncategorized/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Automatically deselect the \"Uncategorized\" category (or your custom "
|
||||
"default post category) when another category is selected, and select it "
|
||||
"when no other categories are selected."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Gifford Nowland"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://giffordnowland.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,159 @@
|
||||
# Copyright (C) 2020 Chris Bibby
|
||||
# This file is distributed under the same license as the Automizy Gravity Forms package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Automizy Gravity Forms 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/automizy-gravity-forms\n"
|
||||
"POT-Creation-Date: 2020-12-29 02:55:07+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.5.4\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#: automizy-gravity-forms.php:100 trunk/automizy-gravity-forms.php:47
|
||||
msgid "Automizy Gravity Forms requires Gravity Forms to be active."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:36 trunk/inc/class-gf-automizy.php:36
|
||||
msgid "Subscribe contact to Automizy only when payment is received."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:71 trunk/inc/class-gf-automizy.php:71
|
||||
msgid "Automizy Account Information"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:75 trunk/inc/class-gf-automizy.php:75
|
||||
msgid ""
|
||||
"Automizy is Email Marketing Software\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t that is designed to increase your open rates. If "
|
||||
"you don't have an Automizy account, you can %1$ssign up for one here.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:84 trunk/inc/class-gf-automizy.php:84
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:90 trunk/inc/class-gf-automizy.php:90
|
||||
msgid "You can find your API key <a href=\"%s\" target=\"_blank\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:114 trunk/inc/class-gf-automizy.php:114
|
||||
msgid "Automizy Feed Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:117 trunk/inc/class-gf-automizy.php:117
|
||||
msgid "Feed name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:120 trunk/inc/class-gf-automizy.php:120
|
||||
msgid "Give the feed a name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:124 inc/class-gf-automizy.php:196
|
||||
#: trunk/inc/class-gf-automizy.php:124 trunk/inc/class-gf-automizy.php:196
|
||||
msgid "Feed Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:127 trunk/inc/class-gf-automizy.php:127
|
||||
msgid "Enter a description for this feed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:132 inc/class-gf-automizy.php:140
|
||||
#: inc/class-gf-automizy.php:195 trunk/inc/class-gf-automizy.php:132
|
||||
#: trunk/inc/class-gf-automizy.php:140 trunk/inc/class-gf-automizy.php:195
|
||||
msgid "Contact List"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:137 trunk/inc/class-gf-automizy.php:137
|
||||
msgid "No lists found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:141 trunk/inc/class-gf-automizy.php:141
|
||||
msgid "Select your list you want to add your contacts to"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:146 trunk/inc/class-gf-automizy.php:146
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:151 trunk/inc/class-gf-automizy.php:151
|
||||
msgid "No tags found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:154 trunk/inc/class-gf-automizy.php:154
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:155 trunk/inc/class-gf-automizy.php:155
|
||||
msgid "Tag this contact"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:160 inc/class-gf-automizy.php:165
|
||||
#: trunk/inc/class-gf-automizy.php:160 trunk/inc/class-gf-automizy.php:165
|
||||
msgid "Map Fields"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:166 trunk/inc/class-gf-automizy.php:166
|
||||
msgid ""
|
||||
"Map your Automizy fields to the appropriate Gravity Form fields by "
|
||||
"selecting the appropriate form field from the list."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:171 trunk/inc/class-gf-automizy.php:171
|
||||
msgid "Condition"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:173 trunk/inc/class-gf-automizy.php:173
|
||||
msgid "Enable Condition"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:174 trunk/inc/class-gf-automizy.php:174
|
||||
msgid "Process this simple feed if"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:194 trunk/inc/class-gf-automizy.php:194
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:252 trunk/inc/class-gf-automizy.php:252
|
||||
msgid "Select a list"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:283 trunk/inc/class-gf-automizy.php:283
|
||||
msgid "Select a tag"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-gf-automizy.php:318 trunk/inc/class-gf-automizy.php:318
|
||||
msgid "Couldn't add to list because we couldn't fire up the API"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Automizy Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Automizy connector for Gravity Forms"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Chris Bibby"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://chrisbibby.com.au"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,485 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"Avadanta Companion1.0.0\n"
|
||||
"POT-Creation-Date: "
|
||||
"2020-06-19 13:35+0530\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Your "
|
||||
"Name <you@example.com>\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.1.1\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-about-section.php:8
|
||||
msgid ""
|
||||
"About Section settings"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-about-section.php:16
|
||||
msgid ""
|
||||
"Enable Home About section"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-about-section.php:20
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:21
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:18
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:20
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:20
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:18
|
||||
msgid "ON"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-about-section.php:21
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:22
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:19
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:21
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:21
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:19
|
||||
msgid "OFF"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-about-section.php:28
|
||||
#: library/avadanta/home-sections/avadanta-about-section.php:10
|
||||
msgid "What People Say"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-about-section.php:34
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:30
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:33
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:33
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:30
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-about-section.php:42
|
||||
msgid ""
|
||||
"Bimply dummy text of the "
|
||||
"printing and typesetting "
|
||||
"industry. Lorem Ipsum "
|
||||
"has been the industrys "
|
||||
"standard dummy text ever "
|
||||
"since the 1500s, when an "
|
||||
"unknown printer took a "
|
||||
"galley of type and "
|
||||
"scrambled it to make a "
|
||||
"type specimen book."
|
||||
"<br>It has survived not "
|
||||
"only fiveBimply dummy "
|
||||
"text of the printing and "
|
||||
"typesetting industry. "
|
||||
"Lorem Ipsum has been the "
|
||||
"industrys standard dummy "
|
||||
"text ever since the "
|
||||
"1500s, when an unknown "
|
||||
"printer took a galley of "
|
||||
"type and scrambled."
|
||||
"Bimply dummy text of the "
|
||||
"printing and typesetting "
|
||||
"industry. Lorem Ipsum "
|
||||
"has been the industry."
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-about-section.php:49
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:41
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:46
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:46
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:41
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-about-section.php:67
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-about-section.php:68
|
||||
msgid ""
|
||||
"(Recommended Size "
|
||||
"450*470)"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:17
|
||||
msgid ""
|
||||
"Enable Callout section"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:33
|
||||
msgid "Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:44
|
||||
msgid ""
|
||||
"Enable Callout image "
|
||||
"overlay"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:58
|
||||
msgid ""
|
||||
"Callout Overlay Opacity"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:75
|
||||
msgid ""
|
||||
"Open Button Url In New "
|
||||
"Tab"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:88
|
||||
msgid ""
|
||||
"Lets Change the world we "
|
||||
"all together\n"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:94
|
||||
msgid "Callout Title"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:100
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:105
|
||||
msgid ""
|
||||
"Callout Button Title"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:112
|
||||
msgid "#"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-callout-section.php:117
|
||||
msgid "Callout button Url"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:7
|
||||
msgid ""
|
||||
"Portfolio Section "
|
||||
"settings"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:14
|
||||
msgid ""
|
||||
"Enable Home Portfolio "
|
||||
"section"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:25
|
||||
msgid ""
|
||||
"Meet our Portfolio "
|
||||
"Members"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:37
|
||||
msgid ""
|
||||
"The best portfolio "
|
||||
"available"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:56
|
||||
msgid "Portfolio content"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:59
|
||||
msgid "Add new Portfolio"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:60
|
||||
msgid "Portfolio"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:70
|
||||
msgid ""
|
||||
"To add More Portfolio? "
|
||||
"Then"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-portfolio-section.php:71
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:73
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:72
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:76
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:8
|
||||
msgid ""
|
||||
"Service Section settings"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:16
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:16
|
||||
msgid ""
|
||||
"Enable Services on "
|
||||
"homepage"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:28
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:28
|
||||
#: library/avadanta/home-sections/avadanta-service-section.php:10
|
||||
msgid ""
|
||||
"Our World Class Services"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:41
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:41
|
||||
#: library/avadanta/home-sections/avadanta-service-section.php:11
|
||||
msgid ""
|
||||
"Best Services In The "
|
||||
"World"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:56
|
||||
msgid "Service content"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:59
|
||||
msgid "Add new Service"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:60
|
||||
msgid "Service"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-service-section.php:72
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:71
|
||||
msgid ""
|
||||
"To add More Service? Then"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:8
|
||||
msgid ""
|
||||
"Slider Section settings"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:56
|
||||
msgid "Slider content"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:59
|
||||
msgid "Add new Slider"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-slider-section.php:60
|
||||
msgid "Slider"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:7
|
||||
msgid ""
|
||||
"Team Section settings"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:14
|
||||
msgid ""
|
||||
"Enable Home Team section"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:25
|
||||
msgid ""
|
||||
"Meet our Team Members"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:37
|
||||
msgid ""
|
||||
"The best team available"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:56
|
||||
msgid "Team content"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:59
|
||||
msgid "Add new Team Member"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:60
|
||||
msgid "Team Member"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/customizer-sections/customizer-team-section.php:75
|
||||
msgid ""
|
||||
"To add More Team? Then"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:8
|
||||
msgid "David Fahim"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:9
|
||||
msgid "Web Developer"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:14
|
||||
msgid "Kiron Jorge"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:15
|
||||
msgid "Web Designer"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:19
|
||||
msgid "Robart Jason"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:20
|
||||
msgid "Programmer"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:25
|
||||
msgid "Muktar Amint"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:26
|
||||
msgid "Influencer"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:43
|
||||
msgid "Marketing"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:48
|
||||
msgid "Branding"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:52
|
||||
msgid "Insurance"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:57
|
||||
msgid "Creative"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:73
|
||||
#: library/avadanta/default-data.php:79
|
||||
msgid ""
|
||||
"Welcome To Avadanta Theme"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:74
|
||||
#: library/avadanta/default-data.php:80
|
||||
msgid ""
|
||||
"Lorem ipsum dolor sit "
|
||||
"amet, consectetuer "
|
||||
"adipiscing elit. Aenean "
|
||||
"commodo ligula eget dolor"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:97
|
||||
msgid "Digital Marketing"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:98
|
||||
#: library/avadanta/default-data.php:106
|
||||
#: library/avadanta/default-data.php:114
|
||||
msgid ""
|
||||
"Dorem ipsum dolor sit "
|
||||
"amet, consectetur "
|
||||
"adipisicing elised "
|
||||
"doingyt eiusmod "
|
||||
"teididunt ut labore et "
|
||||
"dolore eiusmod tempor."
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:105
|
||||
msgid "Insurance Business"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/default-data.php:113
|
||||
msgid "Business Plan"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/home-sections/avadanta-about-section.php:11
|
||||
msgid ""
|
||||
"Bimply dummy text of the "
|
||||
"printing and typesetting "
|
||||
"industry. Lorem Ipsum "
|
||||
"has been the industrys "
|
||||
"standard dummy text ever "
|
||||
"since the 1500s, when an "
|
||||
"unknown printer took a "
|
||||
"galley of type and "
|
||||
"scrambled it to make a "
|
||||
"type specimen book.It "
|
||||
"has survived not only "
|
||||
"fiveBimply dummy text of "
|
||||
"the printing and "
|
||||
"typesetting industry. "
|
||||
"Lorem Ipsum has been the "
|
||||
"industrys standard dummy "
|
||||
"text ever since the "
|
||||
"1500s, when an unknown "
|
||||
"printer took a galley of "
|
||||
"type and scrambled."
|
||||
"Bimply dummy text of the "
|
||||
"printing and typesetting "
|
||||
"industry Aenean "
|
||||
"convallis sollicitudin "
|
||||
"finibus. Mauris pulvinar "
|
||||
"est non neque fermentum "
|
||||
"ultrices. Praesent "
|
||||
"tristique pellentesque "
|
||||
"ligula. Quisque "
|
||||
"scelerisque ipsum ut "
|
||||
"ipsum tempus "
|
||||
"condimentum. Duis "
|
||||
"fringilla semper "
|
||||
"facilisis. Donec vel "
|
||||
"turpis lacus. Vivamus "
|
||||
"ligula purus, congue "
|
||||
"vitae urna at, mattis "
|
||||
"aliquam dolor. "
|
||||
"Vestibulum ante ipsum "
|
||||
"primis in faucibus orci "
|
||||
"luctus et ultrices "
|
||||
"posuere cubilia curae; "
|
||||
"Vestibulum volutpat, "
|
||||
"nisl sed semper "
|
||||
"efficitur, leo ligula "
|
||||
"semper velit, vel "
|
||||
"consectetur justo enim "
|
||||
"ac est."
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/home-sections/avadanta-team-section.php:16
|
||||
msgid ""
|
||||
"Meet Our Team Members"
|
||||
msgstr ""
|
||||
|
||||
#: library/avadanta/home-sections/avadanta-team-section.php:17
|
||||
msgid ""
|
||||
"We Have World Best Team"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,121 @@
|
||||
# Copyright (C) 2020 Sajjad Aslani
|
||||
# This file is distributed under the same license as the awsa-quick-buy plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: awsa-quick-buy 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/awsa-quick-buy\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-11-09T15:39:02+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: awsa-quick-buy\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "awsa-quick-buy"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://sajjadaslani.ir"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "With this plugin, you can make your sales easier for your social network customers, and with just a SKU and using the quick buy form"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Sajjad Aslani"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://t.me/SajadAslani"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-quick-buy.php:127
|
||||
#: includes/class-admin-quick-buy.php:138
|
||||
msgid "Quick buy Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-quick-buy.php:128
|
||||
#: includes/class-admin-quick-buy.php:139
|
||||
msgid "Quick buy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:38
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:41
|
||||
msgid "Example: Quick Buy or your blog name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:47
|
||||
msgid "Short description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:55
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:58
|
||||
msgid "Example: quick-buy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:64
|
||||
msgid "Logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:67
|
||||
msgid "Enter the logo address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:73
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:74
|
||||
msgid "Hide search form after finding product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:83
|
||||
msgid "Redirect after add to cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:88
|
||||
msgid "Enable display of search form after finding product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:92
|
||||
msgid "Button redirection to shop"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:93
|
||||
msgid "Enable redirection to the quick buy page, if the customer entered the site from the quick buy page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:102
|
||||
msgid "Product details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-quick-buy-settings-page-fields.php:103
|
||||
msgid "Just show the summary"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin-quick-buy-settings-template.php:35
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: templates/quick-buy-template.php:75
|
||||
msgid "Product not found"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-product-template.php:28
|
||||
msgid "Enter the product SKU"
|
||||
msgstr ""
|
||||
|
||||
#: templates/search-product-template.php:29
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,647 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: awsa-shipping 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/awsa-shipping\n"
|
||||
"POT-Creation-Date: 2020-10-23T15:00:58+02:00\n"
|
||||
"PO-Revision-Date: 2020-10-23 16:31+0330\n"
|
||||
"Last-Translator: Sajjad Aslani <sajjad.aslani74@gmail.com>\n"
|
||||
"Language-Team: sajjad.aslani74@gmail.com\n"
|
||||
"Language: per\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"
|
||||
"X-Poedit-KeywordsList: __;_e;_n;_n_noop;_nc;_nx;_nx_noop\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "awsa-shipping"
|
||||
msgstr "حمل و نقل حرفه ای ووکامرس و دکان"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://sajjadaslani.ir/awsa-shipping/"
|
||||
msgstr "http://sajjadaslani.ir/awsa-shipping/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"This plugin adds Pishtaz post, Sefareshi Post, Express Delivery and Air "
|
||||
"delivery methods to the list of shipping methods in WooCommerce and Dokan "
|
||||
"with different settings in each method"
|
||||
msgstr ""
|
||||
"این افزونه روش های ارسال پست پیشتاز، پست سفارشی ، تحویل اکسپرس و پست هوایی "
|
||||
"را به لیست روش های حمل نقل در ووکامرس و دکان با تنظیمات مختلف در هر روش "
|
||||
"اضافه می کند"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Sajjad Aslani"
|
||||
msgstr "سجاد اصلانی"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "tel:+989100844292"
|
||||
msgstr "tel:+989100844292"
|
||||
|
||||
#: includes/apis/settings/class-settings-sanitize-field.php:33
|
||||
msgid "The value is not in the specified range"
|
||||
msgstr "مقدار در محدوده ی مشخص شده نیست"
|
||||
|
||||
#: includes/class-admin-shipping.php:120 includes/class-admin-shipping.php:121
|
||||
#: includes/class-admin-shipping.php:131 includes/class-admin-shipping.php:132
|
||||
msgid "Shipping Settings"
|
||||
msgstr "تنظیمات حمل و نقل"
|
||||
|
||||
#: includes/class-checkout.php:41
|
||||
msgid "Mobile number is incorrect"
|
||||
msgstr "شماره موبایل صحیح نیست"
|
||||
|
||||
#: includes/class-checkout.php:52
|
||||
msgid "Billing"
|
||||
msgstr "صورت حساب"
|
||||
|
||||
#: includes/class-checkout.php:54
|
||||
msgid "Shipping"
|
||||
msgstr "حمل و نقل"
|
||||
|
||||
#: includes/class-checkout.php:64
|
||||
msgid "Postcode not entered"
|
||||
msgstr "کد پستی وارد نشده است"
|
||||
|
||||
#: includes/class-checkout.php:66
|
||||
msgid "Postcode is incorrect"
|
||||
msgstr "کد پستی صحیح نیست"
|
||||
|
||||
#: includes/class-order-statuses.php:62 includes/class-order-statuses.php:115
|
||||
msgid "Delivered to warehouse"
|
||||
msgstr "تحویل به انبار"
|
||||
|
||||
#: includes/class-order-statuses.php:67
|
||||
msgid "Delivered to warehouse <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "Delivered to warehouse <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] "تحویل به انبار <span class=\"count\">(%s)</span>"
|
||||
msgstr[1] "تحویل به انبار <span class=\"count\">(%s)</span>"
|
||||
|
||||
#: includes/class-order-statuses.php:76 includes/class-order-statuses.php:119
|
||||
#: includes/class-shipping-settings-page-fields.php:84
|
||||
msgid "Ready to send"
|
||||
msgstr "آماده ارسال"
|
||||
|
||||
#: includes/class-order-statuses.php:81
|
||||
msgid "Ready to send <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "Ready to send <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] "آماده ارسال <span class=\"count\">(%s)</span>"
|
||||
msgstr[1] "آماده ارسال <span class=\"count\">(%s)</span>"
|
||||
|
||||
#: includes/class-order-statuses.php:90
|
||||
msgid "Delivered to post"
|
||||
msgstr "تحویل به پست"
|
||||
|
||||
#: includes/class-order-statuses.php:95
|
||||
msgid "Delivered to post <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "Delivered to post <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] "تحویل داده شده <span class=\"count\">(%s)</span>"
|
||||
msgstr[1] "تحویل داده شده <span class=\"count\">(%s)</span>"
|
||||
|
||||
#: includes/class-order-statuses.php:122
|
||||
msgid "Sended"
|
||||
msgstr "ارسال شده"
|
||||
|
||||
#: includes/class-order-statuses.php:144
|
||||
msgid "Change status to delivered to warehouse"
|
||||
msgstr "تغییر وضعیت به تحویل داده شده به انبار"
|
||||
|
||||
#: includes/class-order-statuses.php:148
|
||||
msgid "Change status to ready to send"
|
||||
msgstr "تغییر وضعیت به آماده ارسال"
|
||||
|
||||
#: includes/class-order-statuses.php:151
|
||||
msgid "Change status to posted"
|
||||
msgstr "تغییر وضعیت به ارسال شده"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:27
|
||||
msgid "Air Delivery"
|
||||
msgstr "پست هوایی"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:28
|
||||
msgid ""
|
||||
"Provides the possibility of sending the parcel by air post. This service is "
|
||||
"activated only if the destination city is the same as the city of origin "
|
||||
"(store or vendors), you can add authorized cities through the settings"
|
||||
msgstr ""
|
||||
"امکان ارسال مرسوله با پست هوایی را فراهم میکند. این سرویس فقط در صورتی که "
|
||||
"شهر مقصد با شهر مبدا (فروشگاه یا فروشندگان) یکسان باشد فعال می شود، از طریق "
|
||||
"تنظیمات می توانید شهر های مجاز را اضافه کنید"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:58
|
||||
#: includes/class-shipping-method-air-delivery.php:94
|
||||
#: includes/class-shipping-method-express.php:58
|
||||
#: includes/class-shipping-method-express.php:94
|
||||
#: includes/class-shipping-method-pishtaz.php:58
|
||||
#: includes/class-shipping-method-pishtaz.php:94
|
||||
#: includes/class-shipping-method-sefareshi.php:58
|
||||
#: includes/class-shipping-method-sefareshi.php:94
|
||||
msgid "Enable/Disable"
|
||||
msgstr "فعال/غیرفعال"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:59
|
||||
#: includes/class-shipping-method-express.php:59
|
||||
#: includes/class-shipping-method-pishtaz.php:59
|
||||
#: includes/class-shipping-method-sefareshi.php:59
|
||||
msgid "Enable"
|
||||
msgstr "فعال"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:61
|
||||
#: includes/class-shipping-method-express.php:61
|
||||
#: includes/class-shipping-method-pishtaz.php:61
|
||||
#: includes/class-shipping-method-sefareshi.php:61
|
||||
msgid ""
|
||||
"If this option is enabled, the method of sending the shipment to the user is "
|
||||
"displayed"
|
||||
msgstr ""
|
||||
"در صورتی که این گزینه فعال باشد روش ارسال مرسوله به کاربر نمایش داده می شود"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:66
|
||||
#: includes/class-shipping-method-express.php:66
|
||||
#: includes/class-shipping-method-pishtaz.php:66
|
||||
#: includes/class-shipping-method-sefareshi.php:66
|
||||
msgid "Title"
|
||||
msgstr "عنوان"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:68
|
||||
msgid "Example: Air Post"
|
||||
msgstr "مثال: پست هوایی"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:69
|
||||
#: includes/class-shipping-method-express.php:69
|
||||
#: includes/class-shipping-method-pishtaz.php:69
|
||||
#: includes/class-shipping-method-sefareshi.php:69
|
||||
msgid "You can specify an alternative title for the submission method"
|
||||
msgstr "برای روش ارسال می توانید عنوان دیگری جایگزین کنید"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:75
|
||||
#: includes/class-shipping-method-express.php:75
|
||||
#: includes/class-shipping-method-pishtaz.php:75
|
||||
#: includes/class-shipping-method-sefareshi.php:75
|
||||
msgid "Icon"
|
||||
msgstr "تصویر"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:77
|
||||
#: includes/class-shipping-method-express.php:77
|
||||
#: includes/class-shipping-method-pishtaz.php:77
|
||||
#: includes/class-shipping-method-sefareshi.php:77
|
||||
msgid "Enter the image address"
|
||||
msgstr "آدرس تصویر را وارد کنید"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:78
|
||||
#: includes/class-shipping-method-express.php:78
|
||||
#: includes/class-shipping-method-pishtaz.php:78
|
||||
#: includes/class-shipping-method-sefareshi.php:78
|
||||
msgid ""
|
||||
"The specified image will be displayed on the checkout and cart page if the "
|
||||
"settings are enabled"
|
||||
msgstr ""
|
||||
"در صورت فعال بودن تنظیمات ، تصویر مشخص شده در صفحه پرداخت و سبد خرید نمایش "
|
||||
"داده می شود"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:87
|
||||
#: includes/class-shipping-method-express.php:87
|
||||
#: includes/class-shipping-method-pishtaz.php:87
|
||||
#: includes/class-shipping-method-sefareshi.php:87
|
||||
msgid "Enable/Disable settings"
|
||||
msgstr "تنظیمات فعال/غیرفعال بودن"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:95
|
||||
#: includes/class-shipping-method-express.php:95
|
||||
#: includes/class-shipping-method-pishtaz.php:95
|
||||
#: includes/class-shipping-method-sefareshi.php:95
|
||||
msgid "Enable default conditions"
|
||||
msgstr "فعال کردن شرط های پیشفرض"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:97
|
||||
#: includes/class-shipping-method-express.php:97
|
||||
msgid ""
|
||||
"If this option is enabled, this shipping method will be activated only if "
|
||||
"the customer buys from a store in his own city. Otherwise it is active for "
|
||||
"all cities."
|
||||
msgstr ""
|
||||
"اگر این گزینه فعال باشد ، فقط در صورت خرید مشتری از فروشگاهی در شهر خود ، "
|
||||
"این روش حمل و نقل فعال می شود. در غیر این صورت برای همه شهرها فعال است."
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:103
|
||||
#: includes/class-shipping-method-express.php:103
|
||||
#: includes/class-shipping-method-pishtaz.php:103
|
||||
#: includes/class-shipping-method-sefareshi.php:103
|
||||
msgid "Disable for cities"
|
||||
msgstr "غیرفعال کردن برای شهرهای"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:105
|
||||
#: includes/class-shipping-method-sefareshi.php:123
|
||||
msgid ""
|
||||
"Select the cities you want to disable. <br> (Default condition applies if "
|
||||
"disabled)"
|
||||
msgstr ""
|
||||
"شهر هایی که میخواهید غیر فعال باشند، را انتخاب کنید.<br> (در صورت غیر فعال "
|
||||
"بودن شرط پیش فرض قابل اجرا است)"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:112
|
||||
#: includes/class-shipping-method-express.php:112
|
||||
#: includes/class-shipping-method-pishtaz.php:112
|
||||
#: includes/class-shipping-method-sefareshi.php:112
|
||||
msgid "Enable for cities"
|
||||
msgstr "فعال کردن برای شهر های"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:114
|
||||
msgid ""
|
||||
"Select active cities. (If the default condition is disabled, you do not need "
|
||||
"to select cities)"
|
||||
msgstr ""
|
||||
"شهر های فعال را انتخاب کنید. (در صورت غیر فعال بودن شرط پیش فرض نیازی به "
|
||||
"انتخاب شهر ها نیست)"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:121
|
||||
#: includes/class-shipping-method-express.php:121
|
||||
#: includes/class-shipping-method-pishtaz.php:121
|
||||
#: includes/class-shipping-method-sefareshi.php:121
|
||||
msgid "Maximum weight"
|
||||
msgstr "حداکثر وزن"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:123
|
||||
#: includes/class-shipping-method-express.php:123
|
||||
#: includes/class-shipping-method-pishtaz.php:123
|
||||
#: includes/class-shipping-method-sefareshi.php:123
|
||||
msgid "Maximum weight for sending shipments (optional)"
|
||||
msgstr "حداکثر وزن برای ارسال محموله (اختیاری)"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:124
|
||||
#: includes/class-shipping-method-express.php:124
|
||||
#: includes/class-shipping-method-pishtaz.php:124
|
||||
#: includes/class-shipping-method-sefareshi.php:124
|
||||
msgid "Total shipment weight in grams"
|
||||
msgstr "وزن کل محموله به گرم"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:133
|
||||
#: includes/class-shipping-method-air-delivery.php:143
|
||||
#: includes/class-shipping-method-express.php:133
|
||||
#: includes/class-shipping-method-express.php:143
|
||||
#: includes/class-shipping-method-pishtaz.php:133
|
||||
#: includes/class-shipping-method-pishtaz.php:143
|
||||
#: includes/class-shipping-method-sefareshi.php:133
|
||||
#: includes/class-shipping-method-sefareshi.php:143
|
||||
msgid "Shipping cost"
|
||||
msgstr "هزینه ی حمل و نقل"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:135
|
||||
#: includes/class-shipping-method-express.php:135
|
||||
#: includes/class-shipping-method-pishtaz.php:135
|
||||
#: includes/class-shipping-method-sefareshi.php:135
|
||||
msgid "From this section you can set shipping costs"
|
||||
msgstr "از این قسمت می توانید هزینه حمل و نقل را تعیین کنید"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:140
|
||||
#: includes/class-shipping-method-express.php:140
|
||||
#: includes/class-shipping-method-pishtaz.php:140
|
||||
#: includes/class-shipping-method-sefareshi.php:140
|
||||
msgid "Default cost"
|
||||
msgstr "هزینه پیش فرض"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:142
|
||||
#: includes/class-shipping-method-express.php:142
|
||||
#: includes/class-shipping-method-pishtaz.php:142
|
||||
#: includes/class-shipping-method-sefareshi.php:142
|
||||
msgid "This amount is considered the default shipping cost"
|
||||
msgstr "این مبلغ هزینه حمل و نقل به عنوان پیش فرض در نظر گرفته می شود"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:148
|
||||
#: includes/class-shipping-method-express.php:148
|
||||
#: includes/class-shipping-method-pishtaz.php:148
|
||||
#: includes/class-shipping-method-sefareshi.php:148
|
||||
msgid "If the postal code is incorrect, an additional fee will be charged"
|
||||
msgstr "اگر کد پستی نادرست باشد ، هزینه اضافی پرداخت می شود"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:150
|
||||
#: includes/class-shipping-method-air-delivery.php:158
|
||||
#: includes/class-shipping-method-express.php:150
|
||||
#: includes/class-shipping-method-express.php:158
|
||||
#: includes/class-shipping-method-pishtaz.php:150
|
||||
#: includes/class-shipping-method-pishtaz.php:158
|
||||
#: includes/class-shipping-method-sefareshi.php:150
|
||||
#: includes/class-shipping-method-sefareshi.php:158
|
||||
msgid "Example: 10% OR 100000"
|
||||
msgstr "مثال: 10% یا 100000"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:151
|
||||
#: includes/class-shipping-method-express.php:151
|
||||
#: includes/class-shipping-method-pishtaz.php:151
|
||||
#: includes/class-shipping-method-sefareshi.php:151
|
||||
msgid ""
|
||||
"If the postal code is incorrect, the above amount will be added to the "
|
||||
"postage as a percentage or fixed"
|
||||
msgstr ""
|
||||
"در صورت نادرست بودن کد پستی ، مبلغ فوق به صورت درصدی یا ثابت به پست اضافه می "
|
||||
"شود"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:156
|
||||
#: includes/class-shipping-method-express.php:156
|
||||
#: includes/class-shipping-method-pishtaz.php:156
|
||||
#: includes/class-shipping-method-sefareshi.php:156
|
||||
msgid "Extra cost"
|
||||
msgstr "هزینه اضافی"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:159
|
||||
#: includes/class-shipping-method-express.php:159
|
||||
#: includes/class-shipping-method-pishtaz.php:159
|
||||
#: includes/class-shipping-method-sefareshi.php:159
|
||||
msgid ""
|
||||
"Increase shipping cost for packaging or ... as a percentage or fixed amount"
|
||||
msgstr ""
|
||||
"هزینه حمل و نقل را برای بسته بندی یا ... را به صورت درصد یا مبلغ ثابت افزایش "
|
||||
"دهید"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:167
|
||||
#: includes/class-shipping-method-express.php:167
|
||||
#: includes/class-shipping-method-pishtaz.php:167
|
||||
#: includes/class-shipping-method-sefareshi.php:167
|
||||
msgid "Free Shipping"
|
||||
msgstr "حمل و نقل رایگان"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:169
|
||||
#: includes/class-shipping-method-express.php:169
|
||||
#: includes/class-shipping-method-pishtaz.php:169
|
||||
#: includes/class-shipping-method-sefareshi.php:169
|
||||
msgid "From this section you can specify the terms of free shipping"
|
||||
msgstr "از این قسمت می توانید شرایط حمل و نقل رایگان را مشخص کنید"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:174
|
||||
#: includes/class-shipping-method-express.php:174
|
||||
#: includes/class-shipping-method-pishtaz.php:174
|
||||
#: includes/class-shipping-method-sefareshi.php:174
|
||||
msgid "Minimum purchase amount for free shipping"
|
||||
msgstr "حداقل مبلغ خرید برای ارسال رایگان"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:176
|
||||
#: includes/class-shipping-method-express.php:176
|
||||
#: includes/class-shipping-method-pishtaz.php:176
|
||||
#: includes/class-shipping-method-sefareshi.php:176
|
||||
msgid ""
|
||||
"If you have several stores on the site, this feature will be checked and "
|
||||
"implemented for each store separately)"
|
||||
msgstr ""
|
||||
"اگر چندین فروشگاه در سایت داشته باشید ، این ویژگی برای هر فروشگاه به طور "
|
||||
"جداگانه بررسی و اجرا می شود)"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:177
|
||||
#: includes/class-shipping-method-express.php:177
|
||||
#: includes/class-shipping-method-pishtaz.php:177
|
||||
#: includes/class-shipping-method-sefareshi.php:177
|
||||
msgid "Total purchases"
|
||||
msgstr "مجموع خرید"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:182
|
||||
#: includes/class-shipping-method-express.php:182
|
||||
#: includes/class-shipping-method-pishtaz.php:182
|
||||
#: includes/class-shipping-method-sefareshi.php:182
|
||||
msgid "Free shipping for payment methods"
|
||||
msgstr "ارسال رایگان برای روش های پرداخت"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:184
|
||||
#: includes/class-shipping-method-express.php:184
|
||||
#: includes/class-shipping-method-pishtaz.php:184
|
||||
#: includes/class-shipping-method-sefareshi.php:184
|
||||
msgid "Free shipping if payment method was one of the selected method"
|
||||
msgstr "اگر روش پرداخت یکی از روش های انتخاب شده باشد ، حمل و نقل رایگان است"
|
||||
|
||||
#: includes/class-shipping-method-air-delivery.php:311
|
||||
#: includes/class-shipping-method-express.php:311
|
||||
#: includes/class-shipping-method-pishtaz.php:311
|
||||
#: includes/class-shipping-method-sefareshi.php:311
|
||||
msgid "( Free )"
|
||||
msgstr "( رایگان )"
|
||||
|
||||
#: includes/class-shipping-method-express.php:27
|
||||
msgid "Express delivery"
|
||||
msgstr "تحویل اکسپرس"
|
||||
|
||||
#: includes/class-shipping-method-express.php:28
|
||||
msgid ""
|
||||
"Allows you to send the parcel by personal courier. This service is activated "
|
||||
"only if the destination city is the same as the city of origin (store or "
|
||||
"sellers), through the settings you can price for each city or store, the "
|
||||
"minimum amount for free shipping, active or inactive and ... Change."
|
||||
msgstr ""
|
||||
"امکان ارسال مرسوله با پیک شخصی را فراهم میکند. این سرویس فقط در صورتی که شهر "
|
||||
"مقصد با شهر مبدا (فروشگاه یا فروشندگان) یکسان باشد فعال می شود، از طریق "
|
||||
"تنظیمات می توانید برای هر شهر یا فروشگاه قیمت، حداقل مجموع مبلغ برای ارسال "
|
||||
"رایگان، فعال یا غیر فعال بودن و... را تغییر دهید."
|
||||
|
||||
#: includes/class-shipping-method-express.php:68
|
||||
msgid "Example: Express delivery"
|
||||
msgstr "مثال: تحویل اکسپرس"
|
||||
|
||||
#: includes/class-shipping-method-express.php:105
|
||||
#: includes/class-shipping-method-pishtaz.php:105
|
||||
#: includes/class-shipping-method-sefareshi.php:105
|
||||
msgid ""
|
||||
"Select the cities for which you want this submission method to be disabled "
|
||||
"even if the default condition is correct"
|
||||
msgstr ""
|
||||
"شهر هایی که میخواهید غیر فعال باشند، را انتخاب کنید.<br> (در صورت غیر فعال "
|
||||
"بودن شرط پیش فرض قابل اجرا است)"
|
||||
|
||||
#: includes/class-shipping-method-express.php:114
|
||||
#: includes/class-shipping-method-pishtaz.php:114
|
||||
#: includes/class-shipping-method-sefareshi.php:114
|
||||
msgid ""
|
||||
"Select the cities for which you want this submission method to be active "
|
||||
"even if the default condition is not correct"
|
||||
msgstr ""
|
||||
"شهرهایی را که می خواهید این روش ارسال برای آنها فعال باشد انتخاب کنید حتی "
|
||||
"اگر شرط پیش فرض صحیح نباشد"
|
||||
|
||||
#: includes/class-shipping-method-pishtaz.php:27
|
||||
msgid "Fast Delivery"
|
||||
msgstr "پست پیشتاز"
|
||||
|
||||
#: includes/class-shipping-method-pishtaz.php:28
|
||||
#: includes/class-shipping-method-sefareshi.php:28
|
||||
msgid ""
|
||||
"Postage is calculated based on the store address in WooCommerce or the shop "
|
||||
"sellers as the source and the customer address as the destination with the "
|
||||
"variables of distance, weight, insurance, shipping tax with the tariff of "
|
||||
"2020"
|
||||
msgstr ""
|
||||
"هزینه پستی براساس آدرس فروشگاه در ووکامرس یا فروشندگان دکان به عنوان مبدا و "
|
||||
"آدرس مشتری به عنوان مقصد با متغییر های مسافت،وزن،بیمه،مالیات ارسال مرسوله با "
|
||||
"تعرفه ی سال ۱۳۹۹ محاسبه می گردد"
|
||||
|
||||
#: includes/class-shipping-method-pishtaz.php:68
|
||||
msgid "Example: Fast Delivery"
|
||||
msgstr "مثال: پست پیشتاز"
|
||||
|
||||
#: includes/class-shipping-method-pishtaz.php:97
|
||||
#: includes/class-shipping-method-sefareshi.php:97
|
||||
msgid ""
|
||||
"If this option is enabled, this sending method will be deactivated if the "
|
||||
"customer buys from a store in his own city. Otherwise it is active for all "
|
||||
"cities"
|
||||
msgstr ""
|
||||
"اگر این گزینه فعال باشد ، فقط در صورت خرید مشتری از فروشگاهی در شهر خود ، "
|
||||
"این روش حمل و نقل فعال می شود. در غیر این صورت برای همه شهرها فعال است"
|
||||
|
||||
#: includes/class-shipping-method-pishtaz.php:123
|
||||
msgid ""
|
||||
"Note: The Islamic Republic Post sends up to a maximum weight of 25,000 grams "
|
||||
"with this method"
|
||||
msgstr ""
|
||||
"توجه: پست جمهوری اسلامی حداکثر تا وزن 25,000 گرم را با این روش ارسال می کند"
|
||||
|
||||
#: includes/class-shipping-method-sefareshi.php:27
|
||||
msgid "Sefareshi Post"
|
||||
msgstr "پست سفارشی"
|
||||
|
||||
#: includes/class-shipping-method-sefareshi.php:68
|
||||
msgid "Example: Sefareshi Post"
|
||||
msgstr "مثال: پست سفارشی"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:25
|
||||
msgid "Calculation of shipping costs"
|
||||
msgstr "محاسبه ی هزینه حمل و نقل"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:31
|
||||
msgid "Enable the calculation of postage from the seller"
|
||||
msgstr "فعال کردن محاسبه هزینه پست از مبدا فروشنده"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:32
|
||||
msgid ""
|
||||
"If the seller s address is not complete. The primary address in WooCommerce "
|
||||
"replaces it"
|
||||
msgstr ""
|
||||
"در صورتی که آدرس فروشنده کامل نباشد. آدرس اصلی در ووکامرس جایگزین آن می شود"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:35
|
||||
msgid "Postcode"
|
||||
msgstr "کدپستی"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:41
|
||||
msgid "Postcode validation on checkout page"
|
||||
msgstr "بررسی صحت کدپستی در صفحه تسویه حساب"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:44
|
||||
#: includes/class-wc-states-cities.php:117
|
||||
msgid "Mobile"
|
||||
msgstr "موبایل"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:50
|
||||
msgid "Mobile number validation on checkout page"
|
||||
msgstr "بررسی صحت شماره موبایل در صفحه تسویه حساب"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:53
|
||||
msgid "Default weight"
|
||||
msgstr "وزن پیش فرض"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:57
|
||||
msgid "Weight to grams"
|
||||
msgstr "وزن به گرم"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:60
|
||||
msgid "This value is for products for which weight is not defined"
|
||||
msgstr ""
|
||||
"این مقدار برای محصولاتی که وزن برای آنها تعریف نشده است در نظر گرفته میشود"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:63
|
||||
msgid "Icon of shipping method"
|
||||
msgstr "تصویر روش حمل و نقل"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:69
|
||||
msgid "Enable icon shipping method on checkout and cart page"
|
||||
msgstr "فعال کردن نمایش آیکن روش ارسال در صفحه تسویه حساب و سبد خرید"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:72
|
||||
msgid "Add new status to order"
|
||||
msgstr "اضافه کردن وضعیت های جدید برای سفارش"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:80
|
||||
msgid "Delivered to Warehouse"
|
||||
msgstr "تحویل به انبار"
|
||||
|
||||
#: includes/class-shipping-settings-page-fields.php:88
|
||||
msgid "Delivered to Post"
|
||||
msgstr "تحویل به پست"
|
||||
|
||||
#: includes/class-wc-city-input-admin.php:76
|
||||
msgid "City …"
|
||||
msgstr "شهر …"
|
||||
|
||||
#: includes/class-wc-city-input-admin.php:76
|
||||
msgid "Select an option…"
|
||||
msgstr "یک گزینه را انتخاب کنید…"
|
||||
|
||||
#: includes/class-wc-states-cities.php:107
|
||||
msgid "City"
|
||||
msgstr "شهر"
|
||||
|
||||
#: templates/admin-shipping-settings-template.php:35
|
||||
msgid "Save"
|
||||
msgstr "ذخیره تنظیمات"
|
||||
|
||||
#~ msgid "http://adakweb.ir"
|
||||
#~ msgstr "http://adakweb.ir"
|
||||
|
||||
#~ msgid "Add more order statuses"
|
||||
#~ msgstr "اضافه کردن وضعیت های بیشتر سفارش"
|
||||
|
||||
#~ msgid "Add more statuses"
|
||||
#~ msgstr "اضافه کردن وضعیت های بیشتر"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If this option is enabled, delivered to warehouse, ready to send and "
|
||||
#~ "sended to the order status will be added"
|
||||
#~ msgstr ""
|
||||
#~ "اگر این گزینه فعال باشد وضعیت تحویل به انبار، آماده ارسال و ارسال شده به "
|
||||
#~ "وضعیت های سفارش افزوده می شوند"
|
||||
|
||||
#~ msgid "مثال: Sefareshi Post"
|
||||
#~ msgstr "مثال پست سفارشی"
|
||||
|
||||
#~ msgid "Check the accuracy of the mobile number on the settlement page"
|
||||
#~ msgstr "بررسی صحت شماره موبایل در صفحه تسویه حساب"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "اگر این گزینه فعال باشد وضعیت تحویل به انبار، آماده ارسال و ارسال شده به "
|
||||
#~ "وضعیت های سفارش افزوده می شوند."
|
||||
#~ msgstr ""
|
||||
#~ "If this option is enabled, delivered to warehouse, ready to send and "
|
||||
#~ "sended to the order status will be added."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "در صورتی که آدرس فروشنده کامل نباشد. آدرس اصلی در ووکامرس جایگزین آن می "
|
||||
#~ "شود"
|
||||
#~ msgstr ""
|
||||
#~ "If the seller s address is not complete. The primary address in "
|
||||
#~ "WooCommerce replaces it"
|
||||
|
||||
#~ msgid "مثال: پست هوایی"
|
||||
#~ msgstr "Example: Air Post"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "در صورت فعال بودن این گزینه اگر مشتری از فروشگاهی در شهر خودش خرید کند "
|
||||
#~ "این روش ارسال غیرفعال می شود. در غیر اینصورت برای تمام شهرها فعال است."
|
||||
#~ msgstr ""
|
||||
#~ "اگر این گزینه فعال باشد ، در صورت خرید مشتری از فروشگاهی در شهر خود ، این "
|
||||
#~ "روش ارسال غیرفعال می شود. در غیر این صورت برای همه شهرها فعال است"
|
||||
|
||||
#~ msgid "تحویل اکسپرس"
|
||||
#~ msgstr "Express delivery"
|
||||
|
||||
#~ msgid "Activation settings"
|
||||
#~ msgstr "تنظیمات فعال/غیرفعال بودن"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "در صورت فعال بودن این گزینه فقط درصورتی که مشتری از فروشگاهی در شهر خودش "
|
||||
#~ "خرید کند این روش ارسال فعال می شود. در غیر اینصورت برای تمام شهرها فعال "
|
||||
#~ "است."
|
||||
#~ msgstr ""
|
||||
#~ "اگر این گزینه فعال باشد ، فقط در صورت خرید مشتری از فروشگاهی در شهر خود ، "
|
||||
#~ "این روش حمل و نقل فعال می شود. در غیر این صورت برای همه شهرها فعال است."
|
||||
|
||||
#~ msgid "شماره موبایل صحیح نیست."
|
||||
#~ msgstr "شماره موبایل صحیح نیست"
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/basic-alerts/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/basic-alerts/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "basic-alerts-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.1"
|
||||
}
|
||||
}
|
||||
327
spec/fixtures/dynamic_finders/plugin_version/bip-pages/translation_file/languages/bip-pages.pot
vendored
Normal file
327
spec/fixtures/dynamic_finders/plugin_version/bip-pages/translation_file/languages/bip-pages.pot
vendored
Normal file
@@ -0,0 +1,327 @@
|
||||
# Copyright (C) 2020 Łukasz Garczewski
|
||||
# This file is distributed under the same license as the BIP for WordPress plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BIP for WordPress 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bip-for-wordpress\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-12-16T02:01:58+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: bip-pages\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "BIP for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://klucznicy.org.pl/open-source/bip-for-wordpress/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A plugin adding BIP (Biuletyn Informacji Publicznej) functionality to WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Łukasz Garczewski"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://klucznicy.org.pl/open-source/"
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:21
|
||||
msgid "BIP Logo Widget"
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:34
|
||||
msgid "Our organization's BIP"
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:51
|
||||
msgid "This widget displays the BIP logo with a link to your BIP main page."
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:57
|
||||
msgid "Variant"
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:72
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: bip-logo-widget.php:87
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-activation.php:46
|
||||
#: bip-pages-settings.php:75
|
||||
#: bip-pages-styling.php:27
|
||||
msgid "BIP Main Page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-activation.php:56
|
||||
msgid "BIP usage manual"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-activation.php:110
|
||||
msgid "BIP Pages plugin has been activated. Use the settings page below to configure your main page."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-activation.php:115
|
||||
msgid "BIP Pages: your main page and BIP instructions page have been created automatically."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-deactivation.php:56
|
||||
msgid "BIP Pages plugin has been deactivated. Your BIP pages have been converted to standard pages (or drafts in case of a conflicting page title)"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-main-page.php:23
|
||||
#: js/editor_notices.js:2
|
||||
msgid "You are editing the BIP main page."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-main-page.php:24
|
||||
#: js/editor_notices.js:3
|
||||
msgid "Parts of this page are automatically generated. The text you enter below will be displayed between the automatic BIP header and footer."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-meta-boxes.php:8
|
||||
msgid "Content prepared by"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-meta-boxes.php:39
|
||||
msgid "Enter name and surname of content author"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:10
|
||||
#: bip-pages-settings.php:11
|
||||
#: templates/bip-page-settings-template.php:4
|
||||
msgid "BIP Pages Settings"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:30
|
||||
msgid "Settings saved successfully."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:68
|
||||
msgid "BIP Main Page settings"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:83
|
||||
msgid "Organization Address"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:91
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:99
|
||||
msgid "Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:107
|
||||
msgid "Name of representative"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:115
|
||||
msgid "BIP instruction page settings"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:122
|
||||
msgid "Usage instruction page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:130
|
||||
msgid "BIP access settings"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:137
|
||||
msgid "Who can edit BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:145
|
||||
msgid "Who can publish BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:153
|
||||
msgid "Who can delete BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is internal option identifired, either "id" or "instruction_id"
|
||||
#: bip-pages-settings.php:178
|
||||
msgid "Invalid page ID given for %s"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:202
|
||||
msgid "Invalid phone number given."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:219
|
||||
#: bip-pages-settings.php:241
|
||||
msgid "Not selected"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:230
|
||||
msgid "Edit BIP main page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:252
|
||||
msgid "Edit BIP instruction page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:266
|
||||
msgid "The address of your organization"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:278
|
||||
msgid "Full name of a BIP editor"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:284
|
||||
msgid "Email to a BIP editor"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:292
|
||||
msgid "Phone number to your organization"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-settings.php:313
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages-styling.php:30
|
||||
msgid "BIP Instruction Page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:79
|
||||
msgctxt "Post type general name"
|
||||
msgid "BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:80
|
||||
msgctxt "Post type singular name"
|
||||
msgid "BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:81
|
||||
msgctxt "Admin Menu text"
|
||||
msgid "BIP Pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:82
|
||||
msgctxt "Add New on Toolbar"
|
||||
msgid "BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:83
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:84
|
||||
msgid "Add New BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:85
|
||||
msgid "New BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:86
|
||||
msgid "Edit BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:87
|
||||
msgid "View BIP page"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:88
|
||||
msgid "All BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:89
|
||||
msgid "Search BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:90
|
||||
msgid "Parent BIP pages:"
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:91
|
||||
msgid "No BIP pages found."
|
||||
msgstr ""
|
||||
|
||||
#: bip-pages.php:92
|
||||
msgid "No BIP pages found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:3
|
||||
msgid "Biuletyn Informacji Publicznej"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is substituted with blog name
|
||||
#: templates/bip-main-template.php:8
|
||||
msgid "%s: Biuletyn Informacji Publicznej"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:15
|
||||
msgid "Address:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:19
|
||||
msgid "Editor:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:25
|
||||
msgid "E-mail address:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:31
|
||||
msgid "Phone number:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:44
|
||||
msgid "Recently updated BIP pages"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-main-template.php:56
|
||||
msgid "BIP pages usage manual"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the name of the original author of page contents
|
||||
#: templates/bip-page-footer-template.php:5
|
||||
msgid "Information prepared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the name of the user who published the page (may be a link)
|
||||
#: templates/bip-page-footer-template.php:11
|
||||
msgid "Published by: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the date and time of page creation
|
||||
#: templates/bip-page-footer-template.php:17
|
||||
msgid "Page created: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s is the date and time of last page modification
|
||||
#: templates/bip-page-footer-template.php:23
|
||||
msgid "Last updated: %s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-search-form.php:4
|
||||
msgctxt "label"
|
||||
msgid "Search for BIP pages:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-search-form.php:7
|
||||
msgctxt "placeholder"
|
||||
msgid "Search BIP pages…"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bip-search-form.php:10
|
||||
msgctxt "submit button"
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,76 @@
|
||||
# Copyright (C) 2020 AntiSovet
|
||||
# This file is distributed under the same license as the AntiSovet plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AntiSovet 1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/AntiSovet\n"
|
||||
"Language: ru_RU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-01T20:12:11+02:00\n"
|
||||
"PO-Revision-Date: 2020-11-19 10:51+0200\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: antisovet\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
||||
#. Plugin name
|
||||
msgid "Blocking for Yandex.Advisor"
|
||||
msgstr "Блокировка для Яндекс.Советника"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Blocking the Yandex.Advisor extension in all browsers and devices. Demo period 5 days."
|
||||
msgstr "Блокировка расширения Яндекс.Советник во всех браузерах и устройствах. Демо период 5 дней."
|
||||
|
||||
#. Version of the plugin
|
||||
msgid "Version"
|
||||
msgstr "Версия"
|
||||
|
||||
msgid "Block Yandex.Advisor must be activated on the"
|
||||
msgstr "Блокировку Яндекс.Советника необходимо активировать на странице"
|
||||
|
||||
msgid "plugin settings page"
|
||||
msgstr "настроек плагина"
|
||||
|
||||
msgid "Generation error, please try again later"
|
||||
msgstr "Ошибка генерации, пожалуйста, попробуйте позднее"
|
||||
|
||||
msgid "Invalid server configuration"
|
||||
msgstr "Неверная конфигурация сервера"
|
||||
|
||||
msgid "Your server configuration does not allow using the Yandex.Advisor blocking plugin. You must enable PHP module Curl, or set the parameter allow_url_fopen to \"1\". If you cannot change the appropriate settings, you can manually set the lock code. To do this, go through the registration procedure on the website"
|
||||
msgstr "Конфигурация Вашего сервера не позволяет использовать плагин блокировки Яндекс.Советника. Необходимо включить PHP модуль Curl, либо установить параметр allow_url_fopen в значение \"1\". Если Вы не можете изменить соответствующие настройки, код блокировки можно установить вручную. Для этого пройдите процедуру регистрации на сайте"
|
||||
|
||||
msgid "Code installed"
|
||||
msgstr "Код установлен"
|
||||
|
||||
msgid "Code status can be seen"
|
||||
msgstr "Статус кода можно увидеть"
|
||||
|
||||
msgid "by the link"
|
||||
msgstr "по ссылке"
|
||||
|
||||
msgid "Your E-mail"
|
||||
msgstr "Ваш E-mail"
|
||||
|
||||
msgid "Required field for registration"
|
||||
msgstr "Обязательное для регистрации поле"
|
||||
|
||||
msgid "Free period - 5 days"
|
||||
msgstr "Бесплатный период - 5 дней"
|
||||
|
||||
msgid "Technical support"
|
||||
msgstr "Техническая поддержка"
|
||||
|
||||
msgid "If you have any questions about the plugin or any problems, please contact us via the"
|
||||
msgstr "В случае каких-либо вопросов по работе плагина или возникновению проблем обращайтесь через"
|
||||
|
||||
msgid "feedback form"
|
||||
msgstr "форму обратной связи"
|
||||
|
||||
msgid "or email"
|
||||
msgstr "или на почту"
|
||||
|
||||
msgid "Install code"
|
||||
msgstr "Установить код"
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-taxonomy-terms","version":"1.5.9","vgDistName":"bulk-edit-categories-tags","vgPreviousVersion":"1.5.8.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","columns-visibility","filters","wp-sheet-editor","user-path"],"pro":["acf","advanced-filters","columns-renaming","formulas","custom-columns","universal-sheet","yoast-seo","wpml","columns-manager"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/taxonomy-terms\/package.json","vgEditorKeys":["category","post_tag","product_cat","product_tag"]}
|
||||
@@ -0,0 +1,259 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - Taxonomy Terms plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - Taxonomy Terms 1.5.9\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/taxonomy-terms\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-12-19T01:16:41+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - Taxonomy Terms"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/go/taxonomy-terms-addon?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=taxonomy-terms"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Edit categories and tags in a spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=taxonomy-terms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:21
|
||||
msgid "Edit categories, tags, attributes, taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:45
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:20
|
||||
msgid "Edit in a Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:57
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:32
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:69
|
||||
msgid "Hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:81
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:50
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:57
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:74
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:89
|
||||
msgid "Slug"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:98
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:113
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:95
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:136
|
||||
msgid "Count"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:146
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:160
|
||||
msgid "Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:169
|
||||
msgid "Display type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:176
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:177
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:178
|
||||
msgid "Subcategories"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:179
|
||||
msgid "Both"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:184
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:197
|
||||
msgid "Full hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: inc/bootstrap.php:206
|
||||
msgid "Old Platform ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:44
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:68
|
||||
msgid "Default sort order"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:73
|
||||
msgid "Custom ordering"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:75
|
||||
msgid "Name (numeric)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:76
|
||||
msgid "Term ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:83
|
||||
msgid "Enable Archives"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes-bootstrap.php:113
|
||||
msgid "Manage terms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/wc-attributes.php:70
|
||||
#: inc/integrations/wc-attributes.php:122
|
||||
msgid "WooCommerce Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/providers/term.php:399
|
||||
msgid "The item id does not exist. Error #89827j"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:160
|
||||
msgid "Request not allowed. Try again later."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:163
|
||||
msgid "Please select the term that you want to keep."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:180
|
||||
msgid "Please select the terms to remove."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:212
|
||||
#: inc/sheet.php:251
|
||||
msgid "%s terms merged."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:244
|
||||
msgid "Terms to remove not found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:293
|
||||
#: views/merge-terms-modal.php:5
|
||||
msgid "Merge terms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:295
|
||||
msgid "Combine terms into one and automatically reassign the posts to use the final term."
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:380
|
||||
msgid "Parent keyword"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:380
|
||||
msgid "We will display all the categories below parent that contains this keyword"
|
||||
msgstr ""
|
||||
|
||||
#: inc/sheet.php:411
|
||||
msgid "We find items that have the same SLUG in the CSV and the WP Field.<br>Please select the CSV column that contains the slug.<br>You must import the slug column if you want to update existing categories, items without slug will be created as new."
|
||||
msgstr ""
|
||||
|
||||
#: taxonomy-terms.php:81
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:8
|
||||
msgid "Replace these terms"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:8
|
||||
msgid "Select the categories that will be removed."
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:11
|
||||
msgid "Select individual items"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:12
|
||||
msgid "Select all the items from a search"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:13
|
||||
msgid "Merge all the duplicates with same name and hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:17
|
||||
msgid "Enter name..."
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:22
|
||||
msgid "with this term"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:22
|
||||
msgid "This term will remain saved."
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:23
|
||||
msgid "Enter a name..."
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:28
|
||||
msgid "I understand it will remove all the terms from my search and keep the term selected above."
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:28
|
||||
msgid "For example, if you searched for categories with keyword Car, it will combine all the found categories into one"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:38
|
||||
msgid "Execute"
|
||||
msgstr ""
|
||||
|
||||
#: views/merge-terms-modal.php:39
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:4
|
||||
msgid "Thank you for installing our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:33
|
||||
msgid "You can open the Bulk Editor Now: %s"
|
||||
msgstr ""
|
||||
1
spec/fixtures/dynamic_finders/plugin_version/bulk-edit-events/composer_file/package.json
vendored
Normal file
1
spec/fixtures/dynamic_finders/plugin_version/bulk-edit-events/composer_file/package.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-events","version":"1.0.37","vgDistName":"bulk-edit-events","vgPreviousVersion":"1.0.36.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","columns-visibility","filters","wp-sheet-editor","user-path"],"pro":["advanced-filters","columns-renaming","formulas","custom-columns","spreadsheet-setup","yoast-seo","wpml","posts-templates","acf","universal-sheet","columns-manager"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/events\/package.json","vgEditorKeys":["tribe_events","tribe_organizer","tribe_venue"]}
|
||||
@@ -0,0 +1,139 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - Events plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - Events 1.0.37\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/events\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-12-19T01:15:49+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - Events"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/go/events-addon?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=events"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Edit events in spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=events"
|
||||
msgstr ""
|
||||
|
||||
#: events.php:79
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:99
|
||||
#: integrations/the-events-calendar-organizers.php:37
|
||||
#: integrations/the-events-calendar-venues.php:40
|
||||
msgid "Open spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:100
|
||||
#: integrations/the-events-calendar-organizers.php:38
|
||||
#: integrations/the-events-calendar-venues.php:41
|
||||
msgid "Edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:234
|
||||
msgid "Start date"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:239
|
||||
msgid "Start time (H:i:s)"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:243
|
||||
msgid "End date"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:248
|
||||
msgid "End time (H:i:s)"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:254
|
||||
#: integrations/the-events-calendar-venues.php:66
|
||||
msgid "Origin"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:258
|
||||
#: integrations/the-events-calendar-venues.php:70
|
||||
msgid "WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:259
|
||||
#: integrations/the-events-calendar-venues.php:71
|
||||
msgid "Percentage discount"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:266
|
||||
msgid "Venue"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:276
|
||||
msgid "Organizer 1"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:281
|
||||
msgid "Organizer 2"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:286
|
||||
msgid "Organizer 3"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:291
|
||||
msgid "Currency position"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:295
|
||||
msgid "Before cost"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:296
|
||||
msgid "After cost"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:303
|
||||
msgid "Is featured"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:314
|
||||
#: integrations/the-events-calendar-venues.php:78
|
||||
msgid "Show map link"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-events.php:325
|
||||
#: integrations/the-events-calendar-venues.php:87
|
||||
msgid "Show map"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/the-events-calendar-venues.php:57
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:4
|
||||
msgid "Thank you for installing our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:9
|
||||
msgid "This plugin lets you edit events in the spreadsheet and it supports these event plugins: The Events Calendar by ModernTribe (we will add support for more plugins in the next update). This plugin requires one of those plugins."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:10
|
||||
msgid "In the left menu, go to \"WP Sheet Editor > Edit events\""
|
||||
msgstr ""
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-frontend-editor","version":"2.4.1","vgDistName":"bulk-edit-posts-on-frontend","vgPreviousVersion":"2.4.0.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","filters","wp-sheet-editor","user-path","columns-renaming","columns-visibility"],"pro":["acf","advanced-filters","formulas","custom-columns","custom-post-types","woocommerce","universal-sheet","yoast-seo","wpml","posts-templates"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/frontend-sheet\/package.json","vgEditorKeys":["post","page","product"]}
|
||||
@@ -0,0 +1,408 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - Editable Frontend Tables plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - Editable Frontend Tables 2.4.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/frontend-sheet\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-12-19T01:15:59+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - Editable Frontend Tables"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/extensions/frontend-spreadsheet-editor/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=frontend"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Display spreadsheet editor on the frontend or custom admin pages, create custom spreadsheets as dashboards for apps."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=frontend"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:92
|
||||
msgid "Edit posts"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:122
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:145
|
||||
msgid "Try premium plugin for FREE"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:295
|
||||
msgid "Frontend Spreadsheets"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:300
|
||||
msgid "Login message"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:301
|
||||
msgid "You need to login to view this page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:302
|
||||
msgid "This will be displayed when the current user is not logged in and tries to see a spreadsheet page. We will display a login form after your message."
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:307
|
||||
msgid "Hide admin bar on the frontend"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:308
|
||||
msgid "By default WordPress shows a black bar at the top of the page when a logged in user views a frontend page. The bar lets you access the wp-admin, log out, edit the current page, etc. If you enable this option we will hide that bar and you can use the shortcode: [vg_display_logout_link] to display the logout link."
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:315
|
||||
msgid "Logo"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:316
|
||||
msgid "This logo will be displayed above the spreadsheet in the frontend"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:321
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:322
|
||||
msgid "This menu will be displayed at the top right section above the spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:328
|
||||
msgid "Main Color"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:329
|
||||
msgid "This color will be used as background for the header and footer."
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:336
|
||||
msgid "Links Color"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:337
|
||||
msgid "This color will be used for the menu links, it should be the opposite of the background color. i.e. dark background with light text, or light background with dark text"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:351
|
||||
msgid "All spreadsheets"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:354
|
||||
msgid "Custom columns"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:440
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:441
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:479
|
||||
msgid "Quick settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:586
|
||||
#: views/backend/metabox.php:47
|
||||
msgid " <small>(Premium. <a href=\"%s\" target=\"_blank\">Try for Free for 7 Days</a>)</small>"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:744
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Spreadsheets"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:745
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:747
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:748
|
||||
msgid "Spreadsheet Archives"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:749
|
||||
msgid "Spreadsheet Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:750
|
||||
msgid "Parent Spreadsheet:"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:751
|
||||
msgid "All Spreadsheets"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:752
|
||||
msgid "Add New Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:753
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:754
|
||||
msgid "New Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:755
|
||||
msgid "Edit settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:756
|
||||
msgid "Update settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:757
|
||||
msgid "View Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:758
|
||||
msgid "View Spreadsheets"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:759
|
||||
msgid "Search Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:760
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:761
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:762
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:763
|
||||
msgid "Set featured image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:764
|
||||
msgid "Remove featured image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:765
|
||||
msgid "Use as featured image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:766
|
||||
msgid "Insert into item"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:767
|
||||
msgid "Uploaded to this item"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:768
|
||||
msgid "Spreadsheets list"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:769
|
||||
msgid "Spreadsheets list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: frontend-editor.php:770
|
||||
msgid "Filter items list"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:3
|
||||
msgid "Dokan"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:6
|
||||
msgid "If you fill the options below, we will add a link in the Dokan dashboard, so the vendors can open the spreadsheet from that menu."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:9
|
||||
#: integrations/wcfm/views/metabox.php:9
|
||||
#: integrations/wcmp/views/metabox.php:9
|
||||
msgid "Menu title"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:13
|
||||
msgid "Menu position"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:17
|
||||
msgid "Menu icon"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/dokan/views/metabox.php:18
|
||||
msgid "Enter the name of a fontawesome icon. You can view the <a href=\"https://fontawesome.com/cheatsheet\" target=\"_blank\">icons list here</a>. Example: edit"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wcfm/views/metabox.php:3
|
||||
msgid "WCFM Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wcfm/views/metabox.php:6
|
||||
#: integrations/wcmp/views/metabox.php:6
|
||||
msgid "If you fill the options below, we will add a link in the WCMP dashboard, so the vendors can open the spreadsheet from that menu."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wcmp/views/metabox.php:3
|
||||
msgid "WCMP Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:5
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:6
|
||||
msgid "Watch tutorial"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:8
|
||||
msgid "My account and license"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:13
|
||||
msgid "1. What information do you want to edit on the frontend?"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:31
|
||||
#: views/backend/metabox.php:93
|
||||
#: views/backend/metabox.php:128
|
||||
#: views/backend/metabox.php:167
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:37
|
||||
msgid "Please select the post type and save changes. After you save changes you will be able to see the rest of the settings and instructions."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:51
|
||||
msgid "2. Setup page in the frontend"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:53
|
||||
msgid "You need to set a logo in the settings page. Optionally you can change the background color, links color, and set a header menu."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:55
|
||||
msgid "Open Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:55
|
||||
msgid "Preview Frontend Editor"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:57
|
||||
msgid "When you finish this step you can start using the frontend editor. You can add the frontend page to a menu or share the link with your users."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:61
|
||||
msgid "Add this shortcode to a full-width page: %s"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:63
|
||||
msgid "Page detected: This page contains the shortcode: <b>%s</b> (<a href=\"%s\" target=\"_blank\">Preview</a> - <a href=\"%s\" target=\"_blank\">Edit</a>)"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:67
|
||||
msgid "3. Available tools (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:95
|
||||
msgid "4. Columns visibility and Custom Fields (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:132
|
||||
msgid "5. Filter rows (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:134
|
||||
msgid "You can use this search form to select what rows should appear in the spreadsheet table. You can use {user_id} and we will automatically replace it with the ID of the current user."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:164
|
||||
msgid "Add new"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:172
|
||||
msgid "Learn more about security and user roles (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:175
|
||||
msgid "The editor is available only for logged in users. Unknown users will see a login form automatically."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:177
|
||||
msgid "User roles"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:180
|
||||
msgid "Subscriber role is not allowed to use the editor."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:181
|
||||
msgid "Contributor role can view and edit their own posts only, but they can´t upload images."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:182
|
||||
msgid "Author role can view and edit their own posts only, they can upload images."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:183
|
||||
msgid "Editor role can view and edit all posts and pages."
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:188
|
||||
msgid "<li>Shop manager role can view and edit WooCommerce products.</li>"
|
||||
msgstr ""
|
||||
|
||||
#: views/backend/metabox.php:193
|
||||
msgid "Administrator role can view and edit everything."
|
||||
msgstr ""
|
||||
|
||||
#: views/frontend/page-template.php:64
|
||||
msgid "Primary Menu"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: views/frontend/page-template.php:112
|
||||
msgid "Edit<span class=\"screen-reader-text\"> \"%s\"</span>"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:16
|
||||
msgid "Thank you for installing our plugin. You can start using it in 5 minutes. Please follow these steps:"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:28
|
||||
msgid "Add this shortcode to a full-width page: [vg_sheet_editor editor_id=\"%s\"] and it works automatically."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:29
|
||||
msgid "<a href=\"%s\" target=\"_blank\" class=\"button quick-settings-button\">Quick Settings</a>"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:31
|
||||
msgid "Fill the settings. <a href=\"%s\" target=\"_blank\" class=\"button\">Click here</a>"
|
||||
msgstr ""
|
||||
@@ -0,0 +1 @@
|
||||
{"name":"wp-sheet-editor-users","version":"1.4.1","vgDistName":"bulk-edit-user-profiles-in-spreadsheet","vgPreviousVersion":"1.4.0.4","sheetEditorModules":{"free":["autofill-cells","columns-resizing","columns-visibility","filters","wp-sheet-editor","user-path"],"pro":["acf","advanced-filters","columns-renaming","formulas","custom-columns","spreadsheet-setup","universal-sheet","columns-manager"]},"package_file_path":"C:\\VegaCorp\\dev\\wp-sheet-editor\/users-sheet\/package.json","vgEditorKeys":["user"]}
|
||||
@@ -0,0 +1,400 @@
|
||||
# Copyright (C) 2020 WP Sheet Editor
|
||||
# This file is distributed under the same license as the WP Sheet Editor - Users plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Sheet Editor - Users 1.4.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/users-sheet\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-12-19T01:16:52+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Sheet Editor - Users"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/extensions/edit-users-spreadsheet/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=users"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Edit users in spreadsheet."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Sheet Editor"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpsheeteditor.com/?utm_source=wp-admin&utm_medium=plugins-list&utm_campaign=users"
|
||||
msgstr ""
|
||||
|
||||
#: inc/buddypress.php:43
|
||||
msgid "BP: %s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:24
|
||||
msgid "Subscriber"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:39
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:40
|
||||
msgid "Shop manager"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/edd.php:45
|
||||
msgid "Licenses count"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:37
|
||||
msgid "Show WooCommerce Membership columns grouped by plan?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:38
|
||||
msgid "By default, we show membership columns by the assignment order (membership 1 appears first, etc.). Activate this option to show columns for each membership plan by name."
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:74
|
||||
msgid "Active membership plan"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:76
|
||||
msgid "Any"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:119
|
||||
msgid "Membership : %s : Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:133
|
||||
msgid "Membership : %s : Start date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:147
|
||||
msgid "Membership : %s : End date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:164
|
||||
msgid "Membership %d : Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:179
|
||||
msgid "Membership %d : Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:193
|
||||
msgid "Membership %d : Start date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce-memberships.php:207
|
||||
msgid "Membership %d : End date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:100
|
||||
msgid "WC Customers: Flush the cache"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:152
|
||||
msgid "Billing first name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:164
|
||||
msgid "Billing last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:176
|
||||
msgid "Billing company"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:188
|
||||
msgid "Billing address 1"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:200
|
||||
msgid "Billing address 2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:212
|
||||
msgid "Billing city"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:224
|
||||
msgid "Billing post code"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:236
|
||||
msgid "Billing country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:248
|
||||
msgid "Billing state"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:260
|
||||
msgid "Billing phone"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:272
|
||||
msgid "Billing email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:285
|
||||
msgid "Shipping first name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:297
|
||||
msgid "Shipping last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:309
|
||||
msgid "Shipping company"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:321
|
||||
msgid "Shipping address 1"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:333
|
||||
msgid "Shipping address 2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:345
|
||||
msgid "Shipping city"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:357
|
||||
msgid "Shipping post code"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:369
|
||||
msgid "Shipping country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:381
|
||||
msgid "Shipping state"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:393
|
||||
msgid "Shipping phone"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:405
|
||||
msgid "Shipping email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:417
|
||||
msgid "Last purchase date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:430
|
||||
msgid "Total spent"
|
||||
msgstr ""
|
||||
|
||||
#: inc/integrations/woocommerce.php:442
|
||||
msgid "Average order value"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:24
|
||||
msgid "Edit in a Spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:43
|
||||
msgid "Edit Users"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:49
|
||||
msgid "Bulk Editor"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:70
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:82
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:94
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:106
|
||||
#: users.php:420
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:124
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:140
|
||||
msgid "First name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:152
|
||||
msgid "Last name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:164
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:175
|
||||
msgid "Registration date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:188
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:200
|
||||
msgid "Nicename"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:212
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:224
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:236
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:248
|
||||
msgid "Rich editing"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:266
|
||||
msgid "Comment shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:283
|
||||
msgid "Color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:304
|
||||
msgid "Show admin bar on frontend"
|
||||
msgstr ""
|
||||
|
||||
#: inc/spreadsheet-bootstrap.php:329
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:85
|
||||
msgid "Please update the WP Sheet Editor plugin and all its extensions to the latest version. The features of the plugin \""
|
||||
msgstr ""
|
||||
|
||||
#: users.php:132
|
||||
msgid "My license"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:212
|
||||
msgid "Users sheet"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:217
|
||||
msgid "Hide administrators on the spreadsheet?"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:218
|
||||
msgid "We will not show administrator users in the spreadsheet, so no one can see or edit them, even administrators wont be able to see other administrators."
|
||||
msgstr ""
|
||||
|
||||
#: users.php:224
|
||||
msgid "Which user roles will be displayed and edited in the spreadsheet?"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:225
|
||||
msgid "Enter the list of role keys separated by commas. For example, if you only want to edit and see customers on the spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:237
|
||||
msgid "3. Install the free plugin: <a href='https://wordpress.org/plugins/disable-emails/' target='_blank'>Disable emails</a> temporarily before the import, if you don't want WordPress to send any notifications during the import (like email changed, password changed, etc) and don't forget to activate the emails again when you finish importing."
|
||||
msgstr ""
|
||||
|
||||
#: users.php:347
|
||||
#: users.php:563
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:421
|
||||
msgid "Select..."
|
||||
msgstr ""
|
||||
|
||||
#: users.php:422
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:434
|
||||
msgid "Search in user email, login, nicename, display name"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:513
|
||||
msgid "Send welcome email when a new user is imported?"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:521
|
||||
msgid ". <b>Lite version</b> listing \"subscriber\" users. <b>Go pro:</b> edit all the roles (%s), custom fields, export, import, and more"
|
||||
msgstr ""
|
||||
|
||||
#: users.php:544
|
||||
msgid "We find users that have the same ID, email, or username in the CSV and the WP Profile.<br>Please select the CSV column that contains one of those fields.<br>You must import the selected column if you want to update existing users, rows without the value will be created as new."
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:6
|
||||
msgid "Go premium"
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:8
|
||||
msgid "Edit Customers billing and shipping info."
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:9
|
||||
msgid "Update hundreds of user profiles using formulas"
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:10
|
||||
msgid "Advanced search. Find user profiles quickly."
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:11
|
||||
msgid "Create a lot of users quickly."
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:12
|
||||
msgid "Edit custom fields from user profiles, including passwords"
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:13
|
||||
msgid "Edit users with any role, including %s."
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:14
|
||||
msgid "Hide and rename columns in the spreadsheet"
|
||||
msgstr ""
|
||||
|
||||
#: views/upgrade-message.php:22
|
||||
msgid "<p><b>Money back guarantee.</b> We´ll give you a refund if the plugin doesn´t work.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:4
|
||||
msgid "Thank you for installing our plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:10
|
||||
msgid "<p>Note. You are using the free version and you can edit only users with \"%s\" role.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: views/welcome-page-content.php:15
|
||||
msgid "You can open the Users Bulk Editor Now: <a href=\"%s\" class=\"button\">Click here</a>"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,60 @@
|
||||
# Copyright (C) 2020 DigitalDyna
|
||||
# This file is distributed under the same license as the Custom Validation Message for CF7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Custom Validation Message for CF7 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cf7-custom-validation-message\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-12-03T19:14:48+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: cf7-custom-validation-message\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Custom Validation Message for CF7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Plugin provides custom validation message for each field of contact form 7."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "DigitalDyna"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://digitaldyna.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-cf7cvm-admin.php:58
|
||||
#: admin/class-cf7cvm-admin.php:67
|
||||
msgid "Custom Validation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-cf7cvm-admin.php:68
|
||||
msgid "<b>Note:</b>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-cf7cvm-admin.php:69
|
||||
msgid "You need to save form to reflect new tag(s)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-cf7cvm-admin.php:91
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-cf7cvm-admin.php:95
|
||||
msgid "Your field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-cf7cvm-admin.php:96
|
||||
msgid "Your custom validation message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-cf7cvm-activator.php:37
|
||||
msgid "Please install and Activate Contact Form 7."
|
||||
msgstr ""
|
||||
151
spec/fixtures/dynamic_finders/plugin_version/cf7-sms/translation_file/languages/cf7-sms.pot
vendored
Normal file
151
spec/fixtures/dynamic_finders/plugin_version/cf7-sms/translation_file/languages/cf7-sms.pot
vendored
Normal file
@@ -0,0 +1,151 @@
|
||||
# Copyright (C) 2020 chilidevs
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SMS Integration for Contact Form 7 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/cf7-sms-integration\n"
|
||||
"POT-Creation-Date: 2020-11-27 07:14:34+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.3\n"
|
||||
|
||||
#: cf7-sms.php:121
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:75 includes/class-admin.php:76
|
||||
#: includes/class-admin.php:96 includes/class-admin.php:138
|
||||
#: includes/class-form-settings.php:36
|
||||
msgid "SMS Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:116
|
||||
msgid "Select Gateway"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:117
|
||||
msgid "Select your sms gateway"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:157
|
||||
msgid "--select--"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:158
|
||||
msgid "Vonage(Nexmo)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:176
|
||||
msgid ""
|
||||
"Enter your Vonage(Nexmo) details. Please visit <a href=\"%s\" "
|
||||
"target=\"_blank\">%s</a> and get your api keys and options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:188
|
||||
msgid "Vonage(Nexmo) API"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:191
|
||||
msgid "Enter Vonage(Nexmo) API key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:196
|
||||
msgid "Vonage(Nexmo) API Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:199
|
||||
msgid "Enter Vonage(Nexmo) API secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:204
|
||||
msgid "Vonage(Nexmo) From Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:207
|
||||
msgid "From which name the message will be sent to the users ( Default : VONAGE )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form-settings.php:57
|
||||
msgid "Click to toggle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form-settings.php:58
|
||||
msgid "Admin SMS Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form-settings.php:63
|
||||
msgid "Admin Phone Number:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form-settings.php:65
|
||||
msgid "Insert your phone number (e.g.: <code>%s</code>)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form-settings.php:71
|
||||
msgid "Enter SMS body:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form-settings.php:73
|
||||
msgid "In the following fields, you can use these mail-tags:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form-settings.php:77
|
||||
msgid ""
|
||||
"Enter your custom SMS text. Just follow the Mail -> Message Body section "
|
||||
"convention"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-form-settings.php:130
|
||||
msgid "Please set your settings first"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gateway.php:45
|
||||
msgid "No API key or Secret found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gateway.php:49
|
||||
msgid "No number found for sending SMS"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gateway.php:63
|
||||
msgid "SMS sent successfully"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gateway.php:69
|
||||
msgid "The message failed with status:"
|
||||
msgstr ""
|
||||
|
||||
#: libs/class.settings-api.php:363
|
||||
msgid "Choose File"
|
||||
msgstr ""
|
||||
|
||||
#: libs/class.settings-api.php:535
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "SMS Integration for Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://chilidevs.com/downloads/contact-form-7-sms-integration/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Am SMS Integration plugin for Contact Form 7 helps to notify via SMS when "
|
||||
"form submitted"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "chilidevs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://chilidevs.com/"
|
||||
msgstr ""
|
||||
59
spec/fixtures/dynamic_finders/plugin_version/chayall/translation_file/languages/chayall.pot
vendored
Normal file
59
spec/fixtures/dynamic_finders/plugin_version/chayall/translation_file/languages/chayall.pot
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
# Copyright (C) 2020 Greenbureau
|
||||
# This file is distributed under the same license as the ChayAll plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ChayAll 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/chayall\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-27T14:32:05+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: chayall\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "ChayAll"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://chayall.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Boost your sales and your customer relationship thanks to messaging. Integrate WhatsApp Business, Messenger, Apple Business Chat and Google's Business Messages on your site"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Greenbureau"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://corp.greenbureau.com/"
|
||||
msgstr ""
|
||||
|
||||
#: chayall.php:60
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: chayall.php:66
|
||||
msgid "https://app.chayall.fr"
|
||||
msgstr ""
|
||||
|
||||
#: chayall.php:67
|
||||
msgid "To get started, log on to <a href=\"%s\" target=\"_blank\">ChayAll</a>:"
|
||||
msgstr ""
|
||||
|
||||
#: chayall.php:70
|
||||
msgid "Go to the Messaging page"
|
||||
msgstr ""
|
||||
|
||||
#: chayall.php:71
|
||||
msgid "Go to the \"Embed on your website\" and choose WordPress as the embed method"
|
||||
msgstr ""
|
||||
|
||||
#: chayall.php:72
|
||||
msgid "Copy the API key and paste it below"
|
||||
msgstr ""
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/checkoutx/change_log/changelog.txt
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/checkoutx/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
= 1.1.0 =
|
||||
* public release
|
||||
* adds automatic shop configuration
|
||||
|
||||
= 1.0 =
|
||||
* closed beta launch
|
||||
@@ -0,0 +1,88 @@
|
||||
# Copyright (C) 2020 thecodechime
|
||||
# This file is distributed under the same license as the Codechime Loader plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Codechime Loader 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/codechime-loader\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-11-12T07:03:06+05:45\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: codechime-loader\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/customizer/customizer.php:128
|
||||
msgid "Codechime Loader"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://thecodechime.com/plugins/codechime-loader"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A great plugin to create beautiful pre loaders for your WordPress websites."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "thecodechime"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://thecodechime.com/"
|
||||
msgstr ""
|
||||
|
||||
#: inc/customizer/customizer.php:129
|
||||
msgid "Codechime loader panel for adding progress bar and loader."
|
||||
msgstr ""
|
||||
|
||||
#: inc/customizer/customizer.php:140
|
||||
msgid "Loader Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/customizer/customizer.php:148
|
||||
msgid "Loader Appearance"
|
||||
msgstr ""
|
||||
|
||||
#: inc/customizer/settings/loader-appearance.php:37
|
||||
msgid "Loader Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/customizer/settings/loader-appearance.php:49
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/customizer/settings/loader-appearance.php:65
|
||||
msgid "Loader Background Opacity"
|
||||
msgstr ""
|
||||
|
||||
#: inc/customizer/settings/loader-settings.php:37
|
||||
msgid "Loader Type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:30
|
||||
msgid "-- Select --"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:31
|
||||
msgid "Spinner"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:32
|
||||
msgid "Atom"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:33
|
||||
msgid "Radar"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:34
|
||||
msgid "Bounce"
|
||||
msgstr ""
|
||||
|
||||
#: inc/helpers.php:35
|
||||
msgid "Loading Bar"
|
||||
msgstr ""
|
||||
762
spec/fixtures/dynamic_finders/plugin_version/come-back/translation_file/languages/come-back.pot
vendored
Normal file
762
spec/fixtures/dynamic_finders/plugin_version/come-back/translation_file/languages/come-back.pot
vendored
Normal file
@@ -0,0 +1,762 @@
|
||||
# Copyright (C) 2020 Sanjeev Aryal
|
||||
# This file is distributed under the same license as the Come Back! package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Come Back! 1.2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-12-18 04:47:51+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Come Back!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:77
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:82
|
||||
msgid "Send email to user after inactive days:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:89
|
||||
msgid "Email Subject:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:96
|
||||
msgid "Email Message:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:111
|
||||
msgid "Pro Tip:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:112
|
||||
msgid ""
|
||||
"There are helpful %1s that you can use on the email subject and email "
|
||||
"message."
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:202
|
||||
#. translators: %1$s - WP.org link; %2$s - same WP.org link.
|
||||
msgid ""
|
||||
"Please rate <strong>Come Back</strong> <a href=\"%1$s\" target=\"_blank\" "
|
||||
"rel=\"noopener noreferrer\">★★★★★</a> on <a "
|
||||
"href=\"%2$s\" target=\"_blank\" rel=\"noopener "
|
||||
"noreferrer\">WordPress.org</a> to help us spread the word. Thank you from "
|
||||
"the Come Back team!"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ActionFactory.php:161
|
||||
msgid "Invalid action - must be a recurring action."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:60
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:75
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:76
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:89
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:19
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:30
|
||||
msgid "Scheduled Actions"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:127
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:129
|
||||
msgid "About Action Scheduler %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:131
|
||||
msgid ""
|
||||
"Action Scheduler is a scalable, traceable job queue for background "
|
||||
"processing large sets of actions. Action Scheduler works by triggering an "
|
||||
"action hook to run at some time in the future. Scheduled actions can also "
|
||||
"be scheduled to run on a recurring schedule."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:139
|
||||
msgid "Columns"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:141
|
||||
msgid "Scheduled Action Columns"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:143
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:96
|
||||
msgid "Hook"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:143
|
||||
msgid "Name of the action hook that will be triggered."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:144
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:97
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:144
|
||||
msgid "Action statuses are Pending, Complete, Canceled, Failed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:145
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:98
|
||||
msgid "Arguments"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:145
|
||||
msgid "Optional data array passed to the action hook."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:146
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:99
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:146
|
||||
msgid "Optional action group."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:147
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:100
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:147
|
||||
msgid "The action's schedule frequency."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:148
|
||||
msgid "Scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:148
|
||||
msgid "The date/time the action is/was scheduled to run."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:149
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:102
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_AdminView.php:149
|
||||
msgid "Activity log for the action."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_DataController.php:133
|
||||
#. translators: %d: amount of time
|
||||
msgid "Stopped the insanity for %d second"
|
||||
msgid_plural "Stopped the insanity for %d seconds"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_DataController.php:137
|
||||
msgid "Attempting to reduce used memory..."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_InvalidActionException.php:21
|
||||
#. translators: 1: action ID 2: schedule
|
||||
msgid "Action [%1$s] has an invalid schedule: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_InvalidActionException.php:40
|
||||
#. translators: 1: action ID 2: arguments
|
||||
msgid ""
|
||||
"Action [%1$s] has invalid arguments. It cannot be JSON decoded to an array. "
|
||||
"$args = %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:92
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:101
|
||||
msgid "Scheduled Date"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:122
|
||||
msgid "Claim ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:129
|
||||
msgid "Run"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:130
|
||||
msgid "Process the action now as if it were run as part of a queue"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:133
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:134
|
||||
msgid "Cancel the action now to avoid it being run in future"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:144
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s year"
|
||||
msgid_plural "%s years"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:149
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s month"
|
||||
msgid_plural "%s months"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:154
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s week"
|
||||
msgid_plural "%s weeks"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:159
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s day"
|
||||
msgid_plural "%s days"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:164
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s hour"
|
||||
msgid_plural "%s hours"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:169
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s minute"
|
||||
msgid_plural "%s minutes"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:174
|
||||
#. translators: %s: amount of time
|
||||
msgid "%s second"
|
||||
msgid_plural "%s seconds"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:201
|
||||
msgid "Now!"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:237
|
||||
#. translators: %s: time interval
|
||||
msgid "Every %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:243
|
||||
msgid "Non-repeating"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:341
|
||||
msgid ""
|
||||
"It appears one or more database tables were missing. Attempting to "
|
||||
"re-create the missing table(s)."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:357
|
||||
#. translators: %s: amount of claims
|
||||
msgid ""
|
||||
"Maximum simultaneous queues already in progress (%s queue). No additional "
|
||||
"queues will begin processing until the current queues are complete."
|
||||
msgid_plural ""
|
||||
"Maximum simultaneous queues already in progress (%s queues). No additional "
|
||||
"queues will begin processing until the current queues are complete."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:374
|
||||
#. translators: %s: process URL
|
||||
msgid ""
|
||||
"A new queue has begun processing. <a href=\"%s\">View actions in-progress "
|
||||
"»</a>"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:377
|
||||
#. translators: %d: seconds
|
||||
msgid "The next queue will begin processing in approximately %d seconds."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:398
|
||||
#. translators: %s: action HTML
|
||||
msgid "Successfully executed action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:402
|
||||
#. translators: %s: action HTML
|
||||
msgid "Successfully canceled action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:406
|
||||
#. translators: %s: action HTML
|
||||
msgid "Successfully processed change for action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:412
|
||||
#. translators: 1: action HTML 2: action ID 3: error message
|
||||
msgid "Could not process change for action: \"%1$s\" (ID: %2$d). Error: %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:458
|
||||
#. translators: %s: date interval
|
||||
msgid " (%s ago)"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:461
|
||||
#. translators: %s: date interval
|
||||
msgid " (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_ListTable.php:610
|
||||
msgid "Search hook, args and claim ID"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_QueueRunner.php:192
|
||||
msgid "Every minute"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_WPCommentCleaner.php:103
|
||||
#. translators: %s: date interval
|
||||
msgid "This data will be deleted in %s."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_WPCommentCleaner.php:108
|
||||
#. translators: 1: next cleanup message 2: github issue URL
|
||||
msgid ""
|
||||
"Action Scheduler has migrated data to custom tables; however, orphaned log "
|
||||
"entries exist in the WordPress Comments table. %1$s <a href=\"%2$s\">Learn "
|
||||
"more »</a>"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:101
|
||||
msgid "Action Scheduler"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:101
|
||||
msgid "This section shows scheduled action counts."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:104
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:108
|
||||
msgid "Action Status"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:110
|
||||
msgid "Count"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:111
|
||||
msgid "Oldest Scheduled Date"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/ActionScheduler_wcSystemStatus.php:112
|
||||
msgid "Newest Scheduled Date"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:33
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ProgressBar.php:47
|
||||
#. translators: %s php class name
|
||||
msgid "The %s class can only be run within WP CLI."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:59
|
||||
msgid "There are too many concurrent batches, but the run is forced to continue."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:61
|
||||
msgid "There are too many concurrent batches."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:93
|
||||
#. translators: %d: amount of actions
|
||||
msgid "Running %d action"
|
||||
msgid_plural "Running %d actions"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:113
|
||||
msgid "The claim has been lost. Aborting current batch."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:138
|
||||
#. translators: %s refers to the action ID
|
||||
msgid "Started processing action %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:155
|
||||
#. translators: 1: action ID 2: hook name
|
||||
msgid "Completed processing action %1$s with hook: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php:170
|
||||
#. translators: 1: action ID 2: exception message
|
||||
msgid "Error processing action %1$s: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php:100
|
||||
#. translators: %d refers to how many scheduled taks were found to run
|
||||
msgid "Found %d scheduled task"
|
||||
msgid_plural "Found %d scheduled tasks"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php:117
|
||||
#. translators: %d refers to the total number of batches executed
|
||||
msgid "%d batch executed."
|
||||
msgid_plural "%d batches executed."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php:136
|
||||
#. translators: %s refers to the exception error message
|
||||
msgid "There was an error running the action scheduler: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php:153
|
||||
#. translators: %d refers to the total number of taskes completed
|
||||
msgid "%d scheduled task completed."
|
||||
msgid_plural "%d scheduled tasks completed."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler.php:195
|
||||
msgid "%s() was called before the Action Scheduler data store was initialized"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php:467
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php:567
|
||||
#. translators: %s: search query
|
||||
msgid "Search results for \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php:672
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:72
|
||||
msgid "action created"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:76
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBLogger.php:134
|
||||
msgid "action canceled"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:82
|
||||
#. translators: %s: context
|
||||
msgid "action started via %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:84
|
||||
msgid "action started"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:92
|
||||
#. translators: %s: context
|
||||
msgid "action complete via %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:94
|
||||
msgid "action complete"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:102
|
||||
#. translators: 1: context 2: exception message
|
||||
msgid "action failed via %1$s: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:105
|
||||
#. translators: %s: exception message
|
||||
msgid "action failed: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:112
|
||||
#. translators: %s: amount of time
|
||||
msgid "action timed out after %s seconds"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:118
|
||||
#. translators: 1: error message 2: filename 3: line
|
||||
msgid "unexpected shutdown: PHP Fatal error %1$s in %2$s on line %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:123
|
||||
msgid "action reset"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:129
|
||||
#. translators: %s: context
|
||||
msgid "action ignored via %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:131
|
||||
msgid "action ignored"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:146
|
||||
#. translators: %s: exception message
|
||||
msgid "There was a failure fetching this action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:148
|
||||
msgid "There was a failure fetching this action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Logger.php:156
|
||||
#. translators: %s: exception message
|
||||
msgid "There was a failure scheduling the next instance of this action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:227
|
||||
msgid ""
|
||||
"ActionScheduler_Action::$args too long. To ensure the args column can be "
|
||||
"indexed, action args should not be more than %d characters when encoded as "
|
||||
"JSON."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:301
|
||||
msgid "Complete"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:302
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:303
|
||||
msgid "In-progress"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:304
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/abstracts/ActionScheduler_Store.php:305
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:67
|
||||
msgid "Database error."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:75
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:25
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php:44
|
||||
#. translators: %s: error message
|
||||
msgid "Error saving action: %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:268
|
||||
msgid "Invalid value for select or count parameter. Cannot query actions."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:458
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:548
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:580
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:777
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:819
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:457
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:468
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:495
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:773
|
||||
#. translators: %s: action ID
|
||||
msgid "Unidentified action %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:661
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:627
|
||||
#. translators: %s: group name
|
||||
msgid "The group \"%s\" does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:675
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:607
|
||||
msgid "Unable to claim actions. Database error."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:838
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:740
|
||||
msgid "Invalid action ID. No status found."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php:840
|
||||
msgid "Unknown status found for action."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:62
|
||||
msgid "Unable to save action."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:283
|
||||
msgid "Invalid schedule. Cannot save action."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:689
|
||||
#. translators: %s: claim ID
|
||||
msgid "Unable to unlock claim %s. Database error."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:704
|
||||
#. translators: %s: action ID
|
||||
msgid "Unable to unlock claim on action %s. Database error."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:716
|
||||
#. translators: %s: action ID
|
||||
msgid "Unable to mark failure on action %s. Database error."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php:840
|
||||
msgid "%s Support for strings longer than this will be removed in a future version."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php:38
|
||||
#. translators: %s: count
|
||||
msgid "Failed <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "Failed <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php:53
|
||||
#. translators: %s: count
|
||||
msgid "In-Progress <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "In-Progress <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:20
|
||||
msgid "Scheduled actions are hooks triggered on a cetain date and time."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:31
|
||||
msgid "Scheduled Action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:33
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:34
|
||||
msgid "Add New Scheduled Action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:35
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:36
|
||||
msgid "Edit Scheduled Action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:37
|
||||
msgid "New Scheduled Action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:38
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:39
|
||||
msgid "View Action"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:40
|
||||
msgid "Search Scheduled Actions"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:41
|
||||
msgid "No actions found"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:42
|
||||
msgid "No actions found in trash"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php:14
|
||||
msgid "Action Group"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/ActionMigrator.php:95
|
||||
msgid "Unable to remove source migrated action %s"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Config.php:52
|
||||
msgid "Source store must be configured before running a migration"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Config.php:74
|
||||
msgid "Source logger must be configured before running a migration"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Config.php:96
|
||||
msgid "Destination store must be configured before running a migration"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Config.php:118
|
||||
msgid "Destination logger must be configured before running a migration"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Controller.php:142
|
||||
msgid ""
|
||||
"Action Scheduler migration in progress. The list of scheduled actions may "
|
||||
"be incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Runner.php:82
|
||||
#. translators: %d: amount of actions
|
||||
msgid "Migrating %d action"
|
||||
msgid_plural "Migrating %d actions"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/migration/Runner.php:107
|
||||
#. translators: 1: source action ID 2: source store class 3: destination action
|
||||
#. ID 4: destination store class
|
||||
msgid "Migrated action with ID %1$d in %2$s to ID %3$d in %4$s"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Sends email notification to inactive customers."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sanjeev Aryal"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.sanjeebaryal.com.np"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php:36
|
||||
msgctxt "post"
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php:51
|
||||
msgctxt "post"
|
||||
msgid "In-Progress"
|
||||
msgstr ""
|
||||
|
||||
#: wp-content/plugins/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php:32
|
||||
msgctxt "Admin menu name"
|
||||
msgid "Scheduled Actions"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,4 @@
|
||||
*** Consumer Financing by ChargeAfter Changelog ***
|
||||
|
||||
2020-11-03 - version 1.0.2
|
||||
* Initial release
|
||||
@@ -0,0 +1,65 @@
|
||||
# Copyright (C) 2020 Andy Fragen
|
||||
# This file is distributed under the same license as the Core Rollback plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Core Rollback 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/core-rollback\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-11-17T16:01:22+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: core-rollback\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Core Rollback"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/afragen/core-rollback"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Seamless rollback of WordPress Core to latest release or any outdated, secure release using the Core Update API and core update methods."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Andy Fragen"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:51
|
||||
msgid "Core Releases"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:66
|
||||
msgid "<strong>WARNING:</strong> Downgrading WordPress Core may leave your site in an unusable state."
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:68
|
||||
msgid "Rollback to latest release or any outdated, secure release version of WordPress Core."
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:71
|
||||
msgid "Select the rollback version from the dropdown menu."
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:73
|
||||
msgid "Use the `Re-install` button to rollback to the selected version."
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:86
|
||||
#: src/Settings.php:103
|
||||
msgid "Rollback Core"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:87
|
||||
msgctxt "Menu item"
|
||||
msgid "Rollback Core"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:100
|
||||
msgid "Rollback"
|
||||
msgstr ""
|
||||
1283
spec/fixtures/dynamic_finders/plugin_version/correos-oficial/translation_file/languages/correoswc.pot
vendored
Normal file
1283
spec/fixtures/dynamic_finders/plugin_version/correos-oficial/translation_file/languages/correoswc.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "wpsass",
|
||||
"version": "1.0.0",
|
||||
"description": "Use Sass with WordPress, Node Script in SCSS flavour.",
|
||||
"scripts": {
|
||||
"css-global": "node-sass --output-style compressed --include-path scss assets/css/source.scss assets/css/cowidgets.css",
|
||||
"watch-global": "nodemon -e scss -x \"npm run css-global\"",
|
||||
"css-widgets": "node-sass --output-style compressed --include-path scss inc/widgets-css/source.scss inc/widgets-css/frontend.css",
|
||||
"watch-widgets": "nodemon -e scss -x \"npm run css-widgets\""
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ahmadawais/WPSass.git"
|
||||
},
|
||||
"author": "Ahmad Awais",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ahmadawais/WPSass/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ahmadawais/WPSass#readme",
|
||||
"devDependencies": {
|
||||
"node-sass": "^4.5.3",
|
||||
"nodemon": "^1.11.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0.0 - 2020-11-01
|
||||
|
||||
- Initial public release
|
||||
16471
spec/fixtures/dynamic_finders/plugin_version/deepcore/translation_file/languages/deep.pot
vendored
Normal file
16471
spec/fixtures/dynamic_finders/plugin_version/deepcore/translation_file/languages/deep.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
14
spec/fixtures/dynamic_finders/plugin_version/denade-translate/change_log/changelog.txt
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/denade-translate/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
== Changelog ==
|
||||
|
||||
= 0.1.7 =
|
||||
*Released: 18.10.2020
|
||||
* Added legal notices for WordPress
|
||||
* Updated Readme
|
||||
|
||||
= 0.1.6 =
|
||||
*Released: 17.10.2020
|
||||
* Added Google, Yandex and Baidu translation services
|
||||
|
||||
= 0.1.5 =
|
||||
*Released: 16.10.2020
|
||||
* Initial release of the plugin.
|
||||
@@ -0,0 +1,187 @@
|
||||
# Copyright (C) 2020 Codeixer
|
||||
# This file is distributed under the same license as the Deposits and Partial Payments for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Deposits and Partial Payments for WooCommerce 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/deposits-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-29T09:45:02+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: deposits-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Deposits and Partial Payments for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/deposits-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Enable customers to pay for products using a deposit or a partial payment."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Codeixer"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://codeixer.com"
|
||||
msgstr ""
|
||||
|
||||
#: src/Bootstrap.php:41
|
||||
msgid "Deposits"
|
||||
msgstr ""
|
||||
|
||||
#: src/Bootstrap.php:42
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Checkout.php:151
|
||||
msgid "[Deposits]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Checkout.php:197
|
||||
msgid "Pay Due Payment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Deposits_View.php:79
|
||||
msgid "Desposit Order"
|
||||
msgstr ""
|
||||
|
||||
#: src/Deposits_View.php:80
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Deposits_View.php:81
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Deposits_View.php:82
|
||||
#: src/Order.php:101
|
||||
#: src/Product.php:172
|
||||
msgid "Deposit"
|
||||
msgstr ""
|
||||
|
||||
#: src/Deposits_View.php:83
|
||||
msgid "Due"
|
||||
msgstr ""
|
||||
|
||||
#: src/Deposits_View.php:84
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: human-readable time difference
|
||||
#: src/Deposits_View.php:133
|
||||
msgctxt "%s = human-readable time difference"
|
||||
msgid "%s ago"
|
||||
msgstr ""
|
||||
|
||||
#: src/Order.php:74
|
||||
msgid "Total:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Order.php:78
|
||||
msgid "Paid:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Order.php:82
|
||||
msgid "Due Payment:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Order.php:109
|
||||
msgid "Due Ammount"
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:42
|
||||
msgid "We detected that your cart has Deposit products. Please remove them before being able to add this product."
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:48
|
||||
msgid "We detected that your cart has Regular products. Please remove them before being able to add this product."
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:100
|
||||
#: src/Product.php:103
|
||||
msgid " Per item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:109
|
||||
msgid "Deposit : "
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:193
|
||||
msgid "Enable Deposit"
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:195
|
||||
msgid "Enable deposits feature for this product."
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:202
|
||||
msgid "Deposit type"
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:204
|
||||
msgid "Percentage of Amount"
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:205
|
||||
msgid "Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:213
|
||||
msgid "Deposit Value *"
|
||||
msgstr ""
|
||||
|
||||
#: src/Product.php:218
|
||||
msgid "Enter the value for deposit. only number allow."
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:58
|
||||
msgid "Deposit Mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:59
|
||||
msgid "Set deposit order mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:63
|
||||
msgid "Allow only Deposits"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:64
|
||||
msgid "Allow Deposit and regular product togather into an order (Pro Feature)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:69
|
||||
#: src/Settings.php:71
|
||||
msgid "Pay Deposit"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:70
|
||||
msgid "Change [Pay Deposit] Text in single product page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:78
|
||||
#: src/Settings.php:80
|
||||
msgid "Full Payment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:79
|
||||
msgid "Change [Full Payment] Text in single product page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:87
|
||||
#: src/Settings.php:89
|
||||
msgid "To Pay"
|
||||
msgstr ""
|
||||
|
||||
#: src/Settings.php:88
|
||||
msgid "Change [To Pay] Text"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,227 @@
|
||||
# Copyright (C) 2020 WP Git Updater
|
||||
# This file is distributed under the GPLv2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Display Display Git Status 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/display-git-status\n"
|
||||
"POT-Creation-Date: 2020-12-22 16:38:51+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.5.4\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
||||
#: display-git-status.php:86 display-git-status.php:436
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:209
|
||||
#. translators: Asserting the current git branch
|
||||
msgid "You are currently on the %s branch"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:217
|
||||
#. translators: Asserting the current git branch
|
||||
msgid "You are currently on the %s branch, but there are uncommitted changes!"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:227 display-git-status.php:296
|
||||
msgid "Git Icon"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:242 display-git-status.php:297
|
||||
msgid "Display Git Status"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:251
|
||||
msgid ""
|
||||
"The function shell_exec is unavailable. The plugin cannot function "
|
||||
"correctly without it!"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:254
|
||||
msgid ""
|
||||
"The saved location is not a git repository! The git status menu item will "
|
||||
"be hidden from view."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:305
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:316
|
||||
#. translators: Author credit
|
||||
msgid "Git status is brought to you by "
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:320
|
||||
#. translators: Author credit tagline
|
||||
msgid "Automated Source Controlled WordPress Updates."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:352
|
||||
msgid "Git Settings"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:353
|
||||
msgid "Git Repository Location"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:355
|
||||
msgid "Git Status"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:356
|
||||
msgid "Repository Status"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:357
|
||||
msgid "Last Commit"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:369
|
||||
msgid "Settings Saved"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:417
|
||||
msgid "Introduction"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:418
|
||||
msgid ""
|
||||
"Display Git Status is a pretty simple plugin, all it needs is access to the "
|
||||
"shell_exec function and to be pointed at a git repository."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:419
|
||||
msgid ""
|
||||
"The plugin will not perform any state altering operations, it will access "
|
||||
"the repository using read only methods to fetch information like branch "
|
||||
"name, last commit and status."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:426
|
||||
msgid "Admin Bar Item"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:427
|
||||
msgid ""
|
||||
"When directed to a git repository via the \"Git Repository Location\" "
|
||||
"setting the plugin will add a new admin bar item with the git icon."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:428
|
||||
msgid "Next to the icon you can see the branch name currently checked out."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:429
|
||||
msgid ""
|
||||
"Take note of the background color of this item. When the background is red "
|
||||
"it means your local repository is out of sync with git."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:437
|
||||
msgid "The plugin only has one setting, and that's the repository location."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:438
|
||||
msgid "From this its able to perform all of its other functions."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:439
|
||||
msgid ""
|
||||
"The repository location is most likely to be your wp-content folder, or the "
|
||||
"root folder of the install."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:442
|
||||
#. translators: Blog post link
|
||||
msgid "Checkout our blog on %s for some of the common approaches."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:443
|
||||
msgid "WordPress Source Control Strategies"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:446
|
||||
msgid ""
|
||||
"However it can be anything suitable for your use case. It doesn't even have "
|
||||
"to be WordPress, you could use it to be aware of any git repository on the "
|
||||
"local filesystem (that the php process user as access to)."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:453
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:455
|
||||
msgid ""
|
||||
"Display Git Status is a complimentary plugin for Git Source Controlled "
|
||||
"websites, provided by WP Git Updater."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:456
|
||||
msgid ""
|
||||
"WP Git Updater provides an automated plugin and theme update service for "
|
||||
"git source controlled WordPress sites."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:457
|
||||
msgid ""
|
||||
"Use of Git status does not require an active subscription to the WP Git "
|
||||
"Updater service. However we would super greatful if you tried out our 10 "
|
||||
"day free trial."
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:460
|
||||
#. translators: About us link
|
||||
msgid "Visit %s for more information."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WP Git Updater"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:468
|
||||
msgid "For more information:"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:470
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: display-git-status.php:471
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Display Display Git Status"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpgitupdater.dev/docs/latest/plugins#display-display-git-status"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A simple WordPress plugin to display your current git branch and status in "
|
||||
"the admin area."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpgitupdater.dev"
|
||||
msgstr ""
|
||||
90
spec/fixtures/dynamic_finders/plugin_version/docs2site/translation_file/languages/docs2site.pot
vendored
Normal file
90
spec/fixtures/dynamic_finders/plugin_version/docs2site/translation_file/languages/docs2site.pot
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
# Copyright (C) 2020 Docs2Site
|
||||
# This file is distributed under the same license as the Docs2Site package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Docs2Site 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-11-13 05:18:57+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: WP Delicious\n"
|
||||
"Language-Team: \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"
|
||||
"X-Poedit-SearchPath-0: ../../docs2site\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: src/ImporterAdmin.php:60
|
||||
msgid "Docs2Site Settings"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Docs2Site"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/global-settings.php:67
|
||||
msgid "Authentication Token"
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/global-settings.php:68
|
||||
msgid ""
|
||||
"Copy the authentication token displayed below and paste it to your "
|
||||
"Docs2Site application settings to connect this WordPress site."
|
||||
msgstr ""
|
||||
|
||||
#: src/admin/global-settings.php:77
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/classes/class-docs2site-importer-rest.php:168
|
||||
msgid "Must include all of the required params"
|
||||
msgstr ""
|
||||
|
||||
#: src/classes/class-docs2site-importer-rest.php:185
|
||||
msgid "Could not insert post"
|
||||
msgstr ""
|
||||
|
||||
#: src/classes/class-docs2site-importer-rest.php:225
|
||||
msgid "Must include all required params"
|
||||
msgstr ""
|
||||
|
||||
#: src/classes/class-docs2site-importer-rest.php:240
|
||||
msgid "Could not download image"
|
||||
msgstr ""
|
||||
|
||||
#: src/classes/class-docs2site-importer-rest.php:255
|
||||
msgid "Could not get downloaded image file name"
|
||||
msgstr ""
|
||||
|
||||
#: src/classes/class-docs2site-importer-rest.php:262
|
||||
msgid "Could not initialize image editor"
|
||||
msgstr ""
|
||||
|
||||
#: src/classes/class-docs2site-importer-rest.php:293
|
||||
msgid "Could not save edited image"
|
||||
msgstr ""
|
||||
|
||||
#: src/classes/class-docs2site-importer-rest.php:307
|
||||
msgid "Could not sideload image"
|
||||
msgstr ""
|
||||
|
||||
#: src/classes/class-docs2site-importer-rest.php:329
|
||||
msgid "Could not delete image"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Docs2Site is the perfect tool for web content writers and editors. Using "
|
||||
"Docs2Site, you can avoid the hassle of reformatting every Google Docs’ "
|
||||
"article on WordPress. A single click of a button can export your entire "
|
||||
"Google Docs article to your WordPress website with the formatting intact."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.docs2site.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,39 @@
|
||||
# Copyright (C) 2020 Sebastian Pisula
|
||||
# This file is distributed under the same license as the Duplicate Term plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Duplicate Term 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicate-term\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-12-19T21:27:24+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: duplicate-term\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Duplicate Term"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Duplicate terms."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Sebastian Pisula"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/sebastianpisula/"
|
||||
msgstr ""
|
||||
|
||||
#: duplicate-term.php:77
|
||||
msgid "Clone"
|
||||
msgstr ""
|
||||
|
||||
#: duplicate-term.php:106
|
||||
msgid "%s (Clone %d)"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,405 @@
|
||||
# Copyright (C) 2020 thingsym
|
||||
# This file is distributed under the same license as the Editor Bridge plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Editor Bridge 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/editor-bridge\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-09-30T09:37:16+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: editor-bridge\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Editor Bridge"
|
||||
msgstr "Editor Bridge"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/thingsym/editor-bridge"
|
||||
msgstr "https://github.com/thingsym/editor-bridge"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A extended Block Editor (Gutenberg)."
|
||||
msgstr "デフォルトのブロックエディタを拡張します"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "thingsym"
|
||||
msgstr "thingsym"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.thingslabo.com/"
|
||||
msgstr "https://www.thingslabo.com/"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:56
|
||||
msgid "Orignal"
|
||||
msgstr "元のサイズ"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:60
|
||||
msgid "Fit to Screen"
|
||||
msgstr "画面に合わせる"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:64
|
||||
msgid "Fill Screen"
|
||||
msgstr "フルスクリーン"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:255
|
||||
msgid "Edit Background Image"
|
||||
msgstr "背景画像を編集"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:272
|
||||
msgid "Open Media Library"
|
||||
msgstr "メディアライブラリを開く"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:291
|
||||
msgid "Upload Background Image"
|
||||
msgstr "背景画像をアップロード"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:311
|
||||
msgid "Remove Background Image"
|
||||
msgstr "背景画像を削除"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:323
|
||||
msgid "Background Image Settings"
|
||||
msgstr "背景画像の設定"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:327
|
||||
msgid "Image Size"
|
||||
msgstr "画像サイズ"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:337
|
||||
msgid "Fixed Background"
|
||||
msgstr "固定背景"
|
||||
|
||||
#: src/blocks/expansion/background-image/index.js:346
|
||||
msgid "Repeat Background"
|
||||
msgstr "背景画像の繰り返し"
|
||||
|
||||
#: src/blocks/expansion/border/index.js:133
|
||||
msgid "Border settings"
|
||||
msgstr "枠線の設定"
|
||||
|
||||
#: src/blocks/expansion/border/index.js:136
|
||||
msgid "Border width"
|
||||
msgstr "線の太さ"
|
||||
|
||||
#: src/blocks/expansion/border/index.js:142
|
||||
#: src/blocks/format/badge/badge-popover.js:249
|
||||
#: src/blocks/format/highlight/highlight-popover.js:251
|
||||
msgid "Color"
|
||||
msgstr "色"
|
||||
|
||||
#: src/blocks/expansion/border/index.js:147
|
||||
#: src/blocks/format/badge/badge-popover.js:255
|
||||
#: src/blocks/format/highlight/highlight-popover.js:257
|
||||
msgid "Style"
|
||||
msgstr "スタイル"
|
||||
|
||||
#: src/blocks/expansion/border/index.js:150
|
||||
msgid "Solid"
|
||||
msgstr "実線"
|
||||
|
||||
#: src/blocks/expansion/border/index.js:151
|
||||
#: src/blocks/style/table.js:25
|
||||
msgid "Dashed"
|
||||
msgstr "破線"
|
||||
|
||||
#: src/blocks/expansion/border/index.js:152
|
||||
#: src/blocks/style/separator.js:15
|
||||
msgid "Dotted"
|
||||
msgstr "点線"
|
||||
|
||||
#: src/blocks/expansion/border/index.js:153
|
||||
msgid "Double"
|
||||
msgstr "2重線"
|
||||
|
||||
#: src/blocks/expansion/border/index.js:159
|
||||
msgid "Border radius"
|
||||
msgstr "角丸半径"
|
||||
|
||||
#: src/blocks/expansion/button-size/index.js:28
|
||||
#: src/blocks/expansion/space/index.js:49
|
||||
msgid "Small"
|
||||
msgstr "小"
|
||||
|
||||
#: src/blocks/expansion/button-size/index.js:32
|
||||
msgid "Medium (Not set)"
|
||||
msgstr "中 (未設定)"
|
||||
|
||||
#: src/blocks/expansion/button-size/index.js:36
|
||||
#: src/blocks/expansion/space/index.js:57
|
||||
msgid "Large"
|
||||
msgstr "大"
|
||||
|
||||
#: src/blocks/expansion/button-size/index.js:43
|
||||
#: src/blocks/expansion/space/index.js:41
|
||||
msgid "Not set"
|
||||
msgstr "未設定"
|
||||
|
||||
#: src/blocks/expansion/button-size/index.js:47
|
||||
msgid "Quarter"
|
||||
msgstr "4分の1"
|
||||
|
||||
#: src/blocks/expansion/button-size/index.js:51
|
||||
msgid "Half"
|
||||
msgstr "半分"
|
||||
|
||||
#: src/blocks/expansion/button-size/index.js:55
|
||||
msgid "Full"
|
||||
msgstr "全幅"
|
||||
|
||||
#: src/blocks/expansion/button-size/index.js:149
|
||||
msgid "Size Settings"
|
||||
msgstr "サイズの設定"
|
||||
|
||||
#: src/blocks/expansion/button-size/index.js:153
|
||||
msgid "Size"
|
||||
msgstr "サイズ"
|
||||
|
||||
#: src/blocks/expansion/button-size/index.js:163
|
||||
msgid "Width"
|
||||
msgstr "横幅"
|
||||
|
||||
#: src/blocks/expansion/space/index.js:45
|
||||
msgid "None"
|
||||
msgstr "なし"
|
||||
|
||||
#: src/blocks/expansion/space/index.js:53
|
||||
msgid "Medium"
|
||||
msgstr "中"
|
||||
|
||||
#: src/blocks/expansion/space/index.js:61
|
||||
msgid "Huge"
|
||||
msgstr "特大"
|
||||
|
||||
#: src/blocks/expansion/space/index.js:169
|
||||
msgid "Space Settings"
|
||||
msgstr "スペースの設定"
|
||||
|
||||
#: src/blocks/expansion/space/index.js:174
|
||||
msgid "Margin"
|
||||
msgstr "マージン"
|
||||
|
||||
#: src/blocks/expansion/space/index.js:186
|
||||
msgid "Padding"
|
||||
msgstr "パディング"
|
||||
|
||||
#: src/blocks/format/badge/badge-popover.js:195
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:112
|
||||
msgid "Default"
|
||||
msgstr "デフォルト"
|
||||
|
||||
#: src/blocks/format/badge/badge-popover.js:196
|
||||
#: src/blocks/style/image.js:10
|
||||
#: src/blocks/style/table.js:30
|
||||
msgid "Round Corner"
|
||||
msgstr "角丸"
|
||||
|
||||
#: src/blocks/format/badge/badge-popover.js:197
|
||||
msgid "Round"
|
||||
msgstr "円形"
|
||||
|
||||
#: src/blocks/format/badge/badge-popover.js:198
|
||||
msgid "Outline"
|
||||
msgstr "アウトライン"
|
||||
|
||||
#: src/blocks/format/badge/badge-popover.js:198
|
||||
msgid "Status"
|
||||
msgstr "ステイタス"
|
||||
|
||||
#: src/blocks/format/badge/badge-popover.js:199
|
||||
msgid "Perfect Circle"
|
||||
msgstr "正円"
|
||||
|
||||
#: src/blocks/format/badge/index.js:35
|
||||
msgid "Badge"
|
||||
msgstr "バッジ"
|
||||
|
||||
#: src/blocks/format/font-size/index.js:26
|
||||
msgid "Font Size"
|
||||
msgstr "フォントサイズ"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:113
|
||||
msgid "Bold"
|
||||
msgstr "Bold"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:114
|
||||
msgid "Normal"
|
||||
msgstr "Normal"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:115
|
||||
msgid "Initial"
|
||||
msgstr "Initial"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:116
|
||||
msgid "Bolder"
|
||||
msgstr "Bolder"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:117
|
||||
msgid "Lighter"
|
||||
msgstr "Lighter"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:118
|
||||
msgid "100"
|
||||
msgstr "100"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:119
|
||||
msgid "200"
|
||||
msgstr "200"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:120
|
||||
msgid "300"
|
||||
msgstr "300"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:121
|
||||
msgid "400"
|
||||
msgstr "400"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:122
|
||||
msgid "500"
|
||||
msgstr "500"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:123
|
||||
msgid "600"
|
||||
msgstr "600"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:124
|
||||
msgid "700"
|
||||
msgstr "700"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:125
|
||||
msgid "800"
|
||||
msgstr "800"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:126
|
||||
msgid "900"
|
||||
msgstr "900"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:127
|
||||
msgid "Revert"
|
||||
msgstr "Revert"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:128
|
||||
msgid "Unset"
|
||||
msgstr "Unset"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:175
|
||||
#: src/blocks/format/font-weight/index.js:26
|
||||
msgid "Font Weight"
|
||||
msgstr "フォントの太さ"
|
||||
|
||||
#: src/blocks/format/font-weight/font-weight-popover.js:181
|
||||
msgid "Reset"
|
||||
msgstr "リセット"
|
||||
|
||||
#: src/blocks/format/highlight/highlight-popover.js:205
|
||||
#: src/blocks/format/highlight/index.js:35
|
||||
msgid "Highlight"
|
||||
msgstr "強調"
|
||||
|
||||
#: src/blocks/format/highlight/highlight-popover.js:206
|
||||
msgid "Marker"
|
||||
msgstr "マーカー"
|
||||
|
||||
#: src/blocks/format/highlight/highlight-popover.js:207
|
||||
#: src/blocks/style/heading.js:10
|
||||
#: src/blocks/style/table.js:15
|
||||
msgid "Underline"
|
||||
msgstr "アンダーライン"
|
||||
|
||||
#: src/blocks/style/button.js:10
|
||||
msgid "Triangle Icon"
|
||||
msgstr "三角アイコン"
|
||||
|
||||
#: src/blocks/style/button.js:15
|
||||
msgid "Blur"
|
||||
msgstr "ぼかし"
|
||||
|
||||
#: src/blocks/style/button.js:20
|
||||
#: src/blocks/style/image.js:20
|
||||
#: src/blocks/style/separator.js:20
|
||||
msgid "Shadow"
|
||||
msgstr "シャドウ"
|
||||
|
||||
#: src/blocks/style/button.js:25
|
||||
msgid "Expansion"
|
||||
msgstr "膨張"
|
||||
|
||||
#: src/blocks/style/button.js:30
|
||||
msgid "Emboss"
|
||||
msgstr "エンボス"
|
||||
|
||||
#: src/blocks/style/heading.js:15
|
||||
msgid "Thick Underline"
|
||||
msgstr "太めのアンダーライン"
|
||||
|
||||
#: src/blocks/style/heading.js:20
|
||||
msgid "Two Color Underline"
|
||||
msgstr "2色アンダーライン"
|
||||
|
||||
#: src/blocks/style/heading.js:25
|
||||
msgid "Up Down line"
|
||||
msgstr "上下線"
|
||||
|
||||
#: src/blocks/style/heading.js:30
|
||||
msgid "Accent Line"
|
||||
msgstr "強調線"
|
||||
|
||||
#: src/blocks/style/heading.js:35
|
||||
msgid "Kebab Line"
|
||||
msgstr "横串線"
|
||||
|
||||
#: src/blocks/style/heading.js:40
|
||||
msgid "Single Box"
|
||||
msgstr "囲み線"
|
||||
|
||||
#: src/blocks/style/heading.js:45
|
||||
msgid "Double Box"
|
||||
msgstr "2重囲み線"
|
||||
|
||||
#: src/blocks/style/heading.js:50
|
||||
msgid "Left Line"
|
||||
msgstr "左ライン"
|
||||
|
||||
#: src/blocks/style/heading.js:55
|
||||
msgid "Gradation Line"
|
||||
msgstr "グラデーション"
|
||||
|
||||
#: src/blocks/style/heading.js:60
|
||||
msgid "Stripe"
|
||||
msgstr "ストライプ"
|
||||
|
||||
#: src/blocks/style/heading.js:65
|
||||
msgid "Cross Box"
|
||||
msgstr "交わり囲み線"
|
||||
|
||||
#: src/blocks/style/heading.js:70
|
||||
msgid "Brackets"
|
||||
msgstr "括弧"
|
||||
|
||||
#: src/blocks/style/heading.js:75
|
||||
msgid "Japanese quotation marks"
|
||||
msgstr "日本語の引用符"
|
||||
|
||||
#: src/blocks/style/image.js:15
|
||||
msgid "Frame"
|
||||
msgstr "フレーム"
|
||||
|
||||
#: src/blocks/style/separator.js:10
|
||||
msgid "Thick line"
|
||||
msgstr "太線"
|
||||
|
||||
#: src/blocks/style/separator.js:25
|
||||
msgid "Circle Mark"
|
||||
msgstr "円マーク"
|
||||
|
||||
#: src/blocks/style/table.js:10
|
||||
msgid "No Style"
|
||||
msgstr "スタイルなし"
|
||||
|
||||
#: src/blocks/style/table.js:20
|
||||
msgid "Underline Emphasis"
|
||||
msgstr "アンダーライン強調"
|
||||
30
spec/fixtures/dynamic_finders/plugin_version/editor-for-timber/composer_file/composer.json
vendored
Normal file
30
spec/fixtures/dynamic_finders/plugin_version/editor-for-timber/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "dweipert/timber-editor",
|
||||
"version": "1.0.2",
|
||||
"type": "wordpress-plugin",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Daniel Weipert",
|
||||
"email": "code@drogueronin.de"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=7.4"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"TimberEditor\\": "src/"
|
||||
}
|
||||
},
|
||||
"archive": {
|
||||
"exclude": [
|
||||
"*", ".*",
|
||||
"!/assets",
|
||||
"!/src",
|
||||
"!/vendor",
|
||||
"!/composer.json",
|
||||
"!/editor-for-timber.php",
|
||||
"!/LICENSE", "!/readme.txt"
|
||||
]
|
||||
}
|
||||
}
|
||||
5
spec/fixtures/dynamic_finders/plugin_version/email-test/change_log/CHANGELOG.md
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/email-test/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Email Test's Changelog
|
||||
|
||||
## 0.1.0 (December 14, 2020)
|
||||
|
||||
* Initial release
|
||||
@@ -0,0 +1,119 @@
|
||||
# Copyright (C) 2020 PRESSMAN
|
||||
# This file is distributed under the same license as the WP10 External Notification plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP10 External Notification 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/"
|
||||
"ExternalNotification\n"
|
||||
"POT-Creation-Date: 2020-07-30T06:44:12+00:00\n"
|
||||
"PO-Revision-Date: 2020-10-23 21:32+0900\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: wp10-external-notification\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP10 External Notification"
|
||||
msgstr "WP10 External Notification"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin is a helper plugin for Slack"
|
||||
msgstr "このプラグインはSlackのヘルパープラグインです"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "PRESSMAN"
|
||||
msgstr "PRESSMAN"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.pressman.ne.jp"
|
||||
msgstr "https://www.pressman.ne.jp"
|
||||
|
||||
#: include/optionpage.php:2
|
||||
msgid "External Notification Global setting"
|
||||
msgstr "External Notification グローバル設定"
|
||||
|
||||
#: include/optionpage.php:7
|
||||
msgid "slack setting"
|
||||
msgstr "slackの設定"
|
||||
|
||||
#: include/optionpage.php:15 include/optionpage.php:29
|
||||
#: wp10-external-notification.php:72
|
||||
msgid "Reference"
|
||||
msgstr "参照"
|
||||
|
||||
#: include/optionpage.php:24
|
||||
msgid "channel or userID"
|
||||
msgstr "チャンネルまたはユーザーID"
|
||||
|
||||
#: include/optionpage.php:38 wp10-external-notification.php:80
|
||||
msgid "display bot name"
|
||||
msgstr "投稿時に表示するbot名"
|
||||
|
||||
#: include/optionpage.php:51
|
||||
msgid ""
|
||||
"Forward emails which are sent to the administration email address to slack."
|
||||
msgstr "管理用メールアドレスに送信されたメールをslackに転送します。"
|
||||
|
||||
#: wp10-external-notification.php:69
|
||||
msgid "user id"
|
||||
msgstr "ユーザーID"
|
||||
|
||||
#: wp10-external-notification.php:69
|
||||
msgid "user name"
|
||||
msgstr "ユーザー名"
|
||||
|
||||
#: wp10-external-notification.php:185
|
||||
msgid "External Notification"
|
||||
msgstr "External Notification"
|
||||
|
||||
#: wp10-external-notification.php:51
|
||||
msgid "Available only when the destination is the channel's webhook URL"
|
||||
msgstr "slackのwebhook urlの宛先がチャンネルの時のみ有効です。"
|
||||
|
||||
#: wp10-external-notification.php:50
|
||||
msgid ""
|
||||
"Please enter your slack member ID. It will be used to mention you. You can "
|
||||
"get the member ID from a profile page."
|
||||
msgstr ""
|
||||
"あなたのslackメンバーIDを入力してください。あなたをmentionする時に利用しま"
|
||||
"す。メンバーIDは、プロフィール画面から取得できます。"
|
||||
|
||||
#: wp10-external-notification.php:141
|
||||
msgid "The user id has not exsist"
|
||||
msgstr "ユーザーIDが存在しません。"
|
||||
|
||||
#: wp10-external-notification.php:185
|
||||
msgid "The webhook url is not set."
|
||||
msgstr "webhook urlが設定されていません。"
|
||||
|
||||
#: wp10-external-notification.php:185
|
||||
msgid "No message was sent."
|
||||
msgstr "メッセージは送信されませんでした。"
|
||||
|
||||
#: wp10-external-notification.php:95
|
||||
msgid "member ID"
|
||||
msgstr "メンバーID"
|
||||
|
||||
#~ msgid "Use general app"
|
||||
#~ msgstr "アプリを使用する"
|
||||
|
||||
#~ msgid "Use incoming webhook (old style)"
|
||||
#~ msgstr "incoming webhookを使用する(旧スタイル)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Only when you use \"incoming webhook (old style)\", this channel or "
|
||||
#~ "userID will be applied."
|
||||
#~ msgstr ""
|
||||
#~ "incoming webhook(旧スタイル)を使用している場合のみ、チャンネルまたはユー"
|
||||
#~ "ザーIDが適用されます。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Only when you use \"incoming webhook (old style)\", this bot name will be "
|
||||
#~ "applied."
|
||||
#~ msgstr ""
|
||||
#~ "incoming webhook(旧スタイル)を使用している場合のみbot名が適用されます。"
|
||||
@@ -0,0 +1,2 @@
|
||||
= 1.1 (15/10/2020) =
|
||||
* Initial release
|
||||
@@ -0,0 +1,241 @@
|
||||
# Copyright (C) 2020 Devnet
|
||||
# This file is distributed under the same license as the Free Shipping Label plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Free Shipping Label 2.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/free-shipping-label\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-30T09:06:38+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: free-shipping-label\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Free Shipping Label"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Increase order revenue in WooCommerce store by showing your customers just how close they are to your free shipping threshold."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Devnet"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://devnet.hr"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-admin.php:92
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:91
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:95
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:99
|
||||
msgid "Product Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:117
|
||||
msgid "Enable Custom threshold"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:118
|
||||
msgid "Use only if you are seeing wrong calculations on the front-end."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:123
|
||||
#: admin/class-fsl-settings.php:125
|
||||
msgid "Custom threshold"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:124
|
||||
msgid "This will be used for calculation purposes only!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:134
|
||||
msgid "Delete plugin data on deactivation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:143
|
||||
msgid "Enable Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:149
|
||||
msgid "Ignore cupon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:150
|
||||
msgid "Ignore applied cupons."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:155
|
||||
msgid "Positions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:162
|
||||
msgid "Display on the checkout page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:168
|
||||
msgid "Display on the cart page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:174
|
||||
msgid "Display in the mini cart widget"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:175
|
||||
msgid "On some themes, this option does not work properly."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:180
|
||||
#: admin/class-fsl-settings.php:321
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:186
|
||||
#: admin/class-fsl-settings.php:328
|
||||
msgid "Multilingual"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:187
|
||||
#: admin/class-fsl-settings.php:329
|
||||
msgid "Use your own translated strings."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:195
|
||||
msgid "Placeholders: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:196
|
||||
msgid " Amount for free shipping."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:197
|
||||
msgid " Remaining amount."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:204
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:212
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:220
|
||||
#: admin/class-fsl-settings.php:343
|
||||
msgid "Design"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:227
|
||||
msgid "Progress bar inner color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:233
|
||||
msgid "Progress bar background color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:239
|
||||
msgid "Progress bar border color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:245
|
||||
msgid "Progress bar height"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:246
|
||||
msgid "Height in pixels (px)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:247
|
||||
msgid "height in px"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:256
|
||||
msgid "Disable animation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:262
|
||||
#: admin/class-fsl-settings.php:362
|
||||
msgid "Hide border shadow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:271
|
||||
msgid "Enable Product Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:277
|
||||
msgid "Single product page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:284
|
||||
#: admin/class-fsl-settings.php:309
|
||||
msgid "Enable for simple products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:290
|
||||
#: admin/class-fsl-settings.php:315
|
||||
msgid "Enable for variable products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:291
|
||||
#: admin/class-fsl-settings.php:316
|
||||
msgid "The label will be displayed only if the lowest variation price is qualified for free shipping."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:296
|
||||
msgid "Enable for single variation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:297
|
||||
msgid "Customer needs to select a variation first."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:302
|
||||
msgid "Listed products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:303
|
||||
msgid "Main shop page, category pages, archive pages, etc."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:334
|
||||
msgid "Label Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:350
|
||||
msgid "Text color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-fsl-settings.php:356
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: free-shipping-label.php:100
|
||||
msgid "The “Free Shipping Label” plugin cannot run without WooCommerce. Please install and activate WooCommerce plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-fsl-activator.php:95
|
||||
#: includes/fsl-defaults.php:68
|
||||
msgid "Free shipping!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fsl-defaults.php:42
|
||||
msgid "Free delivery on orders over {free_shipping_amount}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fsl-defaults.php:43
|
||||
msgid "Add at least {remaining} more to get free shipping!"
|
||||
msgstr ""
|
||||
36
spec/fixtures/dynamic_finders/plugin_version/heyform/translation_file/langs/heyform-en.po
vendored
Normal file
36
spec/fixtures/dynamic_finders/plugin_version/heyform/translation_file/langs/heyform-en.po
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: HeyForm 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://heyformhq.com\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Heyooo, Inc\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-22T10:00:00+00:00\n"
|
||||
"PO-Revision-Date: 2020-10-30 12:11+0800\n"
|
||||
"Language: en\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: heyform\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
msgid "HeyForm"
|
||||
msgstr ""
|
||||
|
||||
msgid "Serverless Online Form Builder & Data Management Platform"
|
||||
msgstr ""
|
||||
|
||||
msgid "HeyFormURL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paste a link to the content you want to display on your site."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enter HeyForm sharing URL here..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hold tight - just getting this page ready..."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,107 @@
|
||||
# Copyright (C) 2020 MyPreview
|
||||
# This file is distributed under the GPL-3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Insert Post Block 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/insert-post-block\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-12-04T20:23:44+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: insert-post-block\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Insert Post Block"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.mypreview.one"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A lightweight editor block that allows you to embed a full post content to different pages."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MyPreview"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://mahdiyazdani.com"
|
||||
msgstr ""
|
||||
|
||||
#: insert-post-block.php:120
|
||||
msgctxt "clone"
|
||||
msgid "Cloning instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: insert-post-block.php:131
|
||||
msgctxt "wakeup"
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: insert-post-block.php:246
|
||||
msgctxt "plugin link"
|
||||
msgid "%1$sHire Me!%2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: insert-post-block.php:246
|
||||
msgctxt "upsell"
|
||||
msgid "Looking for help? Hire Me!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: insert-post-block.php:248
|
||||
msgctxt "plugin link"
|
||||
msgid "%1$sSupport%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/controls.js:16
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: src/index.js:32
|
||||
msgctxt "block name"
|
||||
msgid "Insert Post"
|
||||
msgstr ""
|
||||
|
||||
#: src/index.js:33
|
||||
msgctxt "block description"
|
||||
msgid "Embed a full post content to different pages."
|
||||
msgstr ""
|
||||
|
||||
#: src/index.js:44
|
||||
msgctxt "block keyword"
|
||||
msgid "embed"
|
||||
msgstr ""
|
||||
|
||||
#: src/index.js:45
|
||||
msgctxt "block keyword"
|
||||
msgid "include"
|
||||
msgstr ""
|
||||
|
||||
#: src/index.js:46
|
||||
msgctxt "block keyword"
|
||||
msgid "query"
|
||||
msgstr ""
|
||||
|
||||
#: src/index.js:47
|
||||
msgctxt "block keyword"
|
||||
msgid "post"
|
||||
msgstr ""
|
||||
|
||||
#: src/utils/category.js:21
|
||||
msgctxt "block category"
|
||||
msgid "MyPreview"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: HTML long dash.
|
||||
#: src/utils/option-none.js:13
|
||||
msgid "%1$s Select %1$s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,159 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: KASSA.AT For WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2020-12-29 09:28+0100\n"
|
||||
"PO-Revision-Date: 2020-12-29 09:28+0100\n"
|
||||
"Last-Translator: manuelschultz\n"
|
||||
"Language-Team: KASSA.AT\n"
|
||||
"Language: de_DE@formal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_html__\n"
|
||||
"X-Poedit-SearchPath-0: api-connection.php\n"
|
||||
"X-Poedit-SearchPath-1: create-menus.php\n"
|
||||
"X-Poedit-SearchPath-2: kassa-at-for-woocommerce.php\n"
|
||||
"X-Poedit-SearchPath-3: stock-syncro.php\n"
|
||||
|
||||
#: create-menus.php:33
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
"Sie haben nicht die nötigen Berechtigungen um auf die Seite zuzugreifen."
|
||||
|
||||
#: create-menus.php:152
|
||||
msgid "KASSA.AT connection:"
|
||||
msgstr "Verbindung zu KASSA.AT:"
|
||||
|
||||
#: create-menus.php:155
|
||||
msgid "You are already connected to a KASSA.AT account."
|
||||
msgstr "Sie sind bereits mit einer KASSA.AT-Konto. verbunden."
|
||||
|
||||
#: create-menus.php:158
|
||||
msgid "Remove connection to KASSA.AT."
|
||||
msgstr "Entfernen Sie die Verbindung zu KASSA.AT."
|
||||
|
||||
#: create-menus.php:166
|
||||
msgid "Connect with KASSA.AT account"
|
||||
msgstr "Mit KASSA.AT Verbinden"
|
||||
|
||||
#: create-menus.php:171
|
||||
msgid "Dont have a KASSA.AT account? Create one!"
|
||||
msgstr "Haben Sie kein KASSA.AT-Konto? Erstellen Sie eines!"
|
||||
|
||||
#: create-menus.php:177
|
||||
msgid "Synchronize Stocks:"
|
||||
msgstr "Synchronisieren Sie den Lagerstand:"
|
||||
|
||||
#: create-menus.php:178
|
||||
msgid "Choose warehouse:"
|
||||
msgstr "Wählen Sie ein Lager:"
|
||||
|
||||
#: create-menus.php:188
|
||||
msgid "Save changes!"
|
||||
msgstr "Änderungen speichern!"
|
||||
|
||||
#: create-menus.php:195
|
||||
msgid "Synchronize stocks with KASSA.AT."
|
||||
msgstr "Lagerstände mit KASSA.AT synchronisieren."
|
||||
|
||||
#: create-menus.php:196
|
||||
msgid "Use KASSA.AT-data"
|
||||
msgstr "KASSA.AT-Daten als Master verwenden"
|
||||
|
||||
#: create-menus.php:203
|
||||
msgid "Synchronize!"
|
||||
msgstr "Synchronisieren!"
|
||||
|
||||
#: kassa-at-for-woocommerce.php:167
|
||||
msgid "Please follow these instructions to use the plugin:"
|
||||
msgstr "Bitte folgen Sie den Anweisungen, um das Plugin einzurichten:"
|
||||
|
||||
#: kassa-at-for-woocommerce.php:171
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you don't have a KASSA.AT account please create one <a href=\"%s\">here</"
|
||||
"a>."
|
||||
msgstr ""
|
||||
"Wenn Sie kein KASSA.AT Konto haben erstellen Sie eines <a href=\"%s\">hier</"
|
||||
"a>."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:172
|
||||
msgid ""
|
||||
"Use the Button \"Connect with KASSA.AT account\" to connect to the register-"
|
||||
"service."
|
||||
msgstr ""
|
||||
"Klicken Sie den Knopf \"Mit KASSA.AT Verbinden\" um die Verbindung "
|
||||
"herzustellen."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:176
|
||||
msgid ""
|
||||
"Login the KASSA.AT site and create your articles. Note that in order to have "
|
||||
"connect the WP-site and the KASSA.AT-account, you need to fill in the "
|
||||
"\"Artikelnummer\"-field with your article numbers."
|
||||
msgstr ""
|
||||
"Loggen Sie sich in Ihr KASSA.AT Konto ein und legen Sie Ihre Artikel an. "
|
||||
"Beachten Sie, dass Sie das Feld \"Artikelnummer\" ausfüllen (Dies wird "
|
||||
"später noch wichtig)."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:177
|
||||
msgid ""
|
||||
"In your KASSA.AT account, create a warehouse and assign the articles to it."
|
||||
msgstr ""
|
||||
"Legen Sie dann ein Lager in Ihrem KASSA.AT Konto an und befüllen Sie dieses "
|
||||
"mit Ihren Artikeln."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:178
|
||||
msgid ""
|
||||
"Go back to your WordPress page, choose your register-warehouse from your "
|
||||
"KASSA.AT's warehouses."
|
||||
msgstr ""
|
||||
"Gehen Sie nun zurück zu Ihrer WordPress Seite und wählen Sie das Lager aus, "
|
||||
"das Sie eben befüllt haben."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:179
|
||||
msgid ""
|
||||
"Go to your woocommerce-article section and create or edit your articles, use "
|
||||
"the article-number from your KASSA.AT-articles in the \"SKU\"-field and "
|
||||
"activate stock-management."
|
||||
msgstr ""
|
||||
"Gehen Sie zu der Artikelübersicht von Woocommerce und erstellen Sie hier "
|
||||
"Ihre Artikel oder bearbeiten Sie diese. Achten Sie bitte darauf, dass Sie "
|
||||
"die Artikelnummer Ihrer KASSA.AT Artikel in das \"Artikelnummer\"-Feld "
|
||||
"eintragen und aktivieren Sie \"Lagerbestand verwalten\"."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:180
|
||||
msgid ""
|
||||
"Go to the KASSA.AT-menu in your wordpress-site and press the \"Synchronize!"
|
||||
"\" Button."
|
||||
msgstr ""
|
||||
"Gehen Sie auf Ihrer WordPress-Seite in das KASSA.AT Menü zurück und drücken "
|
||||
"Sie auf den \"Synchronisieren!\"-Knopf."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:182
|
||||
msgid ""
|
||||
"And here we go. Whenever a customer buys anything in your local store or a "
|
||||
"customer orders something in your online-store, your KASSA.AT-service will "
|
||||
"have trace of that and will always check, that the onlineshop displays the "
|
||||
"correct amount of items in stock."
|
||||
msgstr ""
|
||||
"Und schon sind wir fertig. Wann immer ein Kunde etwas in Ihrem Geschäft "
|
||||
"kauft, oder etwas in Ihrem Onlineshop bestellt Werden die Lagerstände von "
|
||||
"beiden Systemen angepasst, sodass Sie immer den korrekten Lagerstand im "
|
||||
"Blick haben können."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:188
|
||||
#, php-format
|
||||
msgid "If you have any questions with the setting up, feel free to %s."
|
||||
msgstr "Wenn Sie irgendwelche Fragen haben, %s."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:192
|
||||
msgid "contact us"
|
||||
msgstr "kontaktieren Sie uns"
|
||||
|
||||
#: stock-syncro.php:96
|
||||
#, php-format
|
||||
msgid "Woocommerce Invoice: %s"
|
||||
msgstr "Woocommerce-Rechnung: %s"
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/keys-master/change_log/CHANGELOG.md
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/keys-master/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# Changelog
|
||||
All notable changes to **Keys Master** are documented in this *changelog*.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Sessions** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.0.1] - 2020-12-25
|
||||
|
||||
### Changed
|
||||
- The specified compatibility is now WordPress 5.6 or higher.
|
||||
|
||||
## [1.0.0] - 2020-12-24
|
||||
|
||||
Initial release
|
||||
9
spec/fixtures/dynamic_finders/plugin_version/kingmailer-smtp/change_log/CHANGELOG.md
vendored
Normal file
9
spec/fixtures/dynamic_finders/plugin_version/kingmailer-smtp/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
0.2 (2020-11-20):
|
||||
* Change to PHPMailer approach
|
||||
* Text updated
|
||||
|
||||
0.1 (2020-10-17):
|
||||
* Initial Release
|
||||
@@ -0,0 +1,101 @@
|
||||
# Copyright (C) 2021 Santiago Becerra
|
||||
# This file is distributed under the same license as the Manage Admin Columns plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Manage Admin Columns 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/manage-admin-columns\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: 2021-01-04T01:22:42+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: manage-admin-columns\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Manage Admin Columns"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/sanbec/manage-admin-columns"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin adds a featured image column to the WordPress admin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Santiago Becerra"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpcombo.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:83
|
||||
#: includes/class-firstcolumnfeaturedimage.php:97
|
||||
msgid "Manage Admin Columns Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:98
|
||||
msgid "Featured Image Column"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:116
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:123
|
||||
msgid "Choose the size and shape of the featured image at the list table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:134
|
||||
msgid "Featured Image Size:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:163
|
||||
msgid "Shape:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:174
|
||||
msgid "Circle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:177
|
||||
msgid "Square"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:188
|
||||
msgid "Lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:199
|
||||
msgid "Open lightbox on image click"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:209
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:220
|
||||
msgid "Show border on hover"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:225
|
||||
msgid "Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:233
|
||||
msgid "Select the post types where you want the featured image column to be displayed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:307
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:363
|
||||
#: includes/class-firstcolumnfeaturedimage.php:364
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,265 @@
|
||||
# Copyright (C) 2020 chilidevs
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Messagemedia for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/messagemedia-woocommerce\n"
|
||||
"POT-Creation-Date: 2020-11-19 07:19:05+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.3\n"
|
||||
|
||||
#: includes/class-admin-settings.php:61
|
||||
msgid "MessageMedia Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:61
|
||||
msgid "MessageMedia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:89
|
||||
msgid "Basic"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:95
|
||||
msgid "Gateway Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:102
|
||||
msgid "SMS Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:109
|
||||
msgid "Body Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:122
|
||||
msgid ""
|
||||
"Thanks for purchasing\n"
|
||||
"Your [order_id] is now [order_status]\n"
|
||||
"Thank you"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:123
|
||||
msgid ""
|
||||
"You have a new Order\n"
|
||||
"The [order_id] is now [order_status]\n"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:129
|
||||
msgid "Enable SMS Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:130
|
||||
msgid "If checked, then sms notification will be enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:136
|
||||
msgid "Enable Admin Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:137
|
||||
msgid "If checked, then admin sms notification will be enabled for and order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:144
|
||||
msgid "Enable Customer Notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:145
|
||||
msgid ""
|
||||
"If checked then customer will get notification checkbox options in checkout "
|
||||
"page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:151
|
||||
msgid "Force customer notification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:152
|
||||
msgid ""
|
||||
"If select yes then customer notification option must be required in "
|
||||
"checkout page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:156 wc-messagemedia.php:245
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:157 wc-messagemedia.php:245
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:163
|
||||
msgid "Customer Notification Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:164
|
||||
msgid "Enter your text which is appeared in checkout page for the customers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:170
|
||||
msgid "Check Order Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:171
|
||||
msgid "For which statues SMS notification will be sent to admin and customer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:180
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:181
|
||||
msgid ""
|
||||
"Enter your API key for messagemedia, for getting your api key please visit "
|
||||
"<a href=\"%s\" target=\"_blank\">API Settings</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:187
|
||||
msgid "API Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:188
|
||||
msgid ""
|
||||
"Enter your API Secret for messagemedia, for getting your api secret please "
|
||||
"visit <a href=\"%s\" target=\"_blank\">API Settings</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:197
|
||||
msgid "Enter admin Phone Number with extension"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:198
|
||||
msgid ""
|
||||
"<br>Admin order sms notifications will be send in this number. Please make "
|
||||
"sure that the number must have a extension (e.g.: +8801626265565 where +880 "
|
||||
"will be extension )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:203
|
||||
msgid "Enter admin SMS body"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:204
|
||||
msgid ""
|
||||
"SMS text for admin. When an order is created then admin will get this "
|
||||
"formatted message."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:211
|
||||
msgid "Enter customer SMS body"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:212
|
||||
msgid ""
|
||||
"SMS text for customer. If customer notification is enabled then customer "
|
||||
"will get this formatted message when order is placed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:221
|
||||
msgid "Enable different message for different order statuses"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:222
|
||||
msgid ""
|
||||
"If checked then admin and customer will get sms text for different order "
|
||||
"statues"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:238
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:272
|
||||
msgid "Set sms text for customers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:283 includes/class-admin-settings.php:304
|
||||
msgid "Order Status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:293
|
||||
msgid "Set SMS text for Admin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin-settings.php:313
|
||||
msgid ""
|
||||
"Sorry no order status will be selected for sending SMS in basic Settings "
|
||||
"tab. Please select some order status from Basic Settings Tab"
|
||||
msgstr ""
|
||||
|
||||
#: libs/class.settings-api.php:363
|
||||
msgid "Choose File"
|
||||
msgstr ""
|
||||
|
||||
#: libs/class.settings-api.php:535
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: wc-messagemedia.php:122
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: wc-messagemedia.php:208
|
||||
msgid "Notify me the order status via sms"
|
||||
msgstr ""
|
||||
|
||||
#: wc-messagemedia.php:230
|
||||
msgid "<strong>Send Notification Via SMS</strong> must be required"
|
||||
msgstr ""
|
||||
|
||||
#: wc-messagemedia.php:246
|
||||
msgid "Buyer will get SMS notification"
|
||||
msgstr ""
|
||||
|
||||
#: wc-messagemedia.php:284
|
||||
msgid "You have a new Order. The [order_id] is now [order_status]"
|
||||
msgstr ""
|
||||
|
||||
#: wc-messagemedia.php:285
|
||||
msgid "Thanks for purchasing. Your [order_id] is now [order_status]. Thank you"
|
||||
msgstr ""
|
||||
|
||||
#: wc-messagemedia.php:352
|
||||
msgid "SMS Send Successfully to admin"
|
||||
msgstr ""
|
||||
|
||||
#: wc-messagemedia.php:354 wc-messagemedia.php:365 wc-messagemedia.php:377
|
||||
msgid "SMS sening faild, Try again"
|
||||
msgstr ""
|
||||
|
||||
#: wc-messagemedia.php:363
|
||||
msgid "SMS Send to customer Successfully"
|
||||
msgstr ""
|
||||
|
||||
#: wc-messagemedia.php:375
|
||||
msgid "SMS Send Successfully to admin "
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Messagemedia for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://messagemedia.com/us/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"This is an WooCommerce add-on. By Using this plugin admin and customer can "
|
||||
"get notification after placing order via messagemedia SMS gateways."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "chilidevs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://chilidevs.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,52 @@
|
||||
# Copyright (C) 2020 Teamonair s.r.l.
|
||||
# This file is distributed under the same license as the My FastAPP plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MyFastApp (DEV) 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/my-fastapp\n"
|
||||
"Last-Translator: Francesco Colombo <francesco@teamonair.com>\n"
|
||||
"Language-Team: Francesco Colombo <francesco@teamonair.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-07T19:25:08+01:00\n"
|
||||
"PO-Revision-Date: 2020-12-07 10:10+02\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: my-fastapp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "MyFastApp"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.myfastapp.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin allows you to use your WordPress site as a backend to create your mobile application for iOS and Android. Configure and build your mobile applications directly from the WordPress site."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Teamonair s.r.l."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://myfastapp.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:29
|
||||
#: includes/class-admin.php:30
|
||||
msgid "My FastAPP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:38
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:39
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:40
|
||||
msgid "Download Builds"
|
||||
msgstr ""
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/nalp-ch/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/nalp-ch/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "Nalp.ch",
|
||||
"version": "0.1.0",
|
||||
"description": "Nalp.ch Plugin for easy booking integration",
|
||||
"author": "Nalp.ch - Martin Eigenmann",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.6.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.21.0",
|
||||
"iframe-resizer": "^4.2.11",
|
||||
"react-iframe-resizer-super": "^0.2.2"
|
||||
}
|
||||
}
|
||||
128
spec/fixtures/dynamic_finders/plugin_version/onlim/translation_file/languages/onlim-en_US.pot
vendored
Normal file
128
spec/fixtures/dynamic_finders/plugin_version/onlim/translation_file/languages/onlim-en_US.pot
vendored
Normal file
@@ -0,0 +1,128 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Onlim - 1.0.0\n"
|
||||
"POT-Creation-Date: 2020-04-21 17:47+0200\n"
|
||||
"PO-Revision-Date: 2020-04-15 15:45+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Phlegx Systems OG\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;esc_html__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:75 includes/admin/class-onlim-admin.php:100
|
||||
msgid "Onlim Livechat and Chatbot"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:75 includes/admin/class-onlim-admin.php:83
|
||||
#: includes/admin/class-onlim-admin.php:86
|
||||
msgid "Onlim"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:76 includes/admin/class-onlim-admin.php:244
|
||||
msgid "Onlim Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:76
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:102
|
||||
msgid "Integrate awesome and free Livechat in Wordpress for everyone."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:107
|
||||
msgid "Chatbots & Voice Assistants from Onlim."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:109
|
||||
msgid ""
|
||||
"Automate your customer communication with our fully integrated Conversational AI platform. "
|
||||
"Results from over 150 man-years of research from our core team flow into our solution and "
|
||||
"allow us to deliver more knowledge and better conversations."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:115
|
||||
#, php-format
|
||||
msgid "Please visit %1$sour website%2$s to get more information!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:125
|
||||
msgid "How to get an Onlim Livechat and Chatbot?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:130
|
||||
msgid "You have already an Onlim account?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:133
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:138
|
||||
msgid "You don't have an Onlim account?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:141
|
||||
msgid "Sign up"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:158
|
||||
msgid "Onlim widget settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:165
|
||||
msgid "Widget code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:173
|
||||
msgid "Widget inclusion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:181
|
||||
msgid "Activate widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:191
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please configure the widget for your Wordpress website here. The widget code can be copied "
|
||||
"from Onlim chat management area, after %1$sregister for an account%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:213
|
||||
#, php-format
|
||||
msgid "The widget code will be printed below the opening %s section."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:218
|
||||
#, php-format
|
||||
msgid "The widget code will be printed above the closing %s section. (recommended)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:222
|
||||
#, php-format
|
||||
msgid "The widget code will be printed where you include the %s shortcode."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-onlim-admin.php:235
|
||||
msgid "Check this, to show the widget on your website."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-onlim.php:34
|
||||
msgid "Cloning is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-onlim.php:41
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
msgid "Onlim Livechat and Chatbot plugin. Awesome and free Livechat in Wordpress for everyone."
|
||||
msgstr ""
|
||||
236
spec/fixtures/dynamic_finders/plugin_version/op-kassa-for-woocommerce/change_log/CHANGELOG.md
vendored
Normal file
236
spec/fixtures/dynamic_finders/plugin_version/op-kassa-for-woocommerce/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,236 @@
|
||||
# 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).
|
||||
|
||||
## [1.0.3] - 2020-10-27
|
||||
|
||||
### Changed
|
||||
- Updated installation instructions
|
||||
|
||||
## [1.0.2] - 2020-10-27
|
||||
|
||||
### Added
|
||||
- Released to Wordpress.org directory
|
||||
|
||||
## [1.0.1] - 2020-10-21
|
||||
|
||||
### Changed
|
||||
- Changed all direct curl-usages to Wordpress HTTP API-calls.
|
||||
- Added sanitation for all POST/GET/SERVER-inputs.
|
||||
|
||||
## [1.0.0] - 2020-10-05
|
||||
|
||||
### Changed
|
||||
- Prepared the plugin for publishing.
|
||||
- Added more descriptive error message for failed Kassa connection.
|
||||
|
||||
## [0.8.1] - 2020-09-16
|
||||
|
||||
### Changed
|
||||
- Added a custom system check for Polylang-plugin setting.
|
||||
- Changed the method to get the site domain name. Old way had issues with url mismatches with server-variable and the url defined on Wordpress settings.
|
||||
- Call kassa-oauth-delete-function to remove the sync connection entry for the domain on Kassa disconnect.
|
||||
|
||||
## [0.8.0] - 2020-09-11
|
||||
|
||||
### Changed
|
||||
- Added possibility to select the target Kassa environment (test/production).
|
||||
- Kassa connection is now disconnected on plugin deactivation.
|
||||
- Fixed calls to wp_timezone(), which threw an error on older (< WP 5.3) WordPress versions.
|
||||
|
||||
## [0.7.11] - 2020-07-02
|
||||
|
||||
### Changed
|
||||
- Prevent putting orders to 'completed'-status directly from 'pending'-status if they are Kassa-orders created via API.
|
||||
|
||||
## [0.7.10] - 2020-06-17
|
||||
|
||||
### Changed
|
||||
- Disabled Stock sync direction selection. Stock sync direction is set the same as for the Product sync.
|
||||
|
||||
## [0.7.9] - 2020-06-01
|
||||
|
||||
### Changed
|
||||
- Disabled all order emails for orders which are created via Rest API.
|
||||
|
||||
## [0.7.8] - 2020-04-15
|
||||
|
||||
### Changed
|
||||
- Added more information on mandatory or incompatible plugins to plugin's system audit result.
|
||||
|
||||
## [0.7.7] - 2020-04-09
|
||||
|
||||
### Changed
|
||||
- Fixed an issue with custom date_query timestamps
|
||||
|
||||
## [0.7.6] - 2020-03-25
|
||||
|
||||
### Changed
|
||||
- Fixed issue in memory_limit-check.
|
||||
|
||||
## [0.7.5] - 2020-03-20
|
||||
|
||||
### Changed
|
||||
- Fixed typo from production default URLs.
|
||||
|
||||
## [0.7.4] - 2020-03-20
|
||||
|
||||
### Changed
|
||||
- Updated production default URLs.
|
||||
|
||||
## [0.7.3] - 2020-03-19
|
||||
|
||||
### Changed
|
||||
- Removed redundant duplicate system audit check for a mandatory plugin.
|
||||
|
||||
## [0.7.2] - 2020-03-19
|
||||
|
||||
### Changed
|
||||
- Minor bug fix
|
||||
- Renamed plugin basename
|
||||
|
||||
## [0.7.1] - 2020-03-18
|
||||
|
||||
### Changed
|
||||
- Replaced the system audit configuration file url to point to production environment.
|
||||
|
||||
## [0.7] - 2020-03-13
|
||||
|
||||
### Changed
|
||||
- Added system audit to perform basic enviroment checks
|
||||
|
||||
## [0.6.0] - 2019-10-29
|
||||
|
||||
### Changed
|
||||
- Authentication occurs on a single request chain taking the user first to Kassa and then to WooCommerce authentication.
|
||||
- Kassa and WooCommerce authentications are both canceled with a single action on the OP Kassa settings page.
|
||||
- Webhook secret handling updated.
|
||||
|
||||
## [0.5.10] - 2019-15-10
|
||||
|
||||
### Removed
|
||||
- Removed checks to ensure only the user that created OAuth link can remove it
|
||||
- Removed filters to force EAN to be a number
|
||||
|
||||
|
||||
## [0.5.9] - 2019-27-09
|
||||
|
||||
### Added
|
||||
- Added production endpoint urls
|
||||
|
||||
### Fixed
|
||||
- Fixed production endpoint API paths
|
||||
- Fixed a typo in the plugin name
|
||||
|
||||
### Removed
|
||||
- Removed "Initial stock sync" -setting from the settings page since it's not used
|
||||
|
||||
|
||||
## [0.5.8] - 2019-23-09
|
||||
|
||||
### Added
|
||||
- Added production endpoint urls
|
||||
|
||||
### Removed
|
||||
- Removed custom REST processing for the Kassa EAN. Will use normal metadata instead
|
||||
|
||||
|
||||
## [0.5.7] - 2019-18-09
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed product EAN ajax processing in while editing product variants
|
||||
|
||||
## [0.5.6] - 2019-18-09
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed handling for the `kis_modified_after` query parameter if the value is `"0"` _(meaning: starting from the beggining)_.
|
||||
|
||||
## [0.5.5] - 2019-18-09
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed using `get_id()` only for objects from API requests
|
||||
|
||||
## [0.5.4] - 2019-18-09
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed syntax error where $metaKeyName was not defined inside `update_callback` function in ProductEAN class
|
||||
- Fixed classes using `WP_Post` ID-property directly instead of using `get_id()`
|
||||
|
||||
## [0.5.3] - 2019-18-09
|
||||
|
||||
### Added
|
||||
|
||||
- Force ordering by modified time in ascending order for REST API requests made by KIS.
|
||||
|
||||
## [0.5.2] - 2019-10-09
|
||||
|
||||
### Added
|
||||
|
||||
- Added composer autoload.php require if the file exists for zip distributions
|
||||
- Added zip file distribution instructions to README
|
||||
|
||||
## [0.5.1] - 2019-16-08
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed EAN not saving properly with multiple product variants
|
||||
- Fixed a minor style issue with the tracking code box labels
|
||||
|
||||
## [0.5.0] - 2019-15-08
|
||||
|
||||
### Added
|
||||
|
||||
- Added support for Kassa EAN code
|
||||
- Added package slip link from Kassa
|
||||
|
||||
## [0.4.1] - 2019-01-08
|
||||
|
||||
### Added
|
||||
|
||||
- Added a hook to update order modified-field when order is refunded
|
||||
|
||||
## [0.4.0] - 2019-20-06
|
||||
|
||||
### Added
|
||||
|
||||
- Added new fields for shipping tracking code, carrier and pickup ID
|
||||
- Added new functionality to track deleted produts and an JSON API endpoint to fetch them
|
||||
|
||||
## [0.3.0]
|
||||
|
||||
### Added
|
||||
|
||||
- Added the ability to query Woo objects with a meta data identifier. This feature can is used for fetching orders created by KIS.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed a bug in Kassa settings page markup.
|
||||
|
||||
## [0.2.0] - 2019-04-01
|
||||
|
||||
### Added
|
||||
|
||||
- Added options to define synchronizing settings on the custom settings page.
|
||||
|
||||
## [0.1.0] - 2019-03-25
|
||||
|
||||
### Fixed
|
||||
- The success command is stripped in the method for getting the current admin url.
|
||||
- Fixed some bugs in the custom `kis_modified_after` date query handling.
|
||||
|
||||
### Changed
|
||||
- The KIS OAuth error command is now a class constant in the OAuth class.
|
||||
|
||||
### Removed
|
||||
- The plugin does not include the success command in the success url. Let the Lambda function add it.
|
||||
|
||||
## [0.0.0] - 2019-03-14
|
||||
|
||||
### Added
|
||||
- Initial plugin functionalities.
|
||||
@@ -0,0 +1,81 @@
|
||||
# Copyright (C) 2020 OsomPress
|
||||
# This file is distributed under the same license as the Osom Login Page Customizer plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Osom Login Page Customizer 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/osom-login-customizer\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-11-11T12:35:46+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: osom-lc\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Osom Login Page Customizer"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://osompress.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Osom Login Page Customizer lets you to easily customize the layout of the WordPress login page."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "OsomPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://osompress.com/plugins/osom-login-page-customizer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:38
|
||||
#: inc/osom-admin.php:39
|
||||
#: inc/osom-admin.php:58
|
||||
msgid "Osom Login Customizer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:83
|
||||
msgid "Display Remember option"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:96
|
||||
msgid "Display Lost Password option"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:109
|
||||
msgid "Display Back to Blog link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:122
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:138
|
||||
msgid "Login Form Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:154
|
||||
msgid "Login Form Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:170
|
||||
msgid "Login Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:186
|
||||
msgid "Login URL redirection"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:220
|
||||
msgid "The plugin allows you to customize the WordPress login page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:222
|
||||
msgid "On this page you can set the options for the login page."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,96 @@
|
||||
# Copyright (C) 2020 OsomPress
|
||||
# This file is distributed under the same license as the Osom Modal Login plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Osom Modal Login 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/osom-modal-login\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-30T11:27:52+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: osom-ml\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/osom-admin.php:39
|
||||
#: inc/osom-admin.php:40
|
||||
#: inc/osom-admin.php:59
|
||||
msgid "Osom Modal Login"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://osompress.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Osom Modal Login lets you easily create a modal box displaying the WordPress login form. It automatically adds a menu item named \"Login\" at the end of the selected menu which will launch the login modal box one you click on it."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "OsomPress"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:73
|
||||
msgid "You can also use the login modal window anywhere on the website using the shortcode [osom-login] Custom text [/osom-login]"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:93
|
||||
msgid "Display Remember option"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:106
|
||||
msgid "Display Lost Password option"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:119
|
||||
msgid "Header title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:128
|
||||
msgid "Title text displayed before the login form (you can leave it empty)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:136
|
||||
msgid "Select a menu to add login item"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:150
|
||||
msgid "Login URL redirection"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:158
|
||||
msgid "URL after login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:164
|
||||
msgid "Logout URL redirection"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:172
|
||||
msgid "URL after logout"
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:194
|
||||
msgid "The plugin creates a Login/Logout item at the end of the selected menu."
|
||||
msgstr ""
|
||||
|
||||
#: inc/osom-admin.php:195
|
||||
msgid "On this page you can set the options for the modal login screen."
|
||||
msgstr ""
|
||||
|
||||
#: osom-modal-login.php:119
|
||||
msgid "Login failed: You have entered an incorrect Username or Password, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: osom-modal-login.php:190
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: osom-modal-login.php:194
|
||||
#: osom-modal-login.php:198
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/particles-block/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/particles-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "particles-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start & npm run build:frontend -- -w",
|
||||
"build": "cgb-scripts build && npm run build:frontend -- -p rollup-plugin-terser",
|
||||
"eject": "cgb-scripts eject",
|
||||
"build:frontend": "rollup src/frontend.js --file dist/frontend.js --format iife"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"canvas-nest.js": "^2.0.4",
|
||||
"rollup": "^2.33.3",
|
||||
"rollup-plugin-terser": "^7.0.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,659 @@
|
||||
# Copyright (C) 2020 Pay4Fun
|
||||
# This file is distributed under the same license as the Pay4Fun for Wordpress/WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pay4Fun for Wordpress/WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
|
||||
"pay4fun\n"
|
||||
"POT-Creation-Date: 2020-11-03T22:57:08-03:00\n"
|
||||
"PO-Revision-Date: 2020-11-04 19:06-0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: woocommerce-pay4fun\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Pay4Fun for Wordpress/WooCommerce"
|
||||
msgstr "Pay4Fun para Wordpress/WooCommerce"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://wordpress.org/plugins/woocommerce-pay4fun"
|
||||
msgstr "http://wordpress.org/plugins/woocommerce-pay4fun"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Includes Pay4Fun as a payment gateway to WooCommerce and also adds Donation "
|
||||
"capabilities to Wordpress."
|
||||
msgstr ""
|
||||
"Agrega el Pay4Fun como una método de pago para WooCommerce y también la "
|
||||
"funcionalidad de donación en Wordpress."
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/class-wc-pay4fun-gateway.php:29
|
||||
#: includes/class-wc-pay4fun-gateway.php:280
|
||||
#: includes/class-wp-p4f-settings-page.php:124
|
||||
#: includes/class-wp-p4f-settings-page.php:125
|
||||
msgid "Pay4Fun"
|
||||
msgstr "Pay4Fun"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.p4f.com/"
|
||||
msgstr "https://www.p4f.com/"
|
||||
|
||||
#: helpers/class-pay4fun.php:42
|
||||
msgid "API URL not properly set!"
|
||||
msgstr "La URL de la API no está configurada correctamente!"
|
||||
|
||||
#: helpers/class-pay4fun.php:104
|
||||
msgid "Amount field is not defined or is not numeric."
|
||||
msgstr "El campo 'Amount' no está definido o no és numérico."
|
||||
|
||||
#: helpers/class-pay4fun.php:109
|
||||
msgid "merchantInvoiceId field is not defined or is not valid."
|
||||
msgstr "El campo 'MerchantInvoiceId' no está definido o no és válido."
|
||||
|
||||
#: helpers/class-pay4fun.php:114
|
||||
msgid "Currency field is not defined or is not valid ISO4217 code."
|
||||
msgstr "El campo 'Currency' no está definido o no és un código ISO4217 válido."
|
||||
|
||||
#: helpers/class-pay4fun.php:119
|
||||
msgid "ofUrl field is not defined or is not valid URL."
|
||||
msgstr "El campo 'ofUrl' no está definido o no és una URL válida."
|
||||
|
||||
#: helpers/class-pay4fun.php:124
|
||||
msgid "notOkUrl field is not defined or is not valid URL."
|
||||
msgstr "El campo 'notOkUrl' no está definido o no és una URL válida."
|
||||
|
||||
#: helpers/class-pay4fun.php:129
|
||||
msgid "confirmationUrl field is not defined or is not valid URL."
|
||||
msgstr "El campo 'confirmationUrl' no está definido o no és una URL válida."
|
||||
|
||||
#: helpers/class-pay4fun.php:136
|
||||
msgid "Language field is not valid (en-US/pt-BR/es-ES)."
|
||||
msgstr "El campo 'Language' no és unalenguaje válida (en-US/pt-BR/es-ES)."
|
||||
|
||||
#: helpers/class-pay4fun.php:143
|
||||
msgid "merchantLogo field is not defined or is not valid URL."
|
||||
msgstr "El campo 'merchantLogo' no está definido o no és una URL válida."
|
||||
|
||||
#: helpers/class-pay4fun.php:150
|
||||
msgid "p4fAccountEmail field is not a valid e-mail."
|
||||
msgstr "El campo 'p4fAccountEmail' no és un email válido."
|
||||
|
||||
#: helpers/class-pay4fun.php:157
|
||||
msgid "p4fMainId field is not a valid string."
|
||||
msgstr "El campo 'p4fMainId' no és una string válida."
|
||||
|
||||
#: helpers/class-pay4fun.php:164
|
||||
msgid "labelId field is not defined or is not numeric."
|
||||
msgstr "El campo 'labelId' no está definido o no és numérico."
|
||||
|
||||
#: helpers/class-pay4fun.php:171
|
||||
msgid "description field is not a valid string or is more than 40 characters."
|
||||
msgstr ""
|
||||
"El campo 'description' no és una string válida o tiene más de 40 caracteres."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:30
|
||||
msgid "Accept payments by using your Pay4Fun wallet to transfer funds."
|
||||
msgstr "Accepta pagos usando la wallet de Pay4Fun para transferir fondos."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:31
|
||||
msgid "Proceed to payment"
|
||||
msgstr "Avanza para el Pago"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:257
|
||||
msgid "System Status > Logs"
|
||||
msgstr "Status del Sistema > Logs"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:270
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Habilitar/Deshabilitar"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:272
|
||||
msgid "Enable Pay4Fun"
|
||||
msgstr "Habilitar Pay4Fun"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:276
|
||||
msgid "Title"
|
||||
msgstr "Título"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:278
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr "Controla el título que el usuário va a ver durante el checkout."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:283
|
||||
#: includes/class-wp-p4f-settings-page.php:294
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:285
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
"Controla la Descripción que el usuário va a ver durante el processo de "
|
||||
"checkout."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:286
|
||||
msgid "Pay via pay4fun"
|
||||
msgstr "Pague usando Pay4Fun"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:289
|
||||
#: includes/class-wp-p4f-settings-page.php:215
|
||||
msgid "Merchant ID"
|
||||
msgstr "Merchant ID"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:291
|
||||
msgid "You Merchant ID Registered on Pay4Fun"
|
||||
msgstr "Su Merchant ID registrado en Pay4Fun"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:296
|
||||
msgid "Merchant Secret"
|
||||
msgstr "Merchant Secret"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:298
|
||||
msgid "You Merchant Secret Registered on Pay4Fun"
|
||||
msgstr "Su Merchant Secret registrado en Pay4Fun"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:303
|
||||
msgid "Merchant Key"
|
||||
msgstr "Merchant Key"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:305
|
||||
msgid "You Merchant Key Registered on Pay4Fun"
|
||||
msgstr "Su Merchant Key registrado en Pay4Fun"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:310
|
||||
#: includes/class-wp-p4f-settings-page.php:262
|
||||
msgid "Merchant Logo"
|
||||
msgstr "Logotipo"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:312
|
||||
msgid "Add your Logo into Pay4Fun checkout page."
|
||||
msgstr "Agrega tu logo en la página de checkout de Pay4Fun."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:317
|
||||
msgid "WC Order Prefix"
|
||||
msgstr "Prefixo de la Órden de Compra"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:319
|
||||
msgid ""
|
||||
"Use a prefix to uniquely identify your order with Pay4fun if using multiple "
|
||||
"sites."
|
||||
msgstr ""
|
||||
"Usa un prefixo para identificar su órden de compra en Pay4Fun si está usando "
|
||||
"mútiplos websites."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:321
|
||||
msgid "WC_"
|
||||
msgstr "WC_"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:324
|
||||
#: includes/class-wp-p4f-settings-page.php:254
|
||||
msgid "Language"
|
||||
msgstr "Lenguaje"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:325
|
||||
msgid "Select the language to be used in the pay4fun checkout page."
|
||||
msgstr "Defie la lenguaje a ser usada en la página de checkout de Pay4Fun."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:336
|
||||
msgid "Complete Order on Payment?"
|
||||
msgstr "Finalizar Pedido al Pagar?"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:338
|
||||
msgid ""
|
||||
"Change order status to \"Completed\" once pay4fun transfer has been "
|
||||
"confirmed, otherwise it will change order status to \"Processing\" (Only "
|
||||
"applicable for virtual/downloadable products)"
|
||||
msgstr ""
|
||||
"Cambia el status de la órden de compra para \"Completed\" así que la "
|
||||
"transferencia de fondos esté confirmada por Pay4Fun, o va a quedar con "
|
||||
"status \"Processing\" (solamente se aplica para productos virtuales/"
|
||||
"downloadables)"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:342
|
||||
#: includes/class-wp-p4f-settings-page.php:310
|
||||
msgid "Sandbox Mode?"
|
||||
msgstr "Modo Sandbox?"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:344
|
||||
msgid "Run your payments in sandbox mode for testing purposes only."
|
||||
msgstr "Ejecuta sus pagos en modo sandbox para que sea possible hacer pruebas."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:348
|
||||
msgid "Debug Log"
|
||||
msgstr "Log de Debug"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:350
|
||||
msgid "Enable logging"
|
||||
msgstr "Habilitar Logging"
|
||||
|
||||
#. translators: %s: log page link
|
||||
#: includes/class-wc-pay4fun-gateway.php:353
|
||||
msgid "Log pay4fun events, such as API requests, inside %s"
|
||||
msgstr ""
|
||||
"Registra los eventos de Pay4Fun, como requisiciones a la API, dentro de %s"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:376
|
||||
msgid "WooCommerce Merchant cannot be the same as the Donation Merchant."
|
||||
msgstr ""
|
||||
"El Merchant ID de WooCommerce no puede ser el mismo que el Merchant de "
|
||||
"Donación."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:453
|
||||
msgid ""
|
||||
"We are sorry, there was an error while processing your order with this "
|
||||
"payment method. Please try again, or if possible use another method. Contact "
|
||||
"our support if you need assistance."
|
||||
msgstr ""
|
||||
"Perdón por la molestia, pero tuvimos un error mientras el procesamiento de "
|
||||
"su compra con este método de pago. Por favor inténtalo nuevamente, o si "
|
||||
"posible usa otro método de pago. Llama nuestro soporte si necesita de ayuda."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:574
|
||||
msgid "pay4fun: Payment under review."
|
||||
msgstr "pay4fun: Pago en análise."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:585
|
||||
#: includes/class-wc-pay4fun-gateway.php:588
|
||||
msgid "pay4fun: Payment approved."
|
||||
msgstr "pay4fun: Pago aprobado."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:596
|
||||
msgid "pay4fun: Payment completed and credited to your account."
|
||||
msgstr "pay4fun: Pago finalizado e creditado en su wallet."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:600
|
||||
msgid "pay4fun: Payment came into dispute."
|
||||
msgstr "pay4fun: Pago está en disputa."
|
||||
|
||||
#. translators: %s: order number
|
||||
#: includes/class-wc-pay4fun-gateway.php:603
|
||||
msgid "Payment for order %s came into dispute"
|
||||
msgstr "El pago para la órden de compra %s está en disputa"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:604
|
||||
msgid "Payment in dispute"
|
||||
msgstr "Pago en disputa"
|
||||
|
||||
#. translators: %s: order number
|
||||
#: includes/class-wc-pay4fun-gateway.php:606
|
||||
msgid ""
|
||||
"Order %s has been marked as on-hold, because the payment came into dispute "
|
||||
"in pay4fun."
|
||||
msgstr ""
|
||||
"Órden de compra %s fue cambiado para 'on-hold', porque el pago está en "
|
||||
"disputa por pay4fun."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:611
|
||||
msgid "pay4fun: Payment refunded."
|
||||
msgstr "pay4fun: Pago reembolso."
|
||||
|
||||
#. translators: %s: order number
|
||||
#: includes/class-wc-pay4fun-gateway.php:614
|
||||
msgid "Payment for order %s refunded"
|
||||
msgstr "El pago para la órden de compra %s fue reembolsado"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:615
|
||||
msgid "Payment refunded"
|
||||
msgstr "Pago reembolsado"
|
||||
|
||||
#. translators: %s: order number
|
||||
#: includes/class-wc-pay4fun-gateway.php:617
|
||||
msgid "Order %s has been marked as refunded by pay4fun."
|
||||
msgstr "La órden de compra %s fue marcado como reembolsado por pay4fun."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:626
|
||||
msgid "pay4fun: Payment canceled."
|
||||
msgstr "pay4fun: Pago cancelado."
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:662
|
||||
msgid "Payer email"
|
||||
msgstr "Email del Pagador"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:665
|
||||
msgid "Payer name"
|
||||
msgstr "Nombre del Pagador"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:670
|
||||
msgid "Payment type"
|
||||
msgstr "Tipo de Pago"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:675
|
||||
msgid "Payment method"
|
||||
msgstr "Método de Pago"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:680
|
||||
msgid "Installments"
|
||||
msgstr "Cuotas"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:685
|
||||
msgid "Payment URL"
|
||||
msgstr "URL del Pago"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:688
|
||||
msgid "Intermediation Rate"
|
||||
msgstr "% de Intermediación"
|
||||
|
||||
#: includes/class-wc-pay4fun-gateway.php:691
|
||||
msgid "Intermediation Fee"
|
||||
msgstr "Tasa de Intermediación"
|
||||
|
||||
#: includes/class-wc-pay4fun.php:54
|
||||
msgid "Settings"
|
||||
msgstr "Configuraciones"
|
||||
|
||||
#: includes/class-wp-p4f-donations-page.php:66
|
||||
#: includes/class-wp-p4f-donations-page.php:67
|
||||
msgid "Pay4Fun Donations"
|
||||
msgstr "Pay4Fun: Donaciones"
|
||||
|
||||
#: includes/class-wp-p4f-donations-page.php:84
|
||||
msgid "This will delete all donations registries, are you sure?"
|
||||
msgstr "Esta acción va a borrar todos los registros de donación, estás seguro?"
|
||||
|
||||
#: includes/class-wp-p4f-donations-page.php:92
|
||||
msgid "Donations Cleared!"
|
||||
msgstr "Registros de donación borrados!"
|
||||
|
||||
#: includes/class-wp-p4f-donations-page.php:152
|
||||
msgid "Pay4Fun Donations (Latest 100 transactions)"
|
||||
msgstr "Donaciones con Pay4Fun (Últimas 100 transacciones)"
|
||||
|
||||
#: includes/class-wp-p4f-donations-page.php:186
|
||||
msgid "CLEAR ENTRIES"
|
||||
msgstr "Borrar Registros"
|
||||
|
||||
#: includes/class-wp-p4f-donations-widget.php:15
|
||||
msgid "P4F Donate Button Widget"
|
||||
msgstr "Widget de Donación de Pay4Fun"
|
||||
|
||||
#: includes/class-wp-p4f-donations-widget.php:18
|
||||
msgid "This widget will add a Donate button using Pay4Fun payment method."
|
||||
msgstr ""
|
||||
"Este Widget va a agregar in botón de donación usando Pay4Fun como método de "
|
||||
"pago."
|
||||
|
||||
#: includes/class-wp-p4f-rest-api.php:166
|
||||
msgid "There was an error processing p4f confirmation data"
|
||||
msgstr "Hubo un error al procesar los datos de confirmación de p4f"
|
||||
|
||||
#: includes/class-wp-p4f-rest-api.php:291
|
||||
msgid "There was an error inserting p4f new transaction data"
|
||||
msgstr "Hubo un error al intentar insertar los datos de la transacción de p4f"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:62
|
||||
msgid ""
|
||||
"The OpenSSL PHP extension is not loaded in this environment. Be warned that "
|
||||
"your credentials will be stored in plain text if not enable. If you don't "
|
||||
"want this, enable the openssl extension in php.ini"
|
||||
msgstr ""
|
||||
"La extensión 'OpenSSL' de PHP no está habilitada en el ambiente. Esté atento "
|
||||
"que sus credenciales van a ser guardadas en la base de datos en texto libre "
|
||||
"si la extensión no esté habilitada. Si no quieres que esto suceda, "
|
||||
"habilitelo en su php.ini"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:70
|
||||
msgid ""
|
||||
"You must provide your donation Merchant ID in order to enable this "
|
||||
"functionality."
|
||||
msgstr ""
|
||||
"Usted debe informar su Merchant ID de donación para habilitar esta "
|
||||
"funcionalidad."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:78
|
||||
msgid ""
|
||||
"You must provide your donation Merchant KEY in order to enable this "
|
||||
"functionality."
|
||||
msgstr ""
|
||||
"Usted debe informar su Merchant KEY de donación para habilitar esta "
|
||||
"funcionalidad."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:86
|
||||
msgid ""
|
||||
"You must provide your donation Merchant SECRET in order to enable this "
|
||||
"functionality."
|
||||
msgstr ""
|
||||
"Usted debe informar su Merchant SECRET de donación para habilitar esta "
|
||||
"funcionalidad."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:94
|
||||
msgid ""
|
||||
"You must provide your donation Merchant Logo in order to enable this "
|
||||
"functionality."
|
||||
msgstr ""
|
||||
"Usted debe informar su Merchant LOGO de donación para habilitar esta "
|
||||
"funcionalidad."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:102
|
||||
msgid ""
|
||||
"You cannot use the same pay4fun merchant for both donations and woocommerce."
|
||||
msgstr "Usted no puede usar el mismo merchant para donación y woocommerce."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:144
|
||||
msgid "Pay4Fun Settings"
|
||||
msgstr "Configuraciones Pay4Fun"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:161
|
||||
msgid "Clear Logs"
|
||||
msgstr "Limpiar Logs"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:177
|
||||
msgid "Donation Merchant cannot be the same as the WooCommerce Merchant."
|
||||
msgstr ""
|
||||
"Merchant de Donación no puede ser lo mismo Merchant usado en WooCommerce."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:178
|
||||
msgid "This will be the log shown in Pay4Fun Checkout Page."
|
||||
msgstr "Agrega tu logotipo en la página de checkout de Pay4Fun."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:179
|
||||
msgid ""
|
||||
"This Prefix will be added to the Invoice ID in order to uniquely identify "
|
||||
"this donation when using multiple sites."
|
||||
msgstr ""
|
||||
"Este prefixo va a ser añadido al numero de la órden de compra para "
|
||||
"identificar de manera única la donación cuando se usa múltiplos sítios web."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:180
|
||||
msgid "This field is to help identify the donation within Pay4Fun system."
|
||||
msgstr ""
|
||||
"Este campo ayuda a identificar la donación dentro del Sistema de Pay4Fun."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:181
|
||||
msgid ""
|
||||
"If enabled, when the user clicks on the donate button the checkout page will "
|
||||
"be opened in a new browser window."
|
||||
msgstr ""
|
||||
"Si habilitado, cuando el usuário hace click en el botón de donación, la "
|
||||
"página de Checkout va a abrir en una nueva ventana."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:182
|
||||
msgid "This will enable logging the transactions for debugging purposes"
|
||||
msgstr ""
|
||||
"Esto va a habilitar registrar en un log todas las transacciones para "
|
||||
"depuración"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:183
|
||||
msgid ""
|
||||
"Turn this on if you need to run tests to validate connectivity with pay4fun"
|
||||
msgstr ""
|
||||
"Habilita eso para que pueda hacer pruebas de conección hacia Pay4fun sin "
|
||||
"usar transacciones reales"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:184
|
||||
msgid ""
|
||||
"This is the Donation Merchant ID provided to you by pay4fun. Do not use "
|
||||
"other merchant ID here."
|
||||
msgstr ""
|
||||
"Este es el ID de Merchant de donación proveído por Pay4Fun. No use ningún "
|
||||
"otro merchant ID."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:185
|
||||
msgid "This is the Donation Merchant Secret provided by pay4fun."
|
||||
msgstr "Este es el Merchant Secret de donación proveído por Pay4Fun."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:186
|
||||
msgid "This is the Donation Merchant Key provided by pay4fun."
|
||||
msgstr "Este es el Merchant Key de donación proveído por Pay4Fun."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:187
|
||||
msgid ""
|
||||
"This is the page to redirect the users to after a successful transaction "
|
||||
"with pay4fun."
|
||||
msgstr ""
|
||||
"Esta es la página para redireccionar los usuários despues una transacción "
|
||||
"exitosa con Pay4Fun."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:188
|
||||
msgid ""
|
||||
"This is the page to redirect the users to when there is an error in the "
|
||||
"transaction or the user aborted the payment."
|
||||
msgstr ""
|
||||
"Esta es la página para redireccionar el usuário si hubo un error en la "
|
||||
"transacción o si el usuário canceló el pago."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:189
|
||||
msgid ""
|
||||
"Select the currency that should be used to donate. All buttons will use the "
|
||||
"same currency."
|
||||
msgstr ""
|
||||
"Elija la moneda que debe ser usada para donación. Todos los botones van a "
|
||||
"usar la misma moneda."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:190
|
||||
msgid "Select the language to be used in the checkout page."
|
||||
msgstr "Define la lenguaje a ser usada en la página de checkout de Pay4Fun."
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:208
|
||||
msgid "Pay4Fun Donation API Credentials"
|
||||
msgstr "Credenciales de Pay4Fun para la API Wordpress"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:223
|
||||
msgid "Secret"
|
||||
msgstr "Secret"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:231
|
||||
msgid "Key"
|
||||
msgstr "Key"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:239
|
||||
msgid "Other Settings"
|
||||
msgstr "Otras Configuraciones"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:246
|
||||
msgid "Order Prefix"
|
||||
msgstr "Prefixo de a órden de compra"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:270
|
||||
msgid "Currency"
|
||||
msgstr "Moneda"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:278
|
||||
msgid "Donate Success Return Page"
|
||||
msgstr "Página de Retorno (Éxito)"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:286
|
||||
msgid "Donate Error Return Page"
|
||||
msgstr "Página de Retorno (Falla)"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:302
|
||||
msgid "Redirect to new Page?"
|
||||
msgstr "Redireccionar para una Nueva Página?"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:318
|
||||
msgid "Enable Debug?"
|
||||
msgstr "Habilitar Debug?"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:402
|
||||
msgid "Please provide you Pay4Fun API credentials"
|
||||
msgstr "Por favor informe sus credenciales del API de Pay4Fun"
|
||||
|
||||
#: includes/class-wp-p4f-settings-page.php:410
|
||||
msgid "Remaining Settings to configure Pay4Fun Donations"
|
||||
msgstr "Otras configuraciones para habilitar la donación usand Pay4Fun"
|
||||
|
||||
#: views/html-admin-help-message.php:15
|
||||
msgid "Donations Credentials should be set in "
|
||||
msgstr "Las credenciales del merchant deben ser configuradas en "
|
||||
|
||||
#: views/html-admin-help-message.php:16
|
||||
msgid "Pay4Fun Donations Settings Page"
|
||||
msgstr "Página de Configuración de Pay4Fun"
|
||||
|
||||
#: views/html-notice-currency-not-supported.php:16
|
||||
msgid "Pay4Fun is Disabled"
|
||||
msgstr "Pay4Fun está deshabilitado"
|
||||
|
||||
#. translators: %s: Currency Code
|
||||
#: views/html-notice-currency-not-supported.php:16
|
||||
msgid ""
|
||||
"Currency <code>%s</code> is not supported. Works only with Brazilian Real, "
|
||||
"US Dollar or Euro."
|
||||
msgstr ""
|
||||
"Moneda <code>%s</code> no és suportada. Solamente el Real (Brasil), Dólar o "
|
||||
"Euro son acceptados."
|
||||
|
||||
#: views/html-notice-id-missing.php:16 views/html-notice-key-missing.php:16
|
||||
#: views/html-notice-logo-missing.php:16
|
||||
#: views/html-notice-secret-missing.php:16
|
||||
msgid "Pay4Fun Disabled"
|
||||
msgstr "Pay4Fun Deshabilitado"
|
||||
|
||||
#: views/html-notice-id-missing.php:16
|
||||
msgid "You should inform your merchant ID."
|
||||
msgstr "Usted debe informar su ID de merchant."
|
||||
|
||||
#: views/html-notice-key-missing.php:16
|
||||
msgid "You should inform your merchant key."
|
||||
msgstr "Usted debe informar su key de merchant."
|
||||
|
||||
#: views/html-notice-logo-missing.php:16
|
||||
msgid "You should inform your logo."
|
||||
msgstr "Usted debe informar su logo."
|
||||
|
||||
#: views/html-notice-missing-woocommerce.php:23
|
||||
msgid "Pay4Fun for WooCommerce"
|
||||
msgstr "Pay4Fun para WooCommerce"
|
||||
|
||||
#: views/html-notice-missing-woocommerce.php:23
|
||||
msgid "depends on the last version of WooCommerce to work!"
|
||||
msgstr "depende de la última versión de WooCommerce para funcionar!"
|
||||
|
||||
#: views/html-notice-missing-woocommerce.php:26
|
||||
msgid "Active WooCommerce"
|
||||
msgstr "Activar WooCommerce"
|
||||
|
||||
#: views/html-notice-missing-woocommerce.php:34
|
||||
msgid "Install WooCommerce"
|
||||
msgstr "Instalar WooCommerce"
|
||||
|
||||
#: views/html-notice-same-merchant-donation.php:16
|
||||
msgid "Merchant Conflict!"
|
||||
msgstr "Conflito de Merchant!"
|
||||
|
||||
#: views/html-notice-same-merchant-donation.php:16
|
||||
msgid "You cannot use the same merchant ID for both Donation and WooCommerce."
|
||||
msgstr "Usted no puede usar el mismo Merchant ID para donación y woocommerce."
|
||||
|
||||
#: views/html-notice-secret-missing.php:16
|
||||
msgid "You should inform your merchant secret."
|
||||
msgstr "Usted debe informar su secret de merchant."
|
||||
|
||||
#: views/html-receipt-page-error.php:19
|
||||
msgid "Cancel your Order"
|
||||
msgstr "Cancelar su Órden de Compra"
|
||||
|
||||
#~ msgid "pay4fun"
|
||||
#~ msgstr "pay4fun"
|
||||
|
||||
# #: includes/class-wp-p4f-settings-page.php:152
|
||||
#~ msgid "Settings specific for the Donation process"
|
||||
#~ msgstr "Configuraciones específicas para el proceso de donación"
|
||||
|
||||
#~ msgid "Settings are SPECIFIC for Donation, not used in woocommerce"
|
||||
#~ msgstr ""
|
||||
#~ "Configuraciones ESPECÍFICAS para donación, no és usado para WooCommerce"
|
||||
38
spec/fixtures/dynamic_finders/plugin_version/payday/change_log/changelog.txt
vendored
Normal file
38
spec/fixtures/dynamic_finders/plugin_version/payday/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
= 2.0.0 =
|
||||
|
||||
* Major refactor done to code
|
||||
* Icelandic language file added
|
||||
* Payday Gateway added
|
||||
|
||||
= 1.3.1 =
|
||||
|
||||
* Clear Cache button added to the plugin settings page.
|
||||
* If pressed, then the new Database table for Payment Types is dropped, and all users settings are deleted.
|
||||
* New Database table added to store Payment Types to reduce the number of requests to Payday External API.
|
||||
|
||||
= 1.3.0 =
|
||||
|
||||
* Refresh Values button added to the plugin settings page. If pressed new list of Payment Types / Chart of Accounts is fetched.
|
||||
* New Database table added to store Payment Types to reduce the number of requests to Payday External API.
|
||||
|
||||
= 1.2.9 =
|
||||
|
||||
* Stable release for the first version.
|
||||
|
||||
= 1.2.7 =
|
||||
|
||||
* Bug Fix: Add shipping title to invoice.
|
||||
|
||||
= 1.2.5 =
|
||||
|
||||
* Add support for line item discounts and
|
||||
|
||||
= 1.2.0 =
|
||||
|
||||
* Add support for shipping cost
|
||||
* Add order notes to invoice
|
||||
* Reduce the number of Authentication requests made to Payday External API.
|
||||
|
||||
= 1.0.0 =
|
||||
|
||||
* Initial release of Payday for WordPress.
|
||||
43
spec/fixtures/dynamic_finders/plugin_version/paymentiq-checkout/composer_file/package.json
vendored
Normal file
43
spec/fixtures/dynamic_finders/plugin_version/paymentiq-checkout/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"name": "paymentiq-checkout",
|
||||
"version": "1.0.0",
|
||||
"description": "PaymentIQ WooCommerce plugin",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"start": "npm run watch",
|
||||
"watch": "webpack --mode=development --watch --config webpack-config.js",
|
||||
"build": "webpack --mode=production --config webpack-config.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/devcode-git/PaymentIQ-Checkout-Plugin-Woocommerce.git"
|
||||
},
|
||||
"keywords": [
|
||||
"Payments",
|
||||
"Wordpress",
|
||||
"WooCommerce"
|
||||
],
|
||||
"author": "simon.solders@devcode.se",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/devcode-git/PaymentIQ-Checkout-Plugin-Woocommerce/issues"
|
||||
},
|
||||
"homepage": "https://github.com/devcode-git/PaymentIQ-Checkout-Plugin-Woocommerce/blob/main/README.md",
|
||||
"babel": {
|
||||
"presets": [
|
||||
"@babel/preset-env"
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"paymentiq-cashier-bootstrapper": "1.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.8.4",
|
||||
"@babel/core": "^7.9.6",
|
||||
"@babel/preset-env": "^7.9.6",
|
||||
"babel-loader": "^8.1.0",
|
||||
"webpack": "^4.43.0",
|
||||
"webpack-cli": "^3.3.11"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/paysley/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/paysley/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.0 - 2020-09-01 =
|
||||
* First Release
|
||||
105
spec/fixtures/dynamic_finders/plugin_version/paysley/translation_file/languages/paysley-ja.po
vendored
Normal file
105
spec/fixtures/dynamic_finders/plugin_version/paysley/translation_file/languages/paysley-ja.po
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Paysley 1.0.0\n"
|
||||
"POT-Creation-Date: 2020-04-02 15:14+0700\n"
|
||||
"PO-Revision-Date: 2020-09-01 08:22+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.1\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/class-paysley.php:26 includes/class-paysley.php:73
|
||||
msgid "Paysley"
|
||||
msgstr "Paysley"
|
||||
|
||||
#: includes/class-paysley.php:27
|
||||
msgid ""
|
||||
"Paysley redirects customers to Paysley to enter their payment information."
|
||||
msgstr "Paysleyは顧客をPaysleyにリダイレクトして支払い情報を入力する。"
|
||||
|
||||
#: includes/class-paysley.php:64
|
||||
msgid "Enable/Disable"
|
||||
msgstr "有効化/無効化"
|
||||
|
||||
#: includes/class-paysley.php:65
|
||||
msgid "Enable Paysley"
|
||||
msgstr "Paysley を有効にする"
|
||||
|
||||
#: includes/class-paysley.php:70
|
||||
msgid "Title"
|
||||
msgstr "タイトル"
|
||||
|
||||
#: includes/class-paysley.php:72
|
||||
msgid "This is the title which the user sees during checkout."
|
||||
msgstr "これは、チェックアウト時にユーザーに表示されるタイトルです。"
|
||||
|
||||
#: includes/class-paysley.php:77
|
||||
msgid "Description"
|
||||
msgstr "説明"
|
||||
|
||||
#: includes/class-paysley.php:79
|
||||
msgid "This is the description which the user sees during checkout."
|
||||
msgstr "これは、チェックアウト時にユーザーに表示される説明です。"
|
||||
|
||||
#: includes/class-paysley.php:84
|
||||
msgid "Access Key"
|
||||
msgstr "アクセスキー"
|
||||
|
||||
#: includes/class-paysley.php:86
|
||||
msgid ""
|
||||
"* This is the access key, received from Paysley developer portal. "
|
||||
"( required )"
|
||||
msgstr "* Paysley開発者ポータルから受け取ったアクセスキーです ( 必須 )"
|
||||
|
||||
#: includes/class-paysley.php:90
|
||||
msgid "Enable Logging"
|
||||
msgstr "ロギングの有効化"
|
||||
|
||||
#: includes/class-paysley.php:92
|
||||
msgid "Enable transaction logging for paysley."
|
||||
msgstr "paysley のトランザクションログを有効にします。"
|
||||
|
||||
#: includes/class-paysley.php:105
|
||||
msgid "Please enter an access key!"
|
||||
msgstr "アクセスキーを入力してください!"
|
||||
|
||||
#: includes/class-paysley.php:209
|
||||
msgid "We are sorry, currency is not supported. Please contact us."
|
||||
msgstr "申し訳ありませんが、通貨はサポートされていません。 ご相談ください。"
|
||||
|
||||
#: includes/class-paysley.php:212
|
||||
msgid "Error while Processing Request: please try again."
|
||||
msgstr "リクエストの処理中にエラーが発生しました:もう一度お試しください。"
|
||||
|
||||
#: includes/class-paysley.php:291
|
||||
msgid "Paysley partial refund successfull."
|
||||
msgstr "Paysleyの一部払い戻しが正常に完了しました。"
|
||||
|
||||
#: includes/class-paysley.php:297 includes/class-paysley.php:330
|
||||
msgid "Refund Failed"
|
||||
msgstr "払い戻しに失敗しました"
|
||||
|
||||
#: includes/class-paysley.php:325
|
||||
msgid "Paysley full refund successfull."
|
||||
msgstr "Paysleyの全額払い戻しが正常に終了しました。"
|
||||
|
||||
#: includes/class-paysley.php:356
|
||||
msgid ""
|
||||
"Paysley notes: You still have amount to be refunded, because Merchant use "
|
||||
"tax/tip when customer paid. Please contact the merchant to refund the tax/"
|
||||
"tip amount."
|
||||
msgstr ""
|
||||
"Paysleyメモ:購入者が支払ったときにマーチャントが税金/チップを使用するた"
|
||||
"め、払い戻し額はまだあります。 税金/チップの金額を返金するには、出品者に連"
|
||||
"絡してください。"
|
||||
|
||||
#: paysley.php:92
|
||||
msgid "Settings"
|
||||
msgstr "[設定]"
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/phrase/change_log/CHANGELOG.md
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/phrase/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# 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).
|
||||
|
||||
## [1.0.0] - 2020-11-26
|
||||
|
||||
### Added
|
||||
* Initial version.
|
||||
|
||||
[Unreleased]: https://github.com/phrase/phrase-wordpress-plugin/compare/1.0.0...HEAD
|
||||
[1.0.0]: https://github.com/phrase/phrase-wordpress-plugin/compare/8a7e821408b379da18263912b35cf6954e83da18...1.0.0
|
||||
51
spec/fixtures/dynamic_finders/plugin_version/post-status-indicator/composer_file/package.json
vendored
Normal file
51
spec/fixtures/dynamic_finders/plugin_version/post-status-indicator/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "psi-react-app",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@wordpress/components": "^11.1.3",
|
||||
"react": "^16.14.0",
|
||||
"react-dom": "^16.14.0",
|
||||
"react-router-dom": "^5.1.2",
|
||||
"use-debounce": "^5.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "webpack --watch",
|
||||
"build": "cross-env NODE_ENV=production node_modules/.bin/webpack"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.9.0",
|
||||
"@babel/preset-env": "^7.9.0",
|
||||
"@babel/preset-react": "^7.9.4",
|
||||
"babel-loader": "^8.1.0",
|
||||
"browser-sync": "^2.26.7",
|
||||
"browser-sync-webpack-plugin": "^2.2.2",
|
||||
"cross-env": "^7.0.2",
|
||||
"css-loader": "^3.4.2",
|
||||
"file-loader": "^6.0.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.13.1",
|
||||
"sass-loader": "^8.0.2",
|
||||
"webpack": "^4.42.1",
|
||||
"webpack-cli": "^3.3.11"
|
||||
},
|
||||
"description": "Post Status Indicator WordPress plugin React dashboard",
|
||||
"main": "webpack.config.js",
|
||||
"author": "Sean Hayes",
|
||||
"license": "GPL-2.0+"
|
||||
}
|
||||
@@ -0,0 +1,540 @@
|
||||
# Copyright (C) 2020 Alessandro Tesoro
|
||||
# This file is distributed under the same license as the Pressmodo Onboarding package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pressmodo Onboarding 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/pressmodo-onboarding\n"
|
||||
"POT-Creation-Date: 2020-11-30 12:55:34+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.3\n"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Pressmodo Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:23
|
||||
msgid "Get started"
|
||||
msgstr ""
|
||||
|
||||
#: resources/views/onboarding.php:24
|
||||
msgid "Pressmodo Themes: Getting started"
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:80
|
||||
msgid "Something went wrong. User not authorized."
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:151
|
||||
msgid ""
|
||||
"The uploaded .zip package does not appear to be a Pressmodo Theme demo "
|
||||
"package. Please try again or contact support."
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:158
|
||||
msgid ""
|
||||
"Something went wrong while checking the demo configuration file. Please "
|
||||
"contact support."
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:162
|
||||
msgid ""
|
||||
"The uploaded demo package does not belong to the currently active theme on "
|
||||
"this site. Please upload the appropriate demo package."
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:183
|
||||
msgid ""
|
||||
"Something went wrong while checking the required plugins for the selected "
|
||||
"demo. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:192
|
||||
msgid ""
|
||||
"Some required plugins have not been installed or activated. Press the "
|
||||
"button below to install all the required plugins."
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:254
|
||||
msgid "Something went wrong while checking for the next required plugin."
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:287
|
||||
msgid "The requested plugin does not seem to be required by the theme."
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:323
|
||||
msgid ""
|
||||
"Looks like the demo media folder is missing. Please try uploading the "
|
||||
"package again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:362
|
||||
msgid ""
|
||||
"Looks like the demo database file is missing. Please try uploading the "
|
||||
"package again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Controllers/OnboardingController.php:431
|
||||
msgid "Processing table %1$d of %2$d: %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Helper.php:166
|
||||
#. translators: %1$s is the file field label; %2$s is the file type; %3$s is
|
||||
#. the list of allowed file types.
|
||||
msgid "\"%1$s\" (filetype %2$s) needs to be one of the following file types: %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Helper.php:169
|
||||
#. translators: %s is the list of allowed file types.
|
||||
msgid "Uploaded files need to be one of the following file types: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:72 src/Plugin.php:83
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: src/SearchReplace.php:83
|
||||
msgid "(%s MB)"
|
||||
msgstr ""
|
||||
|
||||
#: src/SearchReplace.php:279
|
||||
msgid "Error updating row: %d."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/PHP.php:49
|
||||
#. Translators: 1. Required PHP version, 2. Used PHP version.
|
||||
msgid "Minimum required version of PHP is %1$s. Your version is %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/PHPExtensions.php:55
|
||||
#. Translators: PHP extensions.
|
||||
msgid "Missing PHP extension: %s"
|
||||
msgid_plural "Missing PHP extensions: %s"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/Plugins.php:70
|
||||
#. Translators: Plugin name.
|
||||
msgid "Required plugin: %s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/Plugins.php:78
|
||||
#. Translators: 1. Plugin name, 2. Required version, 3. Used version.
|
||||
msgid "Minimum required version of %1$s plugin is %2$s. Your version is %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/Theme.php:51
|
||||
msgid "Required theme: %s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Checker/WordPress.php:48
|
||||
#. Translators: 1. Required WP version, 2. Current WP version.
|
||||
msgid "Minimum required version of WordPress is %1$s. Your version is %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/pressmodo/wp-requirements/src/Requirements.php:257
|
||||
msgid "<strong>%s</strong> cannot be activated."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:334
|
||||
msgid "Install Required Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:335
|
||||
msgid "Install Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:337
|
||||
#. translators: %s: plugin name.
|
||||
msgid "Installing Plugin: %s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:339
|
||||
#. translators: %s: plugin name.
|
||||
msgid "Updating Plugin: %s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:340
|
||||
msgid "Something went wrong with the plugin API."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:377
|
||||
#. translators: 1: plugin name(s).
|
||||
msgid "Begin installing plugin"
|
||||
msgid_plural "Begin installing plugins"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:382
|
||||
msgid "Begin updating plugin"
|
||||
msgid_plural "Begin updating plugins"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:387
|
||||
msgid "Begin activating plugin"
|
||||
msgid_plural "Begin activating plugins"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:392
|
||||
msgid "Return to Required Plugins Installer"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:393
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:920
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2626
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3673
|
||||
msgid "Return to the Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:394
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3252
|
||||
msgid "Plugin activated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:395
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3045
|
||||
msgid "The following plugin was activated successfully:"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:397
|
||||
#. translators: 1: plugin name.
|
||||
msgid "No action taken. Plugin %1$s was already active."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:399
|
||||
#. translators: 1: plugin name.
|
||||
msgid ""
|
||||
"Plugin not activated. A higher version of %s is needed for this theme. "
|
||||
"Please update the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:401
|
||||
#. translators: 1: dashboard link.
|
||||
msgid "All plugins installed and activated successfully. %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:402
|
||||
msgid "Dismiss this notice"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:403
|
||||
msgid ""
|
||||
"There are one or more required or recommended plugins to install, update or "
|
||||
"activate."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:404
|
||||
msgid "Please contact the administrator of this site for help."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:607
|
||||
msgid "This plugin needs to be updated to be compatible with your theme."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:608
|
||||
msgid "Update Required"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:725
|
||||
msgid "Set the parent_slug config variable instead."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:1027
|
||||
msgid ""
|
||||
"The remote plugin package does not contain a folder with the desired slug "
|
||||
"and renaming did not work."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:1027
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:1030
|
||||
msgid ""
|
||||
"Please contact the plugin provider and ask them to package their plugin "
|
||||
"according to the WordPress guidelines."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:1030
|
||||
msgid ""
|
||||
"The remote plugin package consists of more than one file, but the files are "
|
||||
"not packaged in a folder."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2075
|
||||
#. translators: %s: version number
|
||||
msgid "TGMPA v%s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2366
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2369
|
||||
msgid "Recommended"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2385
|
||||
msgid "WordPress Repository"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2388
|
||||
msgid "External Source"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2391
|
||||
msgid "Pre-Packaged"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2408
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2412
|
||||
msgid "Installed But Not Activated"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2414
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2420
|
||||
msgid "Required Update not Available"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2423
|
||||
msgid "Requires Update"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2426
|
||||
msgid "Update recommended"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2485
|
||||
#. translators: 1: number of plugins.
|
||||
msgid "To Install <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "To Install <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2489
|
||||
#. translators: 1: number of plugins.
|
||||
msgid "Update Available <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "Update Available <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2493
|
||||
#. translators: 1: number of plugins.
|
||||
msgid "To Activate <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "To Activate <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2583
|
||||
msgid "Installed version:"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2591
|
||||
msgid "Minimum required version:"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2603
|
||||
msgid "Available version:"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2626
|
||||
msgid "No plugins to install, update or activate."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2640
|
||||
msgid "Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2641
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2642
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2646
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2647
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2696
|
||||
#. translators: %2$s: plugin name in screen reader markup
|
||||
msgid "Install %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2701
|
||||
#. translators: %2$s: plugin name in screen reader markup
|
||||
msgid "Update %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2707
|
||||
#. translators: %2$s: plugin name in screen reader markup
|
||||
msgid "Activate %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2777
|
||||
msgid "Upgrade message from the plugin author:"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2810
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2816
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2819
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2850
|
||||
msgid "No plugins were selected to be installed. No action taken."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2852
|
||||
msgid "No plugins were selected to be updated. No action taken."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2893
|
||||
msgid "No plugins are available to be installed at this time."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2895
|
||||
msgid "No plugins are available to be updated at this time."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3001
|
||||
msgid "No plugins were selected to be activated. No action taken."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3027
|
||||
msgid "No plugins are available to be activated at this time."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3251
|
||||
msgid "Plugin activation failed."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3591
|
||||
#. translators: 1: plugin name, 2: action number 3: total number of actions.
|
||||
msgid "Updating Plugin %1$s (%2$d/%3$d)"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3594
|
||||
#. translators: 1: plugin name, 2: error message.
|
||||
msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3596
|
||||
#. translators: 1: plugin name.
|
||||
msgid "The installation of %1$s failed."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3600
|
||||
msgid ""
|
||||
"The installation and activation process is starting. This process may take "
|
||||
"a while on some hosts, so please be patient."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3602
|
||||
#. translators: 1: plugin name.
|
||||
msgid "%1$s installed and activated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3602
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3610
|
||||
msgid "Show Details"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3602
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3610
|
||||
msgid "Hide Details"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3603
|
||||
msgid "All installations and activations have been completed."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3605
|
||||
#. translators: 1: plugin name, 2: action number 3: total number of actions.
|
||||
msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3608
|
||||
msgid ""
|
||||
"The installation process is starting. This process may take a while on some "
|
||||
"hosts, so please be patient."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3610
|
||||
#. translators: 1: plugin name.
|
||||
msgid "%1$s installed successfully."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3611
|
||||
msgid "All installations have been completed."
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3613
|
||||
#. translators: 1: plugin name, 2: action number 3: total number of actions.
|
||||
msgid "Installing Plugin %1$s (%2$d/%3$d)"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://pressmodo.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Import Pressmodo official themes demo content, widgets and theme settings "
|
||||
"with just one click."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Alessandro Tesoro"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://sematico.com"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:1214
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:3041
|
||||
msgctxt "plugin A *and* plugin B"
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2435
|
||||
#. translators: 1: install status, 2: update status
|
||||
msgctxt "Install/Update Status"
|
||||
msgid "%1$s, %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2481
|
||||
#. translators: 1: number of plugins.
|
||||
msgctxt "plugins"
|
||||
msgid "All <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "All <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php:2575
|
||||
msgctxt "as in: \"version nr unknown\""
|
||||
msgid "unknown"
|
||||
msgstr ""
|
||||
@@ -48,6 +48,13 @@
|
||||
<script type="text/javascript" data-cfasync="false" src="http://wp.lab/wp-content/plugins/3d-flipbook-dflip-lite/assets/js/dflip.min.js?ver=1.3.11"></script>
|
||||
|
||||
|
||||
<!-- 3d-menu-awesome -->
|
||||
<link rel="stylesheet" id="threed-menu-awesome-css" href="http://wp.lab/wp-content/plugins/3d-menu-awesome/public/css/threed-menu-awesome-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/3d-menu-awesome/public/js/modernizr.3d.awesome.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/3d-menu-awesome/public/js/classie.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/3d-menu-awesome/public/js/threed-menu-awesome-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- 3dpc-quote-calculator-basic -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3dpc-quote-calculator-basic/assets/js/public.js?ver=1.2.5"></script>
|
||||
<link rel="stylesheet" id="Phanes 3DP Calculator - Basic-css" href="http://wp.lab/wp-content/plugins/3dpc-quote-calculator-basic/assets/css/public.css?ver=1.2.5" type="text/css" media="all">
|
||||
@@ -283,6 +290,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/acquaint-owl-carousel/public/js/acquaint-owl-carousel-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- actblue-contributions -->
|
||||
<script src="http://wp.lab/wp-content/plugins/actblue-contributions/build/actblue-contributions.js?ver=1.2.1"></script>
|
||||
|
||||
|
||||
<!-- activities -->
|
||||
<link rel="stylesheet" id="activities-public-css-css" href="http://wp.lab/wp-content/plugins/activities/public/css/activities-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/activities/public/js/activities-public.js?ver=1.0.2"></script>
|
||||
@@ -304,6 +315,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/activityhub/assets/js/activityhub.min.js?ver=2.0.1"></script>
|
||||
|
||||
|
||||
<!-- activitytime -->
|
||||
<link rel="stylesheet" id="activitytime-css" href="http://wp.lab/wp-content/plugins/activitytime/public/css/activitytime-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/activitytime/public/js/activitytime-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- acurax-social-media-widget -->
|
||||
<link rel="stylesheet" id="acx_smw_widget_style-css" href="http://wp.lab/wp-content/plugins/acurax-social-media-widget/css/style.css?v=3.2.5&ver=4.8.3" type="text/css" media="all">
|
||||
|
||||
@@ -347,6 +363,19 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/addons-for-beaver-builder/assets/js/labb-frontend.min.js?ver=1.4.1"></script>
|
||||
|
||||
|
||||
<!-- addons-for-divi -->
|
||||
<link rel="stylesheet" id="ba-module-core-css" href="http://wp.lab/wp-content/plugins/addons-for-divi/assets/css/core.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ba-module-plugins-css" href="http://wp.lab/wp-content/plugins/addons-for-divi/assets/vendor/tippy.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ba-slick-css" href="http://wp.lab/wp-content/plugins/addons-for-divi/assets/vendor/slick/slick.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="ba-slick-theme-css" href="http://wp.lab/wp-content/plugins/addons-for-divi/assets/vendor/slick/slick-theme.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/addons-for-divi/assets/vendor/popper.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/addons-for-divi/assets/vendor/tippy.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/addons-for-divi/assets/vendor/slick/slick.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/addons-for-divi/assets/vendor/event_move.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/addons-for-divi/assets/vendor/twentytwenty.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/addons-for-divi/assets/js/main.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- addons-for-visual-composer -->
|
||||
<link rel="stylesheet" id="lvca-accordion-css" href="http://wp.lab/wp-content/plugins/addons-for-visual-composer/includes/addons/accordion/css/style.css?ver=1.7.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="lvca-slick-css" href="http://wp.lab/wp-content/plugins/addons-for-visual-composer/assets/css/slick.css?ver=1.7.1" type="text/css" media="all">
|
||||
@@ -543,6 +572,8 @@
|
||||
|
||||
<!-- advanced-sermons -->
|
||||
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/asp-frontend.css?ver=1.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/css/asp-frontend.css?ver=1.8" media="all">
|
||||
<link rel="stylesheet" id="asp-media-player-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/media-player/asp-media-player.css?ver=1.8" media="all">
|
||||
|
||||
|
||||
<!-- advanced-spoiler -->
|
||||
@@ -585,6 +616,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advert/js/advertfe.min.js?ver=1.0.5"></script>
|
||||
|
||||
|
||||
<!-- advertisement-space -->
|
||||
<link rel="stylesheet" id="advertisement-space-css" href="http://wp.lab/wp-content/plugins/advertisement-space/public/css/advertisement-space-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/advertisement-space/public/js/advertisement-space-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- advice-box -->
|
||||
<link rel="stylesheet" id="advice-box-css" href="http://wp.lab/wp-content/plugins/advice-box/public/css/advice-box-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advice-box/public/js/advice-box-public.js?ver=1.0.2"></script>
|
||||
@@ -1036,6 +1072,10 @@
|
||||
<link rel="stylesheet" id="appointments-css" href="http://wp.lab/wp-content/plugins/appointments/css/front.css?ver=2.2.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- appsy -->
|
||||
<link rel="stylesheet" id="appsy-css" href="http://wp.lab/wp-content/plugins/appsy/public/css/appsy-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- appypie-web-to-app -->
|
||||
<link rel="stylesheet" id="appypie-web-to-app-css" href="http://wp.lab/wp-content/plugins/appypie-web-to-app/public/css/appypie-web-to-app-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/appypie-web-to-app/public/js/appypie-web-to-app-public.js?ver=1.0.0"></script>
|
||||
@@ -1164,6 +1204,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/aspen-to-weaver-xtreme/js/aspen2wx_jslib.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- assistant7 -->
|
||||
<link rel="stylesheet" id="assistant7-css" href="http://wp.lab/wp-content/plugins/assistant7/public/css/assistant7-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/assistant7/public/js/assistant7-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- astra-widgets -->
|
||||
<link rel="stylesheet" id="astra-widgets-style-css" href="http://wp.lab/wp-content/plugins/astra-widgets/assets/css/unminified/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -1938,6 +1983,11 @@
|
||||
<link rel="stylesheet" id="bdwpw-public-css-css" href="http://wp.lab/wp-content/plugins/blog-designer-wp-post-and-widget/assets/css/bdwpw-public.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- blog-sidebar-widget -->
|
||||
<link rel="stylesheet" id="blog-sidebar-widget-css" href="http://wp.lab/wp-content/plugins/blog-sidebar-widget/public/css/blog-sidebar-widget-public.min.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/blog-sidebar-widget/public/js/blog-sidebar-widget-public.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- bloks-stripe-donation -->
|
||||
<link rel="stylesheet" id="blope-reset-css-css" href="http://wp.lab/wp-content/plugins/bloks-stripe-donation/assets/css/reset.min.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="blope-animate-css-css" href="http://wp.lab/wp-content/plugins/bloks-stripe-donation/assets/css/animate.min.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -2296,6 +2346,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/bp-profile-field-repeater/assets/js/custom-script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- bp-star-ratings -->
|
||||
<link rel="stylesheet" id="bepassive_plugin_bpsr-css" href="http://wp.lab/wp-content/plugins/bp-star-ratings/assets/css/css.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/bp-star-ratings/assets/js/js.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- bp-user-to-do-list -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bp-user-to-do-list/assets/js/tempust.js?ver=1.0.3"></script>
|
||||
|
||||
@@ -2353,6 +2408,10 @@
|
||||
<link rel="stylesheet" id="brokebot-css" href="http://wp.lab/wp-content/plugins/brokebot/public/css/brokebot-public.css?ver=1.0.8" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- brosix-live-chat -->
|
||||
<link rel="stylesheet" id="brosix-livechat-css" href="http://wp.lab/wp-content/plugins/brosix-live-chat/public/css/brosix-livechat-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- browser-scroll-bar -->
|
||||
<link rel="stylesheet" id="bsb-plugin-css" href="http://wp.lab/wp-content/plugins/browser-scroll-bar/public/css/bsb-plugin-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/browser-scroll-bar/public/js/bsb-plugin-public.js?ver=1.0.0"></script>
|
||||
@@ -2532,6 +2591,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bxslider-wp/js/initialize.js?ver=2.0.0"></script>
|
||||
|
||||
|
||||
<!-- bykea-instant-delivery -->
|
||||
<script src="http://wp.lab/wp-content/plugins/bykea-instant-delivery/js/client-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- c9-variables -->
|
||||
<link rel="stylesheet" id="c9-variables-css" href="http://wp.lab/wp-content/plugins/c9-variables/public/css/c9-variables-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/c9-variables/public/js/c9-variables-public.js?ver=1.0.0"></script>
|
||||
@@ -2548,6 +2611,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cactus-masonry-plus/cactusMasonryPlus.min.js?ver=0.0.5.5"></script>
|
||||
|
||||
|
||||
<!-- calculate-bmr -->
|
||||
<link rel="stylesheet" id="calculate-bmr-css" href="http://wp.lab/wp-content/plugins/calculate-bmr/public/css/calculate-bmr-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/calculate-bmr/public/js/calculate-bmr-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- calculation-shipping -->
|
||||
<link rel="stylesheet" id="front_calship.css-css" href="http://wp.lab/wp-content/plugins/calculation-shipping/css/front_calship.css?ver=0.2.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/calculation-shipping/js/front_calship.js?ver=0.2.0"></script>
|
||||
@@ -2676,6 +2744,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cardojo-lite/assets/js/cardojo-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- cardznet -->
|
||||
<link rel="stylesheet" id="cardznet-user-css" href="http://wp.lab/wp-content/plugins/cardznet/css/cardznet.css?ver=1.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/cardznet/js/cardznet.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- carousel-for-awesome-filterable-portfolio -->
|
||||
<link rel="stylesheet" id="custom-css" href="http://wp.lab/wp-content/plugins/carousel-for-awesome-filterable-portfolio/resources/css/custom.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="elastislide-css" href="http://wp.lab/wp-content/plugins/carousel-for-awesome-filterable-portfolio/resources/css/elastislide.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -2700,6 +2773,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/cashback-coupon-lite/public/js/cashback-coupon-lite-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cashtomer -->
|
||||
<link rel="stylesheet" id="cashtomer-css" href="http://wp.lab/wp-content/plugins/cashtomer/public/css/cashtomer-points-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/cashtomer/public/js/cashtomer-points-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- catch-breadcrumb -->
|
||||
<link rel="stylesheet" id="catch-breadcrumb-css" href="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/css/catch-breadcrumb-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/js/catch-breadcrumb-public.js?ver=1.0.0"></script>
|
||||
@@ -3055,6 +3133,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chat-bee/assets/js/base.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- chat-with-me-on-zalo -->
|
||||
<link rel="stylesheet" id="cwmoz-style-css" href="http://wp.lab/wp-content/plugins/chat-with-me-on-zalo/assets/css/style-2.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- chatbot-for-facebook -->
|
||||
<link rel="stylesheet" id="facebook-chatbot-css" href="http://wp.lab/wp-content/plugins/chatbot-for-facebook/public/css/facebook-chatbot-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chatbot-for-facebook/public/js/facebook-chatbot-public.js?ver=1.0.0"></script>
|
||||
@@ -3364,6 +3446,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/codeprey-mi-video-popup/inc/placeholder.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- codexin-image-gallery -->
|
||||
<link rel="stylesheet" id="cdxn-ig-vendorcss-css" href="http://wp.lab/wp-content/plugins/codexin-image-gallery/assets/vendor/styles/plugins.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="codexin-image-gallery-css" href="http://wp.lab/wp-content/plugins/codexin-image-gallery/assets/styles/cdxn-ig.min.css?ver=1.0.1" media="all">
|
||||
|
||||
|
||||
<!-- codup-woocommerce-custom-fields -->
|
||||
<link rel="stylesheet" id="Codup Woocommerce Custom Fields- codupads-styles-css" href="http://wp.lab/wp-content/plugins/codup-woocommerce-custom-fields/lib/codupads/styles/style.css?ver=1.1.1.7" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/codup-woocommerce-custom-fields/lib/codupads/scripts/adscript.js?ver=1.1.1.7"></script>
|
||||
@@ -3393,6 +3480,21 @@
|
||||
<link rel="stylesheet" id="supsystic-for-all-admin-scs-css" href="http://wp.lab/wp-content/plugins/coming-soon-by-supsystic/css/supsystic-for-all-admin.css?ver=1.3.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- coming-soon-by-taspristudio -->
|
||||
<link rel="stylesheet" id="csts-bootstrap-css" href="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="csts-style-css" href="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/css/style.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="csts-responsive-css" href="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/css/responsive.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/popper.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/parallax.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/jquery.countdown.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-by-taspristudio/public/js/csts-public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- coming-soon-for-woocommerce -->
|
||||
<script src="http://wp.lab/wp-content/plugins/coming-soon-for-woocommerce/assets/js/coming-soon-wc.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- comma-diacritics -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/comma-diacritics/js/commadias.plugin.js?ver=0.3"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/comma-diacritics/js/comma_dias_check.js?ver=0.3"></script>
|
||||
@@ -3479,6 +3581,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- conditional-taxonomy-option -->
|
||||
<link rel="stylesheet" id="cto-acf-css" href="http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/css/cto-acf-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/js/cto-acf-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- conformis-cookie-banner -->
|
||||
<script src="http://wp.lab/wp-content/plugins/conformis-cookie-banner/js/main.js?ver=0.1.0"></script>
|
||||
<link rel="stylesheet" id="conformis_style-css" href="http://wp.lab/wp-content/plugins/conformis-cookie-banner/css/main.css?ver=0.1.0" media="all">
|
||||
@@ -4030,6 +4137,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-facebook-feed/js/cff-scripts.js?ver=2.4.6"></script>
|
||||
|
||||
|
||||
<!-- custom-job-fields-for-wp-job-manager -->
|
||||
<link rel="stylesheet" id="cfwjm-css" href="http://wp.lab/wp-content/plugins/custom-job-fields-for-wp-job-manager/public/css/cfwjm-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/custom-job-fields-for-wp-job-manager/public/js/cfwjm-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- custom-map-for-real-estate -->
|
||||
<link rel="stylesheet" id="maps-points-css" href="http://wp.lab/wp-content/plugins/custom-map-for-real-estate/frontend/css/maps_points.css?ver=1.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-map-for-real-estate/frontend/js/maps_points.js?ver=1.1.1"></script>
|
||||
@@ -4122,6 +4234,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dakpion/public/js/dakpion-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- darklup-lite-wp-dark-mode -->
|
||||
<link rel="stylesheet" id="darkluplite-style-css" href="http://wp.lab/wp-content/plugins/darklup-lite-wp-dark-mode/assets/css/darkluplite-style.css?ver=1.0.0" media="">
|
||||
|
||||
|
||||
<!-- darkmode -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/darkmode/js/darkmode.min.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -4231,6 +4347,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dima-take-action/public/js/dima-take-action-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- direct-checkout -->
|
||||
<link rel="stylesheet" id="direct-checkout-css" href="http://wp.lab/wp-content/plugins/direct-checkout/public/css/direct-checkout-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/direct-checkout/public/js/direct-checkout-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- disable-right-click-images -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/disable-right-click-images/script.js?ver=1.0.1"></script>
|
||||
|
||||
@@ -4467,9 +4588,16 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-digital-downloads/assets/js/edd-ajax.min.js?ver=2.8.14"></script>
|
||||
|
||||
|
||||
<!-- easy-embed-for-social-media -->
|
||||
<link rel="stylesheet" id="easy-embed-for-Social-Media-css" href="http://wp.lab/wp-content/plugins/easy-embed-for-social-media/public/css/easy-embed-for-Social-Media-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-embed-for-social-media/public/js/easy-embed-for-Social-Media-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- easy-embed-for-youtube-wall -->
|
||||
<link rel="stylesheet" id="eefy-youtube-api-css" href="http://wp.lab/wp-content/plugins/easy-embed-for-youtube-wall/public/css/eefy-youtube-api-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-embed-for-youtube-wall/public/js/eefy-youtube-api-public.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="eefylite-youtube-api-css" href="http://wp.lab/wp-content/plugins/easy-embed-for-youtube-wall/public/css/eefylite-youtube-api-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-embed-for-youtube-wall/public/js/eefylite-youtube-api-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- easy-facebook-likebox -->
|
||||
@@ -4617,6 +4745,11 @@
|
||||
<script type="text/javascript" src="//wp.lab/wp-content/plugins/easy-social-sharing/assets/js/frontend/easy-social-sharing.min.js?ver=1.3.0"></script>
|
||||
|
||||
|
||||
<!-- easy-store-vacation -->
|
||||
<link rel="stylesheet" id="easy_store_vacation-css" href="http://wp.lab/wp-content/plugins/easy-store-vacation/public/css/easy_store_vacation-public.css?ver=1.1.5" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-store-vacation/public/js/easy_store_vacation-public.js?ver=1.1.5"></script>
|
||||
|
||||
|
||||
<!-- easy-swipebox -->
|
||||
<link rel="stylesheet" id="easy-swipebox-css" href="http://wp.lab/wp-content/plugins/easy-swipebox/public/css/swipebox.min.css?ver=1.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-swipebox/public/js/jquery.swipebox.min.js?ver=1.1.0"></script>
|
||||
@@ -4669,6 +4802,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-youtube-gallery/assets/lib/magnific-popup/jquery.magnific-popup.min.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- easyappointments -->
|
||||
<link rel="stylesheet" id="easyappointments-css" href="http://wp.lab/wp-content/plugins/easyappointments/public/css/easyappointments-public.css?ver=1.3.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/easyappointments/public/js/easyappointments-public.js?ver=1.3.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/easyappointments/public/js/easyappointments-iframe.js?ver=1.3.0"></script>
|
||||
|
||||
|
||||
<!-- easycoder -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easycoder/easycoder-min.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -4700,6 +4839,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easytimetable-responsive-schedule-management-system/public/js/dist/html2canvas.svg.min.js?ver=1.4.3"></script>
|
||||
|
||||
|
||||
<!-- ebook-woohook -->
|
||||
<link rel="stylesheet" id="epubsystems_woo-css" href="http://wp.lab/wp-content/plugins/ebook-woohook/public/css/epubsystems_woo-public.css?ver=4.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/ebook-woohook/public/js/epubsystems_woo-public.js?ver=4.0.0"></script>
|
||||
|
||||
|
||||
<!-- echelon-so -->
|
||||
<link rel="stylesheet" id="echelonso-utilities-css" href="http://wp.lab/wp-content/plugins/echelon-so/inc/utilities.css?ver=1.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/animated-gradients/inc/granim.min.js?ver=1.1.1"></script>
|
||||
@@ -4835,6 +4979,11 @@
|
||||
<link rel="stylesheet" id="elementary-frontend-ui-css" href="http://wp.lab/wp-content/plugins/elementary/assets/stylesheet/elementary-frontend.css?ver=1.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- elementinvader -->
|
||||
<link rel="stylesheet" id="elementinvader-css" href="http://wp.lab/wp-content/plugins/elementinvader/public/css/elementinvader-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/elementinvader/public/js/elementinvader-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- elementor -->
|
||||
<link rel='stylesheet' id='elementor-icons-css' href='http://wp.lab/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=1.7.11' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='elementor-animations-css' href='http://wp.lab/wp-content/plugins/elementor/assets/css/animations.min.css?ver=1.7.11' type='text/css' media='all' />
|
||||
@@ -4954,6 +5103,40 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/envator/assets/js/cssParser.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- envychimp -->
|
||||
<link rel="stylesheet" id="envy-chimp-font-family-css" href="http://wp.lab/wp-content/plugins/envychimp/public/css/envy-chimp-font-family.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-chimp-font-awesome-css" href="http://wp.lab/wp-content/plugins/envychimp/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-chimp-main-css" href="http://wp.lab/wp-content/plugins/envychimp/public/css/envy-chimp-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-chimp-responsive-css" href="http://wp.lab/wp-content/plugins/envychimp/public/css/envy-chimp-responsive.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/envychimp/public/js/envy-chimp-public.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/envychimp/public/js/ajaxChimp.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- envynotifs -->
|
||||
<link rel="stylesheet" id="envy-notifs-font-awesome-css" href="http://wp.lab/wp-content/plugins/envynotifs/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-notifs-bootstrap-css" href="http://wp.lab/wp-content/plugins/envynotifs/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-notifs-main-css-css" href="http://wp.lab/wp-content/plugins/envynotifs/public/css/envy-notifs-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/envynotifs/public/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/envynotifs/public/js/magnific-popup.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/envynotifs/public/js/parallax.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/envynotifs/public/js/multi-countdown.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/envynotifs/public/js/envy-notifs-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- envypopup -->
|
||||
<link rel="stylesheet" id="envy-popup-bootstrap-css" href="http://wp.lab/wp-content/plugins/envypopup/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-popup-main-css-css" href="http://wp.lab/wp-content/plugins/envypopup/public/css/envy-popup-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/envypopup/public/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/envypopup/public/js/envy-popup-countdown.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/envypopup/public/js/jquery.cookie.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- envypreloader -->
|
||||
<link rel="stylesheet" id="envy-preloader-main-css" href="http://wp.lab/wp-content/plugins/envypreloader/public/css/envy-preloader-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/envypreloader/public/js/jquery.cookie.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/envypreloader/public/js/envy-preloader-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- eorzea-time -->
|
||||
<link rel="stylesheet" id="eorzea-time-css" href="http://wp.lab/wp-content/plugins/eorzea-time/css/eorzea.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/eorzea-time/js/eorzea.js?ver=1.0.0"></script>
|
||||
@@ -4968,11 +5151,20 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/epdf-support-elements-pdf-creator-addon-for-elementor-lite/public/js/ciepdf-elementor-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ephoto-plugin -->
|
||||
<link rel="stylesheet" id="ephoto-public-style-css" href="http://wp.lab/wp-content/plugins/ephoto-plugin/dist/public.css?ver=3.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/ephoto-plugin/dist/public.js?ver=3.1.0"></script>
|
||||
|
||||
|
||||
<!-- epic-spinners -->
|
||||
<link rel="stylesheet" id="Epic Spinners for Wordpress-css" href="http://wp.lab/wp-content/plugins/epic-spinners/public/css/epic-spinners-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/epic-spinners/public/js/epic-spinners-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- epic-tap-widgets -->
|
||||
<link rel="stylesheet" id="epic-tap-widgets-css" href="http://wp.lab/wp-content/plugins/epic-tap-widgets/public/css/epic-tap-widgets-public.min.css?ver=1.2.2" media="all">
|
||||
|
||||
|
||||
<!-- epoch -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/epoch//assets/js/front/handlebars.js?ver=1.0.14"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/epoch//assets/js/front/epoch.min.js?ver=1.0.14"></script>
|
||||
@@ -5401,6 +5593,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/faq-cooper/public/js/faq-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- faq-schema-block-to-accordion -->
|
||||
<link rel="stylesheet" id="YSFA-css" href="http://wp.lab/wp-content/plugins/faq-schema-block-to-accordion/assets/css/style.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/faq-schema-block-to-accordion/assets/js/YSFA-JS.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- faq-schema-for-pages-and-posts -->
|
||||
<link rel="stylesheet" id="wp-faq-schema-jquery-ui-css" href="http://wp.lab/wp-content/plugins/faq-schema-for-pages-and-posts//css/jquery-ui.css?ver=2.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/faq-schema-for-pages-and-posts//js/frontend.js?ver=2.0.0"></script>
|
||||
@@ -5489,6 +5686,11 @@
|
||||
<link rel="stylesheet" id="feedzy-rss-feeds-css" href="http://wp.lab/wp-content/plugins/feedzy-rss-feeds/css/feedzy-rss-feeds.css?ver=3.2.6" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- feename -->
|
||||
<link rel="stylesheet" id="fee-management-css" href="http://wp.lab/wp-content/plugins/feename/public/css/fee-management-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/feename/public/js/fee-management-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- fibotalk-live-chat -->
|
||||
<link rel="stylesheet" id="fibotalk-live-chat-css" href="http://wp.lab/wp-content/plugins/fibotalk-live-chat/public/css/fibotalk-live-chat-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fibotalk-live-chat/public/js/fibotalk-live-chat-public.js?ver=1.0.0"></script>
|
||||
@@ -5760,6 +5962,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/follow-tags/assets/js/nfc_scripts.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- fonk-slack-notifications -->
|
||||
<link rel="stylesheet" id="fonk-slack-notification-css" href="http://wp.lab/wp-content/plugins/fonk-slack-notifications/public/css/fonk-slack-notification-public.css?ver=1.0.4" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/fonk-slack-notifications/public/js/fonk-slack-notification-public.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- font -->
|
||||
<link rel="stylesheet" id="fontsforwebstyle-css" href="http://wp.lab/wp-content/plugins/font/css/fontsforwebstyle.css?pver=7.5.1&ver=4.9.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/font/js/jquery.fontPlugin.js?pver=7.5.1&ver=4.9.1"></script>
|
||||
@@ -5816,6 +6023,9 @@
|
||||
<link rel="stylesheet" id="anwpfl_flags_16-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/world-flags-sprite/stylesheets/flags16.css?ver=0.4.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/js/anwpfl-public.min.js?ver=0.4.2"></script>
|
||||
<link rel="stylesheet" id="anwpfl_styles-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles-compatible.css?ver=0.4.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="anwpfl_styles-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles.min.css?ver=0.4.2" media="all">
|
||||
<link rel="stylesheet" id="modaal-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.css?ver=0.4.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.js?ver=0.4.2"></script>
|
||||
|
||||
|
||||
<!-- football-match-tracker -->
|
||||
@@ -6090,6 +6300,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/game-showcase/public/js/game-showcase-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- gamification-email-collector-mikehit -->
|
||||
<link rel="stylesheet" id="mikehit-plugin-css" href="http://wp.lab/wp-content/plugins/gamification-email-collector-mikehit/public/css/mikehit-plugin-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/gamification-email-collector-mikehit/public/js/mikehit-plugin-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- gaming-delivery-network -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gaming-delivery-network/gdninit.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -6971,6 +7186,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- hk-button-contact -->
|
||||
<link rel="stylesheet" id="button-contact-css" href="http://wp.lab/wp-content/plugins/hk-button-contact/css/button-contact.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- hm-product-catalog -->
|
||||
<link rel="stylesheet" id="wphpc-front-style-w3-css" href="http://wp.lab/wp-content/plugins/hm-product-catalog/assets/css/wphpc-w3.css?ver=1.0" type="text/css" media="">
|
||||
<link rel="stylesheet" id="wphpc-front-style-css" href="http://wp.lab/wp-content/plugins/hm-product-catalog/assets/css/wphpc-front-style.css?ver=1.0" type="text/css" media="">
|
||||
@@ -7037,6 +7256,12 @@
|
||||
<link rel="stylesheet" id="hpr-style-css" href="http://wp.lab/wp-content/plugins/hotline-phone-ring/assets/css/app.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- hotspot -->
|
||||
<link rel="stylesheet" id="xolo-hotspot-public-css" href="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/css/xolo-hotspot-public.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/jquery.powertip.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/xolo-hotspot-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- hover-effects -->
|
||||
<link rel="stylesheet" id="hover-effects-css" href="http://wp.lab/wp-content/plugins/hover-effects/asset/css/hover.css?ver=2.1" type="text/css" media="all">
|
||||
|
||||
@@ -7313,6 +7538,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/immonex-kickstart-team/skins/default/js/index.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- import-vk-comments -->
|
||||
<link rel="stylesheet" id="import-vk-comments-css" href="http://wp.lab/wp-content/plugins/import-vk-comments/public/css/import-vk-comments-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/import-vk-comments/public/js/import-vk-comments-public.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>
|
||||
|
||||
@@ -7544,6 +7774,7 @@
|
||||
<link rel="stylesheet" id="offline-theme-css" href="http://wp.lab/wp-content/plugins/internet-connection-status/assets/css/theme/offline-theme-default.css?ver=1.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/internet-connection-status/assets/js/offline.min.js?ver=1.1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/internet-connection-status/assets/js/internet-connection.js?ver=1.1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/internet-connection-status/assets/js/offline.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- invitations-for-slack -->
|
||||
@@ -7870,6 +8101,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kanzu-support-desk/assets/js/ksd-public.js?ver=2.4.5"></script>
|
||||
|
||||
|
||||
<!-- kata-plus -->
|
||||
<link rel="stylesheet" id="grid-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/libraries/grid.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="kata-plus-theme-styles-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/theme-styles.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="kata-plus-sticky-box-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/sticky-box.css?ver=1.0.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/sticky-box.js?ver=1.0.3"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/kata-plus-inline.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- katalyst-video-plus -->
|
||||
<link rel="stylesheet" id="katalyst-video-plus-css" href="http://wp.lab/wp-content/plugins/katalyst-video-plus/assets/css/kvp.css?ver=3.2.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/katalyst-video-plus/assets/js/kvp.js?ver=3.2.1"></script>
|
||||
@@ -8214,6 +8453,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lead-magnets-by-contentupgrademe/public/js/contentupgrade-me.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- leadconnector -->
|
||||
<link rel="stylesheet" id="LeadConnector-css" href="http://wp.lab/wp-content/plugins/leadconnector/public/css/lc-public.css?ver=0.2.0" media="all">
|
||||
|
||||
|
||||
<!-- leaddevs-chatbot -->
|
||||
<link rel="stylesheet" id="facebook-messenger-bot-css" href="http://wp.lab/wp-content/plugins/leaddevs-chatbot/src/public/css/facebook-messenger-live-chat.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/leaddevs-chatbot/src/public/js/facebook-messenger-live-chat.js?ver=1.0.0"></script>
|
||||
@@ -8307,6 +8550,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/librevideojs-html5-player/librevideojs/js/cliplibrejs.dev.js?ver=1.2.3"></script>
|
||||
|
||||
|
||||
<!-- lifepress -->
|
||||
<link rel="stylesheet" id="jquery-ui-css-css" href="http://wp.lab/wp-content/plugins/lifepress/assets/libs/jquery-ui/jquery-ui.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- lift-trail-status -->
|
||||
<script src="http://wp.lab/wp-content/plugins/lift-trail-status/assets/js/mltsscript.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -8487,6 +8734,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/livetwitch/public/js/twitch-public.js?ver=0.0.2"></script>
|
||||
|
||||
|
||||
<!-- llc-tax -->
|
||||
<link rel="stylesheet" id="llc_main-css" href="http://wp.lab/wp-content/plugins/llc-tax/assets/css/llc_main.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/llc-tax/assets/js/llc_main.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- lnd-for-wp -->
|
||||
<link rel="stylesheet" id="lnd-for-wp-css" href="http://wp.lab/wp-content/plugins/lnd-for-wp/public/css/lnd-for-wp-public.css?ver=0.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lnd-for-wp/public/js/lnd-for-wp-public.js?ver=0.1.0"></script>
|
||||
@@ -9042,6 +9294,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/master-popups-lite/assets/public/js/master-popups.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- master-qr-generator -->
|
||||
<script src="http://wp.lab/wp-content/plugins/master-qr-generator/public/js/qrcode.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- master-slider -->
|
||||
<link rel="stylesheet" id="msl-main-css" href="http://wp.lab/wp-content/plugins/master-slider/public/assets/css/masterslider.main.css?ver=3.4.1" type="text/css" media="all">
|
||||
|
||||
@@ -9731,6 +9987,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mtpl-insurance/public/js/sljar_mtpl_public_js.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- muc-luc -->
|
||||
<link rel="stylesheet" id="mucluc-tocbot-css-css" href="http://wp.lab/wp-content/plugins/muc-luc/menutoc/mucluc-tocbot.css?ver=1.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/muc-luc/menutoc/mucluc-tocbot.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- multi-image-slider-widget -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/multi-image-slider-widget/assets/js/jquery.sliderPro.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/multi-image-slider-widget/assets/js/lightbox.min.js?ver=1.0"></script>
|
||||
@@ -10172,6 +10433,8 @@
|
||||
<!-- notibar -->
|
||||
<link rel="stylesheet" id="njt-nofi-css" href="http://wp.lab/wp-content/plugins/notibar/assets/home/css/home-notification-bar.css?ver=1.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/notibar/assets/home/js/home-notification-bar.js?ver=1.2"></script>
|
||||
<link rel="stylesheet" id="njt-nofi-css" href="http://wp.lab/wp-content/plugins/notibar/assets/frontend/css/notibar.css?ver=1.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/notibar/assets/frontend/js/notibar.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- notification-bar-on-footer -->
|
||||
@@ -10314,6 +10577,7 @@
|
||||
<link rel="stylesheet" id="flower-storefront-css" href="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/css/florist-one-flower-delivery-public.min.css?ver=1.9.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-main.min.js?ver=1.9.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/florist-one-flower-delivery-public.min.js?ver=1.9.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-condolences.min.js?ver=1.9.1"></script>
|
||||
|
||||
|
||||
<!-- obituary-central-newspaper-obituary-editor -->
|
||||
@@ -10567,6 +10831,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/osmapper/assets/js/ba_map_renderer.js?ver=1.3.2"></script>
|
||||
|
||||
|
||||
<!-- osom-modal-login -->
|
||||
<script src="http://wp.lab/wp-content/plugins/osom-modal-login//assets/js/osom-modal-login.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- ot-flatsome-vertical-menu -->
|
||||
<link rel="stylesheet" id="ot-vertical-menu-css" href="http://wp.lab/wp-content/plugins/ot-flatsome-vertical-menu/assets/css/ot-vertical-menu.css?ver=1.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ot-flatsome-vertical-menu/assets/js/ot-vertical-menu.js?ver=1.1.0"></script>
|
||||
@@ -10600,6 +10868,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ovic-addon-toolkit/assets/js/ovic-core.min.js?ver=1.2.4"></script>
|
||||
|
||||
|
||||
<!-- ovulation-calculator -->
|
||||
<script src="http://wp.lab/wp-content/plugins/ovulation-calculator/js/ovulation_calculator_front.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- oxygen-visual-site-builder -->
|
||||
<link rel="stylesheet" id="oxygen-css" href="http://wp.lab/wp-content/plugins/oxygen-visual-site-builder/component-framework/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -11211,6 +11483,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/popup-scroll/public/assets/js/public.js?ver=2.0.2"></script>
|
||||
|
||||
|
||||
<!-- popup-tb -->
|
||||
<link rel="stylesheet" id="popuptb-css-css" href="http://wp.lab/wp-content/plugins/popup-tb/css/popuptb-style.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/popup-tb/js/popuptb-js.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- popup4phone -->
|
||||
<link rel="stylesheet" id="popup4phone-popup-css" href="http://wp.lab/wp-content/plugins/popup4phone/css/popup4phone.css?ver=1.2.4" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="popup4phone-popup_bootstrap-partial-css" href="http://wp.lab/wp-content/plugins/popup4phone/vendor/bootstrap-partial/bootstrap-partial.css?ver=1.2.4" type="text/css" media="all">
|
||||
@@ -11571,6 +11848,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-search/assets/js/frontend.js?ver=0.0.2"></script>
|
||||
|
||||
|
||||
<!-- pretty-opt-in-lite -->
|
||||
<link rel="stylesheet" id="pretty-front-style-css" href="http://wp.lab/wp-content/plugins/pretty-opt-in-lite/assets/css/front.css?ver=1.0.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/pretty-opt-in-lite//assets/js/library/ionicons.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pretty-opt-in-lite/assets/js/locker-front.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- pretty-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/charming.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/TweenMax.min.js?ver=1.0.0"></script>
|
||||
@@ -11764,6 +12047,11 @@
|
||||
<link rel="stylesheet" id="proof-factor-wp-css" href="http://wp.lab/wp-content/plugins/proof-factor-social-proof-notifications/public/css/proof-factor-wp-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- property-permissions-for-realhomes -->
|
||||
<link rel="stylesheet" id="property-permissions-for-realhomes-css" href="http://wp.lab/wp-content/plugins/property-permissions-for-realhomes/public/css/property-permissions-for-realhomes-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/property-permissions-for-realhomes/public/js/property-permissions-for-realhomes-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- propertyhive -->
|
||||
<link rel="stylesheet" id="propertyhive-general-css" href="//wp.lab/wp-content/plugins/propertyhive/assets/css/propertyhive.css?ver=1.4.13" type="text/css" media="all">
|
||||
<script type="text/javascript" src="//wp.lab/wp-content/plugins/propertyhive/assets/js/frontend/search.js?ver=1.4.13"></script>
|
||||
@@ -11861,6 +12149,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/pyxis-mobile-menu/assets/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- q-events-light -->
|
||||
<link rel="stylesheet" id="events-css" href="http://wp.lab/wp-content/plugins/q-events-light/public/css/events-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/q-events-light/public/js/events-public.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>
|
||||
|
||||
@@ -13003,6 +13296,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seatgeek-affiliate-tickets/public/js/seatgeek-affiliate-tickets-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- sebastian -->
|
||||
<link rel="stylesheet" id="sebastian-css" href="http://wp.lab/wp-content/plugins/sebastian/public/css/sebastian-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sebastian/public/js/sebastian-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- section-block -->
|
||||
<link rel="stylesheet" id="wdp/section-block-css" href="http://wp.lab/wp-content/plugins/section-block/build/block.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/section-block/build/background-position-events.min.js?ver=1.0.0"></script>
|
||||
@@ -13227,6 +13525,10 @@
|
||||
<link rel="stylesheet" id="share-monkey-socicon-css" href="http://wp.lab/wp-content/plugins/share-monkey//shared/socicon/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- share-mxh -->
|
||||
<link rel="stylesheet" id="sharemxh-stylecss-css" href="http://wp.lab/wp-content/plugins/share-mxh/css/sharemxh-style.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- share-this-image -->
|
||||
<link rel="stylesheet" id="sti-style-css" href="http://wp.lab/wp-content/plugins/share-this-image/assets/css/sti.css?ver=1.04" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/share-this-image/assets/js/sti.js?ver=1.04"></script>
|
||||
@@ -13291,6 +13593,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shiftnav-responsive-mobile-menu/assets/js/shiftnav.min.js?ver=1.6.1.2"></script>
|
||||
|
||||
|
||||
<!-- ship-to-multiple-addresses -->
|
||||
<link rel="stylesheet" id="ship_to_multiple_addresses-css" href="http://wp.lab/wp-content/plugins/ship-to-multiple-addresses/public/css/ship_to_multiple_addresses-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/ship-to-multiple-addresses/public/js/ship_to_multiple_addresses-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- shlwhenneed -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shlwhenneed/shlwhenneed.js?ver=1.0.5"></script>
|
||||
|
||||
@@ -13328,6 +13635,11 @@
|
||||
<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-bbpress -->
|
||||
<link rel="stylesheet" id="wireaccess-shortcodes_for_bbpress-css" href="http://wp.lab/wp-content/plugins/shortcodes-for-bbpress/inc/frontend/css/wireaccess-shortcodes_for_bbpress-frontend.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/shortcodes-for-bbpress/inc/frontend/js/wireaccess-shortcodes_for_bbpress-frontend.js?ver=1.0.0"></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">
|
||||
|
||||
@@ -13375,6 +13687,13 @@
|
||||
<link rel="stylesheet" id="atw-posts-style-sheet-css" href="http://wp.lab/wp-content/plugins/show-posts/atw-posts-style.min.css?ver=1.3.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- show-product-variations-for-woocommerce -->
|
||||
<link rel="stylesheet" id="wsv-css" href="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/wsv-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wsv-dataTables-min-css" href="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/datatables.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/datatables.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/wsv-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- show-remote-ip -->
|
||||
<link rel="stylesheet" id="show-remote-ip-css" href="http://wp.lab/wp-content/plugins/show-remote-ip/public/css/show-remote-ip-public.css?ver=0.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/show-remote-ip/public/js/show-remote-ip-public.js?ver=0.0.1"></script>
|
||||
@@ -13392,6 +13711,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/shutter-reloaded//shutter-reloaded.js?ver=2.5" type="text/javascript"></script>
|
||||
|
||||
|
||||
<!-- shutterstock -->
|
||||
<link rel="stylesheet" id="shutterstock-css" href="http://wp.lab/wp-content/plugins/shutterstock/public/css/shutterstock-public.css?ver=1.1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/shutterstock/public/js/shutterstock-public.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- side-by-side -->
|
||||
<link rel="stylesheet" id="sideBySide-css-css" href="http://wp.lab/wp-content/plugins/side-by-side/style.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/side-by-side/script.min.js?ver=1.0.2"></script>
|
||||
@@ -13718,6 +14042,8 @@
|
||||
|
||||
<!-- simple-student-result -->
|
||||
<link rel="stylesheet" id="ssr_v_result_st-css" href="http://wp.lab/wp-content/plugins/simple-student-result/css/ssr_style.css?ver=1.6.4" type="text/css" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/simple-student-result/js/ssr_scripts.js?ver=1.6.4"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/simple-student-result/js/ssr_scripts_front.js?ver=1.6.4"></script>
|
||||
|
||||
|
||||
<!-- simple-support-system -->
|
||||
@@ -13748,6 +14074,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/simple-visitor-registration-form/public/js/simple-visitor-registration-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- simple-vote -->
|
||||
<link rel="stylesheet" id="simple-vote-css" href="http://wp.lab/wp-content/plugins/simple-vote/public/css/simple-vote-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/simple-vote/public/js/simple-vote-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- simple-word-count-and-reading-time -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-word-count-and-reading-time/js/swcart-scripts.js?ver=1.0"></script>
|
||||
|
||||
@@ -14083,6 +14414,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/smooth-scroll-by-wpos/assets/js/wp-ssbywpos-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- sms-for-woocommerce -->
|
||||
<link rel="stylesheet" id="wpsmstowoo-admin-bar-css" href="http://wp.lab/wp-content/plugins/sms-for-woocommerce/assets/css/admin-bar.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wpsmstowoo-subscribe-css" href="http://wp.lab/wp-content/plugins/sms-for-woocommerce/assets/css/subscribe.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- smslist -->
|
||||
<link rel="stylesheet" id="smslist-style-css-css" href="http://wp.lab/wp-content/plugins/smslist/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/smslist/js/numberAction.js?ver=1.0.0"></script>
|
||||
@@ -14569,6 +14905,12 @@
|
||||
<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">
|
||||
|
||||
|
||||
<!-- sticky-social-media-icons -->
|
||||
<link rel="stylesheet" id="sticky-social-media-icons-css" href="http://wp.lab/wp-content/plugins/sticky-social-media-icons/public/css/sticky-social-media-icons-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sticky-social-media-icons/public/js/sticky-social-media-icons-public.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="sticky-icons-display.css-css" href="http://wp.lab/wp-content/plugins/sticky-social-media-icons/assets/sticky-icons-display.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">
|
||||
@@ -14792,6 +15134,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/surplus-essentials/public/js/surplus-essentials-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- survey-maker -->
|
||||
<link rel="stylesheet" id="survey-maker-css" href="http://wp.lab/wp-content/plugins/survey-maker/public/css/survey-maker-public.css?ver=1.0.2" media="all">
|
||||
|
||||
|
||||
<!-- 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">
|
||||
@@ -14821,6 +15167,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/swap-google-font-display/public/js/google-font-display-swapper-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sweet-energy-efficiency -->
|
||||
<link rel="stylesheet" id="sweet-energy-efficiency-css" href="http://wp.lab/wp-content/plugins/sweet-energy-efficiency/public/css/sweet-energy-efficiency-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sweet-energy-efficiency/public/js/sweet-energy-efficiency-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- swfput -->
|
||||
<link rel="stylesheet" id="evhh5v_css-css" href="http://wp.lab/wp-content/plugins/swfput/evhh5v/evhh5v.css?ver=3.0.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/swfput/evhh5v/front.min.js?ver=3.0.8"></script>
|
||||
@@ -14902,6 +15253,11 @@
|
||||
<link rel="stylesheet" id="tablepress-default-css" href="http://wp.lab/wp-content/plugins/tablepress/css/default.min.css?ver=1.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- tablesome -->
|
||||
<link rel="stylesheet" id="tablesome-bundle-css" href="http://wp.lab/wp-content/plugins/tablesome/assets/bundles/public.bundle.css?ver=0.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/tablesome/assets/bundles/public.bundle.js?ver=0.0.1"></script>
|
||||
|
||||
|
||||
<!-- tabulate -->
|
||||
<link rel="stylesheet" id="tabulate-timepicker-css" href="http://wp.lab/wp-content/plugins/tabulate/assets/jquery-ui-timepicker-addon.css?ver=2.10.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="tabulate-leaflet-css" href="http://wp.lab/wp-content/plugins/tabulate/assets/leaflet/css/leaflet.css?ver=2.10.1" type="text/css" media="all">
|
||||
@@ -14923,6 +15279,19 @@
|
||||
<link rel="stylesheet" id="tag-groups-css-frontend-theme-css" href="http://wp.lab/wp-content/plugins/tag-groups/css/ui-gray/jquery-ui.theme.min.css?ver=0.34.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- tagembed-widget -->
|
||||
<link rel="stylesheet" id="font-awesome-min-style-css" href="http://wp.lab/wp-content/plugins/tagembed-widget//assets/css/font-awesome/css/font-awesome.min.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="sweetalert-min-style-css" href="http://wp.lab/wp-content/plugins/tagembed-widget//assets/css/sweetalert.min.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="__editor-css-css" href="http://wp.lab/wp-content/plugins/tagembed-widget//assets/css/editor/editor.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="__editor-style-css-css" href="http://wp.lab/wp-content/plugins/tagembed-widget//assets/css/editor/style.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/tagembed-widget//assets/js/sweetalert.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/tagembed-widget//assets/js/popper.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/tagembed-widget//assets/js/jquery.validate.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/tagembed-widget//assets/js/script.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/tagembed-widget//assets/js/custom.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/tagembed-widget//assets/js/tagembed.analystic.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- tagesmenue -->
|
||||
<link rel="stylesheet" id="tagesmenue-tagesmenuestyle-css" href="http://wp.lab/wp-content/plugins/tagesmenue/css/tagesmenue.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tagesmenue/js/WS_nojquery.js?ver=1.0.0"></script>
|
||||
@@ -14958,6 +15327,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tags-cloud-manager/public/js/tcm-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- tainacan-url-metadata-type -->
|
||||
<link rel="stylesheet" id="TainacanURLPluginStyle-css" href="http://wp.lab/wp-content/plugins/tainacan-url-metadata-type/metadata_type/metadata-type.css?ver=0.0.5" media="all">
|
||||
|
||||
|
||||
<!-- take-notice -->
|
||||
<link rel="stylesheet" id="take-notice-css" href="http://wp.lab/wp-content/plugins/take-notice/assets/css/take-notice.css?ver=2.0" type="text/css" media="all">
|
||||
|
||||
@@ -15229,6 +15602,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themify-builder/themify/js/main.min.js?ver=4.1.3"></script>
|
||||
<link rel="preload" href="http://wp.lab/wp-content/plugins/themify-builder/css/themify-builder-style.min.css?ver=4.1.3" as="style">
|
||||
<link rel="stylesheet" id="themify-common-css" href="http://wp.lab/wp-content/plugins/themify-builder/themify/css/themify.common.min.css?ver=4.1.3" type="text/css" media="all">
|
||||
<link rel="preload" href="http://wp.lab/wp-content/plugins/themify-builder/themify/css/base.min.css?ver=4.1.3" as="style">
|
||||
<link rel="preload" href="http://wp.lab/wp-content/plugins/themify-builder/css/modules/parallax.min.css?ver=4.1.3" as="style">
|
||||
|
||||
|
||||
<!-- themify-builder-lite -->
|
||||
@@ -15604,6 +15979,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/try-on-for-woocommerce/public/js/html2canvas.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- tryst-invoice -->
|
||||
<link rel="stylesheet" id="tryst-invoice-css" href="http://wp.lab/wp-content/plugins/tryst-invoice/public/css/tryst-invoice-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/tryst-invoice/public/js/tryst-invoice-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ts-widget-pack -->
|
||||
<link rel="stylesheet" id="ts_widget-pack-css" href="http://wp.lab/wp-content/plugins/ts-widget-pack/css/ts-widget-pack.min.css?ver=1.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ts-widget-pack/js/ts-widget-pack.min.js?ver=1.2"></script>
|
||||
@@ -15627,6 +16007,11 @@
|
||||
<link rel="stylesheet" id="turbocharged-testimonial-block-style-css" href="http://wp.lab/wp-content/plugins/turbocharged-testimonial-block/build/style.build.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- turn-rank-math-faq-block-to-accordion -->
|
||||
<link rel="stylesheet" id="RMFA-css" href="http://wp.lab/wp-content/plugins/turn-rank-math-faq-block-to-accordion/assets/css/style.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/turn-rank-math-faq-block-to-accordion/assets/js/RMFA-JS.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- tutorial-blocks-gutenberg-blocks-collection -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tutorial-blocks-gutenberg-blocks-collection/vendor/codemirror/addon/mode/loadmode.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -16269,6 +16654,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/utubevideo-gallery/js/frontend.min.js?ver=1.9.8"></script>
|
||||
|
||||
|
||||
<!-- uwebchat -->
|
||||
<link rel="stylesheet" id="uWebChat-css" href="http://wp.lab/wp-content/plugins/uwebchat/public/css/uWebChat-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/uwebchat/public/js/uWebChat-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- va-social-buzz -->
|
||||
<link rel="stylesheet" id="va-social-buzz-css" href="http://wp.lab/wp-content/plugins/va-social-buzz/assets/css/style.min.css?ver=1.1.14" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/va-social-buzz/assets/js/script.min.js?ver=1.1.14"></script>
|
||||
@@ -16364,6 +16754,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vertycal/prop/js/vertycal-vtabs.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- very-fresh-lexicon -->
|
||||
<link rel="stylesheet" id="very-fresh-lexicon-css" href="http://wp.lab/wp-content/plugins/very-fresh-lexicon/public/css/very-fresh-lexicon-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/very-fresh-lexicon/public/js/very-fresh-lexicon-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- very-simple-slider -->
|
||||
<link rel="stylesheet" id="very-simple-slider-style-css" href="http://wp.lab/wp-content/plugins/very-simple-slider/css/very-simple-slider.css?ver=1.0" type="text/css" media="screen">
|
||||
|
||||
@@ -16471,6 +16866,7 @@
|
||||
|
||||
<!-- 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">
|
||||
<link rel="stylesheet" id="virtual-real-estate-agent-css" href="http://wp.lab/wp-content/plugins/virtual-real-estate-agent/public/css/virtual-real-estate-agent-public.css?ver=1.1.2" media="all">
|
||||
|
||||
|
||||
<!-- visideign-login -->
|
||||
@@ -17635,6 +18031,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/wow-carousel-for-divi-lite/assets/js/main.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- wowpi-guild -->
|
||||
<link rel="stylesheet" id="wowpi-guild-css" href="http://wp.lab/wp-content/plugins/wowpi-guild/dist/public/css/wowpi-guild-public.css?ver=1.2.4" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wowpi-guild/dist/public/js/wowpi-guild-public.js?ver=1.2.4"></script>
|
||||
|
||||
|
||||
<!-- wowquestionnaire -->
|
||||
<link rel="stylesheet" id="wow-questionnaire-fontawesome-css" href="http://wp.lab/wp-content/plugins/wowquestionnaire/public/vendor/font-awesome/css/font-awesome.min.css?ver=1.2.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wow-questionnaire-sweetalert-css" href="http://wp.lab/wp-content/plugins/wowquestionnaire/public/vendor/sweetalert2/sweetalert2.min.css?ver=1.2.8" type="text/css" media="all">
|
||||
@@ -17721,6 +18122,11 @@
|
||||
<link rel="stylesheet" id="wp-aiwis-css" href="http://wp.lab/wp-content/plugins/wp-aiwis/public/css/wp-aiwis-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-ajax -->
|
||||
<link rel="stylesheet" id="wp-ajax-style-css" href="http://wp.lab/wp-content/plugins/wp-ajax/assets/css/frontend.min.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-ajax/assets/js/frontend.min.js?ver=1.0.1" defer></script>
|
||||
|
||||
|
||||
<!-- wp-ajax-edit-comments -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-ajax-edit-comments/js/jquery.colorbox.min.js?ver=6.0.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-ajax-edit-comments/js/jquery.atd.textarea.js?ver=6.0.1"></script>
|
||||
@@ -17858,6 +18264,11 @@
|
||||
<link rel="stylesheet" id="wp-bootstrap-carousel-css" href="http://wp.lab/wp-content/plugins/wp-bootstrap-carousel/css/carousel.min.css?ver=0.5.0" type="text/css" media="screen">
|
||||
|
||||
|
||||
<!-- wp-bulk-sms -->
|
||||
<link rel="stylesheet" id="wpsmstobulk-admin-bar-css" href="http://wp.lab/wp-content/plugins/wp-bulk-sms/assets/css/admin-bar.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wpsmstobulk-subscribe-css" href="http://wp.lab/wp-content/plugins/wp-bulk-sms/assets/css/subscribe.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- wp-bunvc -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-bunvc/public/js/bunvc-autorun-allpack.js?ver=1.0.1"></script>
|
||||
|
||||
@@ -18979,6 +19390,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-player/assets/js/wp-player.js?ver=2.6.1"></script>
|
||||
|
||||
|
||||
<!-- wp-podcasts-manager -->
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-podcasts-manager/assets/js/zl_pdm_script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-politic -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-politic/assets/js/popper.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-politic/assets/js/jquery.magnific-popup.min.js?ver=1.0.0"></script>
|
||||
@@ -19388,6 +19803,17 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-smartcrop/js/jquery.wp-smartcrop.min.js?ver=1.4.6"></script>
|
||||
|
||||
|
||||
<!-- wp-sms-otp-login -->
|
||||
<link rel="stylesheet" id="wpsmstootp-admin-bar-css" href="http://wp.lab/wp-content/plugins/wp-sms-otp-login/assets/css/admin-bar.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wpsmstootp-subscribe-css" href="http://wp.lab/wp-content/plugins/wp-sms-otp-login/assets/css/subscribe.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- wp-sms-vatansms-com -->
|
||||
<link rel="stylesheet" id="wpsms-admin-bar-css" href="http://wp.lab/wp-content/plugins/wp-sms-vatansms-com/assets/css/admin-bar.css?ver=1.01" media="all">
|
||||
<link rel="stylesheet" id="wpsms-subscribe-css" href="http://wp.lab/wp-content/plugins/wp-sms-vatansms-com/assets/css/subscribe.css?ver=1.01" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-sms-vatansms-com/assets/js/script.js?ver=1.01"></script>
|
||||
|
||||
|
||||
<!-- wp-snapcam -->
|
||||
<link rel="stylesheet" id="WP_SNAPCAM-css" href="http://wp.lab/wp-content/plugins/wp-snapcam/public/css/wp-snapcam-public.css?ver=0.3" type="text/css" media="all">
|
||||
|
||||
@@ -20004,6 +20430,13 @@
|
||||
<link rel="stylesheet" id="wpm-email-css" href="http://wp.lab/wp-content/plugins/wpm-email/public/css/wpm-email-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wpmapmaker-google-map-styler -->
|
||||
<link rel="stylesheet" id="wpmapmaker-style-css" href="http://wp.lab/wp-content/plugins/wpmapmaker-google-map-styler/assets/css/style.css?ver=0.9.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wpmapmaker-google-map-styler/assets/js/functions.js?ver=0.9.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wpmapmaker-google-map-styler/assets/js/map-styler.js?ver=0.9.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wpmapmaker-google-map-styler/assets/js/map-controller.js?ver=0.9.0"></script>
|
||||
|
||||
|
||||
<!-- wpmarathi -->
|
||||
<link rel="stylesheet" id="wpmarathi-frontend-css" href="http://wp.lab/wp-content/plugins/wpmarathi//assets/css/wpmarathi-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -20039,6 +20472,7 @@
|
||||
|
||||
<!-- wpo365-login -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpo365-login//apps/dist/pintra-redirect.js?ver=8.6"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wpo365-login/apps/dist/pintra-redirect.js?ver=8.6"></script>
|
||||
|
||||
|
||||
<!-- wpopal-medical -->
|
||||
@@ -20361,6 +20795,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yith-infinite-scrolling/assets/js/yith-infs.min.js?ver=1.0.9"></script>
|
||||
|
||||
|
||||
<!-- yith-slider-for-page-builders -->
|
||||
<link rel="stylesheet" id="yith-sliders-slider-style-css" href="http://wp.lab/wp-content/plugins/yith-slider-for-page-builders/assets/slider-style.css?ver=1.0.2" media="screen">
|
||||
|
||||
|
||||
<!-- yoel-responsive-slider -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yoel-responsive-slider/js/responsiveslides.min.js?ver=1.1"></script>
|
||||
|
||||
@@ -20504,6 +20942,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zim-airtime/public/js/techzim-airtime-public201909111050.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ziticity-shipping-for-woocommerce -->
|
||||
<link rel="stylesheet" id="woocommerce-shipping-ziticity-css" href="http://wp.lab/wp-content/plugins/ziticity-shipping-for-woocommerce/public/css/wc-shipping-ziticity-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/ziticity-shipping-for-woocommerce/public/js/wc-shipping-ziticity-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ziyarat-ashura -->
|
||||
<link rel="stylesheet" id="za_css-css" href="http://wp.lab/wp-content/plugins/ziyarat-ashura/css/style.css?ver=1.0.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ziyarat-ashura/js/za-js.js?ver=1.0.0"></script>
|
||||
@@ -20531,6 +20974,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/datatable/jquery.dataTables.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- zoom-img -->
|
||||
<link rel="stylesheet" id="zoomimg-css-css" href="http://wp.lab/wp-content/plugins/zoom-img/css/zoomimg-mBox.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/zoom-img/js/zoomimg-mBox.js?ver=1.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>
|
||||
|
||||
85
spec/fixtures/dynamic_finders/plugin_version/real-cookie-banner/change_log/CHANGELOG.md
vendored
Normal file
85
spec/fixtures/dynamic_finders/plugin_version/real-cookie-banner/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## 1.0.4 (2020-11-19)
|
||||
|
||||
**Note:** Version bump only for package @devowl-wp/real-cookie-banner
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 1.0.3 (2020-11-18)
|
||||
|
||||
|
||||
### fix
|
||||
|
||||
* add Divi maps block to Google Maps content blocker
|
||||
* banner not shown up in Happy Wedding Day theme
|
||||
* compatibility with Divi Maps block
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 1.0.2 (2020-11-17)
|
||||
|
||||
|
||||
### fix
|
||||
|
||||
* do not show licensing tab in free test drive (#acypm6)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 1.0.1 (2020-11-17)
|
||||
|
||||
|
||||
### ci
|
||||
|
||||
* wrong license.devowl.io package.json
|
||||
|
||||
|
||||
### docs
|
||||
|
||||
* wordpress.org README
|
||||
|
||||
|
||||
### fix
|
||||
|
||||
* remove unnecessary dependency (composer) package (#acwy1g)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# 1.0.0 (2020-11-17)
|
||||
|
||||
|
||||
### chore
|
||||
|
||||
* initial release (#4rruvq)
|
||||
|
||||
|
||||
### test
|
||||
|
||||
* fix lite version smoke tests
|
||||
* fix smoke test
|
||||
* fix smoke tests for lite version
|
||||
* fix typo in lite smoke test
|
||||
|
||||
|
||||
* chore!: remove early access notice for newer updates (#4rruvq)
|
||||
* feat!: use new license server (#4rruvq)
|
||||
* ci!: release free version to wordpress.org automatically (#4rruvq)
|
||||
|
||||
|
||||
### BREAKING CHANGE
|
||||
|
||||
* we are live!
|
||||
* if you were a early access user, please upgrade to the initial version
|
||||
* you need to enter your license key again to get automatic updates
|
||||
* download initial version now here: https://wordpress.org/plugins/real-cookie-banner
|
||||
@@ -0,0 +1,45 @@
|
||||
# Copyright (C) 2020 NexusLinkServices
|
||||
# This file is distributed under the same license as the Really Simple GA plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Really Simple GA 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/really-simple-ga\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-26T06:08:45+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: really-simple-ga\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin-screen.php:7
|
||||
#: admin-screen.php:35
|
||||
msgid "Really Simple GA"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "It will easily add Google Analytics code to site without adding extra codes."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "NexusLinkServices"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://tws.media"
|
||||
msgstr ""
|
||||
|
||||
#: admin-screen.php:24
|
||||
msgid "Google analytics code saved successfully."
|
||||
msgstr ""
|
||||
|
||||
#: admin-screen.php:46
|
||||
msgid "Google analytics code:"
|
||||
msgstr ""
|
||||
|
||||
#: admin-screen.php:57
|
||||
msgid "It looks like: <strong>UA-XXXXX-Y"
|
||||
msgstr ""
|
||||
31
spec/fixtures/dynamic_finders/plugin_version/remote-cache-purger/change_log/changelog.txt
vendored
Normal file
31
spec/fixtures/dynamic_finders/plugin_version/remote-cache-purger/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
## CHANGELOG
|
||||
|
||||
= 1.0.4.1 - 2020/12 =
|
||||
* UPDATE: Display number of purged files
|
||||
|
||||
= 1.0.4 - 2020/12 =
|
||||
|
||||
* FIX: HTTP method - show response
|
||||
|
||||
= 1.0.3 - 2020/12 =
|
||||
|
||||
* ADDED: truncate admin notice
|
||||
* ADDED: additional domains
|
||||
* ADDED: enable/disable purge
|
||||
* ADDED: Response Count Header
|
||||
* UPDATE: Only if Response Count Header is set, number of purged items will be shown
|
||||
* FIX: Add query to url
|
||||
|
||||
= 1.0.2 - 2020/12 =
|
||||
|
||||
* Debug
|
||||
|
||||
= 1.0.1 - 2020/12 =
|
||||
|
||||
* Cleaning Up
|
||||
* Added Ajax requests
|
||||
* Added logging to Wordpress error log
|
||||
|
||||
= 1.0.0 - 2020/12 =
|
||||
|
||||
* Init
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user