Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0d2e1fee43 | ||
|
|
eaf2cec8c9 | ||
|
|
611d3dfd4d | ||
|
|
c4030d8267 | ||
|
|
630752787a | ||
|
|
c07ecc58cb | ||
|
|
89fccfe7b7 | ||
|
|
ceeb7e538b | ||
|
|
8dab57b59c | ||
|
|
7a00cd8db1 | ||
|
|
daa0915bca | ||
|
|
ca6b6a30d8 | ||
|
|
09f2640879 | ||
|
|
f61c55b350 | ||
|
|
78d0c2540c | ||
|
|
1d0426e816 | ||
|
|
103a4049c8 | ||
|
|
cbcb1dcb33 | ||
|
|
9c36293382 | ||
|
|
2fb36dc425 | ||
|
|
c717ba5a71 | ||
|
|
7572518e3b | ||
|
|
f670133a82 | ||
|
|
a6bbf41e82 | ||
|
|
622c16932a |
@@ -7,6 +7,8 @@ AllCops:
|
|||||||
- 'vendor/**/*'
|
- 'vendor/**/*'
|
||||||
Layout/LineLength:
|
Layout/LineLength:
|
||||||
Max: 120
|
Max: 120
|
||||||
|
Lint/ConstantDefinitionInBlock:
|
||||||
|
Enabled: false
|
||||||
Lint/MissingSuper:
|
Lint/MissingSuper:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
Lint/UriEscapeUnescape:
|
Lint/UriEscapeUnescape:
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ RUN chmod -R a+r /usr/local/bundle
|
|||||||
|
|
||||||
FROM ruby:2.7.1-alpine
|
FROM ruby:2.7.1-alpine
|
||||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
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
|
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.
|
- Using WPScan to test your own systems.
|
||||||
- Any non-commercial use of WPScan.
|
- 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;
|
Free-use Terms and Conditions;
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
WordPress Security Scanner
|
WordPress Security Scanner
|
||||||
<br>
|
<br>
|
||||||
<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>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
@@ -82,7 +82,7 @@ The DB is located at ~/.wpscan/db
|
|||||||
|
|
||||||
## Vulnerability Database
|
## 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
|
## Load CLI options from file/s
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,8 @@ module WPScan
|
|||||||
OptChoice.new(['--password-attack ATTACK',
|
OptChoice.new(['--password-attack ATTACK',
|
||||||
'Force the supplied attack to be used rather than automatically determining one.'],
|
'Force the supplied attack to be used rather than automatically determining one.'],
|
||||||
choices: %w[wp-login xmlrpc xmlrpc-multicall],
|
choices: %w[wp-login xmlrpc xmlrpc-multicall],
|
||||||
normalize: %i[downcase underscore to_sym])
|
normalize: %i[downcase underscore to_sym]),
|
||||||
|
OptString.new(['--login-uri URI', 'The URI of the login page if different from /wp-login.php'])
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -9,5 +9,5 @@
|
|||||||
<% end -%>
|
<% end -%>
|
||||||
<% else -%>
|
<% else -%>
|
||||||
<%= warning_icon %> No WPVulnDB API Token given, as a result vulnerability data has not been output.
|
<%= 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 -%>
|
<% end -%>
|
||||||
|
|||||||
@@ -8,6 +8,6 @@
|
|||||||
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
<% else -%>
|
<% 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 -%>
|
<% end -%>
|
||||||
},
|
},
|
||||||
@@ -12,7 +12,7 @@ module WPScan
|
|||||||
|
|
||||||
# @return [ Addressable::URI ]
|
# @return [ Addressable::URI ]
|
||||||
def self.uri
|
def self.uri
|
||||||
@uri ||= Addressable::URI.parse('https://wpvulndb.com/api/v3/')
|
@uri ||= Addressable::URI.parse('https://wpscan.com/api/v3/')
|
||||||
end
|
end
|
||||||
|
|
||||||
# @param [ String ] path
|
# @param [ String ] path
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ module WPScan
|
|||||||
|
|
||||||
homepage_result = find(target.homepage_res, opts)
|
homepage_result = find(target.homepage_res, opts)
|
||||||
|
|
||||||
return homepage_result unless homepage_result.nil? || homepage_result&.is_a?(Array) && homepage_result&.empty?
|
return homepage_result unless homepage_result.nil? || homepage_result.is_a?(Array) && homepage_result&.empty?
|
||||||
|
|
||||||
find(target.error_404_res, opts)
|
find(target.error_404_res, opts)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ module WPScan
|
|||||||
end
|
end
|
||||||
|
|
||||||
def wpvulndb_url(id)
|
def wpvulndb_url(id)
|
||||||
"https://wpvulndb.com/vulnerabilities/#{id}"
|
"https://wpscan.com/vulnerability/#{id}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -139,11 +139,14 @@ module WPScan
|
|||||||
# the first time the method is called, and the effective_url is then used
|
# the first time the method is called, and the effective_url is then used
|
||||||
# if suitable, otherwise the default wp-login will be.
|
# if suitable, otherwise the default wp-login will be.
|
||||||
#
|
#
|
||||||
|
# If the login_uri CLI option has been provided, it will be returne w/o redirection check.
|
||||||
|
#
|
||||||
# @return [ String, false ] The URL to the login page or false if not detected
|
# @return [ String, false ] The URL to the login page or false if not detected
|
||||||
def login_url
|
def login_url
|
||||||
return @login_url unless @login_url.nil?
|
return @login_url unless @login_url.nil?
|
||||||
|
return @login_url = url(ParsedCli.login_uri) if ParsedCli.login_uri
|
||||||
|
|
||||||
@login_url = url('wp-login.php') # TODO: url(ParsedCli.login_uri)
|
@login_url = url('wp-login.php')
|
||||||
|
|
||||||
res = Browser.get_and_follow_location(@login_url)
|
res = Browser.get_and_follow_location(@login_url)
|
||||||
|
|
||||||
|
|||||||
@@ -2,5 +2,5 @@
|
|||||||
|
|
||||||
# Version
|
# Version
|
||||||
module WPScan
|
module WPScan
|
||||||
VERSION = '3.8.7'
|
VERSION = '3.8.10'
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ describe WPScan::Controller::PasswordAttack do
|
|||||||
|
|
||||||
it 'contains to correct options' do
|
it 'contains to correct options' do
|
||||||
expect(controller.cli_options.map(&:to_sym))
|
expect(controller.cli_options.map(&:to_sym))
|
||||||
.to eq(%i[passwords usernames multicall_max_passwords password_attack])
|
.to eq(%i[passwords usernames multicall_max_passwords password_attack login_uri])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
2422
spec/fixtures/db/dynamic_finders.yml
vendored
2422
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
877
spec/fixtures/dynamic_finders/expected.yml
vendored
877
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 ""
|
||||||
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"
|
||||||
|
}
|
||||||
|
}
|
||||||
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.
|
||||||
@@ -1197,4 +1197,34 @@ s0.parentNode.insertBefore(s1,s0);
|
|||||||
<!-- Start of Async ProveSource Code (Wordpress / Woocommerce v2.1.0) -->
|
<!-- 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
|
||||||
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.
|
||||||
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 ""
|
||||||
@@ -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,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,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 ""
|
||||||
@@ -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 ""
|
||||||
@@ -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,4 @@
|
|||||||
|
*** preciso-bid-smart-for-merchant ***
|
||||||
|
|
||||||
|
2020-09-16 - version 1.0.0
|
||||||
|
* Initial release
|
||||||
@@ -0,0 +1,137 @@
|
|||||||
|
# This file is distributed under the GNU General Public License v3 or later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: progressbar-ecpay-for-woocommerce v1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: Progress Bar TW <service@progressbar.tw>\n"
|
||||||
|
"POT-Creation-Date: 2020-10-19 00:32+0800\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Progress Bar TW <service@progressbar.tw>\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: zh_TW\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;esc_attr_e;"
|
||||||
|
"esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2;"
|
||||||
|
"_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||||
|
"X-Poedit-Basepath: ..\n"
|
||||||
|
"X-Generator: Poedit 2.4.1\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
#: lib/PBECPayPaymentGateway.php:19
|
||||||
|
msgid "Enter ECPay Checkout Page"
|
||||||
|
msgstr "進入綠界結帳頁面"
|
||||||
|
|
||||||
|
#: lib/PBECPayPaymentGateway.php:20
|
||||||
|
msgid "ECPay payment by Progress bar online course"
|
||||||
|
msgstr "進度條線上課程 - 綠界金流"
|
||||||
|
|
||||||
|
msgid "ECPay payment gateway for customers."
|
||||||
|
msgstr "讓顧客可以利用綠界 ECPay 金流結帳。"
|
||||||
|
|
||||||
|
msgid "Credit Card and UnionPay. (Needs to apply for activation from ECPay)"
|
||||||
|
msgstr "信用卡及銀聯卡(需申請開通)"
|
||||||
|
|
||||||
|
msgid "Web ATM. (Not shows on phone)"
|
||||||
|
msgstr "網路 ATM(手機不支援)"
|
||||||
|
|
||||||
|
msgid "ATM"
|
||||||
|
msgstr "自動櫃員機"
|
||||||
|
|
||||||
|
msgid "CVS - convenience store"
|
||||||
|
msgstr "超商代碼(CVS)"
|
||||||
|
|
||||||
|
msgid "Barcode - convenience store"
|
||||||
|
msgstr "超商條碼(Barcode)"
|
||||||
|
|
||||||
|
msgid "Disabled - "
|
||||||
|
msgstr "無法使用 - "
|
||||||
|
|
||||||
|
msgid "[Test mode]"
|
||||||
|
msgstr "【測試模式】"
|
||||||
|
|
||||||
|
msgid "Payment page was disabled, please checkout again."
|
||||||
|
msgstr "已產生過訂單編號,無法再次結帳,請重新下單。"
|
||||||
|
|
||||||
|
msgid "Enable this payment gateway"
|
||||||
|
msgstr "開啟此付款方式(請注意是否在測試模式)"
|
||||||
|
|
||||||
|
msgid "Enabled"
|
||||||
|
msgstr "開啟"
|
||||||
|
|
||||||
|
msgid "Title of the gateway"
|
||||||
|
msgstr "結帳標題"
|
||||||
|
|
||||||
|
msgid "ECPay payment gateway"
|
||||||
|
msgstr "ECPay 綠界金流"
|
||||||
|
|
||||||
|
msgid "Description of the gateway"
|
||||||
|
msgstr "結帳敘述"
|
||||||
|
|
||||||
|
msgid "Checkout with ECPay page."
|
||||||
|
msgstr "使用綠界科技結帳頁面。"
|
||||||
|
|
||||||
|
msgid "Merchant ID"
|
||||||
|
msgstr "商店編號(Merchant ID)"
|
||||||
|
|
||||||
|
msgid "Merchant ID, 2000132 is for test mode."
|
||||||
|
msgstr "綠界的商店編號,2000132 為測試用的。"
|
||||||
|
|
||||||
|
msgid "Hash Key, 5294y06JbISpM5x9 is for test mode."
|
||||||
|
msgstr "綠界的 Hash Key,5294y06JbISpM5x9 為測試用的。"
|
||||||
|
|
||||||
|
msgid "Hash IV,v77hoKGq4kWxNNIS is for test mode."
|
||||||
|
msgstr "綠界的 Hash IV,v77hoKGq4kWxNNIS 為測試用的。"
|
||||||
|
|
||||||
|
msgid "Enabled payment methods"
|
||||||
|
msgstr "可使用的付款方式"
|
||||||
|
|
||||||
|
msgid "Prefix of orders"
|
||||||
|
msgstr "訂單編號前綴"
|
||||||
|
|
||||||
|
msgid "Order number cannot be repeated, it will be created with timestamp and prefix."
|
||||||
|
msgstr ""
|
||||||
|
"綠界訂單編號不能重複, 訂單編號將會以包含時間戳記與訂單編號前綴的方式顯示。建議前綴為"
|
||||||
|
"2~4個字元即可。"
|
||||||
|
|
||||||
|
msgid "Enable test mode"
|
||||||
|
msgstr "開啟測試模式"
|
||||||
|
|
||||||
|
msgid "Merchant ID for test"
|
||||||
|
msgstr "測試用 Merchant ID"
|
||||||
|
|
||||||
|
msgid "Hash Key for test"
|
||||||
|
msgstr "測試用 Hash Key"
|
||||||
|
|
||||||
|
msgid "Hash IV for test"
|
||||||
|
msgstr "測試用 Hash IV"
|
||||||
|
|
||||||
|
msgid "Enable development mode"
|
||||||
|
msgstr "開啟開發者模式"
|
||||||
|
|
||||||
|
msgid "Enabled(only if you are a developer)"
|
||||||
|
msgstr "開啟(一般使用者請勿開啟)"
|
||||||
|
|
||||||
|
msgid "Waiting for the payment"
|
||||||
|
msgstr "等待付款"
|
||||||
|
|
||||||
|
msgid "Progressbar ECPay transaction module"
|
||||||
|
msgstr "進度條綠界交易模組"
|
||||||
|
|
||||||
|
msgid "Some goods"
|
||||||
|
msgstr "一些商品"
|
||||||
|
|
||||||
|
msgid "ECpay Failed"
|
||||||
|
msgstr "ECPay 失敗"
|
||||||
|
|
||||||
|
msgid "ECPay webhook Failed"
|
||||||
|
msgstr "ECPay webhook 有問題"
|
||||||
|
|
||||||
|
msgid "This controls the title which the user sees during checkout."
|
||||||
|
msgstr "控制使用者在結帳時所看到的標題."
|
||||||
|
|
||||||
|
msgid "This controls the description which the user sees during checkout."
|
||||||
|
msgstr "此項目控制使用者在結帳時會看到的說明."
|
||||||
@@ -20,6 +20,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/360-product-view/public/js/threesixty.min.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/360-product-view/public/js/threesixty.min.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 360deg-javascript-viewer -->
|
||||||
|
<link rel="stylesheet" id="360 jsv-css" href="http://wp.lab/wp-content/plugins/360deg-javascript-viewer/public/css/jsv.css?ver=1.0.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- 3cx-clicktotalk -->
|
<!-- 3cx-clicktotalk -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3cx-clicktotalk/includes/js/callus.js?ver=16.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3cx-clicktotalk/includes/js/callus.js?ver=16.0.0"></script>
|
||||||
|
|
||||||
@@ -586,6 +590,16 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advice-box/public/js/advice-box-public.js?ver=1.0.2"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advice-box/public/js/advice-box-public.js?ver=1.0.2"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- advisr-toolbox -->
|
||||||
|
<link rel="stylesheet" id="advisr-toolbox-css" href="http://wp.lab/wp-content/plugins/advisr-toolbox/public/css/advisr-toolbox-public.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="custombox-css" href="http://wp.lab/wp-content/plugins/advisr-toolbox/public/css/vendor/custombox/custombox.min.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="fontawesome-css" href="http://wp.lab/wp-content/plugins/advisr-toolbox/public/css/vendor/fontawesome/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/advisr-toolbox/public/js/vendor/bootstrap/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/advisr-toolbox/public/js/vendor/custombox/dist/custombox.min.js?ver=1.0.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/advisr-toolbox/public/js/vendor/hs.core.js?ver=1.0.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/advisr-toolbox/public/js/vendor/hs.modal-window.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- ae-connect -->
|
<!-- ae-connect -->
|
||||||
<link rel="stylesheet" id="ae-connect-css" href="http://wp.lab/wp-content/plugins/ae-connect/public/css/ae-connect-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="ae-connect-css" href="http://wp.lab/wp-content/plugins/ae-connect/public/css/ae-connect-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -768,6 +782,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/alligator-popup/js/popup.js?ver=1.2.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/alligator-popup/js/popup.js?ver=1.2.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- allow-webp-image -->
|
||||||
|
<link rel="stylesheet" id="allow-webp-image-css" href="http://wp.lab/wp-content/plugins/allow-webp-image/public/css/allow-webp-image-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/allow-webp-image/public/js/allow-webp-image-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- allpost-contactform -->
|
<!-- allpost-contactform -->
|
||||||
<link rel="stylesheet" id="allpost-contactform-style-css" href="http://wp.lab/wp-content/plugins/allpost-contactform/allpost-contactform.css?ver=1.1.6" type="text/css" media="all">
|
<link rel="stylesheet" id="allpost-contactform-style-css" href="http://wp.lab/wp-content/plugins/allpost-contactform/allpost-contactform.css?ver=1.1.6" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/allpost-contactform/allpost-contactform.js?ver=1.1.6"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/allpost-contactform/allpost-contactform.js?ver=1.1.6"></script>
|
||||||
@@ -1539,6 +1558,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/baslider/js/build/nextcodeSlider.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/baslider/js/build/nextcodeSlider.js?ver=1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- bavard -->
|
||||||
|
<link rel="stylesheet" id="bavard-plugin-css" href="http://wp.lab/wp-content/plugins/bavard/public/css/bavard-plugin-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/bavard/public/js/bavard-plugin-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- bazz-callback-widget -->
|
<!-- bazz-callback-widget -->
|
||||||
<link rel="stylesheet" id="bazz_widget_style-css" href="http://wp.lab/wp-content/plugins/bazz-callback-widget/css/bazz-widget.css?ver=3.12" type="text/css" media="all">
|
<link rel="stylesheet" id="bazz_widget_style-css" href="http://wp.lab/wp-content/plugins/bazz-callback-widget/css/bazz-widget.css?ver=3.12" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -2435,6 +2459,10 @@
|
|||||||
<link rel="stylesheet" id="builder-blocks-blocks-css-css" href="http://wp.lab/wp-content/plugins/builder-blocks/blocks/dist/main.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="builder-blocks-blocks-css-css" href="http://wp.lab/wp-content/plugins/builder-blocks/blocks/dist/main.css?ver=1.0.0" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- bukizi-register -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/bukizi-register/dist/bundle.js?ver=1.0.1"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- bulk-edit-post-titles -->
|
<!-- bulk-edit-post-titles -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bulk-edit-post-titles/js/bulk-action.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bulk-edit-post-titles/js/bulk-action.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
@@ -2667,6 +2695,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/case-study/include/js/custom-owlCarousel-detail.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/case-study/include/js/custom-owlCarousel-detail.js?ver=1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- cashback-coupon-lite -->
|
||||||
|
<link rel="stylesheet" id="cashback-coupon-lite-css" href="http://wp.lab/wp-content/plugins/cashback-coupon-lite/public/css/cashback-coupon-lite-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/cashback-coupon-lite/public/js/cashback-coupon-lite-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- catch-breadcrumb -->
|
<!-- catch-breadcrumb -->
|
||||||
<link rel="stylesheet" id="catch-breadcrumb-css" href="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/css/catch-breadcrumb-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="catch-breadcrumb-css" href="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/css/catch-breadcrumb-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/js/catch-breadcrumb-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/js/catch-breadcrumb-public.js?ver=1.0.0"></script>
|
||||||
@@ -2703,6 +2736,12 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-under-construction/public/js/catch-under-construction-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-under-construction/public/js/catch-under-construction-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- categories-as-folders -->
|
||||||
|
<link rel="stylesheet" id="categories-as-folders-bootstrap-grid-css" href="http://wp.lab/wp-content/plugins/categories-as-folders/public/css/bootstrap-grid.min.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="categories-as-folders-css" href="http://wp.lab/wp-content/plugins/categories-as-folders/public/css/categories-as-folders-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/categories-as-folders/public/js/categories-as-folders-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- category-post-slider -->
|
<!-- category-post-slider -->
|
||||||
<link rel="stylesheet" id="cps_css_style-css" href="http://wp.lab/wp-content/plugins/category-post-slider/css/cps-style.css?ver=1.1" type="text/css" media="all">
|
<link rel="stylesheet" id="cps_css_style-css" href="http://wp.lab/wp-content/plugins/category-post-slider/css/cps-style.css?ver=1.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/category-post-slider/js/jquery.cpsslider.js?ver=1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/category-post-slider/js/jquery.cpsslider.js?ver=1.1"></script>
|
||||||
@@ -2713,6 +2752,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/category-tag-tidy/public/js/category-tag-tidy-public.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/category-tag-tidy/public/js/category-tag-tidy-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- category-with-image -->
|
||||||
|
<link rel="stylesheet" id="catimg-css" href="http://wp.lab/wp-content/plugins/category-with-image/css/catimg.css?ver=1.0" type="text/css" media="all">
|
||||||
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/category-with-image/js/catimg.js?ver=1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- cb-contact-form -->
|
<!-- cb-contact-form -->
|
||||||
<link rel="stylesheet" id="cb-contact-form-css-css" href="http://wp.lab/wp-content/plugins/cb-contact-form/cb-contact-form.css?ver=1.1" type="text/css" media="all">
|
<link rel="stylesheet" id="cb-contact-form-css-css" href="http://wp.lab/wp-content/plugins/cb-contact-form/cb-contact-form.css?ver=1.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cb-contact-form/cb-contact-form.js?ver=1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cb-contact-form/cb-contact-form.js?ver=1.1"></script>
|
||||||
@@ -2974,6 +3018,10 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/change-font-size-and-color/public/js/change-font-size-color-public.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/change-font-size-and-color/public/js/change-font-size-color-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- change-storefront-copyright-widgets -->
|
||||||
|
<link rel="stylesheet" id="wpcentrics_scw_style-css" href="http://wp.lab/wp-content/plugins/change-storefront-copyright-widgets/assets/css/storefront-copyright-control.css?ver=1.0.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- change-wc-price-title -->
|
<!-- change-wc-price-title -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/change-wc-price-title/assets/js/cwpt-price-title.js?ver=1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/change-wc-price-title/assets/js/cwpt-price-title.js?ver=1.1"></script>
|
||||||
|
|
||||||
@@ -2992,6 +3040,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/charitable/assets/js/charitable-session.min.js?ver=1.5.6"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/charitable/assets/js/charitable-session.min.js?ver=1.5.6"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- charla-live-chat -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/charla-live-chat/public/js/charla-live-chat-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- charty -->
|
<!-- charty -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/charty/js/charty_load_chart.js?ver=1.2"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/charty/js/charty_load_chart.js?ver=1.2"></script>
|
||||||
|
|
||||||
@@ -3362,6 +3414,11 @@
|
|||||||
<link rel="stylesheet" id="comment-redirector-plugin-styles-css" href="http://wp.lab/wp-content/plugins/comment-redirector/css/public.css?ver=1.2" type="text/css" media="all">
|
<link rel="stylesheet" id="comment-redirector-plugin-styles-css" href="http://wp.lab/wp-content/plugins/comment-redirector/css/public.css?ver=1.2" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- commenting-feature -->
|
||||||
|
<link rel="stylesheet" id="COMMENTING_BLOCK-css" href="http://wp.lab/wp-content/plugins/commenting-feature/public/css/commenting-block-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/commenting-feature/public/js/commenting-block-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- commentluv -->
|
<!-- commentluv -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/commentluv/js/commentluv.js?ver=2.94.7"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/commentluv/js/commentluv.js?ver=2.94.7"></script>
|
||||||
|
|
||||||
@@ -4104,6 +4161,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/deeper-comments/views/js/deeper.min.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/deeper-comments/views/js/deeper.min.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- delicious-recipes -->
|
||||||
|
<link rel="stylesheet" id="delicious-recipes-single-css" href="http://wp.lab/wp-content/plugins/delicious-recipes//assets/public/css/min/delicious-recipes-public.min.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/delicious-recipes//assets/public/js/min/delicious-recipes-public.min.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- delightful-downloads -->
|
<!-- delightful-downloads -->
|
||||||
<link rel="stylesheet" id="dedo-css-css" href="http://wp.lab/wp-content/plugins/delightful-downloads/assets/css/delightful-downloads.min.css?ver=1.6.6" type="text/css" media="all">
|
<link rel="stylesheet" id="dedo-css-css" href="http://wp.lab/wp-content/plugins/delightful-downloads/assets/css/delightful-downloads.min.css?ver=1.6.6" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -4246,6 +4308,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/donate-visa/assets/js/donate-visa-dvsmp.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/donate-visa/assets/js/donate-visa-dvsmp.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- doshii -->
|
||||||
|
<link rel="stylesheet" id="doshiistyle-css" href="http://wp.lab/wp-content/plugins/doshii/include/assets/css/doshii-style.css?ver=1.4.0" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- douban-collections -->
|
<!-- douban-collections -->
|
||||||
<link rel="stylesheet" id="douban_collections-css" href="http://wp.lab/wp-content/plugins/douban-collections/douban-collections.css?ver=1.0.0" media="screen">
|
<link rel="stylesheet" id="douban_collections-css" href="http://wp.lab/wp-content/plugins/douban-collections/douban-collections.css?ver=1.0.0" media="screen">
|
||||||
|
|
||||||
@@ -4297,6 +4363,12 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ds-suit/public/js/public.js?ver=1.15.4"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ds-suit/public/js/public.js?ver=1.15.4"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- dse-divi-section-enhancer -->
|
||||||
|
<link rel="stylesheet" id="divi-sections-enhancer-jquery-freecss-css" href="http://wp.lab/wp-content/plugins/dse-divi-section-enhancer/dse-functions/styles/dsefreestyles.css?ver=2.7.3" media="all">
|
||||||
|
<link rel="stylesheet" id="divi-sections-enhancer-jquery-mCustomScrollbar-css" href="http://wp.lab/wp-content/plugins/dse-divi-section-enhancer/dse-functions/styles/jquery.mCustomScrollbar.min.css?ver=2.7.3" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/dse-divi-section-enhancer/dse-functions/scripts/jquery.mCustomScrollbar.concat.min.js?ver=2.7.3"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- dsidxpress -->
|
<!-- dsidxpress -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dsidxpress/js/autocomplete.js?ver=3.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dsidxpress/js/autocomplete.js?ver=3.0.0"></script>
|
||||||
|
|
||||||
@@ -4395,6 +4467,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-digital-downloads/assets/js/edd-ajax.min.js?ver=2.8.14"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-digital-downloads/assets/js/edd-ajax.min.js?ver=2.8.14"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- easy-embed-for-youtube-wall -->
|
||||||
|
<link rel="stylesheet" id="eefy-youtube-api-css" href="http://wp.lab/wp-content/plugins/easy-embed-for-youtube-wall/public/css/eefy-youtube-api-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/easy-embed-for-youtube-wall/public/js/eefy-youtube-api-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- easy-facebook-likebox -->
|
<!-- easy-facebook-likebox -->
|
||||||
<link rel="stylesheet" id="easy-facebook-likebox-plugin-styles-css" href="http://wp.lab/wp-content/plugins/easy-facebook-likebox/public/assets/css/public.css?ver=4.3.3" type="text/css" media="all">
|
<link rel="stylesheet" id="easy-facebook-likebox-plugin-styles-css" href="http://wp.lab/wp-content/plugins/easy-facebook-likebox/public/assets/css/public.css?ver=4.3.3" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="easy-facebook-likebox-font-awesome-css" href="http://wp.lab/wp-content/plugins/easy-facebook-likebox/public/assets/css/font-awesome.css?ver=4.3.3" type="text/css" media="all">
|
<link rel="stylesheet" id="easy-facebook-likebox-font-awesome-css" href="http://wp.lab/wp-content/plugins/easy-facebook-likebox/public/assets/css/font-awesome.css?ver=4.3.3" type="text/css" media="all">
|
||||||
@@ -4566,6 +4643,11 @@
|
|||||||
<link rel="stylesheet" id="easy-vote-map-css" href="http://wp.lab/wp-content/plugins/easy-vote/public/css/easy-vote.css.map?ver=1.0.0" media="all">
|
<link rel="stylesheet" id="easy-vote-map-css" href="http://wp.lab/wp-content/plugins/easy-vote/public/css/easy-vote.css.map?ver=1.0.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- easy-whatsapp-contact -->
|
||||||
|
<link rel="stylesheet" id="wact-style-css" href="http://wp.lab/wp-content/plugins/easy-whatsapp-contact/resources/css/wact-style.css?ver=1.5.4" type="text/css" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/easy-whatsapp-contact/resources/js/wact-scripts.js?ver=1.5.4"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- easy-widget-columns -->
|
<!-- easy-widget-columns -->
|
||||||
<link rel="stylesheet" id="easy-widget-columns-css" href="http://wp.lab/wp-content/plugins/easy-widget-columns/public/css/easy-widget-columns-public.css?ver=1.2.1" type="text/css" media="all">
|
<link rel="stylesheet" id="easy-widget-columns-css" href="http://wp.lab/wp-content/plugins/easy-widget-columns/public/css/easy-widget-columns-public.css?ver=1.2.1" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -4575,6 +4657,12 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/easy-woocommerce-tracking-code-free/public/js/easy-woocommerce-tracking-code-free-public.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/easy-woocommerce-tracking-code-free/public/js/easy-woocommerce-tracking-code-free-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- easy-wp-voting-with-payment -->
|
||||||
|
<link rel="stylesheet" id="ewvwp-owl-carousel-css-css" href="http://wp.lab/wp-content/plugins/easy-wp-voting-with-payment/assets/css/style.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="ewvwp-sweetalert-css-css" href="http://wp.lab/wp-content/plugins/easy-wp-voting-with-payment/assets/css/sweetalert.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/easy-wp-voting-with-payment/assets/js/script.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- easy-youtube-gallery -->
|
<!-- easy-youtube-gallery -->
|
||||||
<link rel="stylesheet" id="magnific-popup-au-css" href="http://wp.lab/wp-content/plugins/easy-youtube-gallery/assets/lib/magnific-popup/magnific-popup.min.css?ver=1.0.4" type="text/css" media="all">
|
<link rel="stylesheet" id="magnific-popup-au-css" href="http://wp.lab/wp-content/plugins/easy-youtube-gallery/assets/lib/magnific-popup/magnific-popup.min.css?ver=1.0.4" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="easy-youtube-gallery-css" href="http://wp.lab/wp-content/plugins/easy-youtube-gallery/assets/css/eytg.css?ver=1.0.4" type="text/css" media="all">
|
<link rel="stylesheet" id="easy-youtube-gallery-css" href="http://wp.lab/wp-content/plugins/easy-youtube-gallery/assets/css/eytg.css?ver=1.0.4" type="text/css" media="all">
|
||||||
@@ -4756,6 +4844,7 @@
|
|||||||
|
|
||||||
<!-- eli-for-digital-magazines -->
|
<!-- eli-for-digital-magazines -->
|
||||||
<script src="http://wp.lab/wp-content/plugins/eli-for-digital-magazines/script.js?ver=2.2"></script>
|
<script src="http://wp.lab/wp-content/plugins/eli-for-digital-magazines/script.js?ver=2.2"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/eli-for-digital-magazines/jquery.fancybox.min.js?ver=2.2"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- ellie-code-snippet -->
|
<!-- ellie-code-snippet -->
|
||||||
@@ -4874,6 +4963,11 @@
|
|||||||
<link rel="stylesheet" id="ep4-more-embeds-css" href="http://wp.lab/wp-content/plugins/ep4-more-embeds/css/more-embeds.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="ep4-more-embeds-css" href="http://wp.lab/wp-content/plugins/ep4-more-embeds/css/more-embeds.css?ver=1.0.0" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- epdf-support-elements-pdf-creator-addon-for-elementor-lite -->
|
||||||
|
<link rel="stylesheet" id="ciepdf-elementor-css" href="http://wp.lab/wp-content/plugins/epdf-support-elements-pdf-creator-addon-for-elementor-lite/public/css/ciepdf-elementor-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/epdf-support-elements-pdf-creator-addon-for-elementor-lite/public/js/ciepdf-elementor-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- epic-spinners -->
|
<!-- epic-spinners -->
|
||||||
<link rel="stylesheet" id="Epic Spinners for Wordpress-css" href="http://wp.lab/wp-content/plugins/epic-spinners/public/css/epic-spinners-public.css?ver=1.0.2" type="text/css" media="all">
|
<link rel="stylesheet" id="Epic Spinners for Wordpress-css" href="http://wp.lab/wp-content/plugins/epic-spinners/public/css/epic-spinners-public.css?ver=1.0.2" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/epic-spinners/public/js/epic-spinners-public.js?ver=1.0.2"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/epic-spinners/public/js/epic-spinners-public.js?ver=1.0.2"></script>
|
||||||
@@ -4888,6 +4982,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/equal-height-columns/public/js/equal-height-columns-public.js?ver=1.1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/equal-height-columns/public/js/equal-height-columns-public.js?ver=1.1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- equili -->
|
||||||
|
<link rel="stylesheet" id="equilli-css" href="http://wp.lab/wp-content/plugins/equili/public/css/equilli-public.css?ver=2.0.6" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/equili/public/js/equilli-public.js?ver=2.0.6"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- eroom-zoom-meetings-webinar -->
|
<!-- eroom-zoom-meetings-webinar -->
|
||||||
<link rel="stylesheet" id="stm_zoom_main-css" href="http://wp.lab/wp-content/plugins/eroom-zoom-meetings-webinar//assets/css/frontend/main.css?ver=1.0.0" media="all">
|
<link rel="stylesheet" id="stm_zoom_main-css" href="http://wp.lab/wp-content/plugins/eroom-zoom-meetings-webinar//assets/css/frontend/main.css?ver=1.0.0" media="all">
|
||||||
<script src="http://wp.lab/wp-content/plugins/eroom-zoom-meetings-webinar//assets/js/frontend/jquery.countdown.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/eroom-zoom-meetings-webinar//assets/js/frontend/jquery.countdown.js?ver=1.0.0"></script>
|
||||||
@@ -5125,6 +5224,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/express-twitter-feed/front/js/front.min.js?ver=0.2.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/express-twitter-feed/front/js/front.min.js?ver=0.2.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- exs-widgets -->
|
||||||
|
<link rel="stylesheet" id="exs-widgets-style-css" href="http://wp.lab/wp-content/plugins/exs-widgets/assets/css/exs-widgets.css?ver=0.0.1" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- extend-filter-products-by-price-widget -->
|
<!-- extend-filter-products-by-price-widget -->
|
||||||
<link rel="stylesheet" id="wc-change-filter-by-price-display-css" href="http://wp.lab/wp-content/plugins/extend-filter-products-by-price-widget/public/css/wc-change-filter-by-price-display-public.css?ver=1.0" media="all">
|
<link rel="stylesheet" id="wc-change-filter-by-price-display-css" href="http://wp.lab/wp-content/plugins/extend-filter-products-by-price-widget/public/css/wc-change-filter-by-price-display-public.css?ver=1.0" media="all">
|
||||||
<script src="http://wp.lab/wp-content/plugins/extend-filter-products-by-price-widget/public/js/wc-change-filter-by-price-display-public.js?ver=1.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/extend-filter-products-by-price-widget/public/js/wc-change-filter-by-price-display-public.js?ver=1.0"></script>
|
||||||
@@ -5154,6 +5257,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/exxica-social-marketing/public/js/exxica-social-marketing-public.js?ver=1.3.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/exxica-social-marketing/public/js/exxica-social-marketing-public.js?ver=1.3.3"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- exxp-wp -->
|
||||||
|
<link rel="stylesheet" id="exxp_wp-css" href="http://wp.lab/wp-content/plugins/exxp-wp/public/css/exxp_wp-public.css?ver=2.6.3" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/exxp-wp/public/js/exxp_wp-public.js?ver=2.6.3"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- ezusy-image-swatches-for-variable-product -->
|
<!-- ezusy-image-swatches-for-variable-product -->
|
||||||
<link rel="stylesheet" id="ezusy-css" href="http://wp.lab/wp-content/plugins/ezusy-image-swatches-for-variable-product/public/css/ezusy-public.css?ver=1.0.1" type="text/css" media="all">
|
<link rel="stylesheet" id="ezusy-css" href="http://wp.lab/wp-content/plugins/ezusy-image-swatches-for-variable-product/public/css/ezusy-public.css?ver=1.0.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ezusy-image-swatches-for-variable-product/public/js/ezusy-public.js?ver=1.0.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ezusy-image-swatches-for-variable-product/public/js/ezusy-public.js?ver=1.0.1"></script>
|
||||||
@@ -5305,6 +5413,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/faq-wd/js/faq_wd_front_end.js?ver=1.0.34_5a2c0f2729647"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/faq-wd/js/faq_wd_front_end.js?ver=1.0.34_5a2c0f2729647"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- fat-live-fixed -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/fat-live-fixed/live.js?ver=1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- favorites -->
|
<!-- favorites -->
|
||||||
<link rel="stylesheet" id="simple-favorites-css" href="http://wp.lab/wp-content/plugins/favorites/assets/css/favorites.css?ver=2.1.6" type="text/css" media="all">
|
<link rel="stylesheet" id="simple-favorites-css" href="http://wp.lab/wp-content/plugins/favorites/assets/css/favorites.css?ver=2.1.6" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/favorites/assets/js/favorites.min.js?ver=2.1.6"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/favorites/assets/js/favorites.min.js?ver=2.1.6"></script>
|
||||||
@@ -5504,6 +5616,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flexmls-idx/assets/minified/portal.min.js?ver=3.5.11.5"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flexmls-idx/assets/minified/portal.min.js?ver=3.5.11.5"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- flexstyle -->
|
||||||
|
<link rel="stylesheet" id="flexstyle-main-css-css" href="http://wp.lab/wp-content/plugins/flexstyle/functions/styles/main.css?ver=1.5.2" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/flexstyle/functions/scripts/main.js?ver=1.5.2"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- flexy-breadcrumb -->
|
<!-- flexy-breadcrumb -->
|
||||||
<link rel="stylesheet" id="flexy-breadcrumb-css" href="http://wp.lab/wp-content/plugins/flexy-breadcrumb/public/css/flexy-breadcrumb-public.css?ver=1.0.3" type="text/css" media="all">
|
<link rel="stylesheet" id="flexy-breadcrumb-css" href="http://wp.lab/wp-content/plugins/flexy-breadcrumb/public/css/flexy-breadcrumb-public.css?ver=1.0.3" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flexy-breadcrumb/public/js/flexy-breadcrumb-public.js?ver=1.0.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flexy-breadcrumb/public/js/flexy-breadcrumb-public.js?ver=1.0.3"></script>
|
||||||
@@ -5736,6 +5853,11 @@
|
|||||||
<link rel="stylesheet" id="forget-about-shortcode-buttons-css" href="http://wp.lab/wp-content/plugins/forget-about-shortcode-buttons/public/css/button-styles.css?ver=2.1.1" type="text/css" media="all">
|
<link rel="stylesheet" id="forget-about-shortcode-buttons-css" href="http://wp.lab/wp-content/plugins/forget-about-shortcode-buttons/public/css/button-styles.css?ver=2.1.1" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- forget-spam-comment -->
|
||||||
|
<link rel="stylesheet" id="forget-spam-comment-css" href="http://wp.lab/wp-content/plugins/forget-spam-comment/public/css/forget-spam-comment-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/forget-spam-comment/public/js/forget-spam-comment-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- form-analytics -->
|
<!-- form-analytics -->
|
||||||
<link rel="stylesheet" id="form-analytics-css" href="http://wp.lab/wp-content/plugins/form-analytics/public/css/form-analytics-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="form-analytics-css" href="http://wp.lab/wp-content/plugins/form-analytics/public/css/form-analytics-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/form-analytics/public/js/form-analytics-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/form-analytics/public/js/form-analytics-public.js?ver=1.0.0"></script>
|
||||||
@@ -5821,6 +5943,12 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/fragmentions/scripts/fragmention.min.js?ver=1.4.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/fragmentions/scripts/fragmention.min.js?ver=1.4.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- freedam-web-notices -->
|
||||||
|
<link rel="stylesheet" id="freedam-web-notices-css" href="http://wp.lab/wp-content/plugins/freedam-web-notices/public/css/freedam-web-notices-public.css?ver=1.1.1" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/freedam-web-notices/public/js/freedam-web-notices-moment.js?ver=1.1.1"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/freedam-web-notices/public/js/freedam-web-notices-public.js?ver=1.1.1"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- freeflow -->
|
<!-- freeflow -->
|
||||||
<link rel="stylesheet" id="freeflow-style-css" href="http://wp.lab/wp-content/plugins/freeflow//css/style.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="freeflow-style-css" href="http://wp.lab/wp-content/plugins/freeflow//css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/freeflow//js/getdeviceid.min.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/freeflow//js/getdeviceid.min.js?ver=1.0.0"></script>
|
||||||
@@ -5976,6 +6104,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gazchaps-woocommerce-getaddress-io/gazchaps-getaddress-io.min.js?ver=1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gazchaps-woocommerce-getaddress-io/gazchaps-getaddress-io.min.js?ver=1.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- gboost -->
|
||||||
|
<link rel="stylesheet" id="gboost-main-css" href="http://wp.lab/wp-content/plugins/gboost/assets/css/main-style.css?ver=1.0.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- gdpr -->
|
<!-- gdpr -->
|
||||||
<link rel="stylesheet" id="gdpr-css" href="http://wp.lab/wp-content/plugins/gdpr/public/css/gdpr-public.css?ver=0.1.1" type="text/css" media="all">
|
<link rel="stylesheet" id="gdpr-css" href="http://wp.lab/wp-content/plugins/gdpr/public/css/gdpr-public.css?ver=0.1.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gdpr/public/js/gdpr-public.js?ver=0.1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gdpr/public/js/gdpr-public.js?ver=0.1.1"></script>
|
||||||
@@ -6211,6 +6343,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gifload/public/js/gifload-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gifload/public/js/gifload-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- gift-message-for-woocommerce -->
|
||||||
|
<link rel="stylesheet" id="gmfw-css" href="http://wp.lab/wp-content/plugins/gift-message-for-woocommerce/public/css/gmfw-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/gift-message-for-woocommerce/public/js/gmfw-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- gift-voucher -->
|
<!-- gift-voucher -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gift-voucher/assets/js/jquery.validate.min.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gift-voucher/assets/js/jquery.validate.min.js?ver=1.0.0"></script>
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gift-voucher/assets/js/jquery.steps.min.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gift-voucher/assets/js/jquery.steps.min.js?ver=1.0.0"></script>
|
||||||
@@ -6717,6 +6854,11 @@
|
|||||||
<link rel="stylesheet" id="heateor-sc-frontend-css-css" href="http://wp.lab/wp-content/plugins/heateor-social-comments/css/front.css?ver=1.4.12" type="text/css" media="all">
|
<link rel="stylesheet" id="heateor-sc-frontend-css-css" href="http://wp.lab/wp-content/plugins/heateor-social-comments/css/front.css?ver=1.4.12" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- heateor-social-login -->
|
||||||
|
<link rel="stylesheet" id="heateor_sl_frontend_css-css" href="http://wp.lab/wp-content/plugins/heateor-social-login/css/front.css?ver=1.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/heateor-social-login/js/front/combined.js?ver=1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- heimu -->
|
<!-- heimu -->
|
||||||
<link rel="stylesheet" id="heimu-css" href="http://wp.lab/wp-content/plugins/heimu/heimu.css?ver=1.1.2" media="all">
|
<link rel="stylesheet" id="heimu-css" href="http://wp.lab/wp-content/plugins/heimu/heimu.css?ver=1.1.2" media="all">
|
||||||
|
|
||||||
@@ -6861,6 +7003,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/home-value/static/js.js?ver=2.13"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/home-value/static/js.js?ver=2.13"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- hooknotifier -->
|
||||||
|
<link rel="stylesheet" id="hooknotifier-css" href="http://wp.lab/wp-content/plugins/hooknotifier/public/css/hooknotifier-public.css?ver=0.1.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/hooknotifier/public/js/hooknotifier-public.js?ver=0.1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- hootkit -->
|
<!-- hootkit -->
|
||||||
<link rel="stylesheet" id="hootkit-css" href="http://wp.lab/wp-content/plugins/hootkit/assets/hootkit.min.css?ver=1.0.1" type="text/css" media="all">
|
<link rel="stylesheet" id="hootkit-css" href="http://wp.lab/wp-content/plugins/hootkit/assets/hootkit.min.css?ver=1.0.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hootkit/assets/hootkit.min.js?ver=1.0.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hootkit/assets/hootkit.min.js?ver=1.0.1"></script>
|
||||||
@@ -7282,6 +7429,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/insert-post-from-front-end-with-featured-image/public/js/insert_post_from_front_end-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/insert-post-from-front-end-with-featured-image/public/js/insert_post_from_front_end-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- insiteful -->
|
||||||
|
<link rel="stylesheet" id="insiteful-css" href="http://wp.lab/wp-content/plugins/insiteful/public/css/insiteful-public.css?ver=1.0.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- insta-gallery -->
|
<!-- insta-gallery -->
|
||||||
<link rel="stylesheet" id="insta-gallery-css" href="http://wp.lab/wp-content/plugins/insta-gallery/assets/insta-gallery.css?ver=1.5.1" type="text/css" media="all">
|
<link rel="stylesheet" id="insta-gallery-css" href="http://wp.lab/wp-content/plugins/insta-gallery/assets/insta-gallery.css?ver=1.5.1" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -7421,6 +7572,12 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/invoicing-quotes/public/js/wpinv-quotes-public.js?ver=1.0.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/invoicing-quotes/public/js/wpinv-quotes-public.js?ver=1.0.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ip-poi-map-list -->
|
||||||
|
<link rel="stylesheet" id="ip-poi_map_list-css" href="http://wp.lab/wp-content/plugins/ip-poi-map-list/public/css/ip-poi_map_list-public.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="display_component_style-css" href="http://wp.lab/wp-content/plugins/ip-poi-map-list/public/css/display_component_style.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/ip-poi-map-list/public/js/ip-poi_map_list-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- ipanorama-360-virtual-tour-builder-lite -->
|
<!-- ipanorama-360-virtual-tour-builder-lite -->
|
||||||
<link rel="stylesheet" id="ipanorama_ipanorama-css" href="http://wp.lab/wp-content/plugins/ipanorama-360-virtual-tour-builder-lite/lib/ipanorama.css?ver=1.3.6" type="text/css" media="all">
|
<link rel="stylesheet" id="ipanorama_ipanorama-css" href="http://wp.lab/wp-content/plugins/ipanorama-360-virtual-tour-builder-lite/lib/ipanorama.css?ver=1.3.6" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="ipanorama_ipanorama_wp-css" href="http://wp.lab/wp-content/plugins/ipanorama-360-virtual-tour-builder-lite/lib/ipanorama.wp.css?ver=1.3.6" type="text/css" media="all">
|
<link rel="stylesheet" id="ipanorama_ipanorama_wp-css" href="http://wp.lab/wp-content/plugins/ipanorama-360-virtual-tour-builder-lite/lib/ipanorama.wp.css?ver=1.3.6" type="text/css" media="all">
|
||||||
@@ -7898,6 +8055,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kuetemeier-essentials/assets/scripts/kuetemeier-essentials-public.min.js?ver=1.2.4"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kuetemeier-essentials/assets/scripts/kuetemeier-essentials-public.min.js?ver=1.2.4"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- kuicklist -->
|
||||||
|
<link rel="stylesheet" id="kuicklist-css" href="http://wp.lab/wp-content/plugins/kuicklist/public/css/kuicklist-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/kuicklist/public/js/kuicklist-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- kuvilam-ipl-livescore -->
|
<!-- kuvilam-ipl-livescore -->
|
||||||
<script src="http://wp.lab/wp-content/plugins/kuvilam-ipl-livescore/vendor/jquery.responsiveTabs.min.js?ver=1.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/kuvilam-ipl-livescore/vendor/jquery.responsiveTabs.min.js?ver=1.0"></script>
|
||||||
<script src="http://wp.lab/wp-content/plugins/kuvilam-ipl-livescore/js/kwils.js?ver=1.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/kuvilam-ipl-livescore/js/kwils.js?ver=1.0"></script>
|
||||||
@@ -7942,6 +8104,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lana-widgets//assets/js/jquery.magnific-popup.min.js?ver=1.1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lana-widgets//assets/js/jquery.magnific-popup.min.js?ver=1.1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- last-login-time -->
|
||||||
|
<link rel="stylesheet" id="sg-last-login-time-css" href="http://wp.lab/wp-content/plugins/last-login-time/public/css/sg-last-login-time-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/last-login-time/public/js/sg-last-login-time-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- lastweets -->
|
<!-- lastweets -->
|
||||||
<link rel="stylesheet" id="lastweets/theme-css" href="http://wp.lab/wp-content/plugins/lastweets/assets/css/theme.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="lastweets/theme-css" href="http://wp.lab/wp-content/plugins/lastweets/assets/css/theme.css?ver=1.0.0" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -8131,6 +8298,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/library-bookshelves/slick/slick.min.js?ver=1.10"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/library-bookshelves/slick/slick.min.js?ver=1.10"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- libreli -->
|
||||||
|
<link rel="stylesheet" id="libreli-css" href="http://wp.lab/wp-content/plugins/libreli/public/css/libreli-public.css?ver=0.0.1" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/libreli/public/js/libreli-public.js?ver=0.0.1"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- librevideojs-html5-player -->
|
<!-- librevideojs-html5-player -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/librevideojs-html5-player/librevideojs/js/cliplibrejs.dev.js?ver=1.2.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/librevideojs-html5-player/librevideojs/js/cliplibrejs.dev.js?ver=1.2.3"></script>
|
||||||
|
|
||||||
@@ -8768,6 +8940,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mantrabrain-instagram-pack/assets/js/mb-instagram-pack.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mantrabrain-instagram-pack/assets/js/mb-instagram-pack.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- map-my-locations -->
|
||||||
|
<link rel="stylesheet" id="map-my-locations-css" href="http://wp.lab/wp-content/plugins/map-my-locations/public//css/public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/map-my-locations/public//js/public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- mapfit -->
|
<!-- mapfit -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mapfit/public/js/mapfit-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mapfit/public/js/mapfit-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
@@ -9992,6 +10169,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/notes-widget-wrapper/public/js/notes-widget-wrapper-public.js?ver=1.1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/notes-widget-wrapper/public/js/notes-widget-wrapper-public.js?ver=1.1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- notibar -->
|
||||||
|
<link rel="stylesheet" id="njt-nofi-css" href="http://wp.lab/wp-content/plugins/notibar/assets/home/css/home-notification-bar.css?ver=1.2" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/notibar/assets/home/js/home-notification-bar.js?ver=1.2"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- notification-bar-on-footer -->
|
<!-- notification-bar-on-footer -->
|
||||||
<link rel="stylesheet" id="notification-bar-on-footer-css" href="http://wp.lab/wp-content/plugins/notification-bar-on-footer/public/css/notification-bar-on-footer-public.css?ver=1.0.0" media="all">
|
<link rel="stylesheet" id="notification-bar-on-footer-css" href="http://wp.lab/wp-content/plugins/notification-bar-on-footer/public/css/notification-bar-on-footer-public.css?ver=1.0.0" media="all">
|
||||||
<script src="http://wp.lab/wp-content/plugins/notification-bar-on-footer/public/js/notification-bar-on-footer-public.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/notification-bar-on-footer/public/js/notification-bar-on-footer-public.js?ver=1.0.0"></script>
|
||||||
@@ -10319,6 +10501,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/optinpoint-lite/public/assets/js/public.js?ver=1.0.5"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/optinpoint-lite/public/assets/js/public.js?ver=1.0.5"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- orange-form -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/orange-form/include/js/front-script.js?ver=1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- orangebox -->
|
<!-- orangebox -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/orangebox/js/orangebox.min.js?ver=3.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/orangebox/js/orangebox.min.js?ver=3.0.0"></script>
|
||||||
|
|
||||||
@@ -10328,6 +10514,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/orcsnet-from-inditip/assets/js/frontend.min.js?ver=1.0.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/orcsnet-from-inditip/assets/js/frontend.min.js?ver=1.0.3"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- order-barcode-for-woocommerce -->
|
||||||
|
<link rel="stylesheet" id="woobar-style-css-css" href="http://wp.lab/wp-content/plugins/order-barcode-for-woocommerce/css/woobar-main.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/order-barcode-for-woocommerce/js/woobar-main.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- order-on-mobile-for-woocommerce -->
|
<!-- order-on-mobile-for-woocommerce -->
|
||||||
<link rel="stylesheet" id="woocommerce-order-on-whatsapp-css" href="http://wp.lab/wp-content/plugins/order-on-mobile-for-woocommerce/public/css/woocommerce-order-on-whatsapp-public.css?ver=1.0.1" media="all">
|
<link rel="stylesheet" id="woocommerce-order-on-whatsapp-css" href="http://wp.lab/wp-content/plugins/order-on-mobile-for-woocommerce/public/css/woocommerce-order-on-whatsapp-public.css?ver=1.0.1" media="all">
|
||||||
<script src="http://wp.lab/wp-content/plugins/order-on-mobile-for-woocommerce/public/js/woocommerce-order-on-whatsapp-public.js?ver=1.0.1"></script>
|
<script src="http://wp.lab/wp-content/plugins/order-on-mobile-for-woocommerce/public/js/woocommerce-order-on-whatsapp-public.js?ver=1.0.1"></script>
|
||||||
@@ -10565,6 +10756,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/partner-manager/public/js/partner-manager-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/partner-manager/public/js/partner-manager-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- pasa-link-redirect -->
|
||||||
|
<link rel="stylesheet" id="pasa-link-redirect-and-manager-css" href="http://wp.lab/wp-content/plugins/pasa-link-redirect/public/css/pasa-link-redirect-and-manager-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/pasa-link-redirect/public/js/pasa-link-redirect-and-manager-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- password-protect-page -->
|
<!-- password-protect-page -->
|
||||||
<link rel="stylesheet" id="ppw-cookie-css-css" href="http://wp.lab/wp-content/plugins/password-protect-page//public/js/dist//ppw-rc-form.css?ver=1.2.1" type="text/css" media="all">
|
<link rel="stylesheet" id="ppw-cookie-css-css" href="http://wp.lab/wp-content/plugins/password-protect-page//public/js/dist//ppw-rc-form.css?ver=1.2.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/password-protect-page//public/js/dist//ppw-rc-form.bundle.js?ver=1.2.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/password-protect-page//public/js/dist//ppw-rc-form.bundle.js?ver=1.2.1"></script>
|
||||||
@@ -10646,6 +10842,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pdf-generator-addon-for-elementor-page-builder/public/js/pdf-generator-addon-for-elementor-page-builder-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pdf-generator-addon-for-elementor-page-builder/public/js/pdf-generator-addon-for-elementor-page-builder-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- pdf-invoices-and-packing-slips-for-woocommerce -->
|
||||||
|
<link rel="stylesheet" id="apifw-frontend-css" href="http://wp.lab/wp-content/plugins/pdf-invoices-and-packing-slips-for-woocommerce/assets/css/frontend.css?ver=1.0.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- pdf-print -->
|
<!-- pdf-print -->
|
||||||
<link rel="stylesheet" id="pdfprnt_frontend-css" href="http://wp.lab/wp-content/plugins/pdf-print/css/frontend.css?ver=1.9.8" type="text/css" media="all">
|
<link rel="stylesheet" id="pdfprnt_frontend-css" href="http://wp.lab/wp-content/plugins/pdf-print/css/frontend.css?ver=1.9.8" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -10790,6 +10990,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photoblocks-grid-gallery/public/js/photoblocks.public.js?ver=1.1.41"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photoblocks-grid-gallery/public/js/photoblocks.public.js?ver=1.1.41"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- photocopier -->
|
||||||
|
<link rel="stylesheet" id="photocopier-stylesheet-css" href="http://wp.lab/wp-content/plugins/photocopier/style.css?ver=1.0" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- photonic -->
|
<!-- photonic -->
|
||||||
<link rel="stylesheet" id="photonic-slideshow-css" href="http://wp.lab/wp-content/plugins/photonic/include/scripts/lightslider/css/lightslider.css?ver=1.64" type="text/css" media="all">
|
<link rel="stylesheet" id="photonic-slideshow-css" href="http://wp.lab/wp-content/plugins/photonic/include/scripts/lightslider/css/lightslider.css?ver=1.64" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="photonic-css" href="http://wp.lab/wp-content/plugins/photonic/include/css/photonic.css?ver=1.64" type="text/css" media="all">
|
<link rel="stylesheet" id="photonic-css" href="http://wp.lab/wp-content/plugins/photonic/include/css/photonic.css?ver=1.64" type="text/css" media="all">
|
||||||
@@ -10841,6 +11045,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pitch-and-match/public/dist/js/pmwpp-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pitch-and-match/public/dist/js/pmwpp-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- pixobe-coloring-book -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/pixobe-coloring-book/public/build/main.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- pixproof -->
|
<!-- pixproof -->
|
||||||
<link rel="stylesheet" id="pixproof_inuit-css" href="http://wp.lab/wp-content/plugins/pixproof/css/inuit.css?ver=1.2.4" type="text/css" media="all">
|
<link rel="stylesheet" id="pixproof_inuit-css" href="http://wp.lab/wp-content/plugins/pixproof/css/inuit.css?ver=1.2.4" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="pixproof_magnific-popup-css" href="http://wp.lab/wp-content/plugins/pixproof/css/mangnific-popup.css?ver=1.2.4" type="text/css" media="all">
|
<link rel="stylesheet" id="pixproof_magnific-popup-css" href="http://wp.lab/wp-content/plugins/pixproof/css/mangnific-popup.css?ver=1.2.4" type="text/css" media="all">
|
||||||
@@ -11302,6 +11510,11 @@
|
|||||||
<link rel="stylesheet" id="prayer-css-css" href="http://wp.lab/wp-content/plugins/prayers/elements/css/prayer.css?ver=0.9.0" type="text/css" media="all">
|
<link rel="stylesheet" id="prayer-css-css" href="http://wp.lab/wp-content/plugins/prayers/elements/css/prayer.css?ver=0.9.0" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- preloader-awesome -->
|
||||||
|
<link rel="stylesheet" id="preloader-awesome-css" href="http://wp.lab/wp-content/plugins/preloader-awesome/public/css/preloader-awesome-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/preloader-awesome/public/js/classie.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- preloader-for-website -->
|
<!-- preloader-for-website -->
|
||||||
<link rel="stylesheet" id="plwao-front-style-css" href="http://wp.lab/wp-content/plugins/preloader-for-website/assets/css/plwao-front.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="plwao-front-style-css" href="http://wp.lab/wp-content/plugins/preloader-for-website/assets/css/plwao-front.css?ver=1.0.0" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -11672,6 +11885,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/qr-code-composer/public/js/qrious.min.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/qr-code-composer/public/js/qrious.min.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- qreatmenu-restaurant-qr-menu-for-woocommerce -->
|
||||||
|
<link rel="stylesheet" id="qreat-woocommerce-qr-menu-css" href="http://wp.lab/wp-content/plugins/qreatmenu-restaurant-qr-menu-for-woocommerce/public/css/qrm-woocommerce-qr-menu-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/qreatmenu-restaurant-qr-menu-for-woocommerce/public/js/qrm-woocommerce-qr-menu-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- quadmenu -->
|
<!-- quadmenu -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quadmenu/assets/frontend/js/quadmenu.min.js?ver=1.1.6"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quadmenu/assets/frontend/js/quadmenu.min.js?ver=1.1.6"></script>
|
||||||
|
|
||||||
@@ -12377,6 +12595,13 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/riloadr-for-wordpress/includes/riloadr.wp.jquery.min.js?ver=1.2.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/riloadr-for-wordpress/includes/riloadr.wp.jquery.min.js?ver=1.2.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- rimplenet -->
|
||||||
|
<link rel="stylesheet" id="material-kit-css-css" href="http://wp.lab/wp-content/plugins/rimplenet/public/css/material-kit.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="rimplenet-mlm-matrix-tree-css" href="http://wp.lab/wp-content/plugins/rimplenet/public/css/rimplenet-mlm-style-matrix-tree.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="rimplenet-mlm-css" href="http://wp.lab/wp-content/plugins/rimplenet/public/css/rimplenet-mlm-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/rimplenet/public/js/rimplenet-mlm-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- ringotel-messenger-customer-chat -->
|
<!-- ringotel-messenger-customer-chat -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ringotel-messenger-customer-chat/messenger-customer-chat.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ringotel-messenger-customer-chat/messenger-customer-chat.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
@@ -12813,6 +13038,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seldos-special-days/public/js/seldos-special-days-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seldos-special-days/public/js/seldos-special-days-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- selected-categories-post-ordering -->
|
||||||
|
<link rel="stylesheet" id="selected-categories-post-ordering-css" href="http://wp.lab/wp-content/plugins/selected-categories-post-ordering/public/css/selected-categories-post-ordering-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/selected-categories-post-ordering/public/js/selected-categories-post-ordering-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- selfie -->
|
<!-- selfie -->
|
||||||
<link rel="stylesheet" id="Selfie-box-styles-css" href="http://wp.lab/wp-content/plugins/selfie/Selfie/Public/css/selfie.css?v=0.2.2&ver=4.9.1" type="text/css" media="all">
|
<link rel="stylesheet" id="Selfie-box-styles-css" href="http://wp.lab/wp-content/plugins/selfie/Selfie/Public/css/selfie.css?v=0.2.2&ver=4.9.1" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/selfie/Selfie/Public/js/selfie-fe.js?v=0.2.2&ver=4.9.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/selfie/Selfie/Public/js/selfie-fe.js?v=0.2.2&ver=4.9.1"></script>
|
||||||
@@ -13133,6 +13363,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/show-more-p2/show-more-p2.js?ver=1.3.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/show-more-p2/show-more-p2.js?ver=1.3.3"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- show-post-by-category -->
|
||||||
|
<link rel="stylesheet" id="postcat-css" href="http://wp.lab/wp-content/plugins/show-post-by-category/css/postcat.css?ver=1.0" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- show-post-in-lightbox -->
|
<!-- show-post-in-lightbox -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/show-post-in-lightbox/ostlightbox/js/ostlightbox.js?v=1.0&ver=4.9.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/show-post-in-lightbox/ostlightbox/js/ostlightbox.js?v=1.0&ver=4.9.1"></script>
|
||||||
|
|
||||||
@@ -13509,6 +13743,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-url-tracker/public/js/simple-track-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-url-tracker/public/js/simple-track-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- simple-visitor-registration-form -->
|
||||||
|
<link rel="stylesheet" id="simple-visitor-registration-css" href="http://wp.lab/wp-content/plugins/simple-visitor-registration-form/public/css/simple-visitor-registration-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/simple-visitor-registration-form/public/js/simple-visitor-registration-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- simple-word-count-and-reading-time -->
|
<!-- simple-word-count-and-reading-time -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-word-count-and-reading-time/js/swcart-scripts.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-word-count-and-reading-time/js/swcart-scripts.js?ver=1.0"></script>
|
||||||
|
|
||||||
@@ -13539,6 +13778,10 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simplemodal-login/js/default.js?ver=1.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simplemodal-login/js/default.js?ver=1.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- simply-event-blog -->
|
||||||
|
<link rel="stylesheet" id="simply-event-blog-css" href="http://wp.lab/wp-content/plugins/simply-event-blog/public/css/simply-event-blog-public.css?ver=0.1" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- simply-gallery-block -->
|
<!-- simply-gallery-block -->
|
||||||
<link rel="stylesheet" id="pgc-simply-gallery-block-frontend-css" href="http://wp.lab/wp-content/plugins/simply-gallery-block/dist/blocks.style.build.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="pgc-simply-gallery-block-frontend-css" href="http://wp.lab/wp-content/plugins/simply-gallery-block/dist/blocks.style.build.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simply-gallery-block/dist/pgc_sgb.min.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simply-gallery-block/dist/pgc_sgb.min.js?ver=1.0.0"></script>
|
||||||
@@ -14067,6 +14310,13 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sp-news-and-widget/assets/js/sp-news-public.js?ver=3.3.4"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sp-news-and-widget/assets/js/sp-news-public.js?ver=3.3.4"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- spacento -->
|
||||||
|
<link rel="stylesheet" id="spacento-blocks-css-css" href="http://wp.lab/wp-content/plugins/spacento/public/css/spacento-blocks.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="spacento-css" href="http://wp.lab/wp-content/plugins/spacento/public/css/spacento.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/spacento/public/js/spacento-blocks.js?ver=1.0.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/spacento/public/js/spacento.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- spanish-quote-of-the-day-frase-del-dia -->
|
<!-- spanish-quote-of-the-day-frase-del-dia -->
|
||||||
<link rel="stylesheet" id="spanish-quotes-css" href="http://wp.lab/wp-content/plugins/spanish-quote-of-the-day-frase-del-dia/css/spanish-quotes.css?ver=1.3.0.1" type="text/css" media="all">
|
<link rel="stylesheet" id="spanish-quotes-css" href="http://wp.lab/wp-content/plugins/spanish-quote-of-the-day-frase-del-dia/css/spanish-quotes.css?ver=1.3.0.1" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -14234,6 +14484,11 @@
|
|||||||
<link rel="stylesheet" id="stag-shortcode-styles-css" href="http://wp.lab/wp-content/plugins/stagtools/assets/css/stag-shortcodes.css?ver=2.2.1" type="text/css" media="all">
|
<link rel="stylesheet" id="stag-shortcode-styles-css" href="http://wp.lab/wp-content/plugins/stagtools/assets/css/stag-shortcodes.css?ver=2.2.1" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- stan-easy-connect -->
|
||||||
|
<link rel="stylesheet" id="stan-easy-connect-css" href="http://wp.lab/wp-content/plugins/stan-easy-connect/public/css/stan-easy-connect-public.css?ver=0.1.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/stan-easy-connect/public/js/stan-easy-connect-public.js?ver=0.1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- status-buddy -->
|
<!-- status-buddy -->
|
||||||
<link rel="stylesheet" id="status-buddy-css" href="http://wp.lab/wp-content/plugins/status-buddy/public/css/status-buddy-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="status-buddy-css" href="http://wp.lab/wp-content/plugins/status-buddy/public/css/status-buddy-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/status-buddy/public/js/status-buddy-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/status-buddy/public/js/status-buddy-public.js?ver=1.0.0"></script>
|
||||||
@@ -14674,6 +14929,21 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tagesmenue/js/gettagesmenue.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tagesmenue/js/gettagesmenue.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- taggbox-widget -->
|
||||||
|
<link rel="stylesheet" id="bootstrap-css-css" href="http://wp.lab/wp-content/plugins/taggbox-widget/assets/css/bootstrap.min.css?ver=1.0" media="all">
|
||||||
|
<link rel="stylesheet" id="font-awesome-min-css-css" href="http://wp.lab/wp-content/plugins/taggbox-widget/assets/css/font-awesome/css/font-awesome.min.css?ver=1.0" media="all">
|
||||||
|
<link rel="stylesheet" id="sweetalert-min-css-css" href="http://wp.lab/wp-content/plugins/taggbox-widget/assets/css/sweetalert.min.css?ver=1.0" media="all">
|
||||||
|
<link rel="stylesheet" id="editor-css-css" href="http://wp.lab/wp-content/plugins/taggbox-widget/assets/css/editor/editor.css?ver=1.0" media="all">
|
||||||
|
<link rel="stylesheet" id="editor-style-css-css" href="http://wp.lab/wp-content/plugins/taggbox-widget/assets/css/editor/style.css?ver=1.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/taggbox-widget/assets/js/sweetalert.min.js?ver=1.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/taggbox-widget/assets/js/popper.min.js?ver=1.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/taggbox-widget/assets/js/bootstrap.min.js?ver=1.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/taggbox-widget/assets/js/jquery.validate.min.js?ver=1.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/taggbox-widget/assets/js/script.js?ver=1.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/taggbox-widget/assets/js/custom.js?ver=1.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/taggbox-widget/assets/js/taggbox.analystic.js?ver=1.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- tagged-sitemap -->
|
<!-- tagged-sitemap -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tagged-sitemap/tagged-sitemap.js?ver=1.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tagged-sitemap/tagged-sitemap.js?ver=1.0"></script>
|
||||||
|
|
||||||
@@ -14970,6 +15240,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themify-event-post/assets/scripts.js?ver=1.0.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themify-event-post/assets/scripts.js?ver=1.0.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- themify-popup -->
|
||||||
|
<link rel="stylesheet" id="themify-popup-css" href="http://wp.lab/wp-content/plugins/themify-popup/assets/styles.min.css?ver=1.2.2" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/themify-popup/assets/scripts.min.js?ver=1.2.2"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- themify-shortcodes -->
|
<!-- themify-shortcodes -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themify-shortcodes/themify/js/main.js?ver=1.0.6"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themify-shortcodes/themify/js/main.js?ver=1.0.6"></script>
|
||||||
|
|
||||||
@@ -15260,6 +15535,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/translatepress-multilingual/assets/js/trp-language-switcher.js?ver=1.1.2"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/translatepress-multilingual/assets/js/trp-language-switcher.js?ver=1.1.2"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- tranzly -->
|
||||||
|
<link rel="stylesheet" id="tranzly-css" href="http://wp.lab/wp-content/plugins/tranzly/includes/assets/css/tranzly.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/tranzly/includes/assets/js/tranzly.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- travelpayouts -->
|
<!-- travelpayouts -->
|
||||||
<link rel="stylesheet" id="travelpayouts-TPMainFlight-css" href="http://wp.lab/wp-content/plugins/travelpayouts/app/public/themes/flight/css/table-4.css?ver=0.7.4" type="text/css" media="all">
|
<link rel="stylesheet" id="travelpayouts-TPMainFlight-css" href="http://wp.lab/wp-content/plugins/travelpayouts/app/public/themes/flight/css/table-4.css?ver=0.7.4" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="travelpayouts-TPMainHotel-css" href="http://wp.lab/wp-content/plugins/travelpayouts/app/public/themes/hotel/css/table-2.css?ver=0.7.4" type="text/css" media="all">
|
<link rel="stylesheet" id="travelpayouts-TPMainHotel-css" href="http://wp.lab/wp-content/plugins/travelpayouts/app/public/themes/hotel/css/table-2.css?ver=0.7.4" type="text/css" media="all">
|
||||||
@@ -15415,6 +15695,11 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/ub-ultimate-post-list/public/js/ub-ultimate-post-list-public.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/ub-ultimate-post-list/public/js/ub-ultimate-post-list-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ucard -->
|
||||||
|
<link rel="stylesheet" id="ucard_app_css-css" href="http://wp.lab/wp-content/plugins/ucard/assets/css/style.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/ucard/assets/js/app.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- ucare-support-system -->
|
<!-- ucare-support-system -->
|
||||||
<link rel="stylesheet" id="ucare-widget-styles-css" href="http://wp.lab/wp-content/plugins/ucare-support-system/assets/css/wp-widgets.css?ver=1.5.0" type="text/css" media="all">
|
<link rel="stylesheet" id="ucare-widget-styles-css" href="http://wp.lab/wp-content/plugins/ucare-support-system/assets/css/wp-widgets.css?ver=1.5.0" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="ucare-login-form-css" href="http://wp.lab/wp-content/plugins/ucare-support-system/assets/css/login.css?ver=1.5.0" type="text/css" media="all">
|
<link rel="stylesheet" id="ucare-login-form-css" href="http://wp.lab/wp-content/plugins/ucare-support-system/assets/css/login.css?ver=1.5.0" type="text/css" media="all">
|
||||||
@@ -15543,6 +15828,19 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-bulk-seo-noindex-nofollow/public/js/bulk-seo-noindex-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-bulk-seo-noindex-nofollow/public/js/bulk-seo-noindex-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ultimate-feed-gallery -->
|
||||||
|
<link rel="stylesheet" id="magnific-popup-css" href="http://wp.lab/wp-content/plugins/ultimate-feed-gallery/assets/css/magnific-popup.css?ver=1.0.0" media="">
|
||||||
|
<link rel="stylesheet" id="ultimate-instagram-front-style-css" href="http://wp.lab/wp-content/plugins/ultimate-feed-gallery/assets/css/front.css?ver=1.0.0" media="">
|
||||||
|
<link rel="stylesheet" id="ultimate-instagram-slick-style-css" href="http://wp.lab/wp-content/plugins/ultimate-feed-gallery/assets/css/slick.css?ver=1.0.0" media="">
|
||||||
|
<link rel="stylesheet" id="ultimate-instagram-slick-theme-style-css" href="http://wp.lab/wp-content/plugins/ultimate-feed-gallery/assets/css/slick-theme.css?ver=1.0.0" media="">
|
||||||
|
<link rel="stylesheet" id="ultimate-instagram-justifiedGallery-style-css" href="http://wp.lab/wp-content/plugins/ultimate-feed-gallery/assets/css/justifiedGallery.min.css?ver=1.0.0" media="">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/ultimate-feed-gallery//assets/js/library/slick.js?ver=1.0.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/ultimate-feed-gallery//assets/js/library/jquery.magnific-popup.min.js?ver=1.0.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/ultimate-feed-gallery//assets/js/library/jquery.justifiedGallery.min.js?ver=1.0.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/ultimate-feed-gallery//assets/js/library/imagesloaded.pkgd.min.js?ver=1.0.0"></script>
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/ultimate-feed-gallery//assets/js/front.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- ultimate-form-builder-lite -->
|
<!-- ultimate-form-builder-lite -->
|
||||||
<link rel="stylesheet" id="ufbl-custom-select-css-css" href="http://wp.lab/wp-content/plugins/ultimate-form-builder-lite/css/jquery.selectbox.css?ver=1.3.7" type="text/css" media="all">
|
<link rel="stylesheet" id="ufbl-custom-select-css-css" href="http://wp.lab/wp-content/plugins/ultimate-form-builder-lite/css/jquery.selectbox.css?ver=1.3.7" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="ufbl-front-css-css" href="http://wp.lab/wp-content/plugins/ultimate-form-builder-lite/css/frontend.css?ver=1.3.7" type="text/css" media="all">
|
<link rel="stylesheet" id="ufbl-front-css-css" href="http://wp.lab/wp-content/plugins/ultimate-form-builder-lite/css/frontend.css?ver=1.3.7" type="text/css" media="all">
|
||||||
@@ -17680,6 +17978,11 @@
|
|||||||
<link rel="stylesheet" id="commerce7-for-wordpress-css" href="http://wp.lab/wp-content/plugins/wp-commerce7/assets/css/commerce7-for-wordpress.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="commerce7-for-wordpress-css" href="http://wp.lab/wp-content/plugins/wp-commerce7/assets/css/commerce7-for-wordpress.css?ver=1.0.0" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- wp-confirm -->
|
||||||
|
<link rel="stylesheet" id="wp-confirm-css" href="http://wp.lab/wp-content/plugins/wp-confirm/public/css/wp-confirm-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-confirm/public/js/wp-confirm-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- wp-consent-api -->
|
<!-- wp-consent-api -->
|
||||||
<script src="http://wp.lab/wp-content/plugins/wp-consent-api/assets/js/wp-consent-api.min.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/wp-consent-api/assets/js/wp-consent-api.min.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
@@ -17942,6 +18245,11 @@
|
|||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-exit-optin//js/scripts.js?ver=0.0.1"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-exit-optin//js/scripts.js?ver=0.0.1"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- wp-export-db-sql-file -->
|
||||||
|
<link rel="stylesheet" id="wp-export-db-sql-file-css" href="http://wp.lab/wp-content/plugins/wp-export-db-sql-file/public/css/wp-export-db-sql-file-public.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-export-db-sql-file/public/js/wp-export-db-sql-file-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- wp-exporter-plus -->
|
<!-- wp-exporter-plus -->
|
||||||
<link rel="stylesheet" id="gwl_wpepcsv_custom_style-css" href="http://wp.lab/wp-content/plugins/wp-exporter-plus/css/custom-style.css?ver=1.0" type="text/css" media="all">
|
<link rel="stylesheet" id="gwl_wpepcsv_custom_style-css" href="http://wp.lab/wp-content/plugins/wp-exporter-plus/css/custom-style.css?ver=1.0" type="text/css" media="all">
|
||||||
|
|
||||||
@@ -19216,6 +19524,12 @@
|
|||||||
<link rel="stylesheet" id="wp-sweebe-css-all-css" href="http://wp.lab/wp-content/plugins/wp-sweebe/css/sweebe.css?ver=0.1.8" type="text/css" media="all">
|
<link rel="stylesheet" id="wp-sweebe-css-all-css" href="http://wp.lab/wp-content/plugins/wp-sweebe/css/sweebe.css?ver=0.1.8" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- wp-swiper -->
|
||||||
|
<link rel="stylesheet" id="wpswiper-block-frontend-css" href="http://wp.lab/wp-content/plugins/wp-swiper/css/frontend_block.css?ver=1.0.0" media="all">
|
||||||
|
<link rel="stylesheet" id="wpswiper-bundle-css-css" href="http://wp.lab/wp-content/plugins/wp-swiper/public/css/swiper-bundle.min.css?ver=1.0.0" media="all">
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/wp-swiper/gutenberg/js/frontend_block.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- wp-switch-user -->
|
<!-- wp-switch-user -->
|
||||||
<link rel="stylesheet" id="ace_switch_user-css" href="http://wp.lab/wp-content/plugins/wp-switch-user/public/css/ace_switch_user-public.css?ver=1.0.0" type="text/css" media="all">
|
<link rel="stylesheet" id="ace_switch_user-css" href="http://wp.lab/wp-content/plugins/wp-switch-user/public/css/ace_switch_user-public.css?ver=1.0.0" type="text/css" media="all">
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-switch-user/public/js/ace_switch_user-public.js?ver=1.0.0"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-switch-user/public/js/ace_switch_user-public.js?ver=1.0.0"></script>
|
||||||
@@ -19865,6 +20179,10 @@
|
|||||||
<link rel="stylesheet" id="wrcptfront-css" href="http://wp.lab/wp-content/plugins/wrc-pricing-tables/css/wrcpt-front.css?ver=2.2.2" type="text/css" media="all">
|
<link rel="stylesheet" id="wrcptfront-css" href="http://wp.lab/wp-content/plugins/wrc-pricing-tables/css/wrcpt-front.css?ver=2.2.2" type="text/css" media="all">
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ws-easy-mobile-contact-bar -->
|
||||||
|
<link rel="stylesheet" id="ws_emcb_style-css" href="http://wp.lab/wp-content/plugins/ws-easy-mobile-contact-bar/style.css?ver=1.01" media="all">
|
||||||
|
|
||||||
|
|
||||||
<!-- ws-form -->
|
<!-- ws-form -->
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ws-form/shared/js/ws-form.js?ver=1.0.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ws-form/shared/js/ws-form.js?ver=1.0.3"></script>
|
||||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ws-form/public/js/ws-form-public.js?ver=1.0.3"></script>
|
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ws-form/public/js/ws-form-public.js?ver=1.0.3"></script>
|
||||||
@@ -19961,6 +20279,10 @@
|
|||||||
<script src="http://wp.lab/wp-content/plugins/xoxzo-sms-voice-notification-for-woocommerce/public/js/wc-xoxzo-public.js?ver=1.0.0"></script>
|
<script src="http://wp.lab/wp-content/plugins/xoxzo-sms-voice-notification-for-woocommerce/public/js/wc-xoxzo-public.js?ver=1.0.0"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- xshare -->
|
||||||
|
<script src="http://wp.lab/wp-content/plugins/xshare/assets/js/xshare.js?ver=1.0.1"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- xt-woo-quick-view-lite -->
|
<!-- xt-woo-quick-view-lite -->
|
||||||
<link rel="stylesheet" id="xt-woo-quick-view-lightslider-css" href="http://wp.lab/wp-content/plugins/xt-woo-quick-view-lite/public/assets/vendors/lightslider/css/lightslider.css?ver=1.2.5" type="text/css" media="all">
|
<link rel="stylesheet" id="xt-woo-quick-view-lightslider-css" href="http://wp.lab/wp-content/plugins/xt-woo-quick-view-lite/public/assets/vendors/lightslider/css/lightslider.css?ver=1.2.5" type="text/css" media="all">
|
||||||
<link rel="stylesheet" id="wooqvicons-css" href="http://wp.lab/wp-content/plugins/xt-woo-quick-view-lite/public/assets/css/wooqvicons.css?ver=1.2.5" type="text/css" media="all">
|
<link rel="stylesheet" id="wooqvicons-css" href="http://wp.lab/wp-content/plugins/xt-woo-quick-view-lite/public/assets/css/wooqvicons.css?ver=1.2.5" type="text/css" media="all">
|
||||||
|
|||||||
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)"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
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"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
# Copyright (C) 2020 Jeremy Felt
|
||||||
|
# This file is distributed under the same license as the Self-Sustaining Spam Stopper package.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Self-Sustaining Spam Stopper 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: "
|
||||||
|
"https://wordpress.org/support/plugin/self-sustaining-spam-stopper\n"
|
||||||
|
"POT-Creation-Date: 2020-10-17 00:40:16+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: en\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Poedit-Country: United States\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: "
|
||||||
|
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||||
|
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||||
|
"X-Poedit-Basepath: ../\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-Bookmarks: \n"
|
||||||
|
"X-Textdomain-Support: yes\n"
|
||||||
|
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||||
|
|
||||||
|
#: includes/comment-invalidation.php:104
|
||||||
|
msgid "Missing Inputs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/comment-invalidation.php:105
|
||||||
|
msgid "Empty Input"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/comment-invalidation.php:106
|
||||||
|
msgid "Important Input"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/common.php:9
|
||||||
|
msgid "Hey. Ignore me while I try to mess with bots. Thanks for commenting!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: self-sustaining-spam-stopper.php:30
|
||||||
|
msgid ""
|
||||||
|
"Self Sustaining Spam Stopper requires PHP 5.6 to function properly. Please "
|
||||||
|
"upgrade PHP or deactivate the plugin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin/theme
|
||||||
|
msgid "Self-Sustaining Spam Stopper"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin/theme
|
||||||
|
msgid "https://github.com/jeremyfelt/self-sustaining-spam-stopper/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid "Stop spam without relying on an external service."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "Jeremy Felt"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin/theme
|
||||||
|
msgid "https://jeremyfelt.com"
|
||||||
|
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 ""
|
||||||
@@ -0,0 +1,226 @@
|
|||||||
|
# Copyright (C) 2019 MATTEUS BARBOSA DOS SANTOS
|
||||||
|
# This file is distributed under the same license as the Tryst Member plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Tryst Member 1.1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tryst-member\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2019-02-26T17:57:09+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.1.0\n"
|
||||||
|
"X-Domain: tryst-member\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Tryst Member"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://matteus.dev"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Member support for Tryst"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "MATTEUS BARBOSA DOS SANTOS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-tryst-member-settings.php:76
|
||||||
|
msgid "Specify details about the Membership extension"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/includes/Domain/admin-meta.php:28
|
||||||
|
msgid "Member information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/includes/Domain/admin-meta.php:34
|
||||||
|
msgid "Please enter your phone number."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/includes/Domain/admin-meta.php:42
|
||||||
|
msgid "Member phone number is missing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/member-print.php:4
|
||||||
|
#: public/templates/Domain/member-print.php:135
|
||||||
|
#: public/templates/form-member-fields.php:12
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/includes/Domain/admin-meta.php:31
|
||||||
|
#: public/templates/member-print.php:8
|
||||||
|
#: public/templates/Domain/member-print.php:36
|
||||||
|
#: includes/Tryst/Member.php:246
|
||||||
|
#: includes/Tryst/Domain/Member.php:203
|
||||||
|
#: public/templates/form-member-fields.php:23
|
||||||
|
msgid "Phone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:19
|
||||||
|
msgid "Member Proposal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:22
|
||||||
|
msgid "Register Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:26
|
||||||
|
msgid "Street Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:30
|
||||||
|
msgid "Address District"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:32
|
||||||
|
msgid "City"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:38
|
||||||
|
msgid "Zipcode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:42
|
||||||
|
msgid "Nationality"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:44
|
||||||
|
msgid "Civil State"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:48
|
||||||
|
msgid "Naturality"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:54
|
||||||
|
msgid "Parents"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:57
|
||||||
|
msgid "Father Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:59
|
||||||
|
msgid "Mother Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:63
|
||||||
|
msgid "Birth Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:65
|
||||||
|
msgid "Profession"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:69
|
||||||
|
msgid "Instruction Degree"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:71
|
||||||
|
msgid "Company"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:75
|
||||||
|
msgid "Company Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:77
|
||||||
|
msgid "Contracted At"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:81
|
||||||
|
msgid "Function"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:83
|
||||||
|
msgid "Work Permit Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:88
|
||||||
|
msgid "Work Permit Serie"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:90
|
||||||
|
msgid "Identity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:94
|
||||||
|
msgid "Division"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:96
|
||||||
|
msgid "CPF"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:106
|
||||||
|
msgid "Authorization"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:132
|
||||||
|
msgid "Dependents"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:136
|
||||||
|
msgid "Gender"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:137
|
||||||
|
msgid "Degree"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:138
|
||||||
|
msgid "Date Birth"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/templates/Domain/member-print.php:161
|
||||||
|
msgid "What the Sindicate offers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-tryst-member-public.php:199
|
||||||
|
msgid "Please print this page, sign the specified fields and send it to your employer."
|
||||||
|
msgstr "Imprima e assine a página a seguir. Entregue nas mãos do seu empregador."
|
||||||
|
|
||||||
|
#: includes/Tryst/Member.php:230
|
||||||
|
msgid "Hello %s, this is the membership request receipt."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Tryst/Member.php:244
|
||||||
|
#: includes/Tryst/Domain/Member.php:200
|
||||||
|
msgid "Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Tryst/Member.php:245
|
||||||
|
#: includes/Tryst/Domain/Member.php:201
|
||||||
|
msgid "E-mail"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Tryst/Member.php:247
|
||||||
|
#: includes/Tryst/Domain/Member.php:204
|
||||||
|
msgid "View full data as html page of the website"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Tryst/Member.php:256
|
||||||
|
msgid "Thanks for your subscription."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Tryst/Member.php:269
|
||||||
|
msgid "The membership request for %s was sent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Tryst/Member.php:272
|
||||||
|
msgid "The membership request for %s was updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Tryst/Member.php:275
|
||||||
|
msgid "The membership request for %s was canceled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-tryst-member-public.php:206
|
||||||
|
#: /public/templates/Domain/membership-print.php:2
|
||||||
|
msgid "Please print this page, sign the specified fields and send it to us scanned via e-mail."
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
# Copyright (C) 2020 UpgradePath
|
||||||
|
# This file is distributed under the same license as the UpgradePath plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: UpgradePath 0.0.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/upgradepath\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-20T10:29:04+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.4.0\n"
|
||||||
|
"X-Domain: upgradepath\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#. Author of the plugin
|
||||||
|
#: src/Admin/SettingsPage.php:59
|
||||||
|
msgid "UpgradePath"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "The UpgradePath wordpress integration sends plugin meta information to UpgradePath so that you can easily manage your software versions in one central place."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://upgradepath.io"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/SettingsPage.php:100
|
||||||
|
msgid "An unknown error occurred during the registration of this wordpress instance. Please contact the UpgradePath support team."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/SettingsPage.php:122
|
||||||
|
msgid "Upgradepath Wordpress Integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/SettingsPage.php:130
|
||||||
|
msgid "Sync manually"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/SettingsPage.php:131
|
||||||
|
msgid "Delete API key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/SettingsPage.php:155
|
||||||
|
msgid "Active API key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/SettingsPage.php:163
|
||||||
|
msgid "New API key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/SettingsPage.php:172
|
||||||
|
msgid "Please register at <a href=\"https://upgradepath.io\">upgradepath.io</a> and create an wordpress integration. You will receive an API key which you can copy into the \"New API key\" field. Make sure that you Wordpress instance can access the internet. On save, the plugin will register this wordpress instance and starts sending plugin meta information to UpgradePath. If you need help connecting your Wordpress instance with UpgradePath feel free to connect our support team."
|
||||||
|
msgstr ""
|
||||||
41
spec/fixtures/dynamic_finders/plugin_version/vercel-deploy-hooks/composer_file/composer.json
vendored
Normal file
41
spec/fixtures/dynamic_finders/plugin_version/vercel-deploy-hooks/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"name": "aderaaij/wp-vercel-deploy-hooks",
|
||||||
|
"version": "1.1.0",
|
||||||
|
"type": "wordpress-plugin",
|
||||||
|
"license": "GPLv3",
|
||||||
|
"description": "WordPress starter theme with a modern development workflow",
|
||||||
|
"homepage": "https://github.com/aderaaij/wp-vercel-deploy-hooks",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Arden de Raaij",
|
||||||
|
"email": "a.de.raaij@gmail.com",
|
||||||
|
"homepage": "https://github.com/aderaaij/"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"keywords": [
|
||||||
|
"wordpress"
|
||||||
|
],
|
||||||
|
"support": {
|
||||||
|
"issues": "https://github.com/aderaaij/wp-vercel-deploy-hooks/issues"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"App\\": "app/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": "^7.1"
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"optimize-autoloader": true,
|
||||||
|
"preferred-install": "dist",
|
||||||
|
"sort-packages": true
|
||||||
|
},
|
||||||
|
"minimum-stability": "dev",
|
||||||
|
"prefer-stable": true,
|
||||||
|
"scripts": {
|
||||||
|
"lint": [
|
||||||
|
"phpcs --ignore=index.php,vendor,resources,storage,dist --extensions=php --standard=PSR12 ."
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,134 @@
|
|||||||
|
# Copyright (C) 2020 NuttTaro
|
||||||
|
# This file is distributed under the same license as the Video Player for WPBakery plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Video Player for WPBakery 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/video-player-for-wpbakery\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-21T07:11:09+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.4.0\n"
|
||||||
|
"X-Domain: video-player-for-wpbakery\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Video Player for WPBakery"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wordpress.org/plugins/video-player-for-wpbakery/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Video Player add-on for WPBakery Page Builder with YouTube, Vimeo and Self-Hosted videos (HTML5)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "NuttTaro"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://nutttaro.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: templates/video-html5.php:5
|
||||||
|
msgid "Your browser does not support the video tag."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:122
|
||||||
|
msgid "Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:126
|
||||||
|
msgid "Video Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:130
|
||||||
|
msgid "Self-Hosted videos (HTML5)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:131
|
||||||
|
msgid "Youtube or Vimeo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:138
|
||||||
|
msgid "Video"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:141
|
||||||
|
msgid "Select video from media library."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:147
|
||||||
|
msgid "Video URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:150
|
||||||
|
msgid "Youtube or Vimeo URL that should be embedded the video."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:156
|
||||||
|
msgid "Width"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:163
|
||||||
|
msgid "Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:170
|
||||||
|
msgid "Controls"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:172
|
||||||
|
#: video-player-for-wpbakery.php:181
|
||||||
|
#: video-player-for-wpbakery.php:188
|
||||||
|
#: video-player-for-wpbakery.php:195
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:178
|
||||||
|
msgid "Autoplay"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:180
|
||||||
|
msgid "Video will muted sound because some browser block autoplay the video."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:186
|
||||||
|
msgid "Muted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:193
|
||||||
|
msgid "Loop"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:200
|
||||||
|
msgid "Element ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:202
|
||||||
|
msgid "Enter element ID (Note: make sure it is unique and valid according to %sw3c specification%s)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:206
|
||||||
|
msgid "Extra class name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:208
|
||||||
|
msgid "Style particular content element differently - add a class name and refer to it in custom CSS."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:242
|
||||||
|
msgid "Add video"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:243
|
||||||
|
msgid "Remove video"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: video-player-for-wpbakery.php:324
|
||||||
|
msgid "<strong>Video Player for WPBakery</strong> is enabled but not effective. It requires <strong>WPBakery Page Builder</strong> in order to work."
|
||||||
|
msgstr ""
|
||||||
19022
spec/fixtures/dynamic_finders/plugin_version/vk-filter-search/composer_file/package-lock.json
generated
vendored
Normal file
19022
spec/fixtures/dynamic_finders/plugin_version/vk-filter-search/composer_file/package-lock.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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": {}
|
||||||
|
}
|
||||||
@@ -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"
|
||||||
@@ -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 ""
|
||||||
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,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 ""
|
||||||
4
spec/fixtures/dynamic_finders/plugin_version/wpify-mapy-cz/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/wpify-mapy-cz/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
== Changelog ==
|
||||||
|
|
||||||
|
= 1.0 =
|
||||||
|
* First release
|
||||||
@@ -0,0 +1,314 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Mapy.cz 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpify-mapy-cz\n"
|
||||||
|
"Last-Translator: \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-09-18T19:00:16+00:00\n"
|
||||||
|
"PO-Revision-Date: 2020-09-18 21:00+0200\n"
|
||||||
|
"Language: cs_CZ\n"
|
||||||
|
"X-Generator: Poedit 2.4.1\n"
|
||||||
|
"X-Domain: mapy-cz\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#: src/Admin.php:78
|
||||||
|
#: assets/blocks/mapy-cz/backend.jsx:70
|
||||||
|
#: build/block-mapy-cz-backend.js:2
|
||||||
|
msgid "WPify Mapy.cz"
|
||||||
|
msgstr "WPify Mapy.cz"
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Easily embed free mapy.cz maps on your posts / pages / Custom Post Types"
|
||||||
|
msgstr "Přidávejte snadno a zdarma Mapy.cz do vašich článků, stránek nebo jiných vlastních post typů"
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "WPify"
|
||||||
|
msgstr "WPify"
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://www.wpify.io/"
|
||||||
|
msgstr "https://www.wpify.io/"
|
||||||
|
|
||||||
|
#: src/Admin.php:28
|
||||||
|
#: src/Admin.php:29
|
||||||
|
msgid "Mapy.cz"
|
||||||
|
msgstr "Mapy.cz"
|
||||||
|
|
||||||
|
#: src/Admin.php:38
|
||||||
|
#: src/Admin.php:39
|
||||||
|
msgid "Maps"
|
||||||
|
msgstr "Mapy"
|
||||||
|
|
||||||
|
#: src/Admin.php:46
|
||||||
|
#: src/Admin.php:47
|
||||||
|
msgid "Markers"
|
||||||
|
msgstr "Značky"
|
||||||
|
|
||||||
|
#: src/Admin.php:80
|
||||||
|
msgid "Welcome! Plugin WPify Mapy.cz by <a href=\"%s\" target=\"_blank\">wpify.io</a> lets you add mapy.cz maps to your site easily!"
|
||||||
|
msgstr "Vítejte! Plugin WPify Mapy.cz od <a href=\"%s\" target=\"_blank\">wpify.io</a> vám umožní snadno přidávat mapy od Mapy.cz na vaše stránky!"
|
||||||
|
|
||||||
|
#: src/Admin.php:87
|
||||||
|
msgid "You can start adding <a href=\"%s\">maps</a> and <a href=\"%s\">markers</a> right away."
|
||||||
|
msgstr "Můžete rovnou začít přidávat <a href=\"%s\">mapy</a> a <a href=\"%s\">značky</a>."
|
||||||
|
|
||||||
|
#: src/Admin.php:94
|
||||||
|
msgid "How to create map and insert it to your page"
|
||||||
|
msgstr "Jak vytvořit mapy a vložit je na vaší stránku"
|
||||||
|
|
||||||
|
#: src/Admin.php:97
|
||||||
|
msgid "Add as many <a href=\"%s\">markers</a> as needed, select it's positions and publish them."
|
||||||
|
msgstr "Přidejte <a href=\"%s\">značek</a> kolik chcete, vyberte jejich pozici a publikujte je."
|
||||||
|
|
||||||
|
#: src/Admin.php:102
|
||||||
|
msgid "Add a new <a href=\"%s\">map</a>, enter the options, choose markers to display and click Publish."
|
||||||
|
msgstr "Přidejte novou <a href=\"%s\">mapu</a>, přizpůsobte ji, vyberte značky k zobrazení a publikujte svou mapu."
|
||||||
|
|
||||||
|
#: src/Admin.php:110
|
||||||
|
msgid "To insert the map into your page, you can either use <i>Mapy.cz</i> Gutenberg block, or you can use the shortcode provided in the maps <a href=\"%s\">admin listing</a>"
|
||||||
|
msgstr "Pro přidání mapy na stránku můžete využít jak <i>Mapy.cz</i> gutenberg block, nebo můžete použít shortcode, který naleznete v <a href=\"%s\">seznamu map</a>"
|
||||||
|
|
||||||
|
#: src/Admin.php:123
|
||||||
|
msgid "Shortcode"
|
||||||
|
msgstr "Shortcode"
|
||||||
|
|
||||||
|
#: src/Blocks/MapEditorBlock.php:93
|
||||||
|
msgid "Basic map"
|
||||||
|
msgstr "Základní mapa"
|
||||||
|
|
||||||
|
#: src/Blocks/MapEditorBlock.php:94
|
||||||
|
msgid "Ortho map"
|
||||||
|
msgstr "Ortho mapa"
|
||||||
|
|
||||||
|
#: src/Blocks/MapEditorBlock.php:95
|
||||||
|
msgid "Hybrid map"
|
||||||
|
msgstr "Hybridní mapa"
|
||||||
|
|
||||||
|
#: src/Blocks/MapEditorBlock.php:96
|
||||||
|
msgid "Turist map"
|
||||||
|
msgstr "Turistická mapa"
|
||||||
|
|
||||||
|
#: src/Blocks/MapEditorBlock.php:97
|
||||||
|
msgid "Winter turist map"
|
||||||
|
msgstr "Zimní turistická mapa"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:24
|
||||||
|
msgctxt "post type general name"
|
||||||
|
msgid "Maps"
|
||||||
|
msgstr "Mapy"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:25
|
||||||
|
msgctxt "post type singular name"
|
||||||
|
msgid "Map"
|
||||||
|
msgstr "Mapa"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:26
|
||||||
|
msgctxt "admin menu"
|
||||||
|
msgid "Maps"
|
||||||
|
msgstr "Mapy"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:27
|
||||||
|
msgctxt "add new on admin bar"
|
||||||
|
msgid "Map"
|
||||||
|
msgstr "Mapa"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:29
|
||||||
|
msgid "Add New Map"
|
||||||
|
msgstr "Přidat novou mapu"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:30
|
||||||
|
msgid "New Map"
|
||||||
|
msgstr "Nová mapa"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:31
|
||||||
|
msgid "Edit Map"
|
||||||
|
msgstr "Upravit mapu"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:32
|
||||||
|
msgid "View Map"
|
||||||
|
msgstr "Zobrazit mapu"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:33
|
||||||
|
msgid "All Maps"
|
||||||
|
msgstr "Všechny mapy"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:34
|
||||||
|
msgid "Search Maps"
|
||||||
|
msgstr "Vyhledat mapu"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:35
|
||||||
|
msgid "Parent Maps:"
|
||||||
|
msgstr "Nadřízená mapa:"
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:36
|
||||||
|
msgid "No Maps found."
|
||||||
|
msgstr "Žádná mapa nenalezena."
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:37
|
||||||
|
msgid "No Maps found in Trash."
|
||||||
|
msgstr "V koši není žádná mapa."
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:39
|
||||||
|
msgid "Description of Map."
|
||||||
|
msgstr "Popis mapy."
|
||||||
|
|
||||||
|
#: src/Cpt/MapPostType.php:46
|
||||||
|
msgid "map"
|
||||||
|
msgstr "mapa"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:17
|
||||||
|
msgctxt "post type general name"
|
||||||
|
msgid "Markers"
|
||||||
|
msgstr "Značky"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:18
|
||||||
|
msgctxt "post type singular name"
|
||||||
|
msgid "Marker"
|
||||||
|
msgstr "Značky"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:19
|
||||||
|
msgctxt "admin menu"
|
||||||
|
msgid "Markers"
|
||||||
|
msgstr "Značky"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:20
|
||||||
|
msgctxt "add new on admin bar"
|
||||||
|
msgid "Marker"
|
||||||
|
msgstr "Značka"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:22
|
||||||
|
msgid "Add New Marker"
|
||||||
|
msgstr "Přidat novou značku"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:23
|
||||||
|
msgid "New Marker"
|
||||||
|
msgstr "Nová značka"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:24
|
||||||
|
msgid "Edit Marker"
|
||||||
|
msgstr "Upravit značku"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:25
|
||||||
|
msgid "View Marker"
|
||||||
|
msgstr "Zobrazit značku"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:26
|
||||||
|
msgid "All Markers"
|
||||||
|
msgstr "Všechny značky"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:27
|
||||||
|
msgid "Search Markers"
|
||||||
|
msgstr "Vyhledat značky"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:28
|
||||||
|
msgid "Parent Markers:"
|
||||||
|
msgstr "Nadřízená značka:"
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:29
|
||||||
|
msgid "No Markers found."
|
||||||
|
msgstr "Žádná značka nebyla nalezena."
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:30
|
||||||
|
msgid "No Markers found in Trash."
|
||||||
|
msgstr "Žádná značka nebyla nalezena v koši."
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:32
|
||||||
|
msgid "Description of Marker."
|
||||||
|
msgstr "Popis značky."
|
||||||
|
|
||||||
|
#: src/Cpt/MarkerPostType.php:39
|
||||||
|
msgid "marker"
|
||||||
|
msgstr "značka"
|
||||||
|
|
||||||
|
#: src/Frontend.php:31
|
||||||
|
msgid "Please add id param to the shortcode"
|
||||||
|
msgstr "Prosím zadejte id parametr do shortcode"
|
||||||
|
|
||||||
|
#: src/Frontend.php:35
|
||||||
|
#: src/Frontend.php:45
|
||||||
|
msgid "Please provide valid ID"
|
||||||
|
msgstr "Prosím zadejte platné ID"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:130
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "Search:"
|
||||||
|
msgstr "Vyhledat:"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:151
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "Display type:"
|
||||||
|
msgstr "Typ zobrazení:"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:168
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "Description:"
|
||||||
|
msgstr "Popis značky:"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:174
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "Description..."
|
||||||
|
msgstr "Popis značky…"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:181
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "Markers:"
|
||||||
|
msgstr "Značky:"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:197
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "Set zoom and center by markers"
|
||||||
|
msgstr "Automaticky nastavit zoom a střed podle zobrazených markerů"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:207
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "Show info window"
|
||||||
|
msgstr "Zobrazit vizitku"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:213
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "Width:"
|
||||||
|
msgstr "Šířka:"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:218
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "Height:"
|
||||||
|
msgstr "Výška:"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:231
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "WPify Map Editor"
|
||||||
|
msgstr "Editor mapy"
|
||||||
|
|
||||||
|
#: assets/blocks/map-editor/backend.jsx:232
|
||||||
|
#: build/map-editor-backend.js:2
|
||||||
|
msgid "Editor for WPify Mapy.cz!"
|
||||||
|
msgstr "Editor pro WPify Mapy.cz!"
|
||||||
|
|
||||||
|
#: assets/blocks/mapy-cz/backend.jsx:47
|
||||||
|
#: build/block-mapy-cz-backend.js:2
|
||||||
|
msgid "Select map"
|
||||||
|
msgstr "Vyberte mapu"
|
||||||
|
|
||||||
|
#: assets/blocks/mapy-cz/backend.jsx:57
|
||||||
|
#: build/block-mapy-cz-backend.js:2
|
||||||
|
msgid "WPify Mapy.cz:"
|
||||||
|
msgstr "WPify Mapy.cz:"
|
||||||
|
|
||||||
|
#~ msgid "Mapy.cz:"
|
||||||
|
#~ msgstr "Mapy.cz:"
|
||||||
|
|
||||||
|
#~ msgid "Enter map width. Include <i>px</i> or <i>%</i>"
|
||||||
|
#~ msgstr "Zadejte šířku mapy v <i>px</i> nebo v <i>%</i>"
|
||||||
|
|
||||||
|
#~ msgid "Enter map height. Include <i>px</i> or <i>%</i>"
|
||||||
|
#~ msgstr "Zadejte výšku mapy v <i>px</i> nebo v <i>%</i>"
|
||||||
|
|
||||||
|
#~ msgid "Check to show Info Window"
|
||||||
|
#~ msgstr "Zaškrtněte pro zobrazení vizitky"
|
||||||
|
|
||||||
|
#~ msgid "Details"
|
||||||
|
#~ msgstr "Podrobnosti"
|
||||||
@@ -0,0 +1,217 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: WPSSO Shipping Delivery Time for WooCommerce 1.0.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpsso-wc-shipping-delivery-time\n"
|
||||||
|
"POT-Creation-Date: 2020-10-17 11:42-0700\n"
|
||||||
|
"PO-Revision-Date: 2020-10-17 11:42-0700\n"
|
||||||
|
"Last-Translator: JS Morisset <jsm@surniaulula.com>\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: fr_FR\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.8.6\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
|
#: gettext/gettext-lib-abstracts-com.php:6 lib/abstracts/com/add-on.php:161
|
||||||
|
msgid "The %1$s add-on requires the %2$s plugin — please activate the missing plugin."
|
||||||
|
msgstr "L'ajout %1$s nécessite l'extension %2$s — veuillez activer l'extension manquante."
|
||||||
|
|
||||||
|
#: gettext/gettext-lib-abstracts-com.php:7 lib/abstracts/com/add-on.php:179
|
||||||
|
msgid "The %1$s add-on requires %2$s version %3$s or newer (version %4$s is currently installed)."
|
||||||
|
msgstr "L'ajout %1$s nécessite %2$s version %3$s ou plus récente (la version %4$s est actuellement installée)."
|
||||||
|
|
||||||
|
#: gettext/gettext-lib-config.php:6
|
||||||
|
msgctxt "plugin name"
|
||||||
|
msgid "WPSSO Shipping Delivery Time for WooCommerce"
|
||||||
|
msgstr "WPSSO délai de livraison d'expédition pour WooCommerce"
|
||||||
|
|
||||||
|
#: gettext/gettext-lib-config.php:7
|
||||||
|
msgctxt "plugin description"
|
||||||
|
msgid "Shipping delivery time estimates for WooCommerce shipping zones, methods, and classes."
|
||||||
|
msgstr "Estimations du délai de livraison pour les zones, méthodes et classes d'expédition WooCommerce."
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:62
|
||||||
|
msgid "WooCommerce Shipping Options"
|
||||||
|
msgstr "Options de livraison WooCommerce"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:128
|
||||||
|
msgid "Add %s for handling & packaging."
|
||||||
|
msgstr "Ajoutez %s pour la manutention et l'emballage."
|
||||||
|
|
||||||
|
#. translators: Shipping transit time in the shipping method label.
|
||||||
|
#: lib/woocommerce.php:171
|
||||||
|
msgid "(%s)"
|
||||||
|
msgstr "(%s)"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:185
|
||||||
|
msgid "Shipping delivery times"
|
||||||
|
msgstr "Temps de livraison d'expédition"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:190
|
||||||
|
msgid "Show delivery estimates"
|
||||||
|
msgstr "Afficher les estimations de livraison pour l'expédition"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:191
|
||||||
|
msgid "Show shipping handling and packaging time under the shipping methods."
|
||||||
|
msgstr "Afficher le temps de manutention et d'emballage sous les méthodes d'expédition."
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:198
|
||||||
|
msgid "Show shipping transit time in the shipping method label."
|
||||||
|
msgstr "Afficher le temps de transit d'expédition dans l'étiquette de la méthode d'expédition."
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:216
|
||||||
|
msgid "Shipping handling times"
|
||||||
|
msgstr "Temps de manutention pour l'expédition"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:217
|
||||||
|
msgid "The typical delay between the receipt of an order and the goods leaving the warehouse."
|
||||||
|
msgstr "Le délai typique entre la réception d'une commande et la sortie des marchandises de l'entrepôt."
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:232
|
||||||
|
msgid "Shipping classes"
|
||||||
|
msgstr "Classes de livraison"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:244
|
||||||
|
msgid "Shipping class"
|
||||||
|
msgstr "Classe de livraison"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:246
|
||||||
|
msgid "Class description"
|
||||||
|
msgstr "Description de la classe"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:248 lib/woocommerce.php:381
|
||||||
|
msgid "Minimum time"
|
||||||
|
msgstr "Temps minimum"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:249
|
||||||
|
msgid "The estimated minimum handling and packaging time. Can be left blank."
|
||||||
|
msgstr "Le temps minimum estimé de manutention et d'emballage. Peut être laissé vide."
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:252 lib/woocommerce.php:384
|
||||||
|
msgid "Maximum time"
|
||||||
|
msgstr "Temps maximum"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:253
|
||||||
|
msgid "The estimated maximum handling and packaging time. Can be left blank."
|
||||||
|
msgstr "Le temps maximum estimé de manutention et d'emballage. Peut être laissé vide."
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:256 lib/woocommerce.php:387
|
||||||
|
msgid "Unit of time"
|
||||||
|
msgstr "Unité de temps"
|
||||||
|
|
||||||
|
#. translators: Please ignore - translation uses a different text domain.
|
||||||
|
#: lib/woocommerce.php:274
|
||||||
|
msgid "No shipping class"
|
||||||
|
msgstr "Pas de classe de livraison"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:275
|
||||||
|
msgid "Products without a shipping class"
|
||||||
|
msgstr "Produits sans classe de livraison"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:320
|
||||||
|
msgid "Shipping transit times"
|
||||||
|
msgstr "Temps de transit pour l'expédition"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:321
|
||||||
|
msgid "The typical delay between the goods leaving the warehouse and reaching the customer."
|
||||||
|
msgstr "Le délai typique entre les marchandises quittant l'entrepôt et atteignant le client."
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:344
|
||||||
|
msgid "%s shipping zone"
|
||||||
|
msgstr "Zone d'expédition %s"
|
||||||
|
|
||||||
|
#. translators: Please ignore - translation uses a different text domain.
|
||||||
|
#: lib/woocommerce.php:377
|
||||||
|
msgid "Shipping method"
|
||||||
|
msgstr "Méthode d'expédition"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:379
|
||||||
|
msgid "Shipping rate"
|
||||||
|
msgstr "Tarif d'expédition"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:382
|
||||||
|
msgid "The estimated minimum transit time. Can be left blank."
|
||||||
|
msgstr "Le temps de transit minimum estimé. Peut être laissé vide."
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:385
|
||||||
|
msgid "The estimated maximum transit time. Can be left blank."
|
||||||
|
msgstr "Le temps de transit maximum estimé. Peut être laissé vide."
|
||||||
|
|
||||||
|
#. translators: Please ignore - translation uses a different text domain.
|
||||||
|
#: lib/woocommerce.php:398
|
||||||
|
msgid "No shipping methods offered to this zone."
|
||||||
|
msgstr "Aucune méthode d'expédition offerte pour cette zone."
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:504
|
||||||
|
msgid "%1$s hour"
|
||||||
|
msgid_plural "%1$s hours"
|
||||||
|
msgstr[0] "%1$s heures"
|
||||||
|
msgstr[1] "%1$s hours"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:505
|
||||||
|
msgid "%1$s - %2$s hours"
|
||||||
|
msgstr "%1$s - %2$s heures"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:506
|
||||||
|
msgid "%1$s or more hours"
|
||||||
|
msgid_plural "%1$s or more hours"
|
||||||
|
msgstr[0] "%1$s heur ou plus"
|
||||||
|
msgstr[1] "%1$s heures ou plus"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:507
|
||||||
|
msgid "up to %2$s hour"
|
||||||
|
msgid_plural "up to %2$s hours"
|
||||||
|
msgstr[0] "jusqu'à %2$s heure"
|
||||||
|
msgstr[1] "jusqu'à %2$s heures"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:516
|
||||||
|
msgid "%1$s day"
|
||||||
|
msgid_plural "%1$s days"
|
||||||
|
msgstr[0] "%1$s jour"
|
||||||
|
msgstr[1] "%1$s days"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:517
|
||||||
|
msgid "%1$s - %2$s days"
|
||||||
|
msgstr "%1$s - %2$s jours"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:518
|
||||||
|
msgid "%1$s or more days"
|
||||||
|
msgid_plural "%1$s or more days"
|
||||||
|
msgstr[0] "%1$s jour ou plus"
|
||||||
|
msgstr[1] "%1$s jours ou plus"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:519
|
||||||
|
msgid "up to %2$s day"
|
||||||
|
msgid_plural "up to %2$s days"
|
||||||
|
msgstr[0] "jusqu'à %2$s jour"
|
||||||
|
msgstr[1] "jusqu'à %2$s jours"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:683
|
||||||
|
msgid "Hours"
|
||||||
|
msgstr "Heures"
|
||||||
|
|
||||||
|
#: lib/woocommerce.php:684
|
||||||
|
msgid "Days"
|
||||||
|
msgstr "Jours"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin/theme
|
||||||
|
msgid "WPSSO Shipping Delivery Time for WooCommerce"
|
||||||
|
msgstr "WPSSO délai de livraison d'expédition WooCommerce"
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin/theme
|
||||||
|
msgid "https://wpsso.com/extend/plugins/wpsso-wc-shipping-delivery-time/"
|
||||||
|
msgstr "https://wpsso.com/extend/plugins/wpsso-wc-shipping-delivery-time/"
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid "Shipping delivery time estimates for WooCommerce shipping zones, methods, and classes."
|
||||||
|
msgstr "Estimations du délai de livraison pour les zones, méthodes et classes d'expédition WooCommerce."
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "JS Morisset"
|
||||||
|
msgstr "JS Morisset"
|
||||||
|
|
||||||
|
#. Author URI of the plugin/theme
|
||||||
|
msgid "https://wpsso.com/"
|
||||||
|
msgstr "https://wpsso.com/"
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
|
|
||||||
| [!] Title: Dignitas 1.1.9 - Privilage Escalation
|
| [!] Title: Dignitas 1.1.9 - Privilage Escalation
|
||||||
| References:
|
| References:
|
||||||
| - https://wpvulndb.com/vulnerabilities/7825
|
| - https://wpscan.com/vulnerability/7825
|
||||||
| - http://research.evex.pw/?vuln=6
|
| - http://research.evex.pw/?vuln=6
|
||||||
| - https://packetstormsecurity.com/files/130652/
|
| - https://packetstormsecurity.com/files/130652/
|
||||||
|
|
|
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
[!] No WPVulnDB API Token given, as a result vulnerability data has not been output.
|
[!] No WPVulnDB API Token given, as a result vulnerability data has not been output.
|
||||||
[!] You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up
|
[!] You can get a free API token with 50 daily requests by registering at https://wpscan.com/register
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"vuln_api": {
|
"vuln_api": {
|
||||||
"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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -5,12 +5,12 @@
|
|||||||
|
|
|
|
||||||
| [!] Title: WP 3.8.1 - Vuln 1
|
| [!] Title: WP 3.8.1 - Vuln 1
|
||||||
| CVSS: 5.4 (VECTOR)
|
| CVSS: 5.4 (VECTOR)
|
||||||
| Reference: https://wpvulndb.com/vulnerabilities/1
|
| Reference: https://wpscan.com/vulnerability/1
|
||||||
|
|
|
|
||||||
| [!] Title: WP 3.8.1 - Vuln 2
|
| [!] Title: WP 3.8.1 - Vuln 2
|
||||||
| Fixed in: 3.8.2
|
| Fixed in: 3.8.2
|
||||||
| References:
|
| References:
|
||||||
| - https://wpvulndb.com/vulnerabilities/2
|
| - https://wpscan.com/vulnerability/2
|
||||||
| - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-0166
|
| - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-0166
|
||||||
| - url-2
|
| - url-2
|
||||||
| - url-3
|
| - url-3
|
||||||
|
|||||||
@@ -33,11 +33,11 @@ shared_examples WPScan::References do
|
|||||||
its(:cve_urls) { should eql %w[https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-11] }
|
its(:cve_urls) { should eql %w[https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-11] }
|
||||||
|
|
||||||
its(:wpvulndb_ids) { should eql %w[12] }
|
its(:wpvulndb_ids) { should eql %w[12] }
|
||||||
its(:wpvulndb_urls) { should eql %w[https://wpvulndb.com/vulnerabilities/12] }
|
its(:wpvulndb_urls) { should eql %w[https://wpscan.com/vulnerability/12] }
|
||||||
|
|
||||||
its(:references_urls) do
|
its(:references_urls) do
|
||||||
should eql [
|
should eql [
|
||||||
'https://wpvulndb.com/vulnerabilities/12',
|
'https://wpscan.com/vulnerability/12',
|
||||||
'https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-11'
|
'https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-11'
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -238,7 +238,19 @@ shared_examples WPScan::Target::Platform::WordPress do
|
|||||||
end
|
end
|
||||||
|
|
||||||
describe '#login_url' do
|
describe '#login_url' do
|
||||||
before { allow(target).to receive(:sub_dir) }
|
before do
|
||||||
|
allow(target).to receive(:sub_dir)
|
||||||
|
|
||||||
|
WPScan::ParsedCli.options = rspec_parsed_options(cli_args)
|
||||||
|
end
|
||||||
|
|
||||||
|
let(:cli_args) { '--url https://ex.lo' }
|
||||||
|
|
||||||
|
context 'when login_uri CLI option set' do
|
||||||
|
let(:cli_args) { "#{super()} --login_uri other-login.php" }
|
||||||
|
|
||||||
|
its(:login_url) { should eql target.url('other-login.php') }
|
||||||
|
end
|
||||||
|
|
||||||
context 'when returning a 200' do
|
context 'when returning a 200' do
|
||||||
before { stub_request(:get, target.url('wp-login.php')).to_return(status: 200) }
|
before { stub_request(:get, target.url('wp-login.php')).to_return(status: 200) }
|
||||||
|
|||||||
@@ -28,10 +28,10 @@ Gem::Specification.new do |s|
|
|||||||
s.add_development_dependency 'rake', '~> 13.0'
|
s.add_development_dependency 'rake', '~> 13.0'
|
||||||
s.add_development_dependency 'rspec', '~> 3.9.0'
|
s.add_development_dependency 'rspec', '~> 3.9.0'
|
||||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||||
s.add_development_dependency 'rubocop', '~> 0.90.0'
|
s.add_development_dependency 'rubocop', '~> 1.0.0'
|
||||||
s.add_development_dependency 'rubocop-performance', '~> 1.8.0'
|
s.add_development_dependency 'rubocop-performance', '~> 1.8.0'
|
||||||
s.add_development_dependency 'simplecov', '~> 0.19.0'
|
s.add_development_dependency 'simplecov', '~> 0.19.0'
|
||||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||||
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
||||||
s.add_development_dependency 'webmock', '~> 3.8.0'
|
s.add_development_dependency 'webmock', '~> 3.9.0'
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user