Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
630752787a | ||
|
|
c07ecc58cb | ||
|
|
89fccfe7b7 | ||
|
|
ceeb7e538b | ||
|
|
8dab57b59c | ||
|
|
7a00cd8db1 | ||
|
|
daa0915bca | ||
|
|
ca6b6a30d8 | ||
|
|
09f2640879 | ||
|
|
f61c55b350 | ||
|
|
78d0c2540c | ||
|
|
1d0426e816 | ||
|
|
103a4049c8 | ||
|
|
cbcb1dcb33 | ||
|
|
9c36293382 | ||
|
|
2fb36dc425 | ||
|
|
c717ba5a71 | ||
|
|
7572518e3b | ||
|
|
f670133a82 | ||
|
|
a6bbf41e82 | ||
|
|
622c16932a | ||
|
|
5fd7e0ed22 | ||
|
|
d9f6c71015 | ||
|
|
61a3106b3b | ||
|
|
20eb2d825d | ||
|
|
906557d2ec | ||
|
|
c1e278ea80 | ||
|
|
e2d616a53f | ||
|
|
c6802ccdd2 | ||
|
|
abd50fd037 | ||
|
|
4515be53b4 | ||
|
|
920a25bb25 | ||
|
|
648dd05069 | ||
|
|
713edcecca |
@@ -7,6 +7,8 @@ AllCops:
|
||||
- 'vendor/**/*'
|
||||
Layout/LineLength:
|
||||
Max: 120
|
||||
Lint/ConstantDefinitionInBlock:
|
||||
Enabled: false
|
||||
Lint/MissingSuper:
|
||||
Enabled: false
|
||||
Lint/UriEscapeUnescape:
|
||||
|
||||
@@ -21,6 +21,7 @@ RUN chmod -R a+r /usr/local/bundle
|
||||
|
||||
FROM ruby:2.7.1-alpine
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
LABEL org.opencontainers.image.source https://github.com/wpscanteam/wpscan
|
||||
|
||||
RUN adduser -h /wpscan -g WPScan -D wpscan
|
||||
|
||||
|
||||
2
LICENSE
2
LICENSE
@@ -27,7 +27,7 @@ Example cases which do not require a commercial license, and thus fall under the
|
||||
- Using WPScan to test your own systems.
|
||||
- Any non-commercial use of WPScan.
|
||||
|
||||
If you need to purchase a commercial license or are unsure whether you need to purchase a commercial license contact us - team@wpscan.org.
|
||||
If you need to purchase a commercial license or are unsure whether you need to purchase a commercial license contact us - contact@wpscan.com.
|
||||
|
||||
Free-use Terms and Conditions;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
WordPress Security Scanner
|
||||
<br>
|
||||
<br>
|
||||
<a href="https://wpscan.org/" title="homepage" target="_blank">Homepage</a> - <a href="https://wpscan.io/" title="wpscan.io" target="_blank">WPScan.io</a> - <a href="https://wpvulndb.com/" title="vulnerability database" target="_blank">Vulnerability Database</a> - <a href="https://wordpress.org/plugins/wpscan/" title="wordpress security plugin" target="_blank">WordPress Security Plugin</a>
|
||||
<a href="https://wpscan.com/" title="homepage" target="_blank">WPScan WordPress Vulnerability Database</a> - <a href="https://wordpress.org/plugins/wpscan/" title="wordpress security plugin" target="_blank">WordPress Security Plugin</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
@@ -82,7 +82,7 @@ The DB is located at ~/.wpscan/db
|
||||
|
||||
## Vulnerability Database
|
||||
|
||||
The WPScan CLI tool uses the [WPVulnDB API](https://wpvulndb.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPVulnDB](https://wpvulndb.com/users/sign_up). Up to 50 API requests per day are given free of charge to registered users. Once the 50 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPVulnDB](https://wpvulndb.com/).
|
||||
The WPScan CLI tool uses the [WPScan API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan](https://wpscan.com/register). Up to 50 API requests per day are given free of charge to registered users. Once the 50 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPScan](https://wpscan.com/).
|
||||
|
||||
## Load CLI options from file/s
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
def aggressive(_opts = {})
|
||||
path = 'installer-log.txt'
|
||||
|
||||
return unless /DUPLICATOR INSTALL-LOG/.match?(target.head_and_get(path).body)
|
||||
return unless /DUPLICATOR(-|\s)?(PRO|LITE)?:? INSTALL-LOG/i.match?(target.head_and_get(path).body)
|
||||
|
||||
Model::DuplicatorInstallerLog.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
<%= warning_icon %> No WPVulnDB API Token given, as a result vulnerability data has not been output.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpscan.com/register
|
||||
<% end -%>
|
||||
|
||||
@@ -8,6 +8,6 @@
|
||||
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up"
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpscan.com/register"
|
||||
<% end -%>
|
||||
},
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
|
||||
# @return [ Addressable::URI ]
|
||||
def self.uri
|
||||
@uri ||= Addressable::URI.parse('https://wpvulndb.com/api/v3/')
|
||||
@uri ||= Addressable::URI.parse('https://wpscan.com/api/v3/')
|
||||
end
|
||||
|
||||
# @param [ String ] path
|
||||
|
||||
@@ -56,9 +56,7 @@ module WPScan
|
||||
|
||||
homepage_result = find(target.homepage_res, opts)
|
||||
|
||||
if homepage_result
|
||||
return homepage_result unless homepage_result.is_a?(Array) && homepage_result.empty?
|
||||
end
|
||||
return homepage_result unless homepage_result.nil? || homepage_result.is_a?(Array) && homepage_result&.empty?
|
||||
|
||||
find(target.error_404_res, opts)
|
||||
end
|
||||
|
||||
@@ -27,7 +27,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def wpvulndb_url(id)
|
||||
"https://wpvulndb.com/vulnerabilities/#{id}"
|
||||
"https://wpscan.com/vulnerability/#{id}"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.6'
|
||||
VERSION = '3.8.9'
|
||||
end
|
||||
|
||||
@@ -52,9 +52,10 @@ describe WPScan::Controller::Core do
|
||||
%i[apache iis nginx].each do |server|
|
||||
context "when #{server}" do
|
||||
let(:cli_args) { "#{super()} --server #{server}" }
|
||||
let(:servers) { [:Apache, nil, :IIS, :Nginx] }
|
||||
|
||||
it "loads the #{server.capitalize} module and returns :#{server}" do
|
||||
@stubbed_server = [:Apache, nil, :IIS, :Nginx].sample
|
||||
@stubbed_server = servers.sample
|
||||
@expected = server == :iis ? :IIS : server.to_s.camelize.to_sym
|
||||
end
|
||||
end
|
||||
|
||||
@@ -35,15 +35,47 @@ describe WPScan::Finders::InterestingFindings::DuplicatorInstallerLog do
|
||||
end
|
||||
|
||||
context 'when the body matches' do
|
||||
let(:body) { File.read(fixtures.join(filename)) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
after do
|
||||
expect(finder.aggressive).to eql WPScan::Model::DuplicatorInstallerLog.new(
|
||||
log_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
end
|
||||
|
||||
context 'when old versions of the file' do
|
||||
let(:body) { File.read(fixtures.join('old.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
|
||||
context 'when newest versions of the file' do
|
||||
context 'when PRO format 1' do
|
||||
let(:body) { File.read(fixtures.join('pro.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
|
||||
context 'when PRO format 2' do
|
||||
let(:body) { File.read(fixtures.join('pro2.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
|
||||
context 'when LITE' do
|
||||
let(:body) { File.read(fixtures.join('lite.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
3819
spec/fixtures/db/dynamic_finders.yml
vendored
3819
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1430
spec/fixtures/dynamic_finders/expected.yml
vendored
1430
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,338 @@
|
||||
# Copyright (C) 2020 ZealousWeb Technologies
|
||||
# This file is distributed under the same license as the Abandoned Contact Form 7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Abandoned Contact Form 7 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/abandoned-forms-contact-form-7\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-17T07:23:53+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: cf7-abandoned-form\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Abandoned Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Abandoned Contact Form 7 provides an ability to track the data from Contact Form 7 even if the user does not submit the form."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ZealousWeb Technologies"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zealousweb.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:112
|
||||
msgid "Form Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:113
|
||||
#: inc/admin/class.cf7af.admin.action.php:508
|
||||
msgid "User Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:114
|
||||
#: inc/admin/class.cf7af.admin.action.php:515
|
||||
msgid "User IP"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:115
|
||||
msgid "is Enable Send Mail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:116
|
||||
msgid "Number of Send Mail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:117
|
||||
#: inc/admin/class.cf7af.admin.filter.php:227
|
||||
msgid "Submitted Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:169
|
||||
#: inc/admin/class.cf7af.admin.action.php:541
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:170
|
||||
#: inc/admin/class.cf7af.admin.action.php:542
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:219
|
||||
msgid "Abandoned Form Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:288
|
||||
#: inc/admin/class.cf7af.admin.action.php:552
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:290
|
||||
msgid "To enable this button please allow mail notification from detail page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:291
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:381
|
||||
msgid "Select Forms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:387
|
||||
msgid "Export CSV"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:424
|
||||
#: inc/admin/class.cf7af.admin.action.php:425
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:34
|
||||
msgid "Mail Notification Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:433
|
||||
#: inc/admin/class.cf7af.admin.action.php:434
|
||||
#: inc/admin/class.cf7af.admin.action.php:549
|
||||
#: inc/admin/class.cf7af.admin.filter.php:224
|
||||
msgid "Send Mail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:451
|
||||
msgid "Please select form to export."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:466
|
||||
msgid "No Abandoned data Found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:501
|
||||
msgid "CF7 Form Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:522
|
||||
msgid "Other Form Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.action.php:538
|
||||
msgid "Disable Mail Notification"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.filter.php:92
|
||||
msgid "Abandoned Form Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.filter.php:222
|
||||
msgid "Abandoned User's Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.filter.php:223
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.filter.php:225
|
||||
msgid "Number of Emails Sent"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.cf7af.admin.filter.php:226
|
||||
msgid "Fail Counter"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:13
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:37
|
||||
msgid "Nonce check failed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:26
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:28
|
||||
msgid "Settings are not saved."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:36
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:96
|
||||
msgid "Use {email} to insert the email into the mail body"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:37
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:97
|
||||
msgid "Use {contact_form} to insert the form name into the mail body"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:38
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:98
|
||||
msgid "Use {link} to insert the page contact link into the mail body"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:61
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:175
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:80
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:196
|
||||
msgid "Email Body"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:101
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:114
|
||||
msgid "<h3>Subject</h3><p>Please enter the subject for send mail.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.notification.settings.template.php:116
|
||||
msgid "<h3>Email Body </h3><p>It's a body content of mail which reflect on sent mail.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:73
|
||||
msgid "Error on Send Mail."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:84
|
||||
msgid "Send Mail Suceessfully to Abandoned User."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:86
|
||||
msgid "Mail has not send."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:92
|
||||
msgid "Send Mail to Abandoned User Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:120
|
||||
msgid "User Email Address (To)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:139
|
||||
msgid "From Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:157
|
||||
msgid "From Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:212
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:226
|
||||
msgid "<h3>User Email Address (To)</h3><p>This is an Abandoned user's email ID which will receive the email.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:228
|
||||
msgid "<h3>From Name</h3><p>This is a default 'Name' which is get from website general settings but if you use SMTP settings then From Name used from SMTP settings page.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:230
|
||||
msgid "<h3>From Email Address</h3><p>This is a default 'Email Address' which is get from website general settings but if you use SMTP settings then From Email used from SMTP settings page.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:232
|
||||
msgid "<h3>Subject</h3><p>This is the subject which is used in email.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.send.mail.template.php:234
|
||||
msgid "<h3>Email Body</h3><p>This is an email body content which are reflect on email body.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.template.php:23
|
||||
msgid "Enable Abandoned"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.template.php:34
|
||||
#: inc/admin/template/cf7af.template.php:41
|
||||
msgid "Select Email Field"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.template.php:67
|
||||
msgid "<h3>Enable/Disable Abandoned</h3><p>You can enable/disable Abandoned form functionality.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/cf7af.template.php:69
|
||||
msgid "<h3>Select Email Field</h3><p>Select the email field for tracking Abandoned user</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:92
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:94
|
||||
msgid "Document"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:345
|
||||
#: inc/class.cf7af.php:356
|
||||
msgid "Abandoned Users"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:346
|
||||
msgid "Abandoned User Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:347
|
||||
msgid "All Abandoned Users"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:348
|
||||
msgid "Edit Abandoned User"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:349
|
||||
msgid "Search Abandoned User"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:350
|
||||
msgid "View Abandoned User"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:351
|
||||
msgid "No Abandoned User found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:352
|
||||
msgid "No Abandoned User found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:400
|
||||
msgid "You are so close!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:402
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:403
|
||||
msgid "Contact into:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:404
|
||||
msgid "We noticed you left something behind."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:405
|
||||
msgid "No need to worry, you can still visit the page from where you left accidentally."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:406
|
||||
msgid "Use the following link to make submissions."
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:408
|
||||
msgid "Thanks!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.cf7af.php:424
|
||||
msgid "<b>Abandoned Contact Form 7 :</b> Contact Form 7 is not active! Please install <a target=\"_blank\" href=\"https://wordpress.org/plugins/contact-form-7/\">Contact Form 7</a>."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2020 WP White Security
|
||||
# This file is distributed under the same license as the WP Activity Log Extension for Yoast SEO plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Activity Log Extension for Yoast SEO 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-yoast-seo\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-01T10:55:48+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wsal-yoast\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Activity Log Extension for Yoast SEO"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpactivitylog.com/extensions/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A WP Activity Log plugin extension"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP White Security"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.wpwhitesecurity.com/"
|
||||
msgstr ""
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/addonify-quick-view/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/addonify-quick-view/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "addonify-quick-view",
|
||||
"version": "1.0.0",
|
||||
"description": "Addonify WooCoomerce Quick View plugin adds functionality to have a WooCoomerce product quick view preview on a modal window.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/addonify/addonify-quick-view.git"
|
||||
},
|
||||
"keywords": [
|
||||
"woocommerce",
|
||||
"quick",
|
||||
"view",
|
||||
"addonify"
|
||||
],
|
||||
"author": "Addonify",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/addonify/addonify-quick-view/issues"
|
||||
},
|
||||
"homepage": "https://github.com/addonify/addonify-quick-view#readme",
|
||||
"devDependencies": {
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-wp-pot": "^2.4.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
# Copyright (C) 2020 AWSM Innovations
|
||||
# This file is distributed under the same license as the Auto Delete Applications - Add-on for WP Job Openings plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Auto Delete Applications - Add-on for WP Job Openings 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://awsm.in/support\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Awsm Innovations <hello@awsm.in>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-28T17:05:59+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: auto-delete-wp-job-openings\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: auto-delete.php:143
|
||||
msgid "Auto Delete Applications - Add-on for WP Job Openings"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpjobopenings.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This is an add-on for WP Job Openings Plugin, which will let you delete the received applications periodically."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "AWSM Innovations"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://awsm.in/"
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:110
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:120
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:127
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: main plugin, %2$s: current plugin, %3$s: plugin activation link, %4$s: line break
|
||||
#: auto-delete.php:146
|
||||
msgid "The plugin %2$s needs the plugin %1$s active. %4$s Please %3$s %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: main plugin, %2$s: current plugin, %3$s: minimum required version of the main plugin, %4$s: plugin updation link
|
||||
#: auto-delete.php:149
|
||||
msgid "%2$s plugin requires %1$s version %3$s. Please %4$s %1$s plugin to the latest version."
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:165
|
||||
msgid "Auto delete applications "
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:168
|
||||
msgid "CAUTION: Checking this option will delete applications after the selected period from the date of application. (For example, if you configure the option for 6 months, all the applications you have received before 6 months will be deleted immediately and every application that completes 6 months will be deleted from next day onwards automatically)."
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:5
|
||||
msgid "Day(s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:6
|
||||
msgid "Month(s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:7
|
||||
msgid "Year(s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:15
|
||||
msgid "Enable auto delete applications"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:23
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:46
|
||||
msgid "Enable force delete"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:48
|
||||
msgid "Whether to force delete applications or move it to trash."
|
||||
msgstr ""
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/badgeos-edd-integration/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/badgeos-edd-integration/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# Changelog
|
||||
|
||||
## 1.1
|
||||
- Fix: Resolve conflict with BadgeOS Community add-on
|
||||
|
||||
## 1.0
|
||||
- Initial
|
||||
@@ -0,0 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0
|
||||
- Initial
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/badgeos-rest-api-addon/change_log/CHANGELOG.md
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/badgeos-rest-api-addon/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
# Changelog
|
||||
## 1.0
|
||||
- Initial
|
||||
25
spec/fixtures/dynamic_finders/plugin_version/blockmeister/change_log/changelog.md
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/blockmeister/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# Change Log
|
||||
|
||||
## [2.0.1] - 2020-09-03 ##
|
||||
|
||||
### Fixed
|
||||
- keywords taxonomy's edit capability
|
||||
|
||||
## [2.0.0] - 2020-08-20
|
||||
First public release.
|
||||
|
||||
### Fixed
|
||||
- refactored complete 1.0 code set
|
||||
|
||||
### Added
|
||||
- block settings menu item to add selected blocks to a new block pattern
|
||||
- category taxonomy
|
||||
- keyword taxonomy
|
||||
- viewport width setting
|
||||
- limit pattern building to administrators
|
||||
- admin capabilities
|
||||
- made translatable
|
||||
- Dutch translation
|
||||
|
||||
## [1.0.x] - 2020-07-10
|
||||
Private releases
|
||||
1506
spec/fixtures/dynamic_finders/plugin_version/boo-recipes/translation_file/languages/boo-recipes-de_DE.po
vendored
Normal file
1506
spec/fixtures/dynamic_finders/plugin_version/boo-recipes/translation_file/languages/boo-recipes-de_DE.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
22
spec/fixtures/dynamic_finders/plugin_version/book-block/composer_file/package.json
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/book-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "book-block",
|
||||
"version": "0.1.0",
|
||||
"description": "Displays information about a book.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"classnames": "^2.2.6"
|
||||
}
|
||||
}
|
||||
7236
spec/fixtures/dynamic_finders/plugin_version/branda-white-labeling/translation_file/languages/ub.pot
vendored
Normal file
7236
spec/fixtures/dynamic_finders/plugin_version/branda-white-labeling/translation_file/languages/ub.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,851 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Classic Quiz Feedback Survey 1.0.0\n"
|
||||
"POT-Creation-Date: 2020-08-28 19:56+0530\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:22+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Amit Biswas\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
|
||||
"_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: assets\n"
|
||||
"X-Poedit-SearchPathExcluded-1: admin/js\n"
|
||||
"X-Poedit-SearchPathExcluded-2: admin/css\n"
|
||||
"X-Poedit-SearchPathExcluded-3: .git\n"
|
||||
"X-Poedit-SearchPathExcluded-4: .gitignore\n"
|
||||
|
||||
#: admin/admin-scripts.php:91
|
||||
msgid "Required field contains invalid entry."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-scripts.php:92
|
||||
msgid "Required field value cannot be null."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:203 admin/form-handle.php:318 inc/submission.php:87
|
||||
msgid "Security check unsuccessful."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:220 admin/form-handle.php:335
|
||||
msgid "Permission Denied."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:255
|
||||
#, php-format
|
||||
msgid "[Duplicate #%s]"
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:271
|
||||
msgid "Mail successfully sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:288
|
||||
msgid "Mail not send. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:356 inc/roles.php:93
|
||||
msgid "Cqfs Result"
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:358 inc/roles.php:95
|
||||
msgid "This page displays CQFS results. Please do not delete this page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:375
|
||||
msgid "Result page created successfully."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:390
|
||||
msgid "Cannot create result page. Please refresh and check."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:63
|
||||
#, php-format
|
||||
msgid "This email was sent from <a href=\"%s\">%s</a> © %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:82
|
||||
msgid "CQFS Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:83
|
||||
msgid "CQFS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:98 admin/menu-pages.php:99
|
||||
msgid "CQFS Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:118
|
||||
msgid "Welcome to CQFS Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:127 cqfs.php:219
|
||||
msgid "Classic Quiz Feedback Survey"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:130
|
||||
msgid ""
|
||||
"This plugin is a free open source project. If this plugin is useful to "
|
||||
"you, please support me and keep this alive."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:135
|
||||
msgid "Donate via PayPal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:140
|
||||
msgid "Full Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:147
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:156
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:165
|
||||
msgid "CQFS shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:174
|
||||
msgid "Action Hooks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:183
|
||||
msgid "Filter Hooks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:192
|
||||
msgid "Live Demos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:198
|
||||
msgid "Github Repositiroy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:203
|
||||
msgid "classic quiz feedback survey"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:223
|
||||
msgid "Result page is missing."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:233
|
||||
msgid "Create Result Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:242
|
||||
msgid "Great! Result page exists."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:272
|
||||
msgid "Mail Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:283
|
||||
msgid "Sender Email ID (from)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:285
|
||||
msgid ""
|
||||
"If not set, administrator email will be used. Try to use email id same as "
|
||||
"domain."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:295
|
||||
msgid "Email to admin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:297
|
||||
msgid ""
|
||||
"Send email to admin when a form is submitted by a user. Administrator "
|
||||
"email will be used."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:310
|
||||
msgid "Email to user."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:312
|
||||
msgid "Send email to the user when a form is submitted by that user."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:325
|
||||
msgid "Additional Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:327
|
||||
msgid ""
|
||||
"Add any additional notes in the email. It will appear above the footer. "
|
||||
"HTML allowed as post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:339
|
||||
msgid "Email Footer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:341
|
||||
msgid "Add custom footer content for the email. HTML allowed as post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:368 admin/menu-pages.php:369
|
||||
msgid "Add Question"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:378 admin/menu-pages.php:379
|
||||
msgid "Add Build"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:388 admin/menu-pages.php:389
|
||||
msgid "Add Entry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:39
|
||||
msgid "Build Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:49 inc/admin-columns.php:98
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:65
|
||||
msgid "Build Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:66
|
||||
msgid "Click to select the shortcode. Then copy it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:77
|
||||
msgid "Enable title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:78
|
||||
msgid "Enable ajax"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:79
|
||||
msgid "Enable guest"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:80
|
||||
msgid "Enable required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:81
|
||||
msgid "Enable pagination"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:82
|
||||
msgid "Custom class"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:83
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:84
|
||||
msgid "Orderby"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:87
|
||||
msgid "Available attributes and example use:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:100
|
||||
msgid "Full documentation is here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:137
|
||||
msgid "Questions by Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:138
|
||||
msgid "You have selected the following categories for questions."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:147
|
||||
msgid "No categories are selected. Please select a category."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:158 inc/admin-columns.php:97
|
||||
msgid "Build Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:158
|
||||
#: admin/meta-boxes/metabox-build.php:186
|
||||
#: admin/meta-boxes/metabox-question.php:70
|
||||
#: admin/meta-boxes/metabox-question.php:81
|
||||
#: admin/meta-boxes/metabox-question.php:108
|
||||
msgid "*"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:159
|
||||
msgid "Select a build type."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:165
|
||||
#: admin/meta-boxes/metabox-question.php:88
|
||||
msgid "Please Select..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:166
|
||||
msgid "Quiz"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:167
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:168
|
||||
msgid "Survey"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:186
|
||||
msgid "Pass Percentage"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:187
|
||||
msgid ""
|
||||
"Set a percentage for pass mark. It is needed for all types as it will help "
|
||||
"us to assess things better."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:190 inc/utilities.php:236
|
||||
#: inc/utilities.php:245
|
||||
msgid "%"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:203
|
||||
msgid "Pass Message (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:204
|
||||
#: admin/meta-boxes/metabox-build.php:215
|
||||
msgid "Leave empty for default."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:214
|
||||
msgid "Fail Message (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:40
|
||||
msgid "Entry Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:50
|
||||
msgid "Edit This Entry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:59
|
||||
msgid "Entry Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:78
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:79
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:97 inc/utilities.php:704
|
||||
msgid "View Result"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:98
|
||||
msgid "Email to user"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:146 inc/admin-columns.php:159
|
||||
msgid "Form ID (cqfs build)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:147
|
||||
msgid "The form ID which user have submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:160 inc/admin-columns.php:160
|
||||
msgid "Form Type (cqfs build)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:161
|
||||
msgid "The form type which user have submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:173 inc/admin-columns.php:161
|
||||
msgid "Result"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:174
|
||||
msgid "The result."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:180
|
||||
msgid "Passed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:181
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:198
|
||||
msgid "Percentage"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:199
|
||||
msgid "Percentage obtained."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:212 inc/cpt.php:36 inc/cpt.php:38
|
||||
#: inc/cpt.php:40 inc/cpt.php:57
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:213
|
||||
msgid ""
|
||||
"The CQFS question list for this entry. Each line break represents a "
|
||||
"question."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:223
|
||||
#: admin/meta-boxes/metabox-question.php:70
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:224
|
||||
msgid ""
|
||||
"The CQFS answer list for this entry. Each line break represents an answer."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:234
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:235
|
||||
msgid ""
|
||||
"The CQFS answer status list for this entry. Each line break represents a "
|
||||
"status."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:245
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:246
|
||||
msgid ""
|
||||
"The additional notes for each question. Each line break represents a note."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:256
|
||||
msgid "Remarks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:257
|
||||
msgid "Pass or fail message."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:267
|
||||
msgid "User Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:268
|
||||
msgid "Email ID of the user who have submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:38
|
||||
msgid "Question Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:71
|
||||
msgid ""
|
||||
"Please use separate line for each answer. Each line will be considered as "
|
||||
"1, 2, 3 ... and so on."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:81 inc/admin-columns.php:48
|
||||
msgid "Answer Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:82
|
||||
msgid ""
|
||||
"If this question have more than one correct answer, select check boxes. "
|
||||
"Otherwise select radio button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:89
|
||||
msgid "Radio Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:90
|
||||
msgid "Check Boxes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:108
|
||||
msgid "Correct Answer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:109
|
||||
msgid ""
|
||||
"Consider the answers (above) in each line as 1, 2, 3... and so on. Please "
|
||||
"separate with comma for multiple correct answers. eg; 2,3 (no space)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:118
|
||||
msgid "Additional Note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:119
|
||||
msgid ""
|
||||
"This is hidden in questionnaire and showed in the result page for build "
|
||||
"type \"quiz\"."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:40
|
||||
#: cqfs-templates/template-results.php:158
|
||||
msgid "Invalid Result."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:59 inc/utilities.php:233
|
||||
msgid "Congratulations! You have passed."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:61 inc/utilities.php:242
|
||||
msgid "Sorry! You have failed."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:93 cqfs.php:251
|
||||
msgid "You answered: "
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:94 cqfs.php:252
|
||||
msgid "Status: "
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:95 cqfs.php:253
|
||||
msgid "Note: "
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:129 cqfs.php:249 inc/utilities.php:610
|
||||
msgid "Thank you for your feedback."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:147 cqfs.php:250
|
||||
msgid "Thank you for your participation in the survey."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:166
|
||||
msgid "Sorry, something went terribly wrong. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:171
|
||||
msgid "No results found."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs.php:218
|
||||
#, php-format
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs.php:220
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: cqfs.php:260
|
||||
msgid "Invalid Result"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin-columns.php:162
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:37
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:39
|
||||
msgid "Question:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:41
|
||||
msgid "View Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:42
|
||||
msgid "Add New Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:43 inc/cpt.php:92 inc/cpt.php:140
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:44
|
||||
msgid "Edit Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:45
|
||||
msgid "Update Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:46
|
||||
msgid "Search Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:47
|
||||
msgid "Question Not found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:48 inc/cpt.php:97 inc/cpt.php:145
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:85 inc/cpt.php:86 inc/cpt.php:87 inc/cpt.php:89
|
||||
#: inc/cpt.php:106
|
||||
msgid "Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:88
|
||||
msgid "Build:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:90
|
||||
msgid "View Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:91
|
||||
msgid "Add New Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:93
|
||||
msgid "Edit Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:94
|
||||
msgid "Update Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:95
|
||||
msgid "Search Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:96
|
||||
msgid "Build Not found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:133 inc/cpt.php:134 inc/cpt.php:135 inc/cpt.php:154
|
||||
msgid "Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:136
|
||||
msgid "Entry:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:137
|
||||
msgid "Entries"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:138
|
||||
msgid "View Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:139
|
||||
msgid "Add New Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:141
|
||||
msgid "Edit Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:142
|
||||
msgid "Update Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:143
|
||||
msgid "Search Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:144
|
||||
msgid "Entry Not found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:77
|
||||
msgid "Something went terribly wrong. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:136
|
||||
msgid ". "
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:201
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:202
|
||||
msgid "Prev"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:203
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:216
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:217
|
||||
msgid "One or more fields are required. Please check again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:127 inc/submission.php:131
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<div class=\"cqfs-return-msg success\"><p><span class=\"cqfs-icon success-"
|
||||
"icon\"></span>%s</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:128
|
||||
msgid "Login Successful."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:132 inc/utilities.php:306
|
||||
msgid "You are now logged in."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:218
|
||||
msgid "Correct Answer."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:218
|
||||
msgid "Wrong Answer."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:231
|
||||
msgid "You have skipped this question."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:238
|
||||
msgid "Not Available."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:299
|
||||
msgid "Guest"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:235
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<div class=\"cqfs-pass-msg\"><p class=\"cqfs-percentage\">%s correct.</"
|
||||
"p><p>%s</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:244
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<div class=\"cqfs-fail-msg\"><p class=\"cqfs-percentage\">%s correct.</"
|
||||
"p><p class=\"cqfs-remark\">%s</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:315
|
||||
msgid "Login and submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:321
|
||||
msgid "Or you may submit as a guest. Please provide the following info."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:328
|
||||
msgid "Invalid Name. Min 3, max 24 characters allowed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:333
|
||||
msgid "Your Name *"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:335
|
||||
msgid "please type your name."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:340
|
||||
msgid "Invalid Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:345
|
||||
msgid "Your Email *"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:347
|
||||
msgid "please type email."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:399 inc/utilities.php:468
|
||||
msgid "×"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:400
|
||||
msgid "Please login to submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:413
|
||||
msgid "Secure Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:415
|
||||
msgid "Username or email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:419
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:423
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:469
|
||||
msgid "Please confirm"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:494
|
||||
msgid "Send Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:530
|
||||
msgid "Classic quiz feedback survey"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:601
|
||||
#, php-format
|
||||
msgid "Hello %s,"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:607
|
||||
msgid "Congratulations! You have passed the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:608
|
||||
msgid "Sorry! You did not passed the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:609
|
||||
msgid ""
|
||||
"Thank you for participating in the quiz. Here is your result page link "
|
||||
"below."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:611
|
||||
msgid "Thank you for participating in the survey."
|
||||
msgstr ""
|
||||
64
spec/fixtures/dynamic_finders/plugin_version/client-power-tools/change_log/changelog.txt
vendored
Normal file
64
spec/fixtures/dynamic_finders/plugin_version/client-power-tools/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
# Changelog for Client Power Tools
|
||||
|
||||
All notable changes to this project will be documented in this file. The format
|
||||
is based on [Keep a Changelog](https://keepachangelog.com).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
|
||||
## [1.0.5] - 2020-10-07
|
||||
|
||||
### Changed
|
||||
- Handle frontend login error on the front end.
|
||||
- General tidying up.
|
||||
|
||||
### Removed
|
||||
- Remove unused capabilities from Client Manager role (for now).
|
||||
- Remove unused functions cpt_get_client_profile_link and cpt_get_client_id.
|
||||
|
||||
### Fixed
|
||||
- Email notifications should now deliver with the intended formatting.
|
||||
|
||||
|
||||
## [1.0.4] - 2020-10-05
|
||||
|
||||
### Fixed
|
||||
- Prevent not-logged-in messages from displaying in the head when the_content filter is called (by Yoast SEO, for example).
|
||||
|
||||
|
||||
## [1.0.3] - 2020-10-05
|
||||
|
||||
### Fixed
|
||||
- Center the modal dismiss button.
|
||||
- Fix false negatives from cpt_is_client if the user is not logged in but the user ID is provided.
|
||||
- Prevent Client Power Tools from intercepting the password reset workflow for non-clients.
|
||||
|
||||
|
||||
## [1.0.2] - 2020-10-02
|
||||
|
||||
### Fixed
|
||||
- Fixed URL encoding.
|
||||
|
||||
|
||||
## [1.0.1] - 2020-10-02
|
||||
|
||||
### Fixed
|
||||
- Check for main query on client dashboard.
|
||||
- Fixed set/change password key sanitization.
|
||||
|
||||
|
||||
## [1.0.0] - 2020-10-02
|
||||
|
||||
### Added
|
||||
- Added some frontend form styles for greater compatibility with different themes.
|
||||
|
||||
### Changed
|
||||
- Override default button display style on dismiss button.
|
||||
- Change constant prefix from CPT_ to CLIENT_POWER_TOOLS_.
|
||||
- Data sanitization and validation.
|
||||
|
||||
|
||||
## [0.1.0 (Beta)] - 2020-09-23
|
||||
|
||||
### Added
|
||||
- Everything.
|
||||
@@ -1193,8 +1193,38 @@ s0.parentNode.insertBefore(s1,s0);
|
||||
<!-- This site has installed PayPal for WooCommerce v2.1.12 - https://www.angelleye.com/product/woocommerce-paypal-plugin/ -->
|
||||
|
||||
|
||||
|
||||
<!-- provesource -->
|
||||
<!-- Start of Async ProveSource Code (Wordpress / Woocommerce v2.1.0) -->
|
||||
|
||||
|
||||
<!-- augmented-reality-product-visualizer-and-configurator-for-woocommerce -->
|
||||
<!--
|
||||
* Plugin Name: Augmented Reality Product Visualizer and Configurator for WooCommerce
|
||||
* Description: Specially built for eCommerce, OGMO allows eCommerce users to easily examine digital products with the help of Augmented reality and 3D technology without having the physical product beside, allowing them to customize products according to their preference.
|
||||
* Version: 0.5.0
|
||||
* Requires at least: 5.2
|
||||
* Requires PHP: 7.2
|
||||
* Author: OGMO
|
||||
* Author URI: https://www.ogmo.xyz/
|
||||
* License: GPLv2 or later
|
||||
|
||||
Copyright 2020, by OGMO
|
||||
All rights reserved
|
||||
|
||||
This file is part of Augmented Reality Product Visualizer and Configurator for WooComerce.
|
||||
|
||||
Augmented Reality Product Visualizer and Configurator for WooComerce is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
|
||||
|
||||
Augmented Reality Product Visualizer and Configurator for WooComerce is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with Augmented Reality Product Visualizer and Configurator for WooComerce. If not, see <https://www.gnu.org/licenses/>
|
||||
|
||||
LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program “Augmented Reality Product Visualizer and Configurator” (Woocommerce plugin enables online product visualization and configuration in augmented reality and 3D) written by OGMO.
|
||||
|
||||
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
||||
* Text Domain: augmented-reality-product-visualizer-and-configurator-for-woocommerce
|
||||
|
||||
-->
|
||||
|
||||
|
||||
|
||||
|
||||
6
spec/fixtures/dynamic_finders/plugin_version/cookiehub/change_log/changelog.txt
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/cookiehub/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
=== CookieHub ===
|
||||
|
||||
= 0.1 =
|
||||
*Release Date - 28 September 2020*
|
||||
|
||||
Initial release
|
||||
@@ -0,0 +1,192 @@
|
||||
# Copyright (C) 2020 Jeff Monteiro
|
||||
# This file is distributed under the same license as the Cool Admin Theme Lite for WordPress plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cool Admin Theme Lite for WordPress 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cool-admin-theme-lite-for-wp\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-25T16:51:57-03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: catforwp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Cool Admin Theme Lite for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/jeffsmonteiro/catliteforwp/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Turn your WordPress Admin Interface more clean, friendly and actual using this Free and Open Source WordPress Admin Theme. To get a more fun interface, you can enable this theme to use emojis to replace dashicons! ;)"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Jeff Monteiro"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.linkedin.com/in/jeff-monteiro"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:16
|
||||
#: inc/plugin-settings.php:17
|
||||
msgid "Cool Admin Theme Lite"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:30
|
||||
msgid "Emojify Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:31
|
||||
msgid "Thanks for using this plugin! Currently, Emojify offers 60 pre-configured emojis for the most popular plugins of WP.org repository. So, the major part of plugins will not display an icon on admin menu after activation. In this case, is recommended that you create a custom css to add this emoji. Over time, new emojis will be added by default."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:35
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:46
|
||||
msgid "Emojify Menu"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:47
|
||||
msgid "Check if you want to replace icons of the admin menu by emojis 😁"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:52
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:53
|
||||
msgid "Add new emojis using custom CSS code."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:62
|
||||
msgid "Be a PRO!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:64
|
||||
msgid "%1$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:66
|
||||
msgid "Get a White Label Admin with the Pro"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:68
|
||||
msgid "- Hide the WordPress brand in the navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:69
|
||||
msgid "- Use your own brand on the top bar"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:70
|
||||
msgid "- Replace the WordPress brand with your own brand on the login page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:71
|
||||
msgid "- Change the brand link on the login page to your homepage"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:72
|
||||
msgid "- Change the background color of the login page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:73
|
||||
msgid "- Replace the WordPress brand with your brand in the edit block (Gutenberg)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:74
|
||||
msgid "- Add a custom favicon to the Admin Area"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:75
|
||||
msgid "- Choose emojis for all sidebar menus using a picker"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:76
|
||||
msgid "- Hide or replace WordPress text at the bottom of the Admin Area"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:77
|
||||
msgid "- Hide the WordPress version text at the bottom of the Admin Area"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:78
|
||||
msgid "- Remove non functional widgets from dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:79
|
||||
msgid "- And more ..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:81
|
||||
msgid "Check it out at "
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:81
|
||||
msgid "wpadmintheme.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:94
|
||||
msgid "Emojify not working"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:95
|
||||
msgid "To enable emojify you need to check the option on Emojify Settings tab. If Emojify is already enabled, can be your OS don't have emoji characteres installed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:100
|
||||
msgid "Where do I customize emojis?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:101
|
||||
msgid "On free version you have a default set of emojis, but only for 60 items (the most popular). If you want to customize these items or add new items (when you get new plugins not coverted by our default sytlesheet), you can use the Custom CSS field to do it."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:106
|
||||
msgid "Can I use custom icons and emojis?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:107
|
||||
msgid "Maybe. After activation of the Emojify feature, all icons are replaced by emojis. May you can use the Custom CSS field to make changes. If you know a little bit of CSS you will do it."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:112
|
||||
msgid "Emojis that I set in the Custom CSS are not displayed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:113
|
||||
msgid "Try to clear browser cache and refresh the page. If you are using some cache plugin like Total Cache, try to refresh the cache."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:118
|
||||
msgid "Some emojis don't appear in the menu"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:119
|
||||
msgid "Our plugin cover the 60 most populars in WordPress Plugin Repository, maybe the plugin that you are using are not covered. So, try to add the emoji using the Custom CSS field."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:124
|
||||
msgid "Have a bug?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:125
|
||||
msgid "Open an issue on %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:125
|
||||
msgid "Git Hub Repository"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:136
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,71 @@
|
||||
# Copyright (C) 2020 Condless
|
||||
# This file is distributed under the same license as the Default Attributes for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Default Attributes for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/default-"
|
||||
"attributes-for-woocommerce\n"
|
||||
"Language-Team: Condless <info@condless.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-09-02 10:14+0300\n"
|
||||
"PO-Revision-Date: 2020-09-03 18:20+0300\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: default-attributes-for-woocommerce\n"
|
||||
"Last-Translator: Condless <info@condless.com>\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? "
|
||||
"2 : 3);\n"
|
||||
"Language: he_IL\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Default Attributes for WooCommerce"
|
||||
msgstr "תכונות ברירת מחדל לווקומרס"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://en.condless.com/default-attributes-for-woocommerce/"
|
||||
msgstr "https://www.condless.com/default-attributes-for-woocommerce/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"WooCommerce plugin that allows you to apply rules for how default attributes "
|
||||
"will be set."
|
||||
msgstr "תוסף לווקומרס המאפשר לך להחיל חוקים על איך ייקבעו תכונות הברירת מחדל."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Condless"
|
||||
msgstr "Condless"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.condless.com/"
|
||||
msgstr "https://www.condless.com/"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:148
|
||||
msgid ""
|
||||
"Set as default an option if it is the only option that has in-stock "
|
||||
"variations"
|
||||
msgstr ""
|
||||
"קבע כברירת מחדל אפשרות אם זו האפשרות היחידה בעלת וריאציות אשר קיימות במלאי"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:155
|
||||
msgid "Set as default the first option of each attribute"
|
||||
msgstr "קבע כברירת מחדל את האפשרות הראשונה בכל תכונה"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:162
|
||||
msgid "Disable out of stock variations"
|
||||
msgstr "בטל וריאציות שאזלו מהמלאי"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:169
|
||||
msgid ""
|
||||
"In archive pages display for variable products the attribute name instead of"
|
||||
msgstr "בעמודי ארכיון הצג במוצרים עם וריאציות את שם התכונה במקום"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:176
|
||||
msgid ""
|
||||
"In single product pages remove the select options text if default attribute "
|
||||
"is set"
|
||||
msgstr "בעמודי מוצר הסר את הטקסט \"בחר אפשרויות\" אם הוגדרה תכונת ברירת מחדל"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:269
|
||||
msgid "Determines this attribute default value in variable products."
|
||||
msgstr "קובע את תכונת ברירת המחדל במוצרים עם וריאציות."
|
||||
File diff suppressed because it is too large
Load Diff
525
spec/fixtures/dynamic_finders/plugin_version/dynamic-content-for-elementor/change_log/CHANGELOG.txt
vendored
Normal file
525
spec/fixtures/dynamic_finders/plugin_version/dynamic-content-for-elementor/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,525 @@
|
||||
# Dynamic Content for Elementor - by Dynamic.ooo
|
||||
|
||||
#### 1.9.5.5 - 03/09/2020
|
||||
* Fix: Pagination and Infinite Scroll didn’t work correctly
|
||||
* Fix: Form Steps extension didn’t work correctly
|
||||
* Fix: Global Settings panel issue
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.9.5.4 - 25/08/2020
|
||||
* Fix: Theme Builder v3 conflict
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.9.5.3 - 21/08/2020
|
||||
* Fix: Elementor v3 compatibility
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.9.5.2 - 20/06/2020
|
||||
* New: File Browser private folder
|
||||
* New: Views Template Lazy Load
|
||||
* New: Views Template Lazy Progressive Load
|
||||
* New: Views Template Lazy Placeholders
|
||||
* New: Views Posts Not in Terms
|
||||
* New: OOO Query Control support for Dynamic Tags
|
||||
* New: Form Conditional Field support for Token Form
|
||||
* Add: Unwrap maintain Style option
|
||||
* Add: Unwrap strip tags
|
||||
* Add: Amount Field support for Conditional fields
|
||||
* Add: Unwrap support for Document and Strip Tags
|
||||
* Tweak: Dynamic Template other origin for User and Author
|
||||
* Speed: OOO Query Control for Roles
|
||||
* Speed: OOO Query Control for CPT
|
||||
* Speed: OOO Query Control for ACF fields
|
||||
* Speed: OOO Query Control for Meta fields
|
||||
* Speed: Tokens optimization
|
||||
* Update: aFrame library
|
||||
* Fix: Form Steps compatibility with Elementor PRO 2.10.x
|
||||
* Fix: Panorama multi instance and Image Lazy load
|
||||
* Fix: Template Style fix
|
||||
* Fix: Form Dynamic Email multiple File Upload attachments
|
||||
* Fix: Amount Field support for Elementor Form Shortcode
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.9.4.2 - 27/05/2020
|
||||
* Fix: Post Listing Background Image
|
||||
* Fix: Visibility works with less code
|
||||
* Fix: Google Maps default Markers
|
||||
|
||||
#### 1.9.4.1 - 26/05/2020
|
||||
* Tweak: Advanced Transforms
|
||||
|
||||
#### 1.9.4 - 26/05/2020
|
||||
* New: Frontend Navigator
|
||||
* New: Tracker Header Global Setting
|
||||
* New: Extension Mask for Elementor Image, Elementor ImageBox, Elementor Video
|
||||
* New: Extension Unwrap
|
||||
* New: Enchanted Editor add Edit Template on Context Menu
|
||||
* New: ACF Repeater render as Accordion, Table DataTable and List with Icons
|
||||
* New: Changelog from License Tab
|
||||
* Add: Save Action stop next Action on Error
|
||||
* Add: Dynamic Email Action send Email in HTML + Plain text version
|
||||
* Add: Visibility Trigger Max per User
|
||||
* Add: Views can ignore Sticky posts
|
||||
* Add: Views active Filters
|
||||
* Update: Isotope js library
|
||||
* Speed: prevent double Elementor page render when Template System is enabled
|
||||
* Tweak: Forced Dynamic Tags on all supported Controls
|
||||
* Fix: Views Exposed Sort
|
||||
* Fix: PDF unwrap for long text block
|
||||
* Fix: Dynamic Posts Ajax CSS
|
||||
* Fix: Content Widget works with the_content filtes
|
||||
* Fix: Dynamic Backgound on Loop of Terms or User
|
||||
* Fix: Dynamic Background Video on Section
|
||||
* Fix: Dynamic User filter
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.14 - 24/04/2020
|
||||
* Add: Form Submit button
|
||||
* Add: Amount Field support for Acceptance and Checkboxes
|
||||
* New: Token EXPR
|
||||
* Add: Term Taxonomy List Image Style
|
||||
* Add: Pause on Hover on all Swiper carousel
|
||||
* Add: Views Widget Infinite Button
|
||||
* Add: Form Reset button
|
||||
* Add: Form Steps Summary
|
||||
* Add: Dynamic Posts Widget new Type field in standard render
|
||||
* Add: Remote Content support for Authentication
|
||||
* Add: Enchanted Form automatic submit on Field Change
|
||||
* Add: Save Action store Multiple data as Array
|
||||
* Speed: load only necessary assets in Debug mode
|
||||
* Speed: faster Editor opening speed
|
||||
* Security: moved minified assets to Uploads
|
||||
* Fix: multiple Carousel instance in archive page
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.9 - 06/04/2020
|
||||
* New: Visibility works also for Columns
|
||||
* New: Visibility Term Triggers
|
||||
* New: Visibility Dynamic Tag Triggers
|
||||
* New: Enchanted Form Min e Max Length to Text and Textarea fields
|
||||
* Update: Vendors
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.8.5 - 02/04/2020
|
||||
* New: Smooth Transition in Global settings
|
||||
* New: WebGL Image Distortion Hover Widget
|
||||
* New: Smart Assets minification in production
|
||||
* New: Token QUERY
|
||||
* New: Enchanted Form WYSIWYG to Textarea fields
|
||||
* New: Enchanted Form Address Autocomplete to Text fields
|
||||
* New: Enchanted Form set GET or POST Action to Form instead standard Ajax
|
||||
* New: Visibility support for WooCommerce (Product in Cart, Membership)
|
||||
* New: Dynamic Redirect Action for Elementor PRO Form
|
||||
* Add: Views Widget display as Slideshow
|
||||
* Add: Views Widget more advanced Terms filtering
|
||||
* Tweak: Enchanted Form support for more Field Width
|
||||
* Tweak: OOO Query Control quick Add or Edit
|
||||
* Tweak: Form Field Condition now support Multiple Values for a Single Field
|
||||
* Style: add settings for Form Amount field
|
||||
* Fix: Added compatibility with WordPress v5.4
|
||||
* Fix: Form Extension now works also in Elementor PRO PopUp
|
||||
* Fix: ACF Repeater working for repeaters inside Groups or Tabs
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.7.2 - 16/03/2020
|
||||
* Add: Count, Ajax Pagination and GroupBy Accordion to Views Widget
|
||||
* Add: Extension for Video Widget more Style settings
|
||||
* Add: Widget Cursor Tracker new style controls
|
||||
* Add: Dynamic Posts Widget TextZone Animation effect in roll-hover
|
||||
* Add: Enchanted Form Tooltip option for Field Description
|
||||
* Add: Enchanted Form all Column Width are now available
|
||||
* Fix: more stability and compatibility with 3rd part widgets
|
||||
* Fix: CSS styles on Archive pages and Widgets with loop
|
||||
* Fix: Elementor PRO Utils error
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.6.1 - 29/02/2020
|
||||
* New: Extension for Video Widget
|
||||
* New: Widget Cursor Tracker
|
||||
* Add: Dynamic Tag Token to Color Control
|
||||
* Add: ACF Repeater support for nested Repeater fields
|
||||
* Tweak: Widget Post Term Taxonomy
|
||||
* Fix: Compatibility with Elementor 2.9
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.5 - 19/02/2020
|
||||
* New: ACF Maps Widget support ACF Repeater data
|
||||
* Add: now Tokens support "return as Data" setting for Media Controls
|
||||
* Update: Vendors
|
||||
* Fix: Form scripts (Steps and Conditional logic) are now in footer
|
||||
* Fix: Compatibility with Elementor 2.9
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.4.3 - 07/02/2020
|
||||
* New: Dynamic Tags Template
|
||||
* Add: Dynamic Posts Widget on ACF Relationship inverted mode
|
||||
* Add: Save Action for Elementor PRO Form save as Options
|
||||
* Add: Save Action for Elementor PRO Form update Post, User and Term
|
||||
* Add: Conditional Fields for Elementor PRO Form support for Steps
|
||||
* Add: now Tokens support "options" filter to generate dynamic options on Elementor PRO Form fields
|
||||
* Tweak: ThreeSixty 360 autodetect type and frame number
|
||||
* Security: removed eval function from some widgets
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.3 - 12/01/2020
|
||||
* New: now Tokens support ACF Fields
|
||||
* Add: ACF Maps Dynamic Infowindow
|
||||
* Add: now Tokens Date support Post, User & Term subfields
|
||||
* Add: Term & Taxonomy now support ACF Color in terms
|
||||
* Add: Trigger scroll for Animated Text
|
||||
* Add: Visibility support for Context COOKIE and SERVER parameters
|
||||
* Add: Visibility support for Language trigger (WPML, PolyLang, TranslatePress and WeGlot)
|
||||
* Add: support for ACF Fields on Options page
|
||||
* Fix: ThreeSixty 360 Widget responsive width
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.2.1 - 18/12/2019
|
||||
* New: Extension Amount for Elementor PRO Form
|
||||
* Add: Visiblity support for Language trigger (WPML, PolyLang and TranslatePress)
|
||||
* Fix: Template render speed improvements
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.2 - 12/12/2019
|
||||
* New: now Tokens support WooCommerce Products
|
||||
* New: now Tokens can display the Post Taxonomy Terms
|
||||
* Fix: ACF Gallery Masonry render
|
||||
* Fix: Dynamic Posts ACF Link
|
||||
* Fix: Copy/Paste Cross-site compatible with Elementor 2.8
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.1 - 04/12/2019
|
||||
* New: Copy Paste Cross-site interface working on All browser
|
||||
* Tweak: ACF Repeater in Template Preview
|
||||
* Add: ACF Map Marker Clustering
|
||||
* Add: form Upload fields as Attachments on Dynamic Email
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.8.0 - 29/11/2019
|
||||
* New: Copy & Paste across different site domains
|
||||
* New: Copy to Clipboard Widget
|
||||
* New: WebGL BG Canvas Widget
|
||||
* New: Easy Rollback to previous version after plugin update
|
||||
* New: Force Full-Width or Canvas Template to Single Page from Dynamic Template System
|
||||
* Add: Description on Fields in Enchanted Form for Elementor PRO Form
|
||||
* UX: new Enchanted Form setting Tab
|
||||
* Update: Vendors
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.7.1 - 19/11/2019
|
||||
* New: Dynamic Tag Token Wizard mode
|
||||
* New: Extension Enchanted Editor
|
||||
* New: Extension Steps for Elementor Pro Form
|
||||
* Add: ACF Repeater Widget add tab [link] ACF Repeater Url
|
||||
* Add: Views Widget filter by meta array subfield
|
||||
* Add: support for MU Plugins
|
||||
* Add: Template System can be disabled
|
||||
* Add: Document Horizontal Inertia
|
||||
* Optimization: minifyed Css and more lightweight
|
||||
* Optimization: Widget FeaturedImage
|
||||
* Optimization: Widget TitlePost
|
||||
* Fix: DynamicPosts Query of filters by masonry grig render
|
||||
* Fix: DymamicPosts Include/Exclude Terms
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.7.0 - 27/10/2019
|
||||
* New: Animated Text
|
||||
* New: Extension Enchanted for Elementor Pro Form
|
||||
* New: Widget Button PDF
|
||||
* New: Widget Barcode & QrCode
|
||||
* New: Widget Add to Calendar
|
||||
* New: Token variable System
|
||||
* Add: Dynamic Posts Include/Exclude for Terms
|
||||
* Add: Dynamic Posts Date Filter (Past, Future, Today, Yesterday from post date or meta value)
|
||||
* Add: Multiple conditions to Conditional Fields for Elementor PRO Form
|
||||
* Add: AutoLogin and update User for Save Data for Elementor PRO Form
|
||||
* Add: Add to Favorites Button: Hide Button for NON Logged Users and Cookie counter
|
||||
* Fix: Acf Justyfier gallery
|
||||
* Fix: Modals delay enter animation
|
||||
* Fix: Minor fixes
|
||||
|
||||
#### 1.6.0.1 - 12/10/2019
|
||||
* Fix: Minor fixes
|
||||
* Out of Beta
|
||||
|
||||
#### 1.6.0 - 06/10/2019
|
||||
* New: Category SVG
|
||||
* New: Widget SVG Mask
|
||||
* New: Widget SVG Fe FilterEffects
|
||||
* New: Widget SVG Distortion
|
||||
* New: Widget SVG Blob
|
||||
* New: Widget SVG PathText
|
||||
* New: Widget SVG Morphing pattern image
|
||||
* New: Widget ACF Repeater
|
||||
* New: Widget User Fields
|
||||
* New: Widget Add to Favorites
|
||||
* New: Extension use Tokens everywhere in Dynamic field (no Elementor PRO needed)
|
||||
* New: Extension Save Data (as Post, User or Term) for Elementor PRO Form
|
||||
* New: Extension Export Data for Elementor PRO Form
|
||||
* New: Extension Message for Elementor PRO Form
|
||||
* New: Extension PDF for Elementor PRO Form
|
||||
* New: Extension Dynamic Email for Elementor PRO Form
|
||||
* New: Extension Visibility Conditional Fields for Elementor PRO Form
|
||||
* New: Control Ajax Select2 in Elementor Settings
|
||||
* New: Document Navigation Snap Scroll style
|
||||
* Add: Views Widget now also list User and Term objects
|
||||
* Add: Token variable Term
|
||||
* Add: Token variable Wp_Query
|
||||
* Add: Token varable Author
|
||||
* Add: Group By option in Views Widget
|
||||
* Add: Ignore Posts option in Views Widget
|
||||
* Add: Post selection for Visibility Extension
|
||||
* Add: language trigger for Visibility Extension
|
||||
* Add: user Events trigger (click and page load) for Visibility Extension
|
||||
* Add: File Browser Widget can get files from Medias in Post Field and from a CSV
|
||||
* Add: Inverted relation in ACF Relationship Widget for Bidirectional relations
|
||||
* Add: fix links (lazy images, relative links, ecc) of scraped code in Remote Content Widget
|
||||
* Add: Author Query filter in Dynamic Posts
|
||||
* Fix: search posts by author in admin
|
||||
* Fix: plugin speed optimizations
|
||||
|
||||
#### 1.5.3 - 20/07/2019
|
||||
* New: Token varable Date ([date], [date|Y m d], [date:+1 mounth|d-m-Y]
|
||||
* New: PODS Gallery Widget
|
||||
* Add: Pagination options on Views Widget
|
||||
* Add: Period trigger on Visibility extension
|
||||
* Add: Random trigger on Visibility extension
|
||||
* Add: Max trigger on Visibility extension
|
||||
* Add: Text manipulation on Meta Widget
|
||||
* Add: File Browser Widget can select from "Media Library" and "Post Medias"
|
||||
* Tweak: The Animations are now compatible with motion effects, work together. In continuous movement and at the same time animated in scroll. (this compatibility requires re-enabling)
|
||||
* Tweak: Select2 on all select controls
|
||||
* Tweak: Page Scrolling animations
|
||||
* Tweak: Tokens are supported in all Text widgets (WP native and Elementor's)
|
||||
* Fix: ACF Google Map Marker ACF Image
|
||||
* Fix: ACF Field Wysiwyg autop
|
||||
* Fix: ACF Gallery Lightbox
|
||||
* Fix: ACF Gallery support all field return type (array, url, id)
|
||||
* Fix: Visibility with Elementor Free v2.6.x
|
||||
|
||||
#### 1.5.2 - 25/06/2019
|
||||
* New: Widget SVG Morphing
|
||||
* New: All our widgets now support Token in text fields controls
|
||||
* New: Pods Relationship widget
|
||||
* New: Toolset Relationship widget
|
||||
* New: GeoIP based trigger for Visibility ("GeoIP Detection" plugin needed)
|
||||
* New: setting to remove shortcode (like Visual Composer) in Post Content Widget
|
||||
* New: advanced configuration for Excerpt Widget
|
||||
* Improvement: Current Post based trigger for Visibility
|
||||
* Improvement: Period based trigger for Visibility
|
||||
* Improvement: sortable post in Single Post List widget
|
||||
* Optimization: compression and minimization on all dce js
|
||||
* Tweak: Dynamic Posts native Template from term and taxonomy
|
||||
* Tweak: debug mode for Visibility
|
||||
* Update: more settings on Views widget
|
||||
* Fix: compatible with Elementor Free v2.6.0-beta1
|
||||
* Fix: Image Acf in Dynamic Posts
|
||||
* Fix: Rendering Template
|
||||
* Fix: Minor fixies
|
||||
|
||||
#### 1.5.1 - 06/06/2019
|
||||
* Improvement: File Browser, custom folder path and dynamic folder via meta_field
|
||||
* Improvement: Modals Widget close button
|
||||
* Added: Modals close button X Style
|
||||
* Optimized: rendering of template
|
||||
* Fix: Modals changed class name (required resave)
|
||||
* Fix: Visibility
|
||||
|
||||
#### 1.5.0 - 04/06/2019
|
||||
* Improvement: Visibility extension:
|
||||
-Move: from Advanced tab to his new own dedicated, divided by section
|
||||
-Add: Parameter condition
|
||||
-Add: Debug mode to show trigger in frontend
|
||||
-Add: Keep HTML
|
||||
-Add: Responsive condition
|
||||
-Fix: Specific User
|
||||
* Improvement: Dynamic Posts
|
||||
-Improved UX
|
||||
-New Layout:
|
||||
--New mode of ordering elements
|
||||
--Changed layout Position Image
|
||||
--Added order image
|
||||
--Added Text-Zone: Float in front
|
||||
-Added style Text-Zone x/y movement
|
||||
-Added style for modal in Ajax Page Load
|
||||
-Image-Overlay Color/Image/Gradient and Opacity
|
||||
-Removed in/out option for title, meta, author, read more
|
||||
-Improved MetaData: Icon, taxonomy block, Space
|
||||
-Improved Author: Align, Space, Avatar image style
|
||||
-Improved ReadMore Button: Tabs Colors
|
||||
-Fix: Infinite Scroll if number of posts is less than total element, if the value is 0 or empty get default number
|
||||
* Improvement: ACF Field:
|
||||
-now get the field in Archive and User template
|
||||
* Improvement: List Widgets Style
|
||||
-border Weight and width
|
||||
-ux label_block
|
||||
* Improvement: Advanced Transforms structure
|
||||
* Fix: Post-Content in Archive for Home Category and Tag.
|
||||
|
||||
#### 1.4.2 - 17/05/2019
|
||||
* Added: ACF Map Dynamic mode for same Terms
|
||||
* Added: support for multiple Post Meta in Widget Meta
|
||||
* Added: activation domain check
|
||||
* Tweak: List widgets
|
||||
* Tweak: Remote content
|
||||
|
||||
#### 1.4.1 - 08/05/2019
|
||||
* Added: InfoWindow in ACF Map
|
||||
* Fix: Dynamic Posts Carousel (Slick)
|
||||
* Fix: Template system user and search
|
||||
* Fix: Template system get from Single and Archive by Theme Builder Elementor Pro
|
||||
|
||||
#### 1.4.0 - 26/04/2019
|
||||
* New: Widget Toolset Field
|
||||
* New: Widget ACF Relationship
|
||||
* New: Widget Views
|
||||
* New: Document Inertia Scroll
|
||||
* New: Post Widget Meta
|
||||
* New: Post Widget Meta
|
||||
* New: Unfold option in Content Post
|
||||
* Tweak: Widget Views with ajax and infinite scroll
|
||||
* Tweak: update engine crawler for Remote Content
|
||||
* Tweak: Document page scroll effects
|
||||
* Tweak: Widget Views with Pagination and Exposed sorting
|
||||
* Tweak: Post Breadcrumb use Yoast if is active
|
||||
* Tweak: ACF Slider Force-Width, Force-Height and Background-Mode
|
||||
* Fix: compatibility with PHP 7.3
|
||||
* Fix: Dynamic pots offset value
|
||||
* Fix: Document page snap scroll
|
||||
* Fix: Post Content strip all tags if use the content limit
|
||||
* Fix: minor fix
|
||||
* Added: Support ACF Field date in Dynamic Posts, Act Field Widget.
|
||||
* Added: Now Tokens support string Filters
|
||||
* Updated: vendor plugin-update-checker
|
||||
* Optimization: less memory utilization in Visibility for section
|
||||
* Security: more secure method to verify Custom condition in Visibility
|
||||
|
||||
#### 1.3.1.1 - 07/03/2019
|
||||
* Fix: Template System after element template in archive
|
||||
* Fix: Dynmic Posts Dynamic-mode in home and term archive
|
||||
* Fix: Pagination of document snap-scroll
|
||||
* Fix: minor fix
|
||||
|
||||
#### 1.3.1 - 05/03/2019
|
||||
* New: Template System rebuild ui
|
||||
* New: Scrolling effects for page controls
|
||||
* New: Widget Pods Field
|
||||
* New: Widget Tilt
|
||||
* New: Document Setting > Page Scroll
|
||||
* New: Document Setting > Page Scroll Effect
|
||||
* New: Custom condition for Visibility
|
||||
* Tweak: Dynamic Posts Dynamic Taxonomy and Terms
|
||||
* Tweak: Change name of widget "Popups" to "Modals"
|
||||
* Fix: compatibility with Visibility in Editor
|
||||
* Fix: Compatibility with Elementor 2.5.1
|
||||
* Fix: Visibility condition
|
||||
|
||||
#### 1.2.1.1 - 11/01/2019
|
||||
* Update: more settings for FileBrowser
|
||||
* Update: Visibility integration with Elementor Editor (Navigator and Context menu)
|
||||
* Fix: compatibility with deprecated PHP version (5.6)
|
||||
|
||||
#### 1.2.1 - 06/01/2019
|
||||
* Optimization: Complete code refactoring
|
||||
* New: added pagination in Dynamic Posts
|
||||
* New: "Load More" button in Dynamic Posts
|
||||
* New: InfiniteScroll in Dynamic Posts
|
||||
* New: set your own API keys on Google Maps
|
||||
* New: Visibility now works also with Sections
|
||||
* New Advanced: RevealFx
|
||||
* Update: more choice for Visibility (Context, Conditional Tags, ecc), please check compatibility
|
||||
* Update: Advanced Rellax responsive value
|
||||
* Fix: compatibility with Customization setting in OceanWP
|
||||
|
||||
#### 1.1.2 - 12/11/2018
|
||||
* Fix: minor fix
|
||||
|
||||
#### 1.1.1 - 01/11/2018
|
||||
* Tweak: FireModalWindow: padding, border radius, icon after/before, UX
|
||||
* Tweak: Dynamic Content > Settings (UI)
|
||||
* Tweak: Dynamic Content > Settings for Search page
|
||||
* Tweak: Optimized for WPML
|
||||
* Tweak: ReadMore post hover-style
|
||||
* Optimization: Plugin Core for future release
|
||||
* Upgrade: Library (Swiper, Anime, Reveal, Rellax)
|
||||
* New: Widget List-Single-Posts-Menu
|
||||
* New: Widget PopUps
|
||||
* New: Dashboard Info
|
||||
* New: Backend Column (Dynamic Content template) for Pages, Posts, CPT and Taxonomy
|
||||
|
||||
#### 1.1.0.1 - 13/09/2018
|
||||
* Fix: Ajax Page Open, compatibility with Astra Theme
|
||||
|
||||
#### 1.1.0 - 12/09/2018
|
||||
* New: Taxonomy in TemplateSystem global settings
|
||||
* Tweak: Transform, added condition Enabled Transforms (Requred activation for the elements used)
|
||||
* Tweak: ACF Maps, added Snazzy Style
|
||||
* Tweak: Dynamic Posts, Query Parent-child logic
|
||||
|
||||
#### 1.0.8.2 - 06/09/2018
|
||||
* Fix: Ajax Page Open (thanks Sylvia)
|
||||
* Tweak: Single Template blank page
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.8.1 - 01/09/2018
|
||||
* Fix: Transform
|
||||
|
||||
#### 1.0.8 - 31/08/2018
|
||||
* Fix: Dynamic Posts pophover transforms for single items
|
||||
* Fix: Post Title
|
||||
* Fix: ACF Fields
|
||||
* Fix: ACF Gallery
|
||||
* Fix: SnapScroll
|
||||
* Minor Fixes
|
||||
|
||||
#### 1.0.7 - 27/08/2018
|
||||
* New: Advanced Parallax for any widget (with Rellax https://dixonandmoe.com/rellax/)
|
||||
* Tweak: Post content shortcodes
|
||||
* Security: Dev widget configurable only by admin
|
||||
* Fix: Remote Content Cache working well and introduced Max Connection Time
|
||||
* Tweak: PhpRaw check for working code before save
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.6 - 25/08/2018
|
||||
* Tweak: Template settings archive for home
|
||||
* Tweak: TwentyTwenty Before/After Dynamic fields (Pro)
|
||||
* Tweak: FileBrowser style tab
|
||||
* New: Now the transformations controls is advanced for any widget
|
||||
* New: Group Controls HSB
|
||||
|
||||
#### 1.0.5 - 20/08/2018
|
||||
* New: Creative widget Panorama
|
||||
* New: Creative widget TwentyTwenty Before/After
|
||||
* Fix: Transforms container
|
||||
|
||||
#### 1.0.4 - 12/08/2018
|
||||
* New: Transformations responsive Controls
|
||||
* New: Creative widget Parallax
|
||||
* New: Creative widget Threesixty 360, image rotator
|
||||
* New: Dev widget RemoteContent
|
||||
* Fix: Fixed counter hits for FileBrowser
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.3 - 07/08/2018
|
||||
* Tweak: Transform on Featured-image and ACF-image
|
||||
* Tweak: Dynamic Posts, Query "From specific post "get from all cpt
|
||||
* Tweak: Enchanted FileBrowser with native WP Media meta
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.2 - 27/07/2018
|
||||
* Tweak: Featured Image
|
||||
* Tweak: ACF Fields / ACF Gallery / ACF Map
|
||||
* Added: Blend Mode and Filters
|
||||
* Added: In transform TranslateX/Y
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.1 - 25/07/2018
|
||||
* Tweak: ACF Fields / ACF Gallery / ACF Slider / ACF Map
|
||||
* Tweak: Updated Swiper library to v4.3.3
|
||||
* Compatibility for Elementor 2.1.0
|
||||
* Fix: Minor bugfix
|
||||
|
||||
#### 1.0.0 - 26/06/2018
|
||||
* Initial relese
|
||||
|
||||
#### 0.0.1 - 03/05/2017
|
||||
* First steps
|
||||
54
spec/fixtures/dynamic_finders/plugin_version/editors-note/composer_file/package.json
vendored
Normal file
54
spec/fixtures/dynamic_finders/plugin_version/editors-note/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"name": "@hamworks/editors-note",
|
||||
"version": "0.0.3",
|
||||
"author": "Hiroshi Urabe <urabe@ham.works> (https://ham.works)",
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^4.4.0",
|
||||
"@wordpress/icons": "^2.5.0",
|
||||
"@wordpress/rich-text": "^3.21.0",
|
||||
"moment": "^2.28.0",
|
||||
"uuid": "^8.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/browserslist-config": "2.7.0",
|
||||
"@wordpress/scripts": "^12.1.1",
|
||||
"prettier": "npm:wp-prettier@^2.0.5"
|
||||
},
|
||||
"license": "GPL-2.0+",
|
||||
"main": "build/index.js",
|
||||
"release-it": {
|
||||
"hooks": {
|
||||
"before:bump": "bash ./bin/create-release.sh editors-note ${version}",
|
||||
"after:bump": "bash ./bin/create-zip.sh editors-note",
|
||||
"after:release": "bash ./bin/cleanup.sh editors-note"
|
||||
},
|
||||
"github": {
|
||||
"release": true,
|
||||
"assets": [
|
||||
"editors-note.zip"
|
||||
]
|
||||
},
|
||||
"npm": {
|
||||
"publish": false
|
||||
}
|
||||
},
|
||||
"repository": {
|
||||
"url": "git@github.com:team-hamworks/editors-note.git",
|
||||
"type": "git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "NODE_ENV=production npm run build:dev",
|
||||
"build:dev": "wp-scripts build",
|
||||
"format-js": "wp-scripts format-js",
|
||||
"env": "wp-scripts env",
|
||||
"lint-js": "wp-scripts lint-js src",
|
||||
"lint-js:fix": "npm run lint-js -- --fix",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"wp-env": {
|
||||
"plugin-dir": "editors-note",
|
||||
"plugin-name": "editors-note",
|
||||
"welcome-build-command": "npm run start"
|
||||
}
|
||||
}
|
||||
64
spec/fixtures/dynamic_finders/plugin_version/eladdon/translation_file/languages/elementaddon.pot
vendored
Normal file
64
spec/fixtures/dynamic_finders/plugin_version/eladdon/translation_file/languages/elementaddon.pot
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
# Copyright (C) 2020 ThemeAsia
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Element Addon 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ElementAddon\n"
|
||||
"POT-Creation-Date: 2020-09-16 09:40:47+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: elementaddon.php:175
|
||||
msgid "\"%1$s\" require \"%2$s\" to be installed and activated"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Element Addon"
|
||||
msgstr ""
|
||||
|
||||
#: elementaddon.php:177 elementaddon.php:191
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#: elementaddon.php:189 elementaddon.php:204
|
||||
msgid "\"%1$s\" require \"%2$s\" version \"%3$s\" or greater"
|
||||
msgstr ""
|
||||
|
||||
#: elementaddon.php:206
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/example.php:15
|
||||
msgid "Example Widget"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/example.php:41
|
||||
msgid "Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: widgets/pricing.php:14 widgets/pricing.php:41
|
||||
msgid "Pricing"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://example.com/plugin-name"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Element Addon is elementor addon plugin, after install you will get free "
|
||||
"matarial design addons"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "ThemeAsia"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://themeasia.net"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,4 @@
|
||||
/**1.0.1.2 - 2020.xx.xx **/
|
||||
- Fixed: shoretcode {user_login}
|
||||
|
||||
~ The first released.
|
||||
@@ -0,0 +1,457 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wordpress Contact Form 7 PDF-1.0.0\n"
|
||||
"POT-Creation-Date: 2020-10-01 11:28+0530\n"
|
||||
"PO-Revision-Date: 2019-04-17 20:31+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: RedefiningTheWeb(developer@redefiningtheweb.com)\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;esc_attr__;esc_attr_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-ciepdf-elementor-admin.php:152
|
||||
msgid "WP e-PDF Lite Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:109
|
||||
msgid "ePdf-Support Elements Pdf Creator Addon For Elementor Lite"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:113
|
||||
msgid "Basic Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:116
|
||||
msgid "Advance Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:119
|
||||
msgid "Header Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:121
|
||||
msgid "Footer Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:124
|
||||
msgid "CSS Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:127
|
||||
msgid "BODY Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:130
|
||||
msgid "WaterMark Setting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:182
|
||||
msgid ""
|
||||
"* All values which you enter like font-size, top-margin, body-left margin, "
|
||||
"body-right margin etc. are in <strong>mm</strong> not in px"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf-elementor-admin-display.php:186
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:9
|
||||
msgid "PDF File Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:14
|
||||
msgid "Post Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:16
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:21
|
||||
msgid "Select what is name of generated pdf file."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:25
|
||||
msgid "Rtl Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:29
|
||||
msgid ""
|
||||
"Check it if you want generate pdf in Arabic or languages which start from "
|
||||
"right align."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:33
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:37
|
||||
msgid "Select color for generated pdf file."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:41
|
||||
msgid "Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:47
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:99
|
||||
msgid "Upload/Add image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:48
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:100
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_advance.php:49
|
||||
msgid "Select background image for generated pdf file."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:9
|
||||
msgid "Allowed Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:27
|
||||
msgid "Choose on which post type you want to generate pdf."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:31
|
||||
msgid "Display Post Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:34
|
||||
msgid "Check it if you want to show date of post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:38
|
||||
msgid "Display Post Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:41
|
||||
msgid "Check it if you want to show tag list of post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:45
|
||||
msgid "Display Post Category List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:48
|
||||
msgid "Check it if you want to show category of the post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:52
|
||||
msgid "Hide Page Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:55
|
||||
msgid "Check it if you want to hide page title."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:59
|
||||
msgid "Include Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_basic.php:62
|
||||
msgid "Check it if you want to show featured image."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:9
|
||||
msgid "Body Top Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:11
|
||||
msgid ""
|
||||
"Enter your required top margin for main pdf body (By default 37).Minimum 37 "
|
||||
"required otherwise will not work."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:15
|
||||
msgid "Body Left Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:18
|
||||
msgid "Enter your required left margin for main pdf body (By default 15)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:22
|
||||
msgid "Body Right Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:26
|
||||
msgid "Enter your required right margin for main pdf body (By default 15)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:30
|
||||
msgid "Body Font Family"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:46
|
||||
msgid "Body Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_body.php:50
|
||||
msgid "Enter your required font size for Body of the Pdf(By default 15)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:316
|
||||
msgid "Page Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:330
|
||||
msgid "Choose the size of Pdf page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:334
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:338
|
||||
msgid "Enter your required custom css for pdf."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:342
|
||||
msgid "Page Orientation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:347
|
||||
msgid "Portrait"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:351
|
||||
msgid "Landscape"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_css.php:353
|
||||
msgid "Choose Your Required Orientation for PDF."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:8
|
||||
msgid "Remove Footer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:11
|
||||
msgid "Check it if you want to remove footer."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:19
|
||||
msgid "Footer Html"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:34
|
||||
msgid "Footer Top Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:37
|
||||
msgid "Enter your required top margin (By default 15)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:41
|
||||
msgid "Footer Section Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:46
|
||||
msgid "Enter your required font size for Pdf Footer(By default 15)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:50
|
||||
msgid "Footer Section Font"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:65
|
||||
msgid "Remove Page Numbering"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_footer.php:68
|
||||
msgid "Check it if you want to remove page number."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:8
|
||||
msgid "Remove Header"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:11
|
||||
msgid "Check it if you want to remove header."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:19
|
||||
msgid "Header Html"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:34
|
||||
msgid "Header Section Font"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:51
|
||||
msgid "Header Top Margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:54
|
||||
msgid "Enter your required top margin (By default 7)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:58
|
||||
msgid "Header Section Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_header.php:63
|
||||
msgid "Enter your required font size for Pdf Header(By default 15)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:8
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:48
|
||||
msgid "Watermark Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:15
|
||||
msgid "Check it if you want to show Watermark text."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:22
|
||||
msgid "Watermark Font"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:35
|
||||
msgid "Choose the font family of Watermark text."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:39
|
||||
msgid "Watermark Rotation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:44
|
||||
msgid "Enter your required rotation(in degree) for Watermark text."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:53
|
||||
msgid "Enter Watermark Text which you want to show on pdf."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:57
|
||||
msgid "Text Transparency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:62
|
||||
msgid "Enter the text Transparency of Watermark."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:69
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:90
|
||||
msgid "Watermark Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:75
|
||||
msgid "Check it if you want to show Watermark image."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:81
|
||||
msgid "Image Transparency"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:86
|
||||
msgid "Enter the image Transparency of Watermark."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:101
|
||||
msgid "Choose your Watermark Image which you want to show on pdf."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:107
|
||||
msgid "Image Dimension"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:119
|
||||
msgid "Choose the dimension of Watermark Image."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:127
|
||||
msgid "Image Width"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:132
|
||||
msgid "Set the Width of Watermark Image."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:136
|
||||
msgid "Image Height"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:141
|
||||
msgid "Set the Height of Watermark Image."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:152
|
||||
msgid "Integer Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:163
|
||||
msgid "Image Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:180
|
||||
msgid "Horizontal Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ciepdf_tabs/ciepdf_watermark.php:186
|
||||
msgid "Vertical Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:13
|
||||
msgid "Pdf - Generator"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:29
|
||||
msgid "PDF Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:36
|
||||
msgid "Pdf button Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:38
|
||||
msgid "Enter pdf button width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:46
|
||||
msgid "Pdf button Height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:48
|
||||
msgid "Enter pdf button height"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:56
|
||||
msgid "PDF Button Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:67
|
||||
msgid "Class of Html element which exclude from pdf"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:69
|
||||
#: includes/elementor_pdf_generator.php:78
|
||||
msgid "For multiple use commma"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:76
|
||||
msgid "ID of Html element which exclude from pdf"
|
||||
msgstr ""
|
||||
|
||||
#: includes/elementor_pdf_generator.php:191
|
||||
msgid "Download PDF"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-ciepdf-elementor-public.php:143
|
||||
msgid "Some Thing Went Wrong! Please Try Again"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-ciepdf-elementor-public.php:236
|
||||
msgid "Categories : "
|
||||
msgstr ""
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/exs-widgets/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/exs-widgets/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 0.0.1 =
|
||||
* September, 7, 2020
|
||||
* Initial release.
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "five-star-ratings-shortcode",
|
||||
"version": "1.1.4",
|
||||
"description": "This plugin adds accessible, attractive 5-star ratings anywhere on your site with a simple shortcode. The plugin uses Font Awesome icons via their SVG + JavaScript method.",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"compile-sass": "node-sass -w assets/scss -o assets/css --output-style expanded",
|
||||
"minify-css": "postcss assets/css/admin.css -o assets/css/admin.min.css -w",
|
||||
"bundledDependencies": [
|
||||
"fontawesome"
|
||||
]
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/seezee/Five-Star-Ratings-Plugin.git"
|
||||
},
|
||||
"keywords": [
|
||||
"icon",
|
||||
"wordpress",
|
||||
"star",
|
||||
"ratings",
|
||||
"shortcode",
|
||||
"accessible"
|
||||
],
|
||||
"author": "Chris J. Zähller",
|
||||
"license": "GPL-3.0+",
|
||||
"bugs": {
|
||||
"url": "https://github.com/seezee/Five-Star-Ratings-Plugin/issues"
|
||||
},
|
||||
"homepage": "https://github.com/seezee/Five-Star-Ratings-Plugin#readme",
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-free": "^5.14.0",
|
||||
"node-sass": "^4.14.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"cssnano": "^4.1.10",
|
||||
"postcss-cli": "^6.1.3"
|
||||
}
|
||||
}
|
||||
61
spec/fixtures/dynamic_finders/plugin_version/gAppointments/change_log/changelog.txt
vendored
Normal file
61
spec/fixtures/dynamic_finders/plugin_version/gAppointments/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
============================
|
||||
Version 1.9.4 ( 11 June 2020 )
|
||||
============================
|
||||
|
||||
- Enhancement: New provider can prevent duplicate title
|
||||
- Enhancement: Appointments page now have available options in "Bulk actions" - "Cancel", "Confirm" appointments
|
||||
- Feature: Appointments page now have an option in "Bulk actions" - "Resend Email Notifications"
|
||||
- Feature: Appointments page can be sorted by chosen columns
|
||||
- Feature: Each provider now have a field "location", it can be synced with appointments in google calendar
|
||||
|
||||
|
||||
============================
|
||||
Version 1.9.3 ( 24 Oct 2019 )
|
||||
============================
|
||||
|
||||
- Fixed bug: Fixed an issue with ICS generation
|
||||
- Fixed bug: Default google calendar for appointments with no provider regardless of settings
|
||||
- Fixed bug: Assets unreachable
|
||||
- Fixed bug: Appointment date not being picked p in notifications upon submitting a form entry
|
||||
- Fixed bug: Email being picked up instead of phone number
|
||||
- Enhancement: Made some changes to work with thrive architect.
|
||||
- Enhancement: Added ability to complete appointments after X hours instead of instant completion
|
||||
- Enhancement: Extended cancellation functionality to allow cancelling until X hours before teh appointment
|
||||
- Feature: Clients can reschedule their appointments from the front-end
|
||||
|
||||
|
||||
|
||||
============================
|
||||
Version 1.9.2 ( 17 Jul 2019 )
|
||||
============================
|
||||
|
||||
- Fixed bug: Fixed google calendar api authentication not working in some cases
|
||||
- Fixed bug: Some calendar appearance colors not affecting front-end calendar
|
||||
- Fixed bug: Removed deprecated function usages
|
||||
- Fixed bug: Fixed an issue where appointment date was not being sent in initial gforms notification
|
||||
- Fixed bug: Custom time slots with the same starting hour being removed when saving service.
|
||||
- Fixed bug: Bad available time slot calculation on certain cases
|
||||
- Enhancement: Added %appointment_duration% merge tag to certain appointment notifications
|
||||
- Enhancement: Added the ability to override appointment email template, see the documentation for details
|
||||
- Enhancement: Provider and Service fields are now being sent as names instead of ids when exporting gravity forms entries
|
||||
- Enhancement: Added ability to paginate appointments in shortcodes, see the documentation for details.
|
||||
- Enhancement: Added ability to add a description to appointments when generating calendar links (ical)
|
||||
- Enhancement: Documentation is being moved to an online source instead of local ()
|
||||
|
||||
============================
|
||||
Version 1.9.1 ( 21 Dec 2018 )
|
||||
============================
|
||||
|
||||
- New Feature: Google Calendar synchronization.
|
||||
|
||||
============================
|
||||
Version 1.9 ( 8 Oct 2018 )
|
||||
============================
|
||||
|
||||
- Feature: Outlook event generator.
|
||||
- Update: Updated CMB2 library
|
||||
- Fixed bug: Email time always at 12:00AM
|
||||
- Fixed bug: Booking problem when submitting removed slots.
|
||||
- Fixed bug: Calendar is required when not marked as required.
|
||||
- Enhancement: New filters and hooks in ga_appointments_shortcode.
|
||||
- Enhancement: New filters and hooks in ga_provider_appointments_shortcode.
|
||||
@@ -0,0 +1,865 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#: includes/settings/settings-pyg.php:294
|
||||
#: includes/settings/settings-pyg.php:302
|
||||
#: includes/settings/settings-pyg.php:310
|
||||
#: includes/settings/settings-pyg.php:318
|
||||
#: includes/settings/settings-pyg.php:337
|
||||
#: includes/settings/settings-pyg.php:345
|
||||
#: includes/settings/settings-pyg.php:353
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-16 15:43+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Gateway Payougo Checkout"
|
||||
msgstr "Passerelle Payougo de paiement"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://payougo.com/"
|
||||
msgstr "https://payougo.com/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Accept all Mobile money payment (Orange, MTN), Simplify your merchant services and your payment gateway today! "
|
||||
msgstr "Acceptez tous les paiements Mobile Money (Orange, MTN), simplifiez vos services marchands et votre passerelle de paiement dès aujourd'hui!"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "BusinessOne"
|
||||
msgstr "BusinessOne"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://payougo.com/"
|
||||
msgstr "https://payougo.com/"
|
||||
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:62
|
||||
msgid "Capture Charge"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:86
|
||||
msgid ""
|
||||
"NOTE: PaYouGo does not accept decimal places for the currency in which you "
|
||||
"are transacting. The \"Number of Decimals\" "
|
||||
"."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:181
|
||||
msgid "Unable to capture charge!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:189
|
||||
#, php-format
|
||||
msgid "PaYouGo Checkout charge complete (Charge ID: %s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:231
|
||||
msgid "Unable to void charge!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:233
|
||||
#, php-format
|
||||
msgid "PaYouGo Checkout charge voided (Charge ID: %s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:340
|
||||
msgid "This represents the fee PaYouGo collects for the transaction."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:341
|
||||
msgid "PaYouGo Fee:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:350
|
||||
msgid ""
|
||||
"This represents the net total that will be credited to your PaYouGo account. "
|
||||
"This may be in a different currency than is set in your PaYouGo account."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:351
|
||||
msgid "PaYouGo Payout:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:387
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%1$sWarning!%2$s PaYouGo Checkout will drop support for WooCommerce %3$s in "
|
||||
"a soon to be released update. To continue using PaYouGo Checkout please "
|
||||
"%4$supdate to %1$sWooCommerce 3.0%2$s or greater%5$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:22
|
||||
msgid "Unable to communicate with PaYouGo. Please try your payment again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:23
|
||||
msgid ""
|
||||
"PaYouGo rejected your email address because it is not valid. Please double-"
|
||||
"check your email address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:26
|
||||
msgid "Your PaYouGo checkout session is invalid. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:27
|
||||
msgid "Your PaYouGo checkout session has expired. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:29
|
||||
msgid ""
|
||||
"Your PaYouGo payment has already been completed. Please contact the store "
|
||||
"owner for more information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:30
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please check out again or "
|
||||
"contact PaYouGo for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:31
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please select an alternative "
|
||||
"method of payment or contact PaYouGo for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:33
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please return to PaYouGo and "
|
||||
"select a new method of payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:35
|
||||
msgid ""
|
||||
"You have not approved this transaction on the PaYouGo website. Please check "
|
||||
"out again and be sure to complete all steps of the PaYouGo checkout process."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:36
|
||||
msgid ""
|
||||
"Your shipping address may not be in a different country than your country of "
|
||||
"residence. Please double-check your shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:37
|
||||
msgid ""
|
||||
"This store does not accept transactions from buyers in your country. Please "
|
||||
"contact the store owner for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:38
|
||||
msgid ""
|
||||
"The transaction is over the threshold allowed by this store. Please contact "
|
||||
"the store owner for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:40
|
||||
msgid ""
|
||||
"Your transaction was declined. Please contact the store owner for "
|
||||
"assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:41
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:46
|
||||
msgid ""
|
||||
"The country in your shipping address is not valid. Please double-check your "
|
||||
"shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:42
|
||||
msgid ""
|
||||
"The street address in your shipping address is not valid. Please double-"
|
||||
"check your shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:43
|
||||
msgid ""
|
||||
"The city in your shipping address is not valid. Please double-check your "
|
||||
"shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:44
|
||||
msgid ""
|
||||
"The state in your shipping address is not valid. Please double-check your "
|
||||
"shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:45
|
||||
msgid ""
|
||||
"The ZIP code or postal code in your shipping address is not valid. Please "
|
||||
"double-check your shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:47
|
||||
msgid ""
|
||||
"PaYouGo rejected your shipping address because the city, state, and/or ZIP "
|
||||
"code are incorrect. Please double-check that they are all spelled correctly "
|
||||
"and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:49
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please contact PaYouGo for "
|
||||
"assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:51
|
||||
msgid ""
|
||||
"The redemption code(s) you entered on PaYouGo cannot be used at this time. "
|
||||
"Please return to PaYouGo and remove them."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:54
|
||||
msgid ""
|
||||
"Your funding instrument is invalid. Please check out again and select a new "
|
||||
"funding source."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:55
|
||||
#, php-format
|
||||
msgid ""
|
||||
"An error (%s) occurred while processing your PaYouGo payment. Please "
|
||||
"contact the store owner for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:65
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:135
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:156
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:314
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:359
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:394
|
||||
msgid "Check out with PaYouGo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:349
|
||||
msgid "— or —"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:364
|
||||
msgid "Pay with PaYouGo Credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:77
|
||||
msgid "Confirm your PaYouGo order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:258
|
||||
msgid "Billing details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:261
|
||||
msgid "Address:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:263
|
||||
msgid "Name:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:267
|
||||
msgid "Email:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:273
|
||||
msgid "Phone:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:297
|
||||
msgid "Create an account?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:306
|
||||
msgid ""
|
||||
"Create an account by entering the information below. If you are a returning "
|
||||
"customer please login at the top of the page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:346
|
||||
msgid "Shipping details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid "Your payment with Payougo is failed. Please check out again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid ""
|
||||
"You returned to the site without making a payment. Please check out again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid " : Paiement réussi pour la commande "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid "Paiement réussi pour la commande #"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:480
|
||||
msgid ""
|
||||
"Sorry, an error occurred while trying to retrieve your information from "
|
||||
"PaYouGo. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:481
|
||||
msgid "PAYMENT FAILED<br>Payougo transaction code : %s"
|
||||
msgstr "PAIEMENT ECHEC<br>Code de la transaction Payougo : %s"
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:514
|
||||
msgid "PAYMENT SUCCESS<br>Payougo transaction code : %s"
|
||||
msgstr "PAIEMENT SUCCESS<br>Code de la transaction Payougo : %s"
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:485
|
||||
msgid "Your Payougo checkout session has expired. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:588
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:648
|
||||
msgid "Your payment with PaYougo is failed. Please check out again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:653
|
||||
msgid ""
|
||||
"You have cancelled Checkout with Payougo. Please try to process your order "
|
||||
"again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1023
|
||||
#: includes/class-wc-gateway-pyg-ipn-handler.php:190
|
||||
msgid ""
|
||||
"Payment authorized. Change payment status to processing or complete to "
|
||||
"capture funds."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1025
|
||||
#: includes/class-wc-gateway-pyg-ipn-handler.php:192
|
||||
#, php-format
|
||||
msgid "Payment pending (%s)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1196
|
||||
msgid "Your PaYouGo checkout session has expired. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1207
|
||||
msgid "The payment method was updated for this subscription."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1212
|
||||
msgid "The payment method was updated for all your current subscriptions."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1221
|
||||
msgid ""
|
||||
"There was a problem updating your payment method. Please try again later or "
|
||||
"use a different payment method."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1244
|
||||
msgid ""
|
||||
"You have cancelled Checkout with PaYouGo. The payment method was not updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:82
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:287
|
||||
msgid "Error: You must enter API password."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:302
|
||||
msgid "Missing credential"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:306
|
||||
msgid "Invalid credential object"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:310
|
||||
msgid "Invalid environment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:508
|
||||
#, php-format
|
||||
msgctxt "data sent to PaYouGo"
|
||||
msgid "Orders with %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:157
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s in Gateway PaYouGo Checkout plugin can only be called once"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:281
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires WooCommerce to be activated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:285
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires WooCommerce version 2.5 or "
|
||||
"greater"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:289
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires cURL to be installed on your "
|
||||
"server"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:292
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires OpenSSL >= 1.0.1 to be "
|
||||
"installed on your server"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:319
|
||||
#, php-format
|
||||
msgid ""
|
||||
"PaYouGo Checkout is almost ready. To get started, <a href=\"%s\">connect "
|
||||
"your PaYouGo account</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:450
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:453
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-with-payougo-credit.php:15
|
||||
msgid "PaYouGo Credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:21
|
||||
msgid ""
|
||||
"You must be logged in to pay or go to the checkout page to fill in your "
|
||||
"information and pay with PaYougo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:18
|
||||
msgid "Payougo Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:19
|
||||
msgid "Allow customers to conveniently checkout directly with Payougo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:22
|
||||
msgid "Pay with Payougo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:169
|
||||
msgid ""
|
||||
"Sorry, an error occurred while trying to process your payment. Please try "
|
||||
"again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:202
|
||||
msgid "No API certificate on file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:211
|
||||
#, php-format
|
||||
msgid "expires on %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:215
|
||||
#, php-format
|
||||
msgid "expired on %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:225
|
||||
#, php-format
|
||||
msgid "Certificate belongs to API username %1$s; %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:227
|
||||
msgid "The certificate on file is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:298
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:332
|
||||
msgid ""
|
||||
"Error: The API credentials you provided are not valid. Please double-check "
|
||||
"that you entered them correctly and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:303
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:336
|
||||
msgid ""
|
||||
"An error occurred while trying to validate your API credentials. Unable to "
|
||||
"verify that your API credentials are correct."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:310
|
||||
msgid "Error: The API certificate is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:318
|
||||
msgid "Error: The API certificate has expired."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:323
|
||||
msgid ""
|
||||
"Error: The API username does not match the name in the API certificate. "
|
||||
"Make sure that you have the correct API certificate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:341
|
||||
msgid "Error: You must provide API signature or certificate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:359
|
||||
msgid ""
|
||||
"The \"require billing address\" option is not enabled by your account and "
|
||||
"has been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:378
|
||||
msgid "Refund Error: You need to specify a refund amount."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:398
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:421
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:471
|
||||
#, php-format
|
||||
msgid "PaYouGo refund completed; transaction ID = %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:445
|
||||
msgid ""
|
||||
"Refund Error: All transactions have been fully refunded. There is no amount "
|
||||
"left to refund"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:447
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Refund Error: The requested refund amount is too large. The refund amount "
|
||||
"must be less than or equal to %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:562
|
||||
#, php-format
|
||||
msgid "Already using URL as image: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:570
|
||||
msgid "Select a image to upload"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:571
|
||||
msgid "Use this image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:572
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:575
|
||||
msgid "Add image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:583
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:622
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: includes/exceptions/class-wc-gateway-pyg-api-exception.php:40
|
||||
#: includes/exceptions/class-wc-gateway-pyg-api-exception.php:68
|
||||
msgid "An error occurred while calling the PaYouGo API."
|
||||
msgstr ""
|
||||
|
||||
#: includes/exceptions/class-wc-gateway-pyg-api-exception.php:64
|
||||
#, php-format
|
||||
msgid "PaYouGo error (%1$s): %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/exceptions/class-wc-gateway-pyg-missing-session-exception.php:19
|
||||
msgid "The buyer's session information could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:24
|
||||
msgid "Setup or link an existing PaYouGo account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:25
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s or <a href=\"#\" class=\"pyg-toggle-settings\">click here to toggle "
|
||||
"manual API credential input</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:38
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To reset current credentials and use another account %1$sclick here%2$s. "
|
||||
"%3$sLearn more about your API Credentials%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:39 includes/settings/settings-pyg.php:61
|
||||
msgid "Reset current credentials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:41 includes/settings/settings-pyg.php:63
|
||||
msgid "Learn more"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:46
|
||||
msgid "Setup or link an existing PaYouGo Sandbox account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:47
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s or <a href=\"#\" class=\"pyg-toggle-sandbox-settings\">click here to "
|
||||
"toggle manual API credential input</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:60
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your account setting is set to sandbox, no real charging takes place. To "
|
||||
"accept live payments, switch your environment to live and connect your "
|
||||
"PaYouGo account. To reset current credentials and use other sandbox account "
|
||||
"%1$sclick here%2$s. %3$sLearn more about your API Credentials%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:67
|
||||
msgid "Enable PaYouGo Credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:69
|
||||
msgid ""
|
||||
"This option is disabled. Currently PaYouGo Credit only available for U.S. "
|
||||
"merchants using USD currency."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:72
|
||||
msgid ""
|
||||
"This enables Payougo Credit, which displays a Payougo Credit button next to "
|
||||
"the primary PaYouGo Checkout button. Payougo Checkout lets you give "
|
||||
"customers access to financing through PaYouGo Credit® - at no additional "
|
||||
"cost to you. You get paid up front, even though customers have more time to "
|
||||
"pay. A pre-integrated payment button shows up next to the PaYouGo Button, "
|
||||
"and lets customers pay quickly with PaYouGo Credit®. (Should be unchecked "
|
||||
"for stores involved in Real Money Gaming.)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:276
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Activer/Désactiver"
|
||||
|
||||
#: includes/settings/settings-pyg.php:278
|
||||
msgid "Enable Payougo Checkout"
|
||||
msgstr "Activer la passerelle Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:279
|
||||
msgid ""
|
||||
"This enables Payougo Checkout which allows customers to checkout directly "
|
||||
"via Payougo from your cart page."
|
||||
msgstr "Cela permet aux clients de payer directement via Payougo à partir de la page de votre panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:285
|
||||
#: includes/settings/settings-pyg.php:373
|
||||
msgid "Account Settings"
|
||||
msgstr "Paramètres de compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:291
|
||||
msgid "Username account"
|
||||
msgstr "Nom d'utilisateur du compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:293
|
||||
msgid ""
|
||||
"This reserve to your account in payougo. for example : youraddress@email.com"
|
||||
msgstr "Il s'agit de login votre compte dans payougo. par exemple: youraddress@email.com"
|
||||
|
||||
#: includes/settings/settings-pyg.php:299
|
||||
msgid "Password account"
|
||||
msgstr "Mot de passe du compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:301
|
||||
msgid "Put password for your account Payougo"
|
||||
msgstr "Mettez le mot de passe pour votre compte Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:307
|
||||
msgid "API Key Payougo"
|
||||
msgstr "Clé API Payougo généré dans votre compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:309
|
||||
msgid "for example : ASsqXEmw4KzmX-CPChWSVDNCNfd.A3YNR7uz-VncXXAERFDFDFDF"
|
||||
msgstr "par : ASsqXEmw4KzmX-CPChWSVDNCNfd.A3YNR7uz-VncXXAERFDFDFDF"
|
||||
|
||||
#: includes/settings/settings-pyg.php:315
|
||||
msgid "Payougo Version SSL"
|
||||
msgstr "Verson Payougo SSL"
|
||||
|
||||
#: includes/settings/settings-pyg.php:322
|
||||
msgid "TLSv1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:323
|
||||
msgid "TLSv1.2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:328
|
||||
msgid "Functions Settings"
|
||||
msgstr "Paramètres de fonctions"
|
||||
|
||||
#: includes/settings/settings-pyg.php:334
|
||||
msgid "Customer/Buyer"
|
||||
msgstr "Client/Payeur"
|
||||
|
||||
#: includes/settings/settings-pyg.php:336
|
||||
msgid "for example : CHRONO ASSURANCES"
|
||||
msgstr "par exemple : CHRONO ASSURANCES"
|
||||
|
||||
#: includes/settings/settings-pyg.php:342
|
||||
msgid "Merchant code for account Payougo"
|
||||
msgstr "Code marchand pour votre compte Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:344
|
||||
msgid "for example : 000"
|
||||
msgstr "par exemple : 000"
|
||||
|
||||
#: includes/settings/settings-pyg.php:350
|
||||
msgid "Payment send Email"
|
||||
msgstr "Email de notification lors d'un paiement"
|
||||
|
||||
#: includes/settings/settings-pyg.php:352
|
||||
msgid ""
|
||||
"This allows you to send a notification email with each payment made. for "
|
||||
"example : notifpayment@email.com"
|
||||
msgstr "Cela permet d'envoyer un e-mail de notification à chaque paiement effectué. par exemple: notifpayment@email.com"
|
||||
|
||||
#: includes/settings/settings-pyg.php:358
|
||||
msgid "Title"
|
||||
msgstr "Titre"
|
||||
|
||||
#: includes/settings/settings-pyg.php:360
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr "Cela définit le titre qui sera vu par l'utilisateur durant la validation de la commande"
|
||||
|
||||
#: includes/settings/settings-pyg.php:361
|
||||
msgid "Payougo"
|
||||
msgstr "Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:365
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: includes/settings/settings-pyg.php:368
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr "Cela contrôle la description qui sera vu par l'utilisateur durant la validation de la commande"
|
||||
|
||||
#: includes/settings/settings-pyg.php:369
|
||||
msgid "pay with your mobile money account (Orange, MTN) securely."
|
||||
msgstr "payer avec votre compte d'argent mobile (Orange, MTN) en toute sécurité"
|
||||
|
||||
#: includes/settings/settings-pyg.php:378
|
||||
msgid "Environment"
|
||||
msgstr "Environnement"
|
||||
|
||||
#: includes/settings/settings-pyg.php:381
|
||||
msgid ""
|
||||
"This setting specifies whether you will process live transactions, or "
|
||||
"whether you will process simulated transactions using the Payougo Sandbox."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:385
|
||||
msgid "Live"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:386
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:390
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Paramètres avancés"
|
||||
|
||||
#: includes/settings/settings-pyg.php:396
|
||||
msgid "Invoice Prefix"
|
||||
msgstr "Préfixe de facture"
|
||||
|
||||
#: includes/settings/settings-pyg.php:398
|
||||
msgid ""
|
||||
"Please enter a prefix for your invoice numbers. If you use your Payougo "
|
||||
"account for multiple stores ensure this prefix is unique as Payougo will not "
|
||||
"allow orders with the same invoice number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:403
|
||||
msgid "Billing Addresses"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:405
|
||||
msgid "Require Billing Address"
|
||||
msgstr "Exiger l'adresse de livraison"
|
||||
|
||||
#: includes/settings/settings-pyg.php:407
|
||||
msgid "Payougo only returns a shipping address back to the website. "
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:410
|
||||
#: includes/settings/settings-pyg.php:412
|
||||
msgid "Require Phone Number"
|
||||
msgstr "Exiger le numéro de téléphone"
|
||||
|
||||
#: includes/settings/settings-pyg.php:414
|
||||
msgid ""
|
||||
"Require buyer to enter their telephone number during checkout if none is "
|
||||
"provided by Payougo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:426
|
||||
msgid "Checkout on cart page"
|
||||
msgstr "Commander sur la page du panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:429
|
||||
msgid "Enable Payougo Checkout on the cart page"
|
||||
msgstr "Activer le bouton Payougo sur la page du panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:430
|
||||
msgid "This shows or hides the Payougo Checkout button on the cart page."
|
||||
msgstr "Cela permet de montrer ou cacher le bouton Payougo sur la page du panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:443
|
||||
msgid "Single Product Button Settings"
|
||||
msgstr "Paramètre du bouton sur la page produit"
|
||||
|
||||
#: includes/settings/settings-pyg.php:448
|
||||
#: includes/settings/settings-pyg.php:451
|
||||
msgid "Checkout on Single Product"
|
||||
msgstr "Commander sur la page du produit"
|
||||
|
||||
#: includes/settings/settings-pyg.php:454
|
||||
msgid "Enable Payougo Checkout on Single Product view"
|
||||
msgstr "Activer le bouton Payougo sur la page du produit"
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:298
|
||||
msgid "Username or password is incorrect"
|
||||
msgstr "Nom d'utilisateur ou mot de passe incorrect"
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:307
|
||||
msgid "Good, you are connected"
|
||||
msgstr "Bravo, vous êtes connectés"
|
||||
File diff suppressed because it is too large
Load Diff
128
spec/fixtures/dynamic_finders/plugin_version/gragrid/translation_file/languages/gragrid.pot
vendored
Normal file
128
spec/fixtures/dynamic_finders/plugin_version/gragrid/translation_file/languages/gragrid.pot
vendored
Normal file
@@ -0,0 +1,128 @@
|
||||
# Copyright (C) 2020 Vladimir Contreras
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gragrid: Gravity Forms + SendGrid 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gragrid\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-09-12T20:31:15+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: gragrid\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Gragrid: Gravity Forms + SendGrid"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/vlasscontreras/gragrid"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Integrates Gravity Forms with SendGrid, allowing form submissions to be automatically sent to your SendGrid contact lists."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Vladimir Contreras"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/vlasscontreras"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:130
|
||||
msgid "Gravity Forms: SendGrid Add-on"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: 1 open anchor tag, 2 close anchor tag, 3 open anchor tag, 4 close anchor tag.
|
||||
#: class-gragrid.php:183
|
||||
msgid "SendGrid makes it easy to reliably send email notifications. If you don't have a SendGrid account, you can %1$ssign up for one here%2$s. Once you have signed up, you can %3$sfind your API keys here%4$s."
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:193
|
||||
msgid "SendGrid API Key"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:216
|
||||
msgid "SendGrid Feed Settings"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:220
|
||||
#: class-gragrid.php:226
|
||||
#: class-gragrid.php:399
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:227
|
||||
msgid "Enter a feed name to uniquely identify this setup."
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:232
|
||||
#: class-gragrid.php:237
|
||||
msgid "SendGrid Contact List"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:238
|
||||
msgid "Select the contact list you would like to add emails s to."
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:247
|
||||
#: class-gragrid.php:252
|
||||
msgid "Map Fields"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:253
|
||||
msgid "Associate the SendGrid fields to the appropriate Gravity Form fields by selecting the appropriate form field from the list."
|
||||
msgstr ""
|
||||
|
||||
#. Translators: 1 line break, 2 error message.
|
||||
#: class-gragrid.php:288
|
||||
msgid "Could not load the contact lists. %1$sError: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:299
|
||||
msgid "You don't have contact lists in your account. Please create one first and try again."
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:307
|
||||
msgid "Select a SendGrid list"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:346
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:352
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:358
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:400
|
||||
msgid "SendGrid List"
|
||||
msgstr ""
|
||||
|
||||
#: class-gragrid.php:441
|
||||
msgid "Unable to process feed because API could not be initialized."
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %s error message.
|
||||
#: class-gragrid.php:459
|
||||
msgid "Unable to add recipient to contact DB: %s"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %s error message.
|
||||
#: class-gragrid.php:467
|
||||
#: class-gragrid.php:473
|
||||
msgid "Unable to add recipient to list: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gragrid-api.php:143
|
||||
msgid "API key must be defined to process an API request."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,60 @@
|
||||
# Copyright (C) 2020 Condless
|
||||
# This file is distributed under the same license as the Hide Address Fields for WooCommerce plugin.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hide Address Fields for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hide-address-fields-for-woocommerce\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Condless <info@condless.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-09 09:22+0300\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: hide-address-fields-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Hide Address Fields for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://en.condless.com/hide-address-fields-for-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "WooCommerce plugin for conditionally hiding the address fields on the Checkout based on the selected shipping/payment methods"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Condless"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.condless.com/"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:121
|
||||
msgid "Address options"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:159
|
||||
msgid "Address fields will be hidden on Checkout when both conditions are met"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:165
|
||||
msgid "Do not ask customer address if he selects those shipping methods"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:173
|
||||
msgid "Do not ask customer address if he pays with those payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:196
|
||||
msgid "Make sure the selected shipping methods do not require the customer address for beeing proccessed"
|
||||
msgstr ""
|
||||
|
||||
#: hide-address-fields-for-woocommerce.php:210
|
||||
msgid "Make sure the selected payment methods do not require the customer address for beeing proccessed"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,165 @@
|
||||
# Copyright (C) 2020 ACT360
|
||||
# This file is distributed under the same license as the WooCommerce Fonepay plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce Fonepay 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-fonepay\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-20T02:34:50+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.5.0-alpha\n"
|
||||
"X-Domain: woocommerce-fonepay\n"
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:38
|
||||
msgid "Proceed to Fonepay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:39
|
||||
#: includes/gateways/settings-fonepay.php:25
|
||||
msgid "Fonepay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:40
|
||||
msgid "Take payments via Fonepay - sends customers to Fonepay portal to enter their payment information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:60
|
||||
msgid "SANDBOX ENABLED. You can use testing accounts only."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:144
|
||||
msgid "Gateway Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-fonepay.php:144
|
||||
msgid "Fonepay does not support your store currency."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-fonepay.php:105
|
||||
msgid "View WooCommerce Fonepay settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-fonepay.php:105
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: woocommerce version
|
||||
#: includes/class-woocommerce-fonepay.php:116
|
||||
msgid "WooCommerce Fonepay depends on the last version of %s or later to work!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: woocommerce version
|
||||
#: includes/class-woocommerce-fonepay.php:116
|
||||
msgid "WooCommerce 3.0"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/class-wc-gateway-fonepay-ipn-handler.php:151
|
||||
msgid "IPN payment completed"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: payment status
|
||||
#: includes/gateways/class-wc-gateway-fonepay-ipn-handler.php:167
|
||||
msgid "Payment %s via IPN."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order link.
|
||||
#: includes/gateways/class-wc-gateway-fonepay-ipn-handler.php:179
|
||||
msgid "Payment for cancelled order %s received"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order ID.
|
||||
#: includes/gateways/class-wc-gateway-fonepay-ipn-handler.php:181
|
||||
msgid "Order #%s has been marked paid by Fonepay IPN, but was previously cancelled. Admin handling required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:15
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:17
|
||||
msgid "Enable Fonepay Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:21
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:24
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:28
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:31
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:32
|
||||
msgid "Pay via Fonepay; you can pay with Fonepay account securely."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:35
|
||||
msgid "Live Merchant Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:38
|
||||
#: includes/gateways/settings-fonepay.php:52
|
||||
msgid "Please enter your Fonepay Merchant Code; this is needed in order to take payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:42
|
||||
msgid "Test Merchant Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:45
|
||||
#: includes/gateways/settings-fonepay.php:59
|
||||
msgid "Please enter your Fonepay Merchant Secret; this is needed in order to take payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:63
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:68
|
||||
msgid "Sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:70
|
||||
msgid "Enable Sandbox Mode"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Fonepay contact page
|
||||
#: includes/gateways/settings-fonepay.php:73
|
||||
msgid "Enable Fonepay sandbox to test payments. Please contact Fonepay Merchant/Service Provider for a <a href=\"%s\" target=\"_blank\">developer account</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:76
|
||||
msgid "Debug log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:78
|
||||
msgid "Enable logging"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Fonepay log file path
|
||||
#: includes/gateways/settings-fonepay.php:81
|
||||
msgid "Log Fonepay events, such as IPN requests, inside <code>%s</code>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:84
|
||||
msgid "IPN Email Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:86
|
||||
msgid "Enable IPN email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/gateways/settings-fonepay.php:88
|
||||
msgid "Send notifications when an IPN is received from Fonepay indicating cancellations."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,123 @@
|
||||
# Copyright (C) 2020 Richard Carlier
|
||||
# This file is distributed under the same license as the JSON Dashboard Infos plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JSON Dashboard Infos 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/json-dashboard-infos\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-27T13:25:55+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: json-dashboard-infos\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "JSON Dashboard Infos"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/rcarlier/json-dashboard-infos"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Get infos from your wordpress, in JSON format, to create centralized dashboards"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Richard Carlier"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://carlier.biz"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:65
|
||||
msgid "JSON to fetch:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:78
|
||||
msgid "Security Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:84
|
||||
msgid "Do NOT change without good reasons!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:85
|
||||
msgid "If you do, no spaces, no specials cars... (try suggestions bellow)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:86
|
||||
msgid "Don't forget to <b>update permalinks</b> if needed..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:97
|
||||
msgid "Transient timeout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:100
|
||||
msgid "In hour."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:103
|
||||
msgid "0 to disable the transient (no cache)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:107
|
||||
msgid "Reset cache"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:112
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:117
|
||||
msgid "If needed..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:122
|
||||
msgid "Expose Infos"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:127
|
||||
msgid "Expose Updates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:132
|
||||
msgid "Expose Comments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:137
|
||||
msgid "Expose Users"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:142
|
||||
msgid "Expose Sizes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:149
|
||||
msgid "Expose Contents"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:155
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:160
|
||||
msgid "JSON generated:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/get_datas.php:245
|
||||
msgid "last registration:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/tools.php:88
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/tools.php:93
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) 2020 kantbtrue
|
||||
# This file is distributed under the same license as the Kantbtrue Taxonomy Color plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Kantbtrue Taxonomy Color 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/kantbtrue-taxonomy-color\n"
|
||||
"Last-Translator: kantbtrue <shashikant1989yadav@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-10-01T08:34:31+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: kbttc-term-color\n"
|
||||
|
||||
#: admin/columns.php:24
|
||||
#: admin/term-fields.php:26
|
||||
#: admin/term-fields.php:53
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/notices.php:31
|
||||
msgid "Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#: admin/notices.php:39
|
||||
msgid "Successfully updated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:69
|
||||
#: admin/options.php:70
|
||||
msgid "Taxonomy Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:102
|
||||
msgid "Kantbtrue taxonomy color settings page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:111
|
||||
msgid "Default Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:119
|
||||
#: admin/options.php:127
|
||||
msgid "Exclude Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:132
|
||||
msgid "Post category"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:134
|
||||
msgid "Post tag"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options.php:152
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/activate.php:26
|
||||
msgid "Update WordPress version to use this plugin."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,4 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0.0 - 17/09/2020
|
||||
* First version.
|
||||
@@ -0,0 +1,75 @@
|
||||
# Copyright (C) 2020 Ledenbeheer
|
||||
# This file is distributed under the same license as the Ledenbeheer External Connection plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ledenbeheer External Connection 0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ledenbeheer-external-connection\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-11T12:56:58+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: ledenbeheer-external-connection\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Ledenbeheer External Connection"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A connection between Ledenbeheer and Wordpress"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ledenbeheer"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://ledenbeheer.be"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:26
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:27
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:53
|
||||
msgid "Courses"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:54
|
||||
msgid "Course"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:81
|
||||
msgid "Activities"
|
||||
msgstr ""
|
||||
|
||||
#: setup.php:82
|
||||
msgid "Activity"
|
||||
msgstr ""
|
||||
|
||||
#: views/courses/show.php:28
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: views/courses/show.php:32
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
#: views/courses/show.php:36
|
||||
msgid "Location address"
|
||||
msgstr ""
|
||||
|
||||
#: views/courses/show.php:40
|
||||
msgid "Location label"
|
||||
msgstr ""
|
||||
|
||||
#: views/courses/show.php:44
|
||||
msgid "Age restriction"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,36 @@
|
||||
# Copyright (C) 2020 LifterLMS
|
||||
# This file is distributed under the same license as the Lite LMS Progress Tracker by LifterLMS plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lite LMS Progress Tracker by LifterLMS 0.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://lifterlms.com/my-account/my-tickets\n"
|
||||
"Last-Translator: Team LifterLMS <team@lifterlms.com>\n"
|
||||
"Language-Team: Team LifterLMS <team@lifterlms.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-13T14:47:03-07:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: llms-dev 1.0.0\n"
|
||||
"X-Domain: llms-lite-progress\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Lite LMS Progress Tracker by LifterLMS"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/gocodebox/lifterlms-lite-lms-progress-tracker"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Easily track progress through simple online courses and other types of public or membership-protected content on your WordPress website."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "LifterLMS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://lifterlms.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,541 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mapplic Lite 1.0\n"
|
||||
"POT-Creation-Date: 2020-03-05 09:55+0200\n"
|
||||
"PO-Revision-Date: 2017-01-24 14:19+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: sekler\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/admin.php:57
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:58 admin/metaboxes.php:60 admin/metaboxes.php:235
|
||||
#: admin/metaboxes.php:297 admin/metaboxes.php:378
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:59 mapplic-lite.php:50
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:60 mapplic-lite.php:51
|
||||
msgid "Nothing found. Please try a different search."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:61 admin/admin.php:80 admin/metaboxes.php:177
|
||||
#: admin/metaboxes.php:213
|
||||
msgid "Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:62 admin/admin.php:151
|
||||
msgid "Raw"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:63
|
||||
msgid "Landmark ID is required and must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:78
|
||||
msgid "Maps Lite"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:79
|
||||
msgid "All Maps"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:81
|
||||
msgid "Add New Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:82
|
||||
msgid "New Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:83
|
||||
msgid "Edit Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:135
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:145
|
||||
msgid "Indent"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:152
|
||||
msgid "Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:161
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:162
|
||||
msgid "Floors"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:163
|
||||
msgid "Styles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:164 admin/metaboxes.php:117
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:165
|
||||
msgid "Geoposition"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:166
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:35
|
||||
msgid "World + US"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:36
|
||||
msgid "Canada"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:37
|
||||
msgid "Australia"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:38
|
||||
msgid "France"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:39
|
||||
msgid "Germany"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:40
|
||||
msgid "United Kingdom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:41
|
||||
msgid "Italy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:42
|
||||
msgid "Netherlands"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:43
|
||||
msgid "Switzerland"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:44
|
||||
msgid "Russia"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:45
|
||||
msgid "China"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:46
|
||||
msgid "Brazil"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:49
|
||||
msgid "Select Map Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:50
|
||||
msgid ""
|
||||
"Create a custom map using your own file(s) or select one of the built-in "
|
||||
"maps."
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:52
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:53
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:54
|
||||
msgid "Continents"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:55
|
||||
msgid "USA"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:61
|
||||
msgid "Upgrade Mapplic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:64
|
||||
msgid "Define Map File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:65
|
||||
msgid ""
|
||||
"Upload or select map file from library. SVG, JPG and PNG formats supported."
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:67 admin/metaboxes.php:172 admin/metaboxes.php:204
|
||||
#: admin/metaboxes.php:318 admin/metaboxes.php:338
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:71
|
||||
msgid "ID (required)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:76
|
||||
msgid "Map File (required)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:83
|
||||
msgid "Width (reqiured)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:87
|
||||
msgid "Height (reqiured)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:27
|
||||
msgid "Tooltip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:28
|
||||
msgid "Open link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:59 admin/metaboxes.php:258 admin/metaboxes.php:285
|
||||
#: admin/metaboxes.php:323 admin/metaboxes.php:369
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:65
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:66 admin/metaboxes.php:174 admin/metaboxes.php:205
|
||||
#: admin/metaboxes.php:320 admin/metaboxes.php:339
|
||||
msgid "ID (unique)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:72
|
||||
msgid "Geolocation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:77
|
||||
msgid "Color and Pin Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:86
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:89
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:90
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:93 admin/metaboxes.php:343
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:103
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:105
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:114
|
||||
msgid "Zoom Level"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:127
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:134
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:140
|
||||
msgid "Reveal Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:142 admin/metaboxes.php:357
|
||||
msgid "Hide from sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:144 admin/metaboxes.php:340
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:146
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:149
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:167 admin/metaboxes.php:172 admin/metaboxes.php:234
|
||||
msgid "New Floor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:184
|
||||
msgid "Minimap"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:191 admin/metaboxes.php:227 admin/metaboxes.php:260
|
||||
#: admin/metaboxes.php:287 admin/metaboxes.php:325 admin/metaboxes.php:371
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:209
|
||||
msgid "Show by default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:250 admin/metaboxes.php:296
|
||||
msgid "New Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:255
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:273
|
||||
msgid "Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:275
|
||||
msgid "Base"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:278
|
||||
msgid "Hover & Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:281
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:293
|
||||
msgid "There are no reusable styles yet."
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:312 admin/metaboxes.php:318 admin/metaboxes.php:377
|
||||
msgid "New Group"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:354
|
||||
msgid "Add to legend"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:360
|
||||
msgid "Enable toggle mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:363
|
||||
msgid "Switch off by default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:410
|
||||
msgid "Map file dimensions either not set or invalid!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:416
|
||||
msgid "Map container height"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:421
|
||||
msgid "Map file dimensions (REQUIRED)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:423
|
||||
msgid "File Width"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:424 admin/metaboxes.php:428
|
||||
msgid "REQUIRED"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:427
|
||||
msgid "File Height"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:432
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:434
|
||||
msgid "Portrait breakpoint"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:435
|
||||
msgid "668 (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:437
|
||||
msgid "Default action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:445
|
||||
msgid "Default style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:455
|
||||
msgid "More button text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:456 mapplic-lite.php:49
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:459
|
||||
msgid "Hover tooltip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:462
|
||||
msgid "Enable fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:465
|
||||
msgid "Smart tooltip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:468
|
||||
msgid "Deeplinking"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:471
|
||||
msgid "Open links in new tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:474
|
||||
msgid "Enable minimap"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:478
|
||||
msgid "Zoom options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:480
|
||||
msgid "Enable zoom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:484
|
||||
msgid "Maximum zoom level"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:485
|
||||
msgid "No zoom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:488
|
||||
msgid "Zoom margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:489
|
||||
msgid "200 (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:492
|
||||
msgid "Zoom buttons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:495
|
||||
msgid "Clear button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:498
|
||||
msgid "Zoom out when closing popup"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:501
|
||||
msgid "Close popup when zoomed out"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:504
|
||||
msgid "Mouse wheel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:507
|
||||
msgid "Always fill the container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:512
|
||||
msgid "Sidebar options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:514
|
||||
msgid "Enable sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:518
|
||||
msgid "Search field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:521
|
||||
msgid "Search description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:524
|
||||
msgid "Minimum keyword length"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:525
|
||||
msgid "1 (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:528
|
||||
msgid "Alphabetically ordered list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:531
|
||||
msgid "Thumbnail placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:534
|
||||
msgid "Hide locations when no filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:537
|
||||
msgid "Highlight map on filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:542
|
||||
msgid "CSV Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:544
|
||||
msgid "CSV file"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:550
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: mapplic-lite.php:37
|
||||
msgid "Map List"
|
||||
msgstr ""
|
||||
|
||||
#: mapplic-lite.php:71
|
||||
msgid "Error: map with the specified ID doesn't exist!"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,52 @@
|
||||
# Copyright (C) 2020 CT Talks
|
||||
# This file is distributed under the same license as the Minimum Purchase Amount For Woo Cart plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Minimum Purchase Amount For Woo Cart 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/minimum-purchase-amount-for-woocommerce-cart\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-09-13T19:06:25+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: ct-minimum-purchase-amount-for-woo-cart\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Minimum Purchase Amount For Woo Cart"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This woocommecre extension will allow you to specify the minimum purchase value for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "CT Talks"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://cttalks.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ct-class-settings-page.php:18
|
||||
#: includes/admin/ct-class-settings-page.php:19
|
||||
msgid "Cart Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ct-class-settings-page.php:20
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ct-class-settings-page.php:42
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ct-class-settings-page.php:47
|
||||
msgid "Minimum Cart Amount To Make a Purchase"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/ct-class-settings-page.php:56
|
||||
msgid "If the total value of the clients cart is lesser that the value specified the checkout will be restricted for the user"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,175 @@
|
||||
# Copyright (C) 2020 Manfred Rodríguez
|
||||
# This file is distributed under the same license as the Mojito Sinpe plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mojito Sinpe 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mojito-sinpe\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-09-14T17:59:16-05:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: mojito-sinpe\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Mojito Sinpe"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://mojitowp.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Sinpe Móvil as Woocommerce gateway"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Manfred Rodríguez"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/mojito-sinpe-require-plugins-woocommerce.php:9
|
||||
msgid "Mojito Sinpe Plugin requires WooCommerce to be active."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-compatibility-product-vendors.php:90
|
||||
#: includes/class-mojito-compatibility-product-vendors.php:106
|
||||
#: includes/class-mojito-compatibility-product-vendors.php:145
|
||||
msgid "Sinpe Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:33
|
||||
msgid "SINPE Móvil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:34
|
||||
msgid "Payment using SINPE Móvil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:99
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:101
|
||||
msgid "Enable SINPE Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:105
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:107
|
||||
msgid "Pay using SINPE Móvil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:108
|
||||
msgid "SINPE Móvil Payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:112
|
||||
msgid "Phone number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:117
|
||||
#: includes/class-mojito-sinpe-gateway.php:119
|
||||
msgid "Show link in check-out page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:123
|
||||
#: includes/class-mojito-sinpe-gateway.php:125
|
||||
msgid "Sinpe logo size in check-out page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:128
|
||||
msgid "No logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:138
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:140
|
||||
msgid "Payment method description that the customer will see on your checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:141
|
||||
msgid "Make your payment with your mobile. Your order will not be shipped until the funds have cleared in our account."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:145
|
||||
msgid "Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:147
|
||||
msgid "Instructions that will be added to the thank you page and emails."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:172
|
||||
#: includes/class-mojito-sinpe-gateway.php:187
|
||||
msgid "Select your bank"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:197
|
||||
msgid "You will receive the SINPE Payment link in the order confirmation email. Open it on your mobile."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:207
|
||||
#: includes/class-mojito-sinpe-gateway.php:210
|
||||
msgid "Pay now: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:285
|
||||
msgid "Payment error: Please select your bank"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe-gateway.php:293
|
||||
msgid "Awaiting SINPE payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:156
|
||||
msgid "Please open the link only in mobile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:168
|
||||
#: includes/class-mojito-sinpe.php:180
|
||||
msgid "Not a valid order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:187
|
||||
msgid "This order hasn't SINPE Móvil as payment method"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:194
|
||||
msgid "Order is paid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:206
|
||||
msgid "Bank was not selected"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:218
|
||||
#: includes/class-mojito-sinpe.php:289
|
||||
#: includes/class-mojito-sinpe.php:342
|
||||
msgid "Pase %s %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:291
|
||||
#: includes/class-mojito-sinpe.php:344
|
||||
msgid "Send a SMS to %s with the content: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:292
|
||||
msgid "Are you on mobile? "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:300
|
||||
#: includes/class-mojito-sinpe.php:361
|
||||
msgid "Pay here SINPE Móvil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mojito-sinpe.php:352
|
||||
msgid "Are you on mobile?"
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/my-medium-article/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/my-medium-article/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.0 =
|
||||
* Initial Public Release
|
||||
37
spec/fixtures/dynamic_finders/plugin_version/mycookie-gdpr-compliance/composer_file/package.json
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/mycookie-gdpr-compliance/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "my-cookie",
|
||||
"version": "1.0.0",
|
||||
"description": "Another cookie plugin.",
|
||||
"main": "index.js",
|
||||
"babel": {
|
||||
"presets": [
|
||||
"@babel/preset-env"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "webpack --mode=development --watch --config webpack-config.js",
|
||||
"build": "webpack --mode=production --config webpack-config.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://gitlab.com/s60v5/mycookie-gdpr-compliance-for-wordpress.git"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://gitlab.com/s60v5/mycookie-gdpr-compliance-for-wordpress/issues"
|
||||
},
|
||||
"homepage": "https://gitlab.com/s60v5/mycookie-gdpr-compliance-for-wordpress#readme",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.7.7",
|
||||
"@babel/core": "^7.7.7",
|
||||
"@babel/preset-env": "^7.7.7",
|
||||
"babel-loader": "^8.0.6",
|
||||
"css-loader": "^3.4.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.13.0",
|
||||
"sass-loader": "^8.0.0",
|
||||
"webpack": "^4.41.5",
|
||||
"webpack-cli": "^3.3.10"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,331 @@
|
||||
# Copyright (C) 2020 Efraim Bayarri
|
||||
# This file is distributed under the same license as the Nic-app Crono plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Nic-app Crono 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/nicappcrono\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-09-09T11:17:23+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: nicappcrono\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Nic-app Crono"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://nic-app.com/nic-app-crono/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
#: admin/partials/nicappcrono-admin-display.php:25
|
||||
msgid "Nic-app Crono is a plugin that allows you to unify different calendars (Google Calendar, Apple iCloud, Exchange, Office 365 / Outlook) into a single calendar."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Efraim Bayarri"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://efraim.cat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:117
|
||||
#: admin/class-nicappcrono-admin.php:134
|
||||
msgid "Nic-app Crono Calendars"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:120
|
||||
#: admin/class-nicappcrono-admin.php:130
|
||||
#: admin/class-nicappcrono-admin.php:131
|
||||
#: public/class-nicappcrono-public.php:185
|
||||
msgid "Calendars"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:121
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:122
|
||||
msgid "Add Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:123
|
||||
msgid "Add New Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:124
|
||||
msgid "Edit Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:125
|
||||
msgid "New Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:126
|
||||
msgid "View Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:127
|
||||
msgid "Search Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:128
|
||||
msgid "No Calendars Found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:129
|
||||
msgid "No Calendarss Found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:161
|
||||
#: admin/partials/nicappcrono-admin-display.php:21
|
||||
#: admin/partials/nicappcrono-admin-settings-display.php:17
|
||||
msgid "Nic-app Crono Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:161
|
||||
#: admin/class-nicappcrono-admin.php:1029
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:162
|
||||
#: admin/partials/nicappcrono-admin-scheduling-display.php:17
|
||||
msgid "Nic-app Crono Scheduling"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:162
|
||||
msgid "Scheduling"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:163
|
||||
#: admin/partials/nicappcrono-admin-support-display.php:21
|
||||
msgid "Nic-app Crono Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:163
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:199
|
||||
msgid "Calendar information"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:218
|
||||
#: admin/class-nicappcrono-admin.php:548
|
||||
msgid "Calendar ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:224
|
||||
msgid "Calendar Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:230
|
||||
msgid "Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:236
|
||||
msgid "Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:242
|
||||
msgid "Profile Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:248
|
||||
msgid "Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:254
|
||||
msgid "Provider ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:260
|
||||
msgid "Check if you want product number to be displayed in calendar instead of content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:264
|
||||
msgid "Product Display"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:270
|
||||
#: admin/class-nicappcrono-admin.php:551
|
||||
msgid "Product ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:276
|
||||
msgid "Check if you want two way synchronization when new order is added to calendar. (Requires Pluginhive WooCommerce Bookings and Appointments Premium plugin)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:278
|
||||
msgid "Two Way Synchronization"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:285
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:446
|
||||
msgid "There was an error adding this setting. Please try again. If this persists, shoot us an email."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:476
|
||||
msgid "Use European Data Center"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:479
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:482
|
||||
msgid "Client Secret"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:485
|
||||
msgid "Master Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:488
|
||||
msgid "Master Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:491
|
||||
msgid "Master Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:494
|
||||
msgid "Authorization Page ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:497
|
||||
msgid "Create new Authorization Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:520
|
||||
msgid "These settings refer to your Cronofy account for master calendar an apply to all Nic-app Crono functionality."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:522
|
||||
msgid "Cronofy currently provides two data centers one in the USA, the default, and one in Germany. They are run as completely separate instances with no data flow between. This allows you to ensure data is kept within jurisdictional boundaries, eg. the EEA."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:524
|
||||
msgid "Because there is no data flow then separate developer accounts need to be created on the instance that suits your requirements. Functionally the APIs are identical."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:547
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:549
|
||||
msgid "Product display"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:550
|
||||
msgid "Two Way"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:552
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:569
|
||||
#: admin/class-nicappcrono-admin.php:572
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:569
|
||||
#: admin/class-nicappcrono-admin.php:572
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:595
|
||||
msgid "Authorization"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:965
|
||||
msgid "No scheduled jobs. No calendar entries will be checked."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-nicappcrono-admin.php:992
|
||||
msgid "View log file"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:26
|
||||
msgid "Plugins developed for WordPress and WooCommerce usually work by connecting to a single calendar. What happens if you need information contained in more than one calendar?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:27
|
||||
msgid "With this plugin with the help of Cronofy you can solve this problem, keeping information from multiple sources in a single calendar."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:29
|
||||
msgid "Configuration is an important part of proper operation and must be given the necessary attention. You can find all the necessary help in"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:30
|
||||
msgid "the support tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:30
|
||||
msgid "or in"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:31
|
||||
msgid "Nic-app Crono web page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:35
|
||||
#: admin/partials/nicappcrono-admin-support-display.php:23
|
||||
msgid "Contact us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-display.php:35
|
||||
#: admin/partials/nicappcrono-admin-support-display.php:23
|
||||
msgid "with any questions."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-scheduling-display.php:20
|
||||
msgid "Next schedule (UTC): "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-scheduling-display.php:25
|
||||
msgid "Log files: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-settings-display.php:24
|
||||
msgid "When creating the developer account in the chosen data center and later when creating our app, we already authorize the use of the master calendar. To authorize the following calendars, it is necessary to define a page from which to carry out this authorization."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/nicappcrono-admin-settings-display.php:25
|
||||
msgid "It can be any page that contains the shortcode [NicappAuth]. In that case we will simply enter the ID of the page. We can create a new page with the shortcode in it if we check the option to create a new page."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:138
|
||||
msgid "Authorization Processed"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:139
|
||||
msgid "Thank you for authorizing access to your calendar."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:140
|
||||
msgid "Your calendar was already authorized."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:141
|
||||
msgid "Your inputs have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:186
|
||||
msgid "Please choose the calendar you wish to share"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-nicappcrono-public.php:208
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
4
spec/fixtures/dynamic_finders/plugin_version/order-tip-woo/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/order-tip-woo/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* First stable version
|
||||
@@ -0,0 +1,68 @@
|
||||
# Copyright (C) 2020 OsomPress
|
||||
# This file is distributed under the same license as the OsomBlocks plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OsomBlocks 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/osomblocks\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-09-20T05:19:19+00:00\n"
|
||||
"PO-Revision-Date: 2020-09-20 07:21+0200\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: osomblocks\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: es_ES\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "OsomBlocks"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://osompress.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Gutenberg Block collection for OsomPress themes"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "OsomPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://twitter.com/osompress"
|
||||
msgstr ""
|
||||
|
||||
#: lib/enqueue-scripts.php:89
|
||||
msgid "Osom Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cpt-list/index.js:17
|
||||
msgid "Display a list layout of custom post type archives."
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cpt-list/index.js:31
|
||||
msgid "Continue reading"
|
||||
msgstr "Seguir leyendo"
|
||||
|
||||
#: blocks/cpt-list/index.js:70
|
||||
msgid "OsomBlock Properties"
|
||||
msgstr "Propiedades de OsomBlock"
|
||||
|
||||
#: blocks/cpt-list/index.js:76
|
||||
msgid "Select a post type"
|
||||
msgstr "Selecciona un tipo de entrada"
|
||||
|
||||
#: blocks/cpt-list/index.js:84
|
||||
msgid "Number of posts"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cpt-list/index.js:95
|
||||
msgid "Show featured image"
|
||||
msgstr ""
|
||||
|
||||
#: blocks/cpt-list/index.js:117
|
||||
msgid "Text for continue reading"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,337 @@
|
||||
# Copyright (C) 2020 Acowebs
|
||||
# This file is distributed under the same license as the PDF Invoices and Packing Slips For WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PDF Invoices and Packing Slips For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pdf-invoice-for-woocommerce-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-09-30T13:30:26+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: pdf-invoices-and-packing-slips-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "PDF Invoices and Packing Slips For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Customize and print invoices and packing slips for WooCommerce orders"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Acowebs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://acowebs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-api.php:640
|
||||
#: includes/class-apifw-api.php:648
|
||||
#: includes/class-apifw-backend.php:608
|
||||
msgid "Invoice 001"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:178
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:660
|
||||
#: includes/class-apifw-backend.php:673
|
||||
#: includes/class-apifw-backend.php:674
|
||||
#: includes/class-apifw-backend.php:675
|
||||
msgid "Invoice Templates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:676
|
||||
#: includes/class-apifw-backend.php:677
|
||||
msgid "Add New Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:678
|
||||
#: includes/class-apifw-backend.php:679
|
||||
msgid "Edit Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:680
|
||||
msgid "New Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:681
|
||||
#: includes/class-apifw-backend.php:682
|
||||
msgid "View Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:683
|
||||
msgid "Search Templates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:684
|
||||
msgid "No Templates Found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:685
|
||||
msgid "No Templates Found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:686
|
||||
msgid "Parent Template"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:744
|
||||
msgid "PDF Invoice For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:745
|
||||
msgid "PDF Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:840
|
||||
msgid "Invoice & Labels"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:857
|
||||
msgid "Invoice Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:861
|
||||
#: includes/class-apifw-backend.php:928
|
||||
#: includes/class-apifw-backend.php:964
|
||||
msgid "Preview Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:864
|
||||
#: includes/class-apifw-backend.php:965
|
||||
#: includes/class-apifw-invoice.php:1308
|
||||
msgid "Download Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:869
|
||||
msgid "Generate Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:877
|
||||
#: includes/class-apifw-backend.php:933
|
||||
#: includes/class-apifw-backend.php:968
|
||||
#: includes/class-apifw-packing-slip.php:112
|
||||
msgid "Packing Slip"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:884
|
||||
#: includes/class-apifw-backend.php:938
|
||||
#: includes/class-apifw-backend.php:971
|
||||
#: includes/class-apifw-delivery-note.php:112
|
||||
msgid "Delivery Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:891
|
||||
#: includes/class-apifw-backend.php:943
|
||||
#: includes/class-apifw-backend.php:974
|
||||
#: includes/class-apifw-shipping-label.php:112
|
||||
msgid "Shipping Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:898
|
||||
#: includes/class-apifw-backend.php:948
|
||||
#: includes/class-apifw-backend.php:977
|
||||
#: includes/class-apifw-dispatch-label.php:112
|
||||
msgid "Dispatch Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:911
|
||||
msgid "Documents"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-backend.php:928
|
||||
#: includes/class-apifw-invoice.php:1333
|
||||
msgid "Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:279
|
||||
#: includes/class-apifw-dispatch-label.php:326
|
||||
#: includes/class-apifw-packing-slip.php:279
|
||||
#: includes/class-apifw-shipping-label.php:292
|
||||
msgid "Order No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:281
|
||||
#: includes/class-apifw-dispatch-label.php:328
|
||||
#: includes/class-apifw-packing-slip.php:281
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:285
|
||||
#: includes/class-apifw-dispatch-label.php:335
|
||||
#: includes/class-apifw-packing-slip.php:285
|
||||
msgid "From Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:319
|
||||
#: includes/class-apifw-dispatch-label.php:366
|
||||
#: includes/class-apifw-packing-slip.php:319
|
||||
msgid "Billing Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:359
|
||||
#: includes/class-apifw-dispatch-label.php:406
|
||||
#: includes/class-apifw-packing-slip.php:359
|
||||
msgid "Shipping Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:391
|
||||
#: includes/class-apifw-dispatch-label.php:438
|
||||
#: includes/class-apifw-packing-slip.php:391
|
||||
msgid "Customer Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:401
|
||||
#: includes/class-apifw-packing-slip.php:401
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:403
|
||||
#: includes/class-apifw-dispatch-label.php:448
|
||||
#: includes/class-apifw-packing-slip.php:403
|
||||
msgid "SKU"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:404
|
||||
#: includes/class-apifw-dispatch-label.php:449
|
||||
#: includes/class-apifw-packing-slip.php:404
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:405
|
||||
#: includes/class-apifw-dispatch-label.php:450
|
||||
#: includes/class-apifw-packing-slip.php:405
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:406
|
||||
#: includes/class-apifw-packing-slip.php:406
|
||||
msgid "Total Weight"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-delivery-note.php:425
|
||||
#: includes/class-apifw-packing-slip.php:425
|
||||
#: includes/class-apifw-shipping-label.php:293
|
||||
#: includes/helpers.php:101
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:324
|
||||
msgid "Invoice No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:451
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:452
|
||||
msgid "Tax Rate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:453
|
||||
msgid "Tax Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:454
|
||||
msgid "Tax Value"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:455
|
||||
#: includes/class-apifw-dispatch-label.php:504
|
||||
#: includes/class-apifw-invoice.php:870
|
||||
#: includes/class-apifw-invoice.php:1138
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:480
|
||||
#: includes/class-apifw-invoice.php:846
|
||||
#: includes/class-apifw-invoice.php:1114
|
||||
msgid "Subtotal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:484
|
||||
#: includes/class-apifw-invoice.php:850
|
||||
#: includes/class-apifw-invoice.php:1118
|
||||
msgid "Discount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:488
|
||||
#: includes/class-apifw-invoice.php:854
|
||||
#: includes/class-apifw-invoice.php:1122
|
||||
msgid "Discount Tax"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:492
|
||||
#: includes/class-apifw-invoice.php:858
|
||||
#: includes/class-apifw-invoice.php:1126
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:496
|
||||
#: includes/class-apifw-invoice.php:862
|
||||
#: includes/class-apifw-invoice.php:1130
|
||||
msgid "Shipping Tax"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-dispatch-label.php:500
|
||||
#: includes/class-apifw-invoice.php:866
|
||||
#: includes/class-apifw-invoice.php:1134
|
||||
msgid "Fee"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-front-end.php:101
|
||||
msgid "You are not allowed to view this page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-front-end.php:102
|
||||
msgid "Access denied !!!."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-front-end.php:130
|
||||
msgid "Wrong action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-front-end.php:142
|
||||
#: includes/class-apifw-front-end.php:164
|
||||
msgid "Wrong document"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-front-end.php:148
|
||||
#: includes/class-apifw-front-end.php:151
|
||||
msgid "Order not found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-invoice.php:1307
|
||||
msgid "Print Invoice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-shipping-label.php:220
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-shipping-label.php:252
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-shipping-label.php:283
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-shipping-label.php:286
|
||||
msgid "Phone No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-shipping-label.php:293
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-apifw-shipping-label.php:297
|
||||
msgid "Tracking Number"
|
||||
msgstr ""
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/plexx-elementor-extension/change_log/changelog.txt
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/plexx-elementor-extension/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
# Elementor Plexx plugin - by Themeworm https://themeworm.com/
|
||||
|
||||
#### 1.0.0
|
||||
* Initial release
|
||||
|
||||
#### 1.0.1
|
||||
* Page styles options bug fixed
|
||||
* Hero widget Youtube/Vimeo video background fixed
|
||||
|
||||
#### 1.1
|
||||
* New Portfolio widget options: Action on click and 16:9 aspect ratio
|
||||
|
||||
#### 1.1.1
|
||||
* Packery blog widget bug fixed
|
||||
|
||||
#### 1.1.2
|
||||
* Updated Hero widget background video autoplay
|
||||
* New Page settings - preloader color
|
||||
* Portfolio widget custom sort fixed
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/poslogic-credit/change_log/changelog.txt
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/poslogic-credit/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
=== Poslogic Credit Gateway ===
|
||||
|
||||
= 1.0.0 =
|
||||
*Release Date - 26rd August, 2020*
|
||||
|
||||
First stable version
|
||||
|
||||
@@ -0,0 +1,839 @@
|
||||
# Copyright (C) 2020 Posti
|
||||
# This file is distributed under the same license as the Posti Shipping for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Posti Shipping for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
|
||||
"shipping-plugin\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-30T12:25:24+00:00\n"
|
||||
"PO-Revision-Date: 2020-04-30 15:46+0300\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: en\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Posti Shipping for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/PostiDigital/plugin-woocommerce-itella"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Posti shipping service for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: posti_shipping/classes/class-text.php:15
|
||||
msgid "Posti"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.posti.fi/"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:94 core/class-admin.php:117
|
||||
msgid ""
|
||||
"Thank you for installing WooCommerce Pakettikauppa! To get started smoothly, "
|
||||
"please open our setup wizard."
|
||||
msgstr ""
|
||||
"Thank you for installing WooCommerce Posti! To get started smoothly, please "
|
||||
"open our setup wizard."
|
||||
|
||||
#: core/class-admin.php:174
|
||||
msgid "HS tariff number"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:176
|
||||
msgid ""
|
||||
"The HS tariff number must be based on the Harmonized Commodity Description "
|
||||
"and Coding System developed by the World Customs Organization."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:182
|
||||
msgid "Country of origin"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:184
|
||||
msgid ""
|
||||
"\"Country of origin\" means the country where the goods originated, e.g. "
|
||||
"were produced/manufactured or assembled."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:249
|
||||
msgid "Create and fetch shipping labels"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:280
|
||||
msgid "Create shipping label"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:327
|
||||
msgid "Cannot find shipments with given shipment numbers."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:389
|
||||
msgid ""
|
||||
"WooCommerce Pakettikauppa has been installed/updated but no shipping methods "
|
||||
"are currently active!"
|
||||
msgstr ""
|
||||
"WooCommerce Posti has been installed/updated but no shipping methods are "
|
||||
"currently active!"
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-admin.php:426 core/class-admin.php:888 core/class-admin.php:915
|
||||
#: core/class-shipment.php:213
|
||||
msgid "An error occurred: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:445
|
||||
msgid "Visit Pakettikauppa"
|
||||
msgstr "Visit Posti"
|
||||
|
||||
#: core/class-admin.php:446
|
||||
msgid "Show site Pakettikauppa"
|
||||
msgstr "Show site Posti"
|
||||
|
||||
#: core/class-admin.php:494
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:506 core/class-admin.php:646 core/class-admin.php:1002
|
||||
#: core/class-admin.php:1009
|
||||
msgid "Requested pickup point"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:510
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:528
|
||||
msgid ""
|
||||
"Please add shipping info to the order to manage Pakettikauppa shipments."
|
||||
msgstr "Please add shipping info to the order to manage Posti shipments."
|
||||
|
||||
#: core/class-admin.php:583 core/class-admin.php:609
|
||||
msgid "Label code"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:587 core/class-admin.php:613
|
||||
#: core/class-shipment.php:251
|
||||
msgid "Print document"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:589 core/class-admin.php:614
|
||||
#: core/class-shipment.php:252
|
||||
msgid "Track"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:593
|
||||
msgid "Update Status"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:594
|
||||
msgid "Create Return Label"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:597 core/class-admin.php:617
|
||||
msgid "Delete Shipping Label"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:599
|
||||
msgid "Delete Shipping Label and return labels"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:626
|
||||
msgid "Additional services"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:637 core/class-admin.php:687
|
||||
msgid "Parcel count"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:656 core/class-text.php:50
|
||||
msgid "No shipping"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:697
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:700
|
||||
msgid "Change shipping..."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:826
|
||||
msgid "Unable to create return label for this shipment type."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %%s: tracking code
|
||||
#: core/class-admin.php:869 core/class-admin.php:877
|
||||
msgid "Successfully deleted Pakettikauppa shipping label %s."
|
||||
msgstr "Successfully deleted Posti shipping label %s."
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-admin.php:895
|
||||
msgid "Deleting Pakettikauppa shipment failed! Errors: %s"
|
||||
msgstr "Deleting Posti shipment failed! Errors: %s"
|
||||
|
||||
#: core/class-admin.php:928
|
||||
msgid "Shipment tracking code is not defined."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:938
|
||||
msgid "Cannot find shipment with given shipment number."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Shipment tracking url
|
||||
#: core/class-admin.php:1006
|
||||
msgid ""
|
||||
"You can track your order at %1$s.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:1013
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Shipment tracking URL 2: Shipment tracking code
|
||||
#: core/class-admin.php:1015
|
||||
msgid "You can <a href=\"%1$s\">track your order</a> with tracking code %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:60
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:62
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:163
|
||||
msgid "An error occurred. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:366 core/class-frontend.php:367
|
||||
#: core/class-frontend.php:516
|
||||
msgid "Pickup point"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:377
|
||||
msgid "Insert your shipping details to view nearby pickup points"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Postcode
|
||||
#: core/class-frontend.php:383
|
||||
msgid "Invalid postcode \"%1$s\". Please check your address information."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:419
|
||||
msgid "Choose one of pickup points close to the address you entered:"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:489
|
||||
msgid "Select a pickup point"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:530
|
||||
msgid "Please choose a pickup point."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:92
|
||||
msgid "Item is collected from sender - picked up"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:95
|
||||
msgid "Exception"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:98
|
||||
msgid "Item has been handed over to the recipient"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:101
|
||||
msgid "Item is in transport"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:104
|
||||
msgid "C.O.D payment is paid to the sender"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:107
|
||||
msgid "Informed consignee of arrival"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:110
|
||||
msgid "Item is loaded onto a means of transport"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:113
|
||||
msgid "Item not delivered – delivery attempt made"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:116
|
||||
msgid "Pre-information is received from sender"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:119
|
||||
msgid "Item is ready for delivery transportation"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:122
|
||||
msgid "Item is returning to the sender"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:125
|
||||
msgid "Item is arrived to a post office"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:128
|
||||
msgid "Outbound"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Status code
|
||||
#: core/class-shipment.php:132
|
||||
msgid "Unknown status: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:167
|
||||
msgid ""
|
||||
"The shipping label was not created because the order does not contain valid "
|
||||
"shipping method."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:179
|
||||
msgid ""
|
||||
"The shipping label was not created because the order does not contain valid "
|
||||
"shipping details."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-shipment.php:208
|
||||
msgid "Failed to create Pakettikauppa shipment. Errors: %s"
|
||||
msgstr "Failed to create Posti shipment. Errors: %s"
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-shipment.php:222 core/class-shipment.php:227
|
||||
msgid "Failed to create Pakettikauppa shipment."
|
||||
msgstr "Failed to create Posti shipment."
|
||||
|
||||
#. translators: 1: Shipping service title 2: Shipment tracking code 3: Shipping label URL 4: Shipment tracking URL
|
||||
#: core/class-shipment.php:259
|
||||
msgid "Created Pakettikauppa %1$s shipment.<br>%2$s<br>%1$s - %3$s<br>%4$s"
|
||||
msgstr "Created Posti %1$s shipment.<br>%2$s<br>%1$s - %3$s<br>%4$s"
|
||||
|
||||
#: core/class-shipment.php:272
|
||||
msgid "Posting label to URL failed!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:276
|
||||
msgid "Label posted to URL successfully."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-shipment.php:639
|
||||
msgid "WooCommerce Pakettikauppa: tracking code creation failed: %s"
|
||||
msgstr "WooCommerce Posti: tracking code creation failed: %s"
|
||||
|
||||
#: core/class-shipping-method.php:192
|
||||
msgid "Zone name"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:195
|
||||
msgid "Zone regions"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:197
|
||||
msgid "Shipping method(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:294 core/class-shipping-method.php:313
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:315
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:331
|
||||
msgid "Shipping class costs"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: URL for link.
|
||||
#: core/class-shipping-method.php:335
|
||||
msgid ""
|
||||
"These costs can optionally be added based on the <a href=\"%s\">product "
|
||||
"shipping class</a>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: shipping class cost
|
||||
#: core/class-shipping-method.php:349
|
||||
msgid "\"%s\" shipping class cost"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:359 core/class-shipping-method.php:396
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:374
|
||||
msgid "Calculation type"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:379
|
||||
msgid "Per class: Charge shipping for each shipping class individually"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:380
|
||||
msgid "Per order: Charge shipping for the most expensive shipping class"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order status
|
||||
#: core/class-shipping-method.php:477 core/class-shipping-method.php:489
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order status
|
||||
#: core/class-shipping-method.php:478 core/class-shipping-method.php:491
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:602 core/class-shipping-method.php:611
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:603 core/class-shipping-method.php:612
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:26
|
||||
msgid "WooCommerce Pakettikauppa › Setup Wizard"
|
||||
msgstr "WooCommerce Posti › Setup Wizard"
|
||||
|
||||
#: core/class-text.php:30
|
||||
msgid "Start the setup wizard"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:34
|
||||
msgid "Pakettikauppa"
|
||||
msgstr "Posti"
|
||||
|
||||
#: core/class-text.php:38
|
||||
msgid "Edit to select shipping company and shipping prices."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: shipping method
|
||||
#: core/class-text.php:44
|
||||
msgid "Selected shipping method: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:54
|
||||
msgid "includes pickup points"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:58
|
||||
msgid "Select one shipping method"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:62
|
||||
msgid ""
|
||||
"Can not connect to Pakettikauppa server - please check Pakettikauppa API "
|
||||
"credentials, servers error log and firewall settings."
|
||||
msgstr ""
|
||||
"Can not connect to Posti server - please check Pakettikauppa API "
|
||||
"credentials, servers error log and firewall settings."
|
||||
|
||||
#. translators: Vendor name, not translatable
|
||||
#: core/class-text.php:72
|
||||
msgid ""
|
||||
"Only use this shipping method if no other shipping methods are available and "
|
||||
"suitable. Using this shipping method is not required to be able to use %s "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:81
|
||||
msgid "Shipping methods"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:85
|
||||
msgid "Shipping method"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:89
|
||||
msgid "Price (vat included)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:93
|
||||
msgid "Shipping cost"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:97
|
||||
msgid "Shipping cost (vat included)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:101
|
||||
msgid "Free shipping tier"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:105
|
||||
msgid "After which amount shipping is free."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:109
|
||||
msgid "Default shipping class cost"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:113
|
||||
msgid "No shipping class cost (vat included)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Vendor name, not translatable
|
||||
#: core/class-text.php:123
|
||||
msgid "Link to %s website"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:127
|
||||
msgid "Not now"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:131
|
||||
msgid "Skip this step"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:135
|
||||
msgid "Let's start!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:139
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:143
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:147
|
||||
msgid ""
|
||||
"Thank you for installing WooCommerce Pakettikauppa! This wizard will guide "
|
||||
"you through the setup process to get you started."
|
||||
msgstr ""
|
||||
"Thank you for installing WooCommerce Posti! This wizard will guide you "
|
||||
"through the setup process to get you started."
|
||||
|
||||
#. translators: %1$s: Vendor name, not translateable %2$s: Vendor url, not translateable
|
||||
#: core/class-text.php:165
|
||||
msgid ""
|
||||
"If you have already registered with %1$s, please choose \"Production mode\" "
|
||||
"and enter the credentials you received from %1$s. If you have not yet "
|
||||
"registered, please register at <a target=\"_blank\" rel=\"noopener noreferrer"
|
||||
"\" href=\"%2$s\">%2$s</a>. If you wish to test the plugin before making a "
|
||||
"contract with %1$s, please choose \"Test mode\" and leave the API secret/key "
|
||||
"fields empty."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:175
|
||||
msgid ""
|
||||
"Please fill the details of the merchant below. The information provided here "
|
||||
"will be used as the sender in shipping labels."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: link to WooCommerce shipping zone setting page %2$s: link to external WooCommerce documentation
|
||||
#: core/class-text.php:188
|
||||
msgid ""
|
||||
"Please configure the shipping methods of the currently active shipping zones "
|
||||
"to use Pakettikauppa shipping. Note that this plugin requires WooCommerce "
|
||||
"shipping zones and methods to be preconfigured in <a href=\"%1$s"
|
||||
"\">WooCommerce > Settings > Shipping > Shipping zones</a>. For more "
|
||||
"information, visit <a target=\"_blank\" href=\"%2$s\">%2$s</a>."
|
||||
msgstr ""
|
||||
"Please configure the shipping methods of the currently active shipping zones "
|
||||
"to use Posti shipping. Note that this plugin requires WooCommerce shipping "
|
||||
"zones and methods to be preconfigured in <a href=”%1$s”>WooCommerce > "
|
||||
"Settings > Shipping > Shipping zones</a>. For more information, visit <a "
|
||||
"target=”_blank” href=”%2$s”>%2$s</a>."
|
||||
|
||||
#: core/class-text.php:195
|
||||
msgid "Customize the order processing phase."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:199
|
||||
msgid ""
|
||||
"Congratulations, everything is now set up and you are now ready to start "
|
||||
"using the plugin!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:203
|
||||
msgid "Credentials"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:207
|
||||
msgid "Merchant"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:211
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:215
|
||||
msgid "Order Processing"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:219
|
||||
msgid "Ready!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:223
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:227
|
||||
msgid "Mode"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:231
|
||||
msgid "Testing environment"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:235
|
||||
msgid "Production environment"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:239
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: Vendor name, not translatable
|
||||
#: core/class-text.php:248
|
||||
msgid "API key provided by %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:254
|
||||
msgid "API secret"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: Vendor name, not translatable
|
||||
#: core/class-text.php:263
|
||||
msgid "API secret provided by %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:269
|
||||
msgid "Shipping methods mapping"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:273
|
||||
msgid "Shipping settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: WooCommerce URL, not translatable
|
||||
#: core/class-text.php:282
|
||||
msgid ""
|
||||
"You can activate new shipping method to checkout in <b>WooCommerce > "
|
||||
"Settings > Shipping > Shipping zones</b>. For more information, see <a "
|
||||
"target=\"_blank\" href=\"%1$s\">%1$s</a>"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:288
|
||||
msgid "Add tracking link to the order completed email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:292
|
||||
msgid "Add selected pickup point information to the order completed email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:296
|
||||
msgid "When creating shipping label change order status to"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:300
|
||||
msgid "No order status change"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:304
|
||||
msgid "Create shipping labels automatically"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:308
|
||||
msgid "No automatic creation of shipping labels"
|
||||
msgstr ""
|
||||
|
||||
#. translators: order status, pretranslated
|
||||
#: core/class-text.php:313
|
||||
msgid "When order status is \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:317
|
||||
msgid "Print labels"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:321
|
||||
msgid "Browser"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:325
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:329
|
||||
msgid "Post shipping label to URL"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:333
|
||||
msgid ""
|
||||
"Plugin can upload shipping label to an URL when creating shipping label. "
|
||||
"Define URL if you want to upload PDF."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:337
|
||||
msgid "Pickup point search limit"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:341
|
||||
msgid "Limit the amount of nearest pickup points shown."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:345
|
||||
msgid "Show pickup points as"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:349
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:353
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:357
|
||||
msgid "Store owner information"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:361
|
||||
msgid "Sender name"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:365
|
||||
msgid "Sender address"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:369
|
||||
msgid "Sender postal code"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:373
|
||||
msgid "Sender city"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:377
|
||||
msgid "Sender country"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:381
|
||||
msgid "Sender phone"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:385
|
||||
msgid "Sender email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:389
|
||||
msgid "Info-code for shipments"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:393
|
||||
msgid "Cash on Delivery (COD) Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:397
|
||||
msgid "Bank account number for Cash on Delivery (IBAN)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:401
|
||||
msgid "BIC code for Cash on Delivery"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:405
|
||||
msgid "Advanced settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:409
|
||||
msgid "Show Pakettikauppa shipping method"
|
||||
msgstr "Show Posti shipping method"
|
||||
|
||||
#: core/class-text.php:413
|
||||
msgid ""
|
||||
"WooCommerce Pakettikauppa requires WooCommerce to be installed and activated!"
|
||||
msgstr "WooCommerce Posti requires WooCommerce to be installed and activated!"
|
||||
|
||||
#: core/class-text.php:417
|
||||
msgid "No pickup points were found. Check the address."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:421
|
||||
msgid "An error occurred while searching for pickup points."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:425
|
||||
msgid ""
|
||||
"If none of your preferred pickup points are listed, fill in a custom address "
|
||||
"above and select another pickup point."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:429
|
||||
msgid "Custom pickup address"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:433
|
||||
msgid "Pickup address"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:437
|
||||
msgid "Search pickup points near you by typing your address above."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:441
|
||||
msgid "Show pickup point override in checkout"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:445
|
||||
msgid ""
|
||||
"The pickup point you've chosen is not available for public access. Are you "
|
||||
"sure that you can retrieve the package?"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:11
|
||||
msgid "WooCommerce Posti › Setup Wizard"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:19
|
||||
msgid ""
|
||||
"Thank you for installing WooCommerce Posti! This wizard will guide you "
|
||||
"through the setup process to get you started."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: link to WooCommerce shipping zone setting page %2$s: link to external WooCommerce documentation
|
||||
#: posti_shipping/classes/class-text.php:29
|
||||
msgid ""
|
||||
"Please configure the shipping methods of the currently active shipping zones "
|
||||
"to use Posti shipping. Note that this plugin requires WooCommerce shipping "
|
||||
"zones and methods to be preconfigured in <a href=\"%1$s\">WooCommerce > "
|
||||
"Settings > Shipping > Shipping zones</a>. For more information, visit <a "
|
||||
"target=\"_blank\" href=\"%2$s\">%2$s</a>."
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:36
|
||||
msgid "Show Posti shipping method"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:40
|
||||
msgid "WooCommerce Posti requires WooCommerce to be installed and activated!"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:44
|
||||
msgid ""
|
||||
"WooCommerce Posti can't be activated at the same time with WooCommerce "
|
||||
"Pakettikauppa. Deactivate WooCommerce Pakettikauppa!"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,4 @@
|
||||
*** preciso-bid-smart-for-merchant ***
|
||||
|
||||
2020-09-16 - version 1.0.0
|
||||
* Initial release
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
23
spec/fixtures/dynamic_finders/plugin_version/quick-download-button/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/quick-download-button/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "quick-download-button",
|
||||
"version": "1.0.0",
|
||||
"description": "Custom download buttons with options for colors, hide/show file size and extension wordpress block and sortcode options.",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"start": "wp-scripts start",
|
||||
"build": "wp-scripts build"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/kusimo/quick-download-button.git"
|
||||
},
|
||||
"author": "Abidemi Kusimo",
|
||||
"license": "GPL-2.0-only",
|
||||
"bugs": {
|
||||
"url": "https://github.com/kusimo/quick-download-button/issues"
|
||||
},
|
||||
"homepage": "https://github.com/kusimo/quick-download-button#readme",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "12.2.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
# Copyright (C) 2020 Abidemi Kusimo
|
||||
# This file is distributed under the same license as the Quick Download Button plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Quick Download Button 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/quick-download-button\n"
|
||||
"Last-Translator: Abidemi Kusimo <kushe.media@gmail.com>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-09-09T20:07:31+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: quick-download-button\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Quick Download Button"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/kusimo/quick-download-button"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Custom block plugin for download button with color, file extension options and shortcode."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Abidemi Kusimo"
|
||||
msgstr ""
|
||||
|
||||
#: quick-download-button.php:106
|
||||
#: quick-download-button.php:133
|
||||
#: build/index.js:1
|
||||
#: src/index.js:30
|
||||
#: src/index.js:37
|
||||
#: src/index.js:132
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:17
|
||||
msgid "Download Button"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
msgid "Use a quick download button for your file download link"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:22
|
||||
msgid "download"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:23
|
||||
msgid "button"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:57
|
||||
msgid "File size"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.js:1
|
||||
#: src/index.js:148
|
||||
msgid "Upload File."
|
||||
msgstr ""
|
||||
|
||||
#: src/index.js:19
|
||||
msgid "Use download button for your file download link."
|
||||
msgstr ""
|
||||
51
spec/fixtures/dynamic_finders/plugin_version/recipe-block/composer_file/package.json
vendored
Normal file
51
spec/fixtures/dynamic_finders/plugin_version/recipe-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "rmb-recipe-block",
|
||||
"title": "Recipe Block",
|
||||
"version": "1.1.1",
|
||||
"author": "Kelly Choyce-Dwan",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"homepage": "https://ryelle.codes/",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com:ryelle/rmb-recipe-block.git"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.18.3",
|
||||
"npm": "6.14.8"
|
||||
},
|
||||
"files": [
|
||||
"assets/**",
|
||||
"build/**",
|
||||
"readme.txt",
|
||||
"package.json",
|
||||
"rmb-recipe-block.php"
|
||||
],
|
||||
"main": "build/recipe-block.js",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "12.2.0",
|
||||
"concurrently": "5.3.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "wp-scripts build recipe-block=./assets/js/recipe-block.js",
|
||||
"start": "wp-scripts start recipe-block=./assets/js/recipe-block.js",
|
||||
"format:js": "wp-scripts format-js assets/js/**/*.js",
|
||||
"lint:css": "wp-scripts lint-style assets/css/*",
|
||||
"lint:css:fix": "wp-scripts lint-style assets/css/* --fix",
|
||||
"lint:js": "wp-scripts lint-js assets/js/**/*.js",
|
||||
"lint:js:fix": "wp-scripts format-js assets/js/**/*.js",
|
||||
"lint:php": "composer run lint",
|
||||
"lint:php:fix": "composer run format",
|
||||
"lint": "concurrently \"npm run lint:js\" \"npm run lint:css\" \"npm run lint:php\"",
|
||||
"ci": "npm run lint"
|
||||
},
|
||||
"stylelint": {
|
||||
"rules": {
|
||||
"selector-class-pattern": [
|
||||
"^([a-z][a-z0-9]*)(-[a-z0-9]+)*(__[a-z0-9]+)?(-[a-z0-9]+)*$",
|
||||
{
|
||||
"message": "Selector should use lowercase and separate words with hyphens (selector-class-pattern)"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
# Copyright (C) 2014 Responsive Calendar Widget
|
||||
# This file is distributed under the same license as the Responsive Calendar Widget package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Responsive Calendar Widget 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/Responsive-Calendar-Widget\n"
|
||||
"POT-Creation-Date: 2014-04-07 11:28:06+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: classes/post-types/class-responsive-calendar-widget-post_type.php:52
|
||||
#: includes/post-types/class-responsive-calendar-widget-post_type.php:42
|
||||
msgctxt "post type general name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
54
spec/fixtures/dynamic_finders/plugin_version/rich-text-extension/composer_file/package.json
vendored
Normal file
54
spec/fixtures/dynamic_finders/plugin_version/rich-text-extension/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"name": "@hamworks/rich-text-extension",
|
||||
"version": "0.0.5",
|
||||
"author": "Hiroshi Urabe <urabe@ham.works> (https://ham.works)",
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^4.4.0",
|
||||
"@wordpress/icons": "^2.5.0",
|
||||
"@wordpress/rich-text": "^3.21.0",
|
||||
"lodash": "^4.17.20",
|
||||
"tinycolor2": "^1.4.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/browserslist-config": "2.7.0",
|
||||
"@wordpress/scripts": "^12.1.1",
|
||||
"prettier": "npm:wp-prettier@^2.0.4"
|
||||
},
|
||||
"license": "GPL-2.0+",
|
||||
"main": "build/index.js",
|
||||
"release-it": {
|
||||
"hooks": {
|
||||
"before:bump": "bash ./bin/create-release.sh rich-text-extension ${version}",
|
||||
"after:bump": "bash ./bin/create-zip.sh rich-text-extension",
|
||||
"after:release": "bash ./bin/cleanup.sh rich-text-extension"
|
||||
},
|
||||
"github": {
|
||||
"release": true,
|
||||
"assets": [
|
||||
"rich-text-extension.zip"
|
||||
]
|
||||
},
|
||||
"npm": {
|
||||
"publish": false
|
||||
}
|
||||
},
|
||||
"repository": {
|
||||
"url": "git@github.com:team-hamworks/rich-text-extension.git",
|
||||
"type": "git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "NODE_ENV=production npm run build:dev",
|
||||
"build:dev": "wp-scripts build",
|
||||
"format-js": "wp-scripts format-js",
|
||||
"env": "wp-scripts env",
|
||||
"lint-js": "wp-scripts lint-js src",
|
||||
"lint-js:fix": "npm run lint-js -- --fix",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"wp-env": {
|
||||
"plugin-dir": "rich-text-extension",
|
||||
"plugin-name": "rich-text-extension",
|
||||
"welcome-build-command": "npm run start"
|
||||
}
|
||||
}
|
||||
63
spec/fixtures/dynamic_finders/plugin_version/seo-ready/translation_file/languages/seo-ready.pot
vendored
Normal file
63
spec/fixtures/dynamic_finders/plugin_version/seo-ready/translation_file/languages/seo-ready.pot
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) 2020 MyPreview
|
||||
# This file is distributed under the GPL-3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SEO Ready 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/seo-ready\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-25T20:19:33+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: seo-ready\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SEO Ready"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.mypreview.one"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin offers a GUI to generate most commonly used meta tags, so you can optimize your WordPress site for search engines… and do it in less time than it takes to brew a cup of coffee."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MyPreview"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://mahdiyazdani.com"
|
||||
msgstr ""
|
||||
|
||||
#: seo-ready.php:119
|
||||
msgctxt "clone"
|
||||
msgid "Cloning instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: seo-ready.php:130
|
||||
msgctxt "wakeup"
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: seo-ready.php:306
|
||||
msgctxt "plugin link"
|
||||
msgid "%1$sHire Me!%2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: seo-ready.php:306
|
||||
msgctxt "upsell"
|
||||
msgid "Looking for help? Hire Me!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: seo-ready.php:308
|
||||
msgctxt "plugin link"
|
||||
msgid "%1$sSupport%2$s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,161 @@
|
||||
# SCFA Language Template File (.POT)
|
||||
# Copyright (C) 2020 Joaquim Homrighausen
|
||||
# This file is distributed under the same license as the SCFA package.
|
||||
# Joaquim Homrighausen <joho@webbplatsen.se>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SCFA 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-08-25 10:48+0200\n"
|
||||
"PO-Revision-Date: 2020-08-31 11:55+0200\n"
|
||||
"Last-Translator: Joaquim Homrighausen <joho@webbplatsen.se>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
# Description
|
||||
msgid "Generate inline HTML for Font Awesome using shortcodes"
|
||||
msgstr ""
|
||||
|
||||
# URL settings
|
||||
msgid "URL settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:131 admin/class-scfa-admin.php:131
|
||||
msgid "Insert SCFA"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:152 admin/class-scfa-admin.php:152
|
||||
msgid ""
|
||||
"Please note that to serve the specified asset URL as CSS, Font Awesome "
|
||||
"expects to be able to include web fonts relative to the URL you specify."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:153 admin/class-scfa-admin.php:153
|
||||
msgid ""
|
||||
"If you specify https://mysite.com/assets/css/all.min.css, Font Awesome will "
|
||||
"attempt to include web fonts from https://mysite.com/assets/webfonts/..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:157 admin/class-scfa-admin.php:157
|
||||
msgid "Please make sure you include the Font Awesome assets in some other way."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:167 admin/class-scfa-admin.php:167
|
||||
msgid "Quick reference"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:168 admin/class-scfa-admin.php:168
|
||||
msgid ""
|
||||
"This is intended as a quick reference for the shortcode. For a complete list "
|
||||
"of Font Awesome classes, please see"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:170 admin/class-scfa-admin.php:170
|
||||
msgid "Some icon styles may only be available with a Pro license"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:172 admin/class-scfa-admin.php:172
|
||||
msgid ""
|
||||
"You can (obviously) specify everything class related in the class=\"\" "
|
||||
"parameter if that is more convenient for you"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:174 admin/class-scfa-admin.php:174
|
||||
msgid "General format"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:177 admin/class-scfa-admin.php:177
|
||||
msgid "Generate <span> element with icon and default (icon) style:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:182 admin/class-scfa-admin.php:182
|
||||
msgid "Generate <span> element with the specified style and icon:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:187 admin/class-scfa-admin.php:187
|
||||
msgid "Generate <span> element with the specified style and icon and size:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:192 admin/class-scfa-admin.php:192
|
||||
msgid ""
|
||||
"Generate <span> element with the specified style and icon and custom CSS:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:197 admin/class-scfa-admin.php:197
|
||||
msgid ""
|
||||
"Generate <span> element with the specified style and icon and custom class:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:202 admin/class-scfa-admin.php:202
|
||||
msgid ""
|
||||
"Generate <span> element with the specified style and icon and fixed width:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:217 admin/class-scfa-admin.php:217
|
||||
msgid "SCFA settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:233 admin/class-scfa-admin.php:233
|
||||
msgid "Asset URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:242 admin/class-scfa-admin.php:242
|
||||
msgid "Enter a valid URL for the CSS or JS file to be used"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:244 admin/class-scfa-admin.php:244
|
||||
msgid ""
|
||||
"The URL of a Font Awesome CSS or JS file to be included when your site "
|
||||
"loads. Leave empty to use included Font Awesome CSS resources. If this is "
|
||||
"configured correctly, you will see some Font Awesome icons below the SCFA "
|
||||
"header on this page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:254 admin/class-scfa-admin.php:254
|
||||
msgid "Other settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:256 admin/class-scfa-admin.php:256
|
||||
msgid "Asset type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:270 admin/class-scfa-admin.php:270
|
||||
msgid "How the asset URL (above) should be used"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:277 admin/class-scfa-admin.php:277
|
||||
msgid "Default style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:291 admin/class-scfa-admin.php:291
|
||||
msgid "Default icon style if not specified"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:298 admin/class-scfa-admin.php:298
|
||||
msgid "Remove settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:306 admin/class-scfa-admin.php:306
|
||||
msgid "Remove all SCFA plugin settings and data when plugin is uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:265
|
||||
msgid "Serve local Font Awesome CSS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:266
|
||||
msgid "Serve asset URL as CSS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:267
|
||||
msgid "Serve asset URL as Font Awesome CDN kit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:268
|
||||
msgid "None of the above, Font Awesome is activated elsewhere"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,206 @@
|
||||
# Copyright (C) 2020 SkyMonitor.com
|
||||
# This file is distributed under the same license as the Simple Login Limit & Protect plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simple Login Limit & Protect 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-login-limit-protect\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-28T11:28:05-03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: simple-login-limit-protect\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Simple Login Limit & Protect"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://skymonitor.com/products/simple-login-limit-protect-for-wordpress/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Protect your Wordpress instalation against hackers attempts, easy and fast"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "SkyMonitor.com"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://skymonitor.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-login-limit-protect-admin.php:48
|
||||
msgid "Simple Login Limit & Protect is running on a Private Network IP Address or behind a Proxy or Load Balancer. If you are running on a test computer or on a local Network, this is expected. If you are running behind a Proxy, Firewall or Load Balancer, you may need to configure the option \"Identify Remote IP Address\", if those are not the case, please contact us."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-login-limit-protect-admin.php:81
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-login-limit-protect-admin.php:109
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-allowlist.php:9
|
||||
msgid "Allow List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-blocklist.php:11
|
||||
msgid "Block List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-display.php:30
|
||||
msgid "Dismiss this notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-display.php:47
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:11
|
||||
msgid "Sorry, your nonce was not correct. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:38
|
||||
msgid "Options successfully updated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:60
|
||||
msgctxt "number"
|
||||
msgid "%s invalid login attempts has been blocked since installation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:66
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:79
|
||||
msgid "Security Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:82
|
||||
msgid "Intelligent"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:89
|
||||
msgid "<strong>Intelligent Mode</strong> will Learn to determine if the visitor is a good or bad guy. This will block a hacker in the first or second try, and will allow a legitimate user to try many times."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:101
|
||||
msgid "GDPR Compliance"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:105
|
||||
msgid "Makes the plugin <a href=\"https://gdpr-info.eu/\" target=\"_blank\" >GDPR</a> compliant"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:106
|
||||
msgid "<a target=\"_blank\" href=\"https://skymonitor.com/why-hash-dont-anonimize-an-ip-address-and-what-this-affects-gdpr/\">Why other plugins are doing it wrong</a>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:111
|
||||
msgid "Action for blocked IPs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:114
|
||||
msgid "Show Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:115
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:137
|
||||
msgid "Redirect to URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:116
|
||||
msgid "Do Nothing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:119
|
||||
msgid "Doing nothing will make hackers loosing time trying again and again and again while blocked, but this will also consume your servers resources and real users may become confused, since they won't know that they has been blocked"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:125
|
||||
msgid "Messsage for Blocked IPs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:131
|
||||
msgid "The message will be followed by the time remaining, i.e. 1m10s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:150
|
||||
msgid "Identify Remote IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:153
|
||||
msgid "REMOTE_ADDR - the usual, if your server is facing Internet directly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:154
|
||||
msgid "HTTP_X_FORWARDED_FOR - the mostly used behind Proxies and Load Balancers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:155
|
||||
msgid "HTTP_X_FORWARDED - used behind Proxies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:156
|
||||
msgid "HTTP_FORWARDED - used behind Proxies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:157
|
||||
msgid "HTTP_X_REAL_IP - used behind Proxies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:158
|
||||
msgid "HTTP_CF_CONNECTING_IP - if you are customer of CloudFlare"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:159
|
||||
msgid "HTTP_X_SUCURI_CLIENTIP - if you are customer of Sucuri Web Firewall"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:162
|
||||
msgid "This option tries to identify if your server is behind a Proxy, Firewall or WAF, since this could change how we get the real user IP, and we want to do this in the most secure way. Some plugins tries to determine this automatically, but only REMOTE_ADDR is trusted, all the other options can be faked by an attacker. Bellow are the results that we identified from your access:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:172
|
||||
msgid "Option: %s, Captured IP: %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:177
|
||||
msgid "Options not displayed should not be used."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:185
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:188
|
||||
msgid "Any thoughts? Help us improve"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:189
|
||||
msgid "fill the form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-logs.php:9
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: login/simple-login-limit-protect-login.php:59
|
||||
msgid "Welcome, this site is protected by Simple Login Limit & Protect"
|
||||
msgstr ""
|
||||
|
||||
#: login/simple-login-limit-protect-login.php:125
|
||||
msgid "Your IP has been blocked. You can try again in"
|
||||
msgstr ""
|
||||
|
||||
#: login/simple-login-limit-protect-login.php:171
|
||||
#: login/simple-login-limit-protect-login.php:187
|
||||
msgid "Invalid login or password"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,761 @@
|
||||
# Copyright (C) 2020 John West, StefanBoonstra
|
||||
# This file is distributed under the same license as the Slideshow SE plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Slideshow SE 2.5.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/SlideshowSE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-03T17:50:51+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: slideshow-jquery-image-gallery\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Slideshow SE"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The slideshow plugin is easily deployable on your website. Add any image that has already been uploaded to add to your slideshow, add text slides, or even add a video. Options and styles are customizable for every single slideshow on your website."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "John West, StefanBoonstra"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://stefanboonstra.com/"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:85
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:86
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings.php:15
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:153
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:154
|
||||
msgid "Are you sure you want to delete this custom style?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:210
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:8
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:211
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:9
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:367
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:145
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:800
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:405
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:83
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:112
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:49
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:801
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:406
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:84
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:113
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:50
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:543
|
||||
msgid "The style used for this slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:804
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:128
|
||||
msgid "Custom style editor"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:451
|
||||
msgid "Animation used for transition between slides"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
msgid "Slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Fade"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
#: classes/SlideshowSEPluginInstaller.php:806
|
||||
#: classes/SlideshowSEPluginInstaller.php:807
|
||||
#: classes/SlideshowSEPluginInstaller.php:808
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:481
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:482
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:483
|
||||
msgid "Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:806
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:452
|
||||
msgid "Number of seconds the slide takes to slide in"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:807
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:453
|
||||
msgid "Number of seconds the description takes to slide in"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:808
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:454
|
||||
msgid "Seconds between changing slides"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:809
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:455
|
||||
msgid "Number of slides to fit into one slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:809
|
||||
#: classes/SlideshowSEPluginInstaller.php:810
|
||||
#: classes/SlideshowSEPluginInstaller.php:811
|
||||
#: classes/SlideshowSEPluginInstaller.php:812
|
||||
#: classes/SlideshowSEPluginInstaller.php:813
|
||||
#: classes/SlideshowSEPluginInstaller.php:814
|
||||
#: classes/SlideshowSEPluginInstaller.php:815
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:484
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:485
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:486
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:487
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:489
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:490
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:491
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:492
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:810
|
||||
msgid "Width of the slideshow, set to parent's width on 0"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:811
|
||||
msgid "Height of the slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:812
|
||||
msgid "Height of the description boxes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:813
|
||||
msgid "Fit image into slide (stretching it)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:814
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:462
|
||||
msgid "Show title and description"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:815
|
||||
msgid "Hide description box, it will pop up when a mouse hovers over the slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:816
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:464
|
||||
msgid "Automatically slide to the next slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:816
|
||||
#: classes/SlideshowSEPluginInstaller.php:817
|
||||
#: classes/SlideshowSEPluginInstaller.php:818
|
||||
#: classes/SlideshowSEPluginInstaller.php:819
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:493
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:494
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:495
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:496
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:497
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:498
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:499
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:500
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:501
|
||||
msgid "Control"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:817
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:465
|
||||
msgid "Return to the beginning of the slideshow after last slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:818
|
||||
msgid "Activate buttons (so the user can scroll through the slides)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:819
|
||||
msgid "Show control panel (play and pause button)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:45
|
||||
msgid "Slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:46
|
||||
#: views/SlideshowSEPluginWidget/form.php:9
|
||||
#: build/index.js:230
|
||||
#: src/edit.js:38
|
||||
msgid "Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:47
|
||||
msgid "Add New Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:48
|
||||
msgid "Edit slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:49
|
||||
msgid "New slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:50
|
||||
msgid "View slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:51
|
||||
msgid "Search slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:52
|
||||
#: classes/SlideshowSEPluginPostType.php:53
|
||||
msgid "No slideshows found"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:100
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:109
|
||||
msgid "Slides List"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:118
|
||||
msgid "Slideshow Style"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:127
|
||||
msgid "Slideshow Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:169
|
||||
msgid "Slideshow created"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:173
|
||||
msgid "Slideshow updated"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:262
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:313
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginShortcode.php:147
|
||||
msgid "No slideshow selected."
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideInserter.php:77
|
||||
msgid "Are you sure you want to delete this slide?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideInserter.php:78
|
||||
msgid "Insert image slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:456
|
||||
msgid "Maximum width. When maximum width is 0, maximum width is ignored"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:457
|
||||
msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:457
|
||||
msgid "More info"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:457
|
||||
msgid "Proportional relationship%s between slideshow's width and height (width:height)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:458
|
||||
msgid "Slideshow's height"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:459
|
||||
msgid "Image behaviour"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:460
|
||||
msgid "Shrink slideshow's height when width shrinks"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:461
|
||||
msgid "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:463
|
||||
msgid "Hide description box, pop up when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:466
|
||||
msgid "Pause slideshow when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:467
|
||||
msgid "Activate navigation buttons"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:468
|
||||
msgid "Hide navigation buttons, show when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:469
|
||||
msgid "Activate pagination"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:470
|
||||
msgid "Hide pagination, show when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:471
|
||||
msgid "Activate control panel (play and pause button)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:472
|
||||
msgid "Hide control panel, show when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:473
|
||||
msgid "Wait until the next slide has loaded before showing it"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:474
|
||||
msgid "Show a loading icon until the first slide appears"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:475
|
||||
msgid "Randomize slides"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:476
|
||||
msgid "Avoid content filter (disable if '%s' is shown)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Left"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Right"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Up"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Down"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Cross Fade"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Direct Fade"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Random Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
msgid "Natural and centered"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
msgid "Crop to fit"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
msgid "Stretch to fit"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:502
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:503
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:504
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:505
|
||||
msgid "Miscellaneous"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginWidget.php:23
|
||||
msgid "Enables you to show your slideshows in the widget area of your website."
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginWidget.php:29
|
||||
msgid "Slideshow Widget"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:37
|
||||
msgid "Play"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:37
|
||||
msgid "Pause"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:38
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:39
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:40
|
||||
msgid "Go to slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:48
|
||||
msgid "Default stylesheets"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:62
|
||||
msgid "Create a new custom style from this style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:64
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:78
|
||||
msgid "Custom stylesheets"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:91
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:174
|
||||
msgid "Edit this style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:93
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:176
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:118
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:100
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:183
|
||||
msgid "Delete this style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:102
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:185
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:132
|
||||
msgid "Select a stylesheet to start customizing it."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:141
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:194
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:126
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:19
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:188
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:84
|
||||
#: views/SlideshowSEPluginWidget/form.php:4
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:150
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:202
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:13
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:19
|
||||
msgid "The settings set on this page apply only to newly created slideshows and therefore do not alter any existing ones. To adapt a slideshow's settings, %1$sclick here.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:31
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings.php:16
|
||||
msgid "Default Slideshow Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:43
|
||||
#: views/SlideshowSEPluginPostType/settings.php:13
|
||||
msgid "settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:79
|
||||
msgid "Default Slideshow Stylesheet"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:14
|
||||
msgid "Add slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:15
|
||||
msgid "Edit slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:16
|
||||
msgid "Delete slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:23
|
||||
msgid "User Capabilities"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:25
|
||||
msgid "Select the user roles that will able to perform certain actions."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:41
|
||||
msgid "Untitled role"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:68
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:72
|
||||
msgid "Stylesheet location"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:75
|
||||
msgid "top"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:76
|
||||
msgid "bottom"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:81
|
||||
msgid "Enable lazy loading"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings.php:17
|
||||
msgid "Custom Styles"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:3
|
||||
msgid "To use this slideshow in your website either add this piece of shortcode to your posts or pages"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:7
|
||||
msgid "Or add this piece of code to where ever in your website you want to place the slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:11
|
||||
msgid "Or go to the %1$swidgets page%2$s and show the slideshow as a widget."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:13
|
||||
msgid "Or choose this slideshow in the Slideshow block using the Gutenberg editor"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/settings.php:27
|
||||
#: views/SlideshowSEPluginPostType/style-settings.php:12
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:3
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:5
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:107
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:173
|
||||
msgid "Image slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:6
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:10
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:73
|
||||
msgid "Text slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:7
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:95
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:32
|
||||
msgid "Video slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:11
|
||||
msgid "Open all"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:12
|
||||
msgid "Close all"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:16
|
||||
msgid "Add slides to this slideshow by using one of the buttons above."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/style-settings.php:22
|
||||
msgid "Custom styles can be created and customized %1$shere%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:6
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:11
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:20
|
||||
msgid "Insert a Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:14
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:53
|
||||
msgid "Insert Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:29
|
||||
msgid "Select a slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:38
|
||||
#: views/SlideshowSEPluginWidget/form.php:14
|
||||
msgid "Untitled slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:58
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:69
|
||||
msgid "It seems you haven't created any slideshows yet. %1$sYou can create a slideshow here!%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:141
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:34
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:203
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:99
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:156
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:60
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:218
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:125
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:159
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:63
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:221
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:128
|
||||
msgid "Open URL in"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:161
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:65
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:223
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:130
|
||||
msgid "Same window"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:162
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:66
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:224
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:131
|
||||
msgid "New window"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:166
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:70
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:228
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:135
|
||||
msgid "Don't let search engines follow link"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:174
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:235
|
||||
msgid "Alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:180
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:77
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:118
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:155
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:241
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:142
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:55
|
||||
msgid "Delete slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:49
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:114
|
||||
msgid "Text color"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:52
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:117
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:54
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:119
|
||||
msgid "(Leave empty for a transparent background)"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:104
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:41
|
||||
msgid "Youtube Video ID"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:111
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:48
|
||||
msgid "Show related videos"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:136
|
||||
msgid "Embedded Media slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:145
|
||||
msgid "Media URL to embed"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginWidget/form.php:11
|
||||
msgid "Random Slideshow"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,560 @@
|
||||
# Copyright (C) 2020 Smart PayPal Checkout For WooCommerce
|
||||
# This file is distributed under the same license as the Smart PayPal Checkout For WooCommerce package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Smart PayPal Checkout For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/smart-paypal-checkout-for-woocommerce\n"
|
||||
"POT-Creation-Date: 2020-10-12 07:30:32+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:32
|
||||
msgid "PayPal Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:33
|
||||
msgid "PayPal Checkout with Smart Payment Buttons gives your buyers a simplified and secure checkout experience."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:88
|
||||
msgid "Card code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:93
|
||||
msgid "Card number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:97
|
||||
msgid "Expiry (MM/YY)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:141
|
||||
msgid "Authorize payment action is not available for INR currency."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:163
|
||||
msgid "Gateway disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:163
|
||||
msgid "PayPal does not support your store currency."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:240
|
||||
msgid "Refund failed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:259
|
||||
msgid "This represents the fee PayPal collects for the transaction."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-gateway.php:260
|
||||
msgid "PayPal Fee:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-product.php:74
|
||||
msgid "Please choose the quantity of items you wish to add to your cart…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-product.php:81
|
||||
msgid "Please choose a product to add to your cart…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-product.php:127
|
||||
msgid "Please choose product options…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-product.php:143
|
||||
msgid "Invalid value posted for %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-product.php:150
|
||||
msgid "%s is a required field"
|
||||
msgid_plural "%s are required fields"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:98
|
||||
msgid "Continue to payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:472
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:1125
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:606
|
||||
msgid "Card Details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:483
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:1136
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:617
|
||||
msgid "Address Verification Result"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:492
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:1145
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:626
|
||||
msgid "Card Security Code Result"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:509
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:1166
|
||||
msgid "Payment via %s : %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:513
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:1170
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:645
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:655
|
||||
msgid "Payment via %s Pending. PayPal reason: %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:516
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:568
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:1162
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:647
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:661
|
||||
msgid "%s Transaction ID: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:571
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:1516
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:664
|
||||
msgid "Payment authorized. Change payment status to processing or complete to capture funds."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:912
|
||||
msgid "Refunded %1$s - Refund ID: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:1187
|
||||
msgid "Smart PayPal Checkout For WooCommerce Version: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:1188
|
||||
msgid "WooCommerce Version: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-request.php:1519
|
||||
msgid "Payment pending (%s)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:7
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:194
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:9
|
||||
msgid "Enable PayPal Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:10
|
||||
msgid "Check this box to enable the payment gateway. Leave unchecked to disable it."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:15
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:17
|
||||
msgid "This controls the label the user will see for this payment option during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:18
|
||||
msgid "PayPal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:22
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:154
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:25
|
||||
msgid "This controls the description the user will see for this payment option during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:26
|
||||
msgid "Pay via PayPal; you can pay with your credit card if you don't have a PayPal account."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:29
|
||||
msgid "PayPal sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:31
|
||||
msgid "Enable PayPal sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:33
|
||||
msgid "Check this box to enable test mode so that all transactions will hit PayPal’s sandbox server instead of the live server. This should only be used during development as no real transactions will occur when this is enabled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:37
|
||||
msgid "API credentials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:39
|
||||
msgid "<a target='_blank' href='https://developer.paypal.com/docs/business/get-started/#step-1-get-api-credentials'>Get API credentials</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:43
|
||||
msgid "PayPal Client ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:45
|
||||
msgid "Enter your PayPal Client ID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:50
|
||||
msgid "PayPal Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:52
|
||||
msgid "Enter your PayPal Secret."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:57
|
||||
msgid "Sandbox Client ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:59
|
||||
msgid "Enter your PayPal Sandbox Client ID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:64
|
||||
msgid "Sandbox Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:66
|
||||
msgid "Enter your PayPal Sandbox Secret."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:74
|
||||
msgid "Smart Payment Buttons options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:79
|
||||
msgid "Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:82
|
||||
msgid "Set the color you would like to use for the PayPal button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:86
|
||||
msgid "Gold (Recommended)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:87
|
||||
msgid "Blue"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:88
|
||||
msgid "Silver"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:89
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:90
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:94
|
||||
msgid "Button Shape"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:97
|
||||
msgid "Set the shape you would like to use for the buttons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:101
|
||||
msgid "Rect (Recommended)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:102
|
||||
msgid "Pill"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:106
|
||||
msgid "Button Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:109
|
||||
msgid "Set the label type you would like to use for the PayPal button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:113
|
||||
msgid "PayPal (Recommended)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:114
|
||||
msgid "Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:115
|
||||
msgid "Buynow"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:116
|
||||
msgid "Pay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:120
|
||||
msgid "Disable funding"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:123
|
||||
msgid "Funding methods selected here will be hidden from showing in the Smart Payment Buttons."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:126
|
||||
msgid "PayPal Credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:127
|
||||
msgid "Venmo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:128
|
||||
msgid "SEPA-Lastschrift"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:129
|
||||
msgid "Bancontact"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:130
|
||||
msgid "eps"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:131
|
||||
msgid "giropay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:132
|
||||
msgid "iDEAL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:133
|
||||
msgid "MyBank"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:134
|
||||
msgid "Przelewy24"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:135
|
||||
msgid "Sofort"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:142
|
||||
msgid "Order Review Page options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:147
|
||||
msgid "Page Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:149
|
||||
msgid "Set the Page Title value you would like used on the PayPal Checkout order review page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:150
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:164
|
||||
msgid "Confirm your PayPal order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:157
|
||||
msgid "Set the Description you would like used on the PayPal Checkout order review page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:158
|
||||
msgid "<strong>You're almost done!</strong><br>Review your information before you place your order."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:161
|
||||
msgid "Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:163
|
||||
msgid "Set the Button Text you would like used on the PayPal Checkout order review page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:171
|
||||
msgid "Advanced options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:176
|
||||
msgid "Brand Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:178
|
||||
msgid "This controls what users see as the brand / company name on PayPal review pages."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:183
|
||||
msgid "Landing Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:186
|
||||
msgid "The type of landing page to show on the PayPal site for customer checkout. PayPal Account Optional must be checked for this option to be used."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:187
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:188
|
||||
msgid "Billing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:189
|
||||
msgid "No Preference"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:196
|
||||
msgid "Enable advanced credit and debit card payments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:198
|
||||
msgid "Currently PayPal support Unbranded payments in US, AU, UK, FR, IT and ES only. <br> <br>Advanced credit and debit cards requires that your business account be evaluated and approved by PayPal. <br><a target=\"_blank\" href=\"https://www.sandbox.paypal.com/bizsignup/entry/product/ppcp\">Enable for Sandbox Account</a> <span> | </span> <a target=\"_blank\" href=\"https://www.paypal.com/bizsignup/entry/product/ppcp\">Enable for Live Account</a><br>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:201
|
||||
msgid "3D Secure"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:203
|
||||
msgid "Enable 3D Secure"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:204
|
||||
msgid "If you are based in Europe, you are subjected to PSD2. PayPal recommends this option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:208
|
||||
msgid "Payment action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:211
|
||||
msgid "Choose whether you wish to capture funds immediately or authorize payment only."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:215
|
||||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:216
|
||||
msgid "Authorize"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:220
|
||||
msgid "Invoice prefix"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:222
|
||||
msgid "Please enter a prefix for your invoice numbers. If you use your PayPal account for multiple stores ensure this prefix is unique as PayPal will not allow orders with the same invoice number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:227
|
||||
msgid "Debug log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:229
|
||||
msgid "Enable logging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:231
|
||||
msgid "Log PayPal events, such as Webhook, Payment, Refund inside %s Note: this may log personal information. We recommend using this for debugging purposes only and deleting the logs when finished."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:237
|
||||
msgid "Enable/Disable coupons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:239
|
||||
msgid "Enable the use of coupon codes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce-settings.php:240
|
||||
msgid "Coupons can be applied from the order review."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-smart-paypal-checkout-for-woocommerce.php:82
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:207
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:227
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:320
|
||||
msgid "Billing & Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:320
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:322
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:338
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:322
|
||||
msgid "Billing details"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:338
|
||||
msgid "Shipping details"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:414
|
||||
msgid "Create an account?"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:421
|
||||
msgid "Create an account by entering the information below. If you are a returning customer please login at the top of the page."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:641
|
||||
msgid "Payment via %s : %s ."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:904
|
||||
msgid "Capture Charge"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:1030
|
||||
msgid "Cancel order"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:1075
|
||||
msgid "We cannot process your order with the payment information that you provided. Please use an alternate payment method."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-smart-paypal-checkout-for-woocommerce-button-manager.php:1112
|
||||
msgid "3D Secure response"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Smart PayPal Checkout For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/wp-mbjtechnolabs/smart-paypal-checkout-for-woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "PayPal Checkout with Smart Payment Buttons gives your buyers a simplified and secure checkout experience."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "paypal@mbjtechnlabs.com"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://github.com/wp-mbjtechnolabs/smart-paypal-checkout-for-woocommerce"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,4 @@
|
||||
*** Instagram Connector For Woocommerce Changelog ***
|
||||
|
||||
2020-09-21 - version 1.0.0
|
||||
* Inital release
|
||||
82
spec/fixtures/dynamic_finders/plugin_version/terms-block/composer_file/package.json
vendored
Normal file
82
spec/fixtures/dynamic_finders/plugin_version/terms-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
{
|
||||
"name": "@hamworks/terms-block",
|
||||
"version": "0.1.1",
|
||||
"description": "Term list block. Displays a list of all terms in the selected taxonomy.",
|
||||
"author": "Hiroshi Urabe <urabe@ham.works> (https://ham.works)",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"keywords": [
|
||||
"WordPress"
|
||||
],
|
||||
"homepage": "https://github.com/team-hamworks/terms-block",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@github.com:team-hamworks/terms-block.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/team-hamworks/terms-block/issues"
|
||||
},
|
||||
"main": "build/index.js",
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged"
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/block-editor": "^4.4.0",
|
||||
"@wordpress/icons": "^2.5.0",
|
||||
"@wordpress/rich-text": "^3.21.0",
|
||||
"lodash": "^4.17.20",
|
||||
"tinycolor2": "^1.4.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/browserslist-config": "2.7.0",
|
||||
"@wordpress/scripts": "^12.1.1",
|
||||
"husky": "^4.3.0",
|
||||
"lint-staged": "^10.3.0",
|
||||
"prettier": "npm:wp-prettier@^2.0.4"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "NODE_ENV=production npm run build:dev",
|
||||
"build:dev": "wp-scripts build",
|
||||
"env": "wp-scripts env",
|
||||
"format-js": "wp-scripts format-js",
|
||||
"lint-js": "wp-scripts lint-js src",
|
||||
"lint-js:fix": "npm run lint-js -- --fix",
|
||||
"lint-php": "./vendor/bin/phpcs --standard=./.phpcs.xml.dist",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.js": [
|
||||
"npm run format-js",
|
||||
"npm run lint-js"
|
||||
],
|
||||
"*.php": [
|
||||
"npm run lint-php"
|
||||
],
|
||||
"packages/*/package.json": [
|
||||
"wp-scripts lint-pkg-json"
|
||||
]
|
||||
},
|
||||
"release-it": {
|
||||
"github": {
|
||||
"assets": [
|
||||
"terms-block.zip"
|
||||
],
|
||||
"release": true
|
||||
},
|
||||
"hooks": {
|
||||
"after:bump": "bash ./bin/create-zip.sh terms-block",
|
||||
"after:release": "bash ./bin/cleanup.sh terms-block",
|
||||
"before:bump": "bash ./bin/create-release.sh terms-block ${version}"
|
||||
},
|
||||
"npm": {
|
||||
"publish": false
|
||||
}
|
||||
},
|
||||
"wp-env": {
|
||||
"plugin-dir": "terms-block",
|
||||
"plugin-name": "terms-block",
|
||||
"welcome-build-command": "npm run start"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,242 @@
|
||||
# Copyright (C) 2020 ZealousWeb Technologies
|
||||
# This file is distributed under the same license as the Track Geolocation Of Users Using Contact Form 7 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Track Geolocation Of Users Using Contact Form 7 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/track-geolocation-of-users-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-09-09T12:08:25+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: track-geolocation-of-users-using-contact-form-7\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Track Geolocation Of Users Using Contact Form 7"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Fetch Geolocation of user when user submits 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.tglcf.admin.action.php:156
|
||||
msgid "From Data"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.action.php:157
|
||||
msgid "Do you need help for configuration?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.action.php:261
|
||||
msgid "Select Forms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.action.php:267
|
||||
msgid "Export CSV"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.action.php:302
|
||||
msgid "Please select Form to export."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.action.php:337
|
||||
msgid "Form ID/Name"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.action.php:369
|
||||
msgid "Debug ipstack"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.action.php:378
|
||||
msgid "Debug ipapi"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.action.php:387
|
||||
msgid "Debug Keycdn"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.action.php:399
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.action.php:405
|
||||
msgid "Unable to load location data for this entry. This usually means CF7-Geolocation was unable to process the user's IP address or it is non-standard format."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.filter.php:92
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.filter.php:93
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.filter.php:94
|
||||
msgid "Lat./Long."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.filter.php:95
|
||||
msgid "API"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.filter.php:96
|
||||
msgid "Submitted Date"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.filter.php:138
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/class.tglcf.admin.filter.php:141
|
||||
msgid "Document Link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:40
|
||||
msgid "Geolocation Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:41
|
||||
msgid "Submission Graph"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:42
|
||||
msgid "Shortcode Info"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:64
|
||||
msgid "A Detailed graph on the basis of submitted forms."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:79
|
||||
msgid "All Forms"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:103
|
||||
msgid "Details You get in EMail."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:104
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:109
|
||||
msgid "To add latitude/longitude, country, state, city."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:113
|
||||
msgid "To add latitude/longitude, country, state, city & Google map static image."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:117
|
||||
msgid "To add just latitude/longitude."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:121
|
||||
msgid "To add just country."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:125
|
||||
msgid "To add just state."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:129
|
||||
msgid "To add just city."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:133
|
||||
msgid "To add just Google map static image."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:140
|
||||
msgid "Note: To add Google map static image in email you have to enable this 2 option."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:141
|
||||
msgid "1) You have to enable \"Use HTML content type\" in email setting of Contact form 7."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:142
|
||||
msgid "2) You have to enable \"Maps Static API\" in Google Map API."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:154
|
||||
msgid ""
|
||||
"<h3>ipstack API Access Key</h3><p>Enter Your ipstack API Access Key Which you can get it by signing up for Free Plan from <a href=\"https://ipstack.com/signup/free\" target=\"_blank\">here</a>.\n"
|
||||
"\t\t\t\t\t\t\t\t</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:157
|
||||
msgid "<h3>Google Map Geolocation API Key</h3><p>Get You Google Map API key from <a href=\""
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:160
|
||||
msgid "<h3>Debug Mode</h3><p>Enabling the debug mode will help us to track any issue with the API.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin/template/tglcf.template.php:162
|
||||
msgid "<h3>Color Picker</h3><p>Click on the textbox to Select the Color for Submission Graph.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.tglcf.php:112
|
||||
#: inc/class.tglcf.php:122
|
||||
msgid "Geolocation Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.tglcf.php:113
|
||||
msgid "Geolocation Detail"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.tglcf.php:114
|
||||
msgid "Edit Submission"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.tglcf.php:115
|
||||
msgid "View Submission"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.tglcf.php:116
|
||||
msgid "Search Submissions"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.tglcf.php:117
|
||||
msgid "No Submissions Found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.tglcf.php:118
|
||||
msgid "No Submissions Found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class.tglcf.php:158
|
||||
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/lib/class.tglcf.lib.php:79
|
||||
#: inc/lib/class.tglcf.lib.php:93
|
||||
msgid "<label>Enable Debug Mode </label><span class=cfgeo-tooltip hide-if-no-js id=cfgeo-debug></span>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.tglcf.lib.php:80
|
||||
#: inc/lib/class.tglcf.lib.php:94
|
||||
msgid "<label>Select Color of the Graph </label><span class=cfgeo-tooltip hide-if-no-js id=cfgeo-color-graph></span>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.tglcf.lib.php:81
|
||||
#: inc/lib/class.tglcf.lib.php:95
|
||||
msgid "<label>Google Map API Key </label><span class=cfgeo-tooltip hide-if-no-js id=cfgeo-google></span>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/lib/class.tglcf.lib.php:82
|
||||
#: inc/lib/class.tglcf.lib.php:96
|
||||
msgid "<label>Access Token For IPstack </label><span class=cfgeo-tooltip hide-if-no-js id=cfgeo-ipstack></span>"
|
||||
msgstr ""
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/twst-login-block/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/twst-login-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "twst-login-block",
|
||||
"version": "1.0.1",
|
||||
"description": "Easily insert a login form block into your post",
|
||||
"author": "TWST",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "real-time-auto-find-and-replace",
|
||||
"version": "1.0.0",
|
||||
"description": "Find replace plugin",
|
||||
"main": "app.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "webpack --mode production",
|
||||
"watch": "webpack --watch --mode development"
|
||||
},
|
||||
"author": "M.Tuhin",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.10.5",
|
||||
"@babel/polyfill": "^7.10.4",
|
||||
"@babel/preset-env": "^7.10.4",
|
||||
"autoprefixer": "^9.8.5",
|
||||
"babel-loader": "^8.1.0",
|
||||
"css-loader": "^3.6.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.14.1",
|
||||
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
||||
"postcss-loader": "^3.0.0",
|
||||
"sass-loader": "^9.0.2",
|
||||
"uglifyjs-webpack-plugin": "^2.2.0",
|
||||
"webpack": "^4.43.0",
|
||||
"webpack-cli": "^3.3.12",
|
||||
"webpack-fix-style-only-entries": "^0.5.1"
|
||||
}
|
||||
}
|
||||
15
spec/fixtures/dynamic_finders/plugin_version/virtual-real-estate-agent/change_log/CHANGELOG.md
vendored
Normal file
15
spec/fixtures/dynamic_finders/plugin_version/virtual-real-estate-agent/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
*** WordPress Virtual Real Estate Agent Changelog ***
|
||||
|
||||
14.08.2020 - Version 1.1.2
|
||||
* Modify the settings page pictures and content
|
||||
|
||||
12.08.2020 - Version 1.1.1
|
||||
* Update the plugin structure
|
||||
|
||||
11.08.2020 - Version 1.1.0
|
||||
* Change the name of the WordPress plugin
|
||||
|
||||
20.07.2020 - Version 1.0.0
|
||||
* Initial version of the plugin to serve standalone chatbot to the frontend of WordPress websites
|
||||
* English and the German translation to follow the instructions to display the chatbot
|
||||
* Display chatbot on the bottom right or bottom left of the screen
|
||||
@@ -0,0 +1,303 @@
|
||||
# Copyright (C) 2020 Juan Manuel Acebal
|
||||
# This file is distributed under the same license as the Wayra - Click to Order or Chat plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wayra - Click to Order or Chat 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/click-order-chat\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-14T00:37:03+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: click-order-chat\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Wayra - Click to Order or Chat"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wayramarketing.com.ar/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A lightweight, easy and fast option to show a <strong>floating WhatsApp button</strong> and WooCommerce customization to <strong>add \"Ask in WhatsApp\" button on products, Store and Cart</strong>. You can hide the default \"Add to Cart\" button. We love simplicity and efficience."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Juan Manuel Acebal"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wayramarketing.com.ar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-click-order-chat-admin.php:86
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:22
|
||||
msgid "This plugin is develop with %s by"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:23
|
||||
msgid "If you want to help me to continue develop useful plugins"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:23
|
||||
msgid "buy me a cup of coffee"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:55
|
||||
msgid ""
|
||||
"Hi, i'm interested in: *{{title}}*\n"
|
||||
"Price: {{price}}\n"
|
||||
"URL: {{link}}\n"
|
||||
"Regards!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:56
|
||||
#: admin/partials/click-order-chat-admin-display.php:62
|
||||
msgid "Ask in WhatsApp"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:60
|
||||
msgid ""
|
||||
"{{quantity}} x *{{title}}*\n"
|
||||
"Price: {{price}}\n"
|
||||
"URL: {{link}}"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:61
|
||||
msgid ""
|
||||
"Hi, i want to order:\n"
|
||||
"{{product_list}}\n"
|
||||
"*TOTAL: {{total}}*\n"
|
||||
"Thanks!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:68
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:72
|
||||
msgid "WhatsApp Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:74
|
||||
msgid "Insert the phone number starting with the country code."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:74
|
||||
msgid "e.g. 54 for Argentina"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:78
|
||||
msgid "Open in new window"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:80
|
||||
msgid "Check this to open WhatsApp link in new window."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:85
|
||||
msgid "Floating Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:89
|
||||
msgid "Show floating button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:91
|
||||
msgid "Show WhatsApp floating button on entire site."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:95
|
||||
msgid "Button style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:105
|
||||
msgid "Message to send"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:107
|
||||
msgid "Insert the default message that send when someone click the button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:107
|
||||
msgid " e.g. \"Hi, i have a question\""
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:111
|
||||
msgid "Text on button hover"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:113
|
||||
msgid "Insert the text that someone see on button hover."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:113
|
||||
msgid "e.g. \"Chat with us\""
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:117
|
||||
msgid "Hide button on mobile"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:119
|
||||
msgid "Hide the floating button on mobile."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:124
|
||||
msgid "Inactive"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:126
|
||||
msgid "For simplificate the config we hide the WooCommerce config options because the plugin is inactive."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:131
|
||||
msgid "Remove Add to Cart Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:133
|
||||
msgid "Remove the Woocommerce Add to Cart buttons on entire site to use WhatsApp buttons."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:136
|
||||
msgid "Remove button Proceed to Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:138
|
||||
msgid "Remove the Woocommerce Proceed to Checkout button on Cart and mini cart."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:143
|
||||
msgid "Products page and Store"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:147
|
||||
msgid "Show button on products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:149
|
||||
msgid "Show WhatsApp button on products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:153
|
||||
msgid "Show button on not purchasable products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:155
|
||||
msgid "Show WhatsApp button on product without price or out of stock."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:159
|
||||
msgid "Show button on Store"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:161
|
||||
msgid "Show WhatsApp button on store and related products."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:165
|
||||
msgid "Product message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:167
|
||||
msgid "This is the message that recive someone click on product WhatsApp button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:168
|
||||
msgid "You can use {{title}}, {{price}}, {{link}} and *word* for bold."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:172
|
||||
msgid "Product button text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:174
|
||||
msgid "Insert the button text."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:174
|
||||
msgid "e.g. \"Ask in WhatsApp\""
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:179
|
||||
msgid "Cart"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:183
|
||||
msgid "Show button on cart page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:185
|
||||
msgid "Show WhatsApp button in Cart to ask for all the cart"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:189
|
||||
msgid "Cart product message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:191
|
||||
msgid "This message is part of the message that recive someone click on Cart WhatsApp button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:192
|
||||
msgid "You can use {{title}}, {{price}}, {{subtotal}}, {{link}} and *word* for bold."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:196
|
||||
msgid "Cart message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:198
|
||||
msgid "This message the message that recive someone click on Cart WhatsApp button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:199
|
||||
msgid "You can use {{product_list}}, {{total}} and *word* for bold."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:203
|
||||
msgid "Cart button text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:205
|
||||
msgid "Insert the text of the the button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:205
|
||||
msgid "e.g. \"Ask for this products on WhatsApp\""
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:210
|
||||
msgid "Customize CSS style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:211
|
||||
msgid "If you need to customize any button, we add an empty class in each type of buttons. You are welcome ;)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:215
|
||||
msgid "Floating button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:220
|
||||
msgid "Product page button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:224
|
||||
msgid "Store and related products buttons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:228
|
||||
msgid "Cart button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/click-order-chat-admin-display.php:234
|
||||
msgid "Save all changes"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,194 @@
|
||||
# Copyright (C) 2020 Juan Manuel Acebal
|
||||
# This file is distributed under the same license as the Wayra - Free shipping on product details plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Wayra - Free shipping on product details 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wayra-free-"
|
||||
"shipping-on-product-details\n"
|
||||
"POT-Creation-Date: 2020-10-14T19:30:58+00:00\n"
|
||||
"PO-Revision-Date: 2020-10-14 18:21-0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: es_MX\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Domain: wayra-free-shipping-on-product-details\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:16
|
||||
msgid "Wayra - Free shipping on product details"
|
||||
msgstr "Wayra - Texto de envío en detalle del producto"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wayramarketing.com.ar"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Show icon and shipping text on products based on product price."
|
||||
msgstr ""
|
||||
"Mostrar un icono y texto de envío en el detalle del producto basado en el "
|
||||
"precio del mismo."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Juan Manuel Acebal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wayra-free-shipping-on-product-details-admin.php:72
|
||||
msgid "Free shipping on product details"
|
||||
msgstr "Texto de envío en detalle del producto"
|
||||
|
||||
#: admin/class-wayra-free-shipping-on-product-details-admin.php:85
|
||||
msgid "Settings"
|
||||
msgstr "Ajustes"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:17
|
||||
msgid "This plugin is develop with %s by"
|
||||
msgstr "Este plugin es desarrollado con %s por"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:18
|
||||
msgid "Contact me if need a <strong>custom plugin or customization</strong>"
|
||||
msgstr ""
|
||||
"Escribime si necesitas <strong>un plugin personalizado o un ajuste en "
|
||||
"Wordpress</strong>"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:19
|
||||
msgid "If you want to help me to continue develop useful plugins"
|
||||
msgstr "Si quieres ayudarme a seguir desarrollando plugins útiles"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:19
|
||||
msgid "buy me a cup of coffee"
|
||||
msgstr "invitame una taza de café"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:50
|
||||
msgid "Show Icon"
|
||||
msgstr "Mostrar icono"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:52
|
||||
msgid "Show icon before text."
|
||||
msgstr "Mostrar icono antes del texto."
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:56
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:93
|
||||
msgid "Shipping Text"
|
||||
msgstr "Texto de envío"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:58
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:95
|
||||
msgid "First line of shipping text."
|
||||
msgstr "Primera linea del texto de envío."
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:58
|
||||
msgid "e.g. Shipping all country"
|
||||
msgstr "ej. Envíos a todo el país"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:62
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:99
|
||||
msgid "Shipping Subtitle"
|
||||
msgstr "Subtítulo de envío"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:64
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:101
|
||||
msgid "Second line of shipping text."
|
||||
msgstr "Segunda linea del texto de envío."
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:64
|
||||
msgid "e.g. +$2500 Free Shipping"
|
||||
msgstr "ej. +$2500 envío gratis"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:68
|
||||
msgid "Text position"
|
||||
msgstr "Posición del texto"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:70
|
||||
msgid "Before product price"
|
||||
msgstr "Antes del precio del producto"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:71
|
||||
msgid "After product price"
|
||||
msgstr "Después del precio del producto"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:72
|
||||
msgid "Before add to cart button"
|
||||
msgstr "Antes del botón de agregar al carrito"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:73
|
||||
msgid "After add to cart button"
|
||||
msgstr "Después del botón de agregar al carrito"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:80
|
||||
msgid "Change text based on product price"
|
||||
msgstr "Cambiar texto en base al precio del producto"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:81
|
||||
msgid ""
|
||||
"This setting change two lines of text when price is equal or greater than "
|
||||
"defined price."
|
||||
msgstr ""
|
||||
"Este ajuste cambia las dos líneas de texto cuando el precio del producto es "
|
||||
"igual o mayor que el precio definido."
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:82
|
||||
msgid ""
|
||||
"This an optional setting, you can use text, subtitle, both or none. Leave "
|
||||
"empty to avoid."
|
||||
msgstr ""
|
||||
"Este ajuste es opción, podés usar la primera línea, la segunda, ambas o "
|
||||
"ninguna. Déjalo vacío para omitir."
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:87
|
||||
msgid "Price"
|
||||
msgstr "Precio"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:89
|
||||
msgid ""
|
||||
"If the product price is equal or greater than this price, users see this "
|
||||
"text."
|
||||
msgstr ""
|
||||
"Si el precio del producto es igual o mayor que este precio, los usuarios "
|
||||
"verán este texto."
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:89
|
||||
msgid "e.g. 2500.00"
|
||||
msgstr "ej. 2500.00"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:95
|
||||
msgid "e.g. Free Shipping"
|
||||
msgstr "ej. Envío gratis"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:101
|
||||
msgid "e.g. Arrives in 2 days"
|
||||
msgstr "ej. Llega en 2 días"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:106
|
||||
msgid "Customize CSS style"
|
||||
msgstr "Personalizar estilos CSS"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:107
|
||||
msgid "If you need to customize icon or text style, you can use this class."
|
||||
msgstr ""
|
||||
"Si necesitás modificar los estilos del icono o los textos, puedes usar "
|
||||
"estas clases."
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:111
|
||||
msgid "Div container"
|
||||
msgstr "Div contenedor"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:115
|
||||
msgid "Icon"
|
||||
msgstr "Icono"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:120
|
||||
msgid "First line of text"
|
||||
msgstr "Primera linea de texto"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:124
|
||||
msgid "Second line of text"
|
||||
msgstr "Segunda linea de texto"
|
||||
|
||||
#: admin/partials/wayra-free-shipping-on-product-details-admin-display.php:131
|
||||
msgid "Save all changes"
|
||||
msgstr "Guardar todos los cambios"
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/wc-essential-addons/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/wc-essential-addons/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "wc-essential-addons",
|
||||
"version": "1.0.0",
|
||||
"description": "woocommerce essential addons",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "npm run development",
|
||||
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"watch": "npm run development -- --watch",
|
||||
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"prod": "npm run production",
|
||||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"cross-env": "^7.0.2",
|
||||
"laravel-mix": "^5.0.4",
|
||||
"vue": "^2.6.11"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/wc-missing-addons/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/wc-missing-addons/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "springdevs_wma",
|
||||
"version": "1.0.0",
|
||||
"description": "WooCommerce Missing Addons",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "npm run development",
|
||||
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"watch": "npm run development -- --watch",
|
||||
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"prod": "npm run production",
|
||||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"cross-env": "^7.0.2",
|
||||
"laravel-mix": "^5.0.4",
|
||||
"vue": "^2.6.11"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
# Copyright (C) 2020 CeltaByte
|
||||
# This file is distributed under the same license as the WE Show Tax plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WE Show Tax 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-show-tax\n"
|
||||
"POT-Creation-Date: 2020-08-28T17:29:47+02:00\n"
|
||||
"PO-Revision-Date: 2020-08-28 17:30+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: 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: weshowtax\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Show Tax for WooCommerce"
|
||||
msgstr "Mostrar impuestos para WooCommerce"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://celtabyte.es"
|
||||
msgstr "https://celtabyte.es"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Shortcode to display product prices including or excluding taxes in "
|
||||
"WooCommerce."
|
||||
msgstr ""
|
||||
"Shortcode que muestra un botón para mostrar los precios de los productos con "
|
||||
"o sin impuestos."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "wooenvio"
|
||||
msgstr "wooenvio"
|
||||
|
||||
#~ msgid "WE Show Tax"
|
||||
#~ msgstr "WE Show Tax"
|
||||
|
||||
#~ msgid "Prices including tax"
|
||||
#~ msgstr "Precios con impuestos"
|
||||
|
||||
#~ msgid "Prices excluding taxes"
|
||||
#~ msgstr "Precios sin impuestos"
|
||||
|
||||
#~ msgid "http://wooenvio.es"
|
||||
#~ msgstr "http://wooenvio.es"
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/web-vitals-block/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/web-vitals-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "web-vitals-block",
|
||||
"version": "1.0.1",
|
||||
"description": "Display web vitals in a block.",
|
||||
"author": "adamsilverstein",
|
||||
"license": "MIT",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"watch": "wp-scripts build --watch",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"web-vitals-element": "^1.0.2"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/wijntransport/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/wijntransport/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
= 1.0.0 =
|
||||
Release Date: August 20, 2020
|
||||
|
||||
* Initial release
|
||||
@@ -0,0 +1,239 @@
|
||||
# Copyright (C) 2020 Inspire Labs
|
||||
# This file is distributed under the same license as the WooCommerce SMSAPI.pl plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce SMSAPI.pl 2.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-smsapi-pl\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-21T14:51:26+02:00\n"
|
||||
"PO-Revision-Date: 2020-07-21 14:53+0200\n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"X-Domain: woocommerce-smsapi\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
|
||||
"|| n%100>14) ? 1 : 2);\n"
|
||||
"Language: pl_PL\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WooCommerce SMSAPI.pl"
|
||||
msgstr "WooCommerce SMSAPI.pl"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://www.wpdesk.pl/sklep/smsapi-woocommerce/"
|
||||
msgstr "http://www.wpdesk.pl/sklep/smsapi-woocommerce/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"WooCommerce integration with <a href=\"https://ssl.smsapi.pl/"
|
||||
"rejestracja/4PT2\" target=\"_blank\">SMSAPI.pl</a>."
|
||||
msgstr ""
|
||||
"Integracja WooCommerce z SMSAPI <a href=\"https://ssl.smsapi.pl/"
|
||||
"rejestracja/4PT2\" target=\"_blank\">SMSAPI.pl</a>."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Inspire Labs"
|
||||
msgstr "Inspire Labs"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.inspirelabs.pl/"
|
||||
msgstr "http://www.inspirelabs.pl/"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:38
|
||||
msgid "SMSAPI"
|
||||
msgstr "SMSAPI"
|
||||
|
||||
#. translators: %s: URL
|
||||
#: class/wcSmsApiIntegration.php:42
|
||||
msgid ""
|
||||
"WooCommerce integration with SMSAPI. <a href=\"%s\" target=\"_blank\">Check "
|
||||
"out the docs →</a>"
|
||||
msgstr ""
|
||||
"Integracja WooCommerce z SMSAPI. <a href=\"%s\" target=\"_blank\">Sprawdź "
|
||||
"dokumentację →</a>"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:95
|
||||
msgid "{customer} - Customer first name and last name"
|
||||
msgstr "{customer} - Imię i nazwisko klienta"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:100
|
||||
msgid "{number} - Order number"
|
||||
msgstr "{number} - Numer zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:105
|
||||
msgid "{phone} - Customer phone number"
|
||||
msgstr "{phone} - Numer telefonu klienta"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:110
|
||||
msgid "{total_price} - Total Order value"
|
||||
msgstr "{total_price} - Całkowita wartość zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:202 class/wcSmsApiIntegration.php:350
|
||||
msgid "SMS Marketing"
|
||||
msgstr "SMS Marketing"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:305
|
||||
msgid "Error. Please fill in valid API Token."
|
||||
msgstr "Błąd. Proszę, uzupełnij poprawny token API."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:308
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:312
|
||||
msgid "Connection status:"
|
||||
msgstr "Status połączenia:"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:329 class/wcSmsApiIntegration.php:371
|
||||
#: class/wcSmsApiIntegration.php:392 class/wcSmsApiIntegration.php:413
|
||||
msgid "Enable"
|
||||
msgstr "Włącz"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:330
|
||||
msgid "Enable SMSAPI integration"
|
||||
msgstr "Włącz integrację z SMSAPI"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:335
|
||||
msgid "API version"
|
||||
msgstr "Wersja API"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:342
|
||||
msgid "API Token"
|
||||
msgstr "Token API"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:345
|
||||
msgid "SMSAPI API Token. You can generate it in SMSAPI customer panel."
|
||||
msgstr "Token SMSAPI. Token można wygenerować w panelu klienta SMSAPI."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:418
|
||||
msgid "SMS Sender name"
|
||||
msgstr "Pole nadawcy SMS"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:422
|
||||
msgid ""
|
||||
"Only names with \"Active\" status are available. The status can be checked "
|
||||
"in the SMSAPI customer panel."
|
||||
msgstr ""
|
||||
"Do wyboru są tylko nazwy o statusie \"Aktywny\". Status można sprawdzic "
|
||||
"w panelu klienta SMSAPI."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:349
|
||||
msgid "Enable user consent to SMS Marketing"
|
||||
msgstr "Włącz zgodę użytkownika na SMS marketing"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:353
|
||||
msgid ""
|
||||
"Checkbox will be added to checkout page allowing users to agree to SMS "
|
||||
"marketing."
|
||||
msgstr ""
|
||||
"Zostanie dodany checkbox do strony zamówienia, który umożliwi użytkownikowi "
|
||||
"wyrażenie zgody na SMS marketing."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:356
|
||||
msgid "Checkbox label"
|
||||
msgstr "Etykieta przy checkboksie"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:358
|
||||
msgid "I agree to receiving marketing content via SMS"
|
||||
msgstr "Zgadzam się na otrzymywanie marketingowych wiadomości SMS"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:361
|
||||
msgid "Checkbox position"
|
||||
msgstr "Pozycja checkboksa"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:364
|
||||
msgid "Above Place order button"
|
||||
msgstr "Nad przyciskiem złożenia zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:365
|
||||
msgid "Below Place order button"
|
||||
msgstr "Pod przyciskiem złożenia zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:370
|
||||
msgid "Processing order SMS"
|
||||
msgstr "SMS dla zamówienia w trakcie realizacji"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:374
|
||||
msgid "SMS will be sent when order status is changed to processing."
|
||||
msgstr ""
|
||||
"SMS zostanie wysłany po zmianie statusu zamówienia na w trakcje realizacji."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:378
|
||||
msgid "Processing order SMS text"
|
||||
msgstr "Treść SMSa dla zamówienia w trakcje realizacji"
|
||||
|
||||
#. translators: %s: Name of a blog
|
||||
#: class/wcSmsApiIntegration.php:382
|
||||
msgid "Your order number {number} status at %s changed to processing."
|
||||
msgstr ""
|
||||
"Status twojego zamówienia numer {number} w %s został zmieniony na w trakcie "
|
||||
"realizacji."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:384 class/wcSmsApiIntegration.php:405
|
||||
msgid ""
|
||||
"One SMS is a maximum of 160 characters. Note that if you enter special "
|
||||
"characters (including Polish characters), the limit will be 70 characters. If "
|
||||
"this value is exceeded, the system will send a message as several linked "
|
||||
"SMSes - up to 1530 characters (or 670 with special characters) as 10 linked "
|
||||
"SMSs, charging the account according to the current price list."
|
||||
msgstr ""
|
||||
"Jedna wiadomość SMS to maksymalnie 160 znaków. Zwróć uwagę, że jeśli wpiszesz "
|
||||
"znaki specjalne (w tym polskie znaki) limit wyniesie 70 znaków. Po "
|
||||
"przekroczeniu tej wartości system wyśle wiadomość jako kilka połączonych SMS-"
|
||||
"ów - maksymalnie 1530 znaków (lub 670 ze znakami specjalnymi) jako 10 "
|
||||
"połączonych SMS-ów obciążając konto zgodnie z aktualnym cennikiem."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:386 class/wcSmsApiIntegration.php:407
|
||||
msgid "List of available parameters that can be used in the message:"
|
||||
msgstr "Lista dostępnych parametrów które można wykorzystać w wiadomości:"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:391
|
||||
msgid "Completed order SMS"
|
||||
msgstr "SMS dla zrealizowanego zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:395
|
||||
msgid "SMS will be sent when order status is changed to completed."
|
||||
msgstr "SMS zostanie wysłany po zmianie statusu zamówienia na zrealizowane."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:399
|
||||
msgid "Completed order SMS text"
|
||||
msgstr "Treść SMSa dla zrealizowanego zamówienia"
|
||||
|
||||
#. translators: %s: Name of a blog
|
||||
#: class/wcSmsApiIntegration.php:403
|
||||
msgid "Your order number {number} status at %s changed to completed."
|
||||
msgstr ""
|
||||
"Status twojego zamówienia numer {number} w %s został zmieniony na "
|
||||
"zrealizowane."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:412
|
||||
msgid "Customer note SMS"
|
||||
msgstr "SMS dla notatki dla klienta"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:416
|
||||
msgid "Text will be taken from the customer note."
|
||||
msgstr "Tekst zostanie pobrany z treści notatki."
|
||||
|
||||
#. translators: %s: URL
|
||||
#: class/wcSmsApiIntegration.php:480
|
||||
msgid ""
|
||||
"You are running out of funds. In order to keep sending SMS messages, <a href="
|
||||
"\"%s\" target=\"_blank\">log in</a> to you SMSAPI account and buy more points."
|
||||
msgstr ""
|
||||
"Środki na twoim koncie się kończą. Aby dalej wysyłać wiadomości SMS, <a href="
|
||||
"\"%s\" target=\"_blank\">zaloguj się</a> na swoje konto w SMSAPI i kup więcej "
|
||||
"punktów."
|
||||
|
||||
#: woocommerce-smsapi.php:107
|
||||
msgid "Settings"
|
||||
msgstr "Ustawienia"
|
||||
|
||||
#: woocommerce-smsapi.php:108
|
||||
msgid "Docs"
|
||||
msgstr "Dokumentacja"
|
||||
|
||||
#: woocommerce-smsapi.php:109
|
||||
msgid "Support"
|
||||
msgstr "Wsparcie"
|
||||
@@ -0,0 +1,4 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.0 - 2020-10-15 =
|
||||
* Initial release.
|
||||
@@ -0,0 +1,67 @@
|
||||
# Copyright (C) 2020 NuttTaro
|
||||
# This file is distributed under the same license as the WP Basic Authentication plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Basic Authentication 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-basic-authentication\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-17T11:36:24+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-basic-authentication\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Basic Authentication"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Basic Authentication for protected your development WordPress site like .htpasswd"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "NuttTaro"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://nutttaro.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpba-setting.php:29
|
||||
msgid "Basic Authentication Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpba-setting.php:30
|
||||
msgid "Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpba-setting.php:73
|
||||
msgid "Basic HTTP Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpba-setting.php:80
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpba-setting.php:88
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpba-setting.php:96
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpba-setting.php:104
|
||||
msgid "Enable for Login page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpba-setting.php:143
|
||||
msgid "Enable authentication for Front-End"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wpba-setting.php:165
|
||||
msgid "<strong>Warning</strong>: If enable basic authentication for login page and forgot password, please see <a href=\"%s\" target=\"_blank\">FAQs in plugin page</a>"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,226 @@
|
||||
# Copyright (C) 2020 ThemeMantis
|
||||
# This file is distributed under the same license as the WP Full Screen Search plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Full Screen Search 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-full-screen-search\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-22T05:53:20+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-full-screen-search\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Full Screen Search"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://thememantis.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Converts default WordPress search to full screen search overlay"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ThemeMantis"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Mayank Majeji"
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:157
|
||||
msgid "Sorry, you are not allowed to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:168
|
||||
msgid "nonce field is missing. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:172
|
||||
msgid "'Invalid nonce specified. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:184
|
||||
msgid "Settings Saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:29
|
||||
msgid "WP Full Screen Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:32
|
||||
msgid "Full Screen Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:35
|
||||
msgid "Full Screen Background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:39
|
||||
msgid "Choose full screen background color."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:46
|
||||
msgid "Search Box Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:49
|
||||
msgid "Search Box Background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:53
|
||||
msgid "Choose background color of search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:58
|
||||
msgid "Search Box Placeholder Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:62
|
||||
msgid "Choose placeholder color of search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:67
|
||||
msgid "Search Box Placeholder Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:71
|
||||
msgid "Enter placeholder text for search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:76
|
||||
msgid "Search Box Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:80
|
||||
msgid "Choose text color of search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:87
|
||||
msgid "Close Button Settings Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:90
|
||||
msgid "Make Close Button Round Shape"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:95
|
||||
msgid "Enable / Disable round shape for close button background."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:100
|
||||
msgid "Close Button Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:104
|
||||
msgid "Choose background color of close button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:108
|
||||
msgid "Close Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:113
|
||||
msgid "Choose text color of close button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:123
|
||||
msgid "Save WP Full Screen Search Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Name of this plugin
|
||||
#: admin/dashboard-notices.php:11
|
||||
msgid "Thank you for installing %1$s!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/dashboard-notices.php:14
|
||||
msgid "Click here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/dashboard-notices.php:14
|
||||
msgid "to configure the plugin."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Link to TheMaverickSpirit blog
|
||||
#: views/sidebar.php:9
|
||||
msgid "Learn More About WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:17
|
||||
msgid "Want to learn more about WordPress? Check out our free WordPress tutorials on %s."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:18
|
||||
msgid "TheMaverickSpirit blog"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:25
|
||||
msgid "Some of our popular guides:"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:31
|
||||
msgid "Add Alt Tags to WordPress Images"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:36
|
||||
msgid "Disable Self Pingbacks & Trackbacks"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:41
|
||||
msgid "Essential Settings After WordPress Installation"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:46
|
||||
msgid "Improve WordPress Speed & Performance"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:51
|
||||
msgid "Improve WordPress Security"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:62
|
||||
msgid "Looking for a WordPress Theme?"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:66
|
||||
msgid "Check out our list of WordPress themes articles that covers different niches."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:71
|
||||
msgid "Best WordPress Theme Marketplaces"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:76
|
||||
msgid "Amazon Affiliate WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:81
|
||||
msgid "WooCommerce WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:86
|
||||
msgid "Multipurpose WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:91
|
||||
msgid "One Page WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:96
|
||||
msgid "Blog WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:101
|
||||
msgid "Lifestyle Blog WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:106
|
||||
msgid "Personal Blog WordPress Themes"
|
||||
msgstr ""
|
||||
12243
spec/fixtures/dynamic_finders/plugin_version/wp-job-portal/translation_file/languages/wp-job-portal-en_US.po
vendored
Normal file
12243
spec/fixtures/dynamic_finders/plugin_version/wp-job-portal/translation_file/languages/wp-job-portal-en_US.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
6
spec/fixtures/dynamic_finders/plugin_version/wp-keyword-finder/change_log/changelog.txt
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/wp-keyword-finder/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
=== WordPress Keyword Finder Changelog ===
|
||||
|
||||
/* First Release
|
||||
-Date: xx.xx.xxxx
|
||||
-Version: 1.0
|
||||
*/
|
||||
@@ -0,0 +1,145 @@
|
||||
# Copyright (C) 2020 Grepstad Nilsen
|
||||
# This file is distributed under the same license as the WP Pagespeed Score plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Pagespeed Score 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: Grepstad Nilsen <https://www.grepstadnilsen.no/>\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-03-27T21:36:30+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-pagespeed-score\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Pagespeed Score"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.grepstadnilsen.no/wp-pagespeed-score-uri/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This is a short description of what the plugin does. It's displayed in the WordPress admin area."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Grepstad Nilsen"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.grepstadnilsen.no/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Main.php:190
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin name(s).
|
||||
#: src/Bootstrap.php:150
|
||||
msgid "The following plugin needs to be updated to its latest version to ensure maximum compatibility with "
|
||||
msgid_plural "The following plugins need to be updated to their latest version to ensure maximum compatibility with "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: 1: plugin name
|
||||
#: src/Bootstrap.php:157
|
||||
msgid "Plugin not activated. A higher version of %s is needed for this plugin. Please update the plugin."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin display name, 2: required minimum PHP version, 3: current PHP version, help link
|
||||
#: src/Bootstrap.php:176
|
||||
msgid "%1$s requires at least PHP version %2$s in order to work. You have version %3$s. Please see %4$s for more information."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: child theme name
|
||||
#: src/Bootstrap.php:245
|
||||
msgid " and %1$s child theme "
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin display name, 2: parent theme name, 3: child theme name message, 4: wp-admin link to themes, if applicable
|
||||
#: src/Bootstrap.php:252
|
||||
msgid "The %1$s plugin requires the %2$s parent theme%3$sin order to work.%4$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:58
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:63
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:68
|
||||
msgid "Pinterest"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:73
|
||||
msgid "LinkedIn"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Main.php:99
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin display name, 2: name of debug function, 3: PHP End of Line character, 4: name of function triggering debug function, 5: debug log message
|
||||
#: src/Common/Utilities/Debug.php:58
|
||||
msgid "%1$s - Message from %2$s():%3$s%4$s%5$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Utilities/Debug.php:80
|
||||
msgctxt "Successfully emailed from output_to_log()"
|
||||
msgid "Email sent."
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Utilities/Debug.php:82
|
||||
msgctxt "Unsuccessfully emailed from output_to_log()"
|
||||
msgid "Email attempted but failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:88
|
||||
msgid "Plugin options and settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:96
|
||||
msgid "Example Section"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:97
|
||||
msgid "Example Section description."
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:162
|
||||
msgid "Social Network(s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:163
|
||||
msgid "Checked ones will output; unchecked ones will not. Drag and drop to set your preferred display order."
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:212
|
||||
msgid "Post Type(s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:213
|
||||
msgid "Which Post Types should be enabled?"
|
||||
msgstr ""
|
||||
|
||||
#: src/PluginData.php:85
|
||||
msgctxt "Plugin name for display"
|
||||
msgid "WP Pagespeed Score"
|
||||
msgstr ""
|
||||
|
||||
#: src/Shortcodes/Shortcode.php:149
|
||||
msgctxt "Shortcode error cause default text"
|
||||
msgid "Unspecified"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: shortcode tag, 2: cause, 3: raw capability required
|
||||
#: src/Shortcodes/Shortcode.php:154
|
||||
msgctxt "Shortcode error message"
|
||||
msgid "Your attempt to use the `[%1$s]` shortcode resulted in an error because: %2$s. Please reference the documentation or inspect the code and try again. (Message only shown to users with the `%3$s` capability.)"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,56 @@
|
||||
# Copyright (C) 2020 nutttaro
|
||||
# This file is distributed under the same license as the WP Taxonomy Order plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Taxonomy Order 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-taxonomy-order\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-07T15:10:45+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-term-order\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Taxonomy Order"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/wp-taxonomy-order/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Order Taxonomy and child with a Drag and Drop Sortable."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "nutttaro"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://nutttaro.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-taxonomy-order-setting.php:29
|
||||
msgid "Taxonomy Order Setting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-taxonomy-order-setting.php:30
|
||||
msgid "Taxonomy Order"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-taxonomy-order-setting.php:53
|
||||
msgid "Select the taxonomy for sortable."
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-taxonomy-order-setting.php:86
|
||||
#: inc/wp-taxonomy-order-setting.php:131
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-taxonomy-order-setting.php:94
|
||||
msgid "Taxonomies"
|
||||
msgstr ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user