Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8dab57b59c | ||
|
|
7a00cd8db1 | ||
|
|
daa0915bca | ||
|
|
ca6b6a30d8 | ||
|
|
09f2640879 | ||
|
|
f61c55b350 | ||
|
|
78d0c2540c | ||
|
|
1d0426e816 | ||
|
|
103a4049c8 | ||
|
|
cbcb1dcb33 | ||
|
|
9c36293382 | ||
|
|
2fb36dc425 | ||
|
|
c717ba5a71 | ||
|
|
7572518e3b | ||
|
|
f670133a82 | ||
|
|
a6bbf41e82 | ||
|
|
622c16932a |
@@ -7,6 +7,8 @@ AllCops:
|
||||
- 'vendor/**/*'
|
||||
Layout/LineLength:
|
||||
Max: 120
|
||||
Lint/ConstantDefinitionInBlock:
|
||||
Enabled: false
|
||||
Lint/MissingSuper:
|
||||
Enabled: false
|
||||
Lint/UriEscapeUnescape:
|
||||
|
||||
@@ -21,6 +21,7 @@ RUN chmod -R a+r /usr/local/bundle
|
||||
|
||||
FROM ruby:2.7.1-alpine
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
LABEL org.opencontainers.image.source https://github.com/wpscanteam/wpscan
|
||||
|
||||
RUN adduser -h /wpscan -g WPScan -D wpscan
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
WordPress Security Scanner
|
||||
<br>
|
||||
<br>
|
||||
<a href="https://wpscan.org/" title="homepage" target="_blank">Homepage</a> - <a href="https://wpscan.io/" title="wpscan.io" target="_blank">WPScan.io</a> - <a href="https://wpvulndb.com/" title="vulnerability database" target="_blank">Vulnerability Database</a> - <a href="https://wordpress.org/plugins/wpscan/" title="wordpress security plugin" target="_blank">WordPress Security Plugin</a>
|
||||
<a href="https://wpscan.com/" title="homepage" target="_blank">WPScan WordPress Vulnerability Database</a> - <a href="https://wordpress.org/plugins/wpscan/" title="wordpress security plugin" target="_blank">WordPress Security Plugin</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
@@ -82,7 +82,7 @@ The DB is located at ~/.wpscan/db
|
||||
|
||||
## Vulnerability Database
|
||||
|
||||
The WPScan CLI tool uses the [WPVulnDB API](https://wpvulndb.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPVulnDB](https://wpvulndb.com/users/sign_up). Up to 50 API requests per day are given free of charge to registered users. Once the 50 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPVulnDB](https://wpvulndb.com/).
|
||||
The WPScan CLI tool uses the [WPScan API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan](https://wpscan.com/register). Up to 50 API requests per day are given free of charge to registered users. Once the 50 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPScan](https://wpscan.com/).
|
||||
|
||||
## Load CLI options from file/s
|
||||
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
<%= warning_icon %> No WPVulnDB API Token given, as a result vulnerability data has not been output.
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up
|
||||
<%= warning_icon %> You can get a free API token with 50 daily requests by registering at https://wpscan.com/register
|
||||
<% end -%>
|
||||
|
||||
@@ -8,6 +8,6 @@
|
||||
"requests_remaining": <%= @status['requests_remaining'].to_json %>
|
||||
<% end -%>
|
||||
<% else -%>
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpvulndb.com/users/sign_up"
|
||||
"error": "No WPVulnDB API Token given, as a result vulnerability data has not been output.\nYou can get a free API token with 50 daily requests by registering at https://wpscan.com/register"
|
||||
<% end -%>
|
||||
},
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
|
||||
# @return [ Addressable::URI ]
|
||||
def self.uri
|
||||
@uri ||= Addressable::URI.parse('https://wpvulndb.com/api/v3/')
|
||||
@uri ||= Addressable::URI.parse('https://wpscan.com/api/v3/')
|
||||
end
|
||||
|
||||
# @param [ String ] path
|
||||
|
||||
@@ -56,7 +56,7 @@ module WPScan
|
||||
|
||||
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)
|
||||
end
|
||||
|
||||
@@ -27,7 +27,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def wpvulndb_url(id)
|
||||
"https://wpvulndb.com/vulnerabilities/#{id}"
|
||||
"https://wpscan.com/vulnerabilities/#{id}"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.7'
|
||||
VERSION = '3.8.8'
|
||||
end
|
||||
|
||||
1754
spec/fixtures/db/dynamic_finders.yml
vendored
1754
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
676
spec/fixtures/dynamic_finders/expected.yml
vendored
676
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) -->
|
||||
|
||||
|
||||
<!-- 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,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,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
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -2667,6 +2686,11 @@
|
||||
<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 -->
|
||||
<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>
|
||||
@@ -2703,6 +2727,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -2713,6 +2743,11 @@
|
||||
<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 -->
|
||||
<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>
|
||||
@@ -2974,6 +3009,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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 +3031,10 @@
|
||||
<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 -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/charty/js/charty_load_chart.js?ver=1.2"></script>
|
||||
|
||||
@@ -4104,6 +4147,11 @@
|
||||
<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 -->
|
||||
<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 +4294,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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 +4349,12 @@
|
||||
<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 -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dsidxpress/js/autocomplete.js?ver=3.0.0"></script>
|
||||
|
||||
@@ -4566,6 +4624,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">
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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 +4638,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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">
|
||||
@@ -4756,6 +4825,7 @@
|
||||
|
||||
<!-- 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/jquery.fancybox.min.js?ver=2.2"></script>
|
||||
|
||||
|
||||
<!-- ellie-code-snippet -->
|
||||
@@ -4874,6 +4944,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">
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -4888,6 +4963,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -5125,6 +5205,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -5305,6 +5389,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>
|
||||
|
||||
|
||||
<!-- fat-live-fixed -->
|
||||
<script src="http://wp.lab/wp-content/plugins/fat-live-fixed/live.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- 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">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/favorites/assets/js/favorites.min.js?ver=2.1.6"></script>
|
||||
@@ -5504,6 +5592,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -5736,6 +5829,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">
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -5821,6 +5919,12 @@
|
||||
<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 -->
|
||||
<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>
|
||||
@@ -5976,6 +6080,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -6211,6 +6319,11 @@
|
||||
<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 -->
|
||||
<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>
|
||||
@@ -6717,6 +6830,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">
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<link rel="stylesheet" id="heimu-css" href="http://wp.lab/wp-content/plugins/heimu/heimu.css?ver=1.1.2" media="all">
|
||||
|
||||
@@ -6861,6 +6979,11 @@
|
||||
<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 -->
|
||||
<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>
|
||||
@@ -7282,6 +7405,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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 +7548,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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">
|
||||
@@ -7898,6 +8031,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -7942,6 +8080,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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 +8274,11 @@
|
||||
<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 -->
|
||||
<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 +8916,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mapfit/public/js/mapfit-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -9992,6 +10145,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -10319,6 +10477,10 @@
|
||||
<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 -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/orangebox/js/orangebox.min.js?ver=3.0.0"></script>
|
||||
|
||||
@@ -10565,6 +10727,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -10646,6 +10813,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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 +10961,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>
|
||||
|
||||
|
||||
<!-- photocopier -->
|
||||
<link rel="stylesheet" id="photocopier-stylesheet-css" href="http://wp.lab/wp-content/plugins/photocopier/style.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- 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-css" href="http://wp.lab/wp-content/plugins/photonic/include/css/photonic.css?ver=1.64" type="text/css" media="all">
|
||||
@@ -11672,6 +11847,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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 +12557,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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 +13000,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -13133,6 +13325,10 @@
|
||||
<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 -->
|
||||
<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 +13705,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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 +13740,10 @@
|
||||
<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 -->
|
||||
<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>
|
||||
@@ -14067,6 +14272,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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 +14446,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">
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -14674,6 +14891,21 @@
|
||||
<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 -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tagged-sitemap/tagged-sitemap.js?ver=1.0"></script>
|
||||
|
||||
@@ -14970,6 +15202,11 @@
|
||||
<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 -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themify-shortcodes/themify/js/main.js?ver=1.0.6"></script>
|
||||
|
||||
@@ -15415,6 +15652,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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">
|
||||
@@ -15543,6 +15785,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>
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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">
|
||||
@@ -19865,6 +20120,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">
|
||||
|
||||
|
||||
<!-- 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 -->
|
||||
<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>
|
||||
@@ -19961,6 +20220,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>
|
||||
|
||||
|
||||
<!-- xshare -->
|
||||
<script src="http://wp.lab/wp-content/plugins/xshare/assets/js/xshare.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- 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="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,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 ""
|
||||
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,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"
|
||||
@@ -17,7 +17,7 @@
|
||||
|
|
||||
| [!] Title: Dignitas 1.1.9 - Privilage Escalation
|
||||
| References:
|
||||
| - https://wpvulndb.com/vulnerabilities/7825
|
||||
| - https://wpscan.com/vulnerabilities/7825
|
||||
| - http://research.evex.pw/?vuln=6
|
||||
| - https://packetstormsecurity.com/files/130652/
|
||||
|
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
[!] 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": {
|
||||
"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
|
||||
| CVSS: 5.4 (VECTOR)
|
||||
| Reference: https://wpvulndb.com/vulnerabilities/1
|
||||
| Reference: https://wpscan.com/vulnerabilities/1
|
||||
|
|
||||
| [!] Title: WP 3.8.1 - Vuln 2
|
||||
| Fixed in: 3.8.2
|
||||
| References:
|
||||
| - https://wpvulndb.com/vulnerabilities/2
|
||||
| - https://wpscan.com/vulnerabilities/2
|
||||
| - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-0166
|
||||
| - url-2
|
||||
| - 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(: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/vulnerabilities/12] }
|
||||
|
||||
its(:references_urls) do
|
||||
should eql [
|
||||
'https://wpvulndb.com/vulnerabilities/12',
|
||||
'https://wpscan.com/vulnerabilities/12',
|
||||
'https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-11'
|
||||
]
|
||||
end
|
||||
|
||||
@@ -28,10 +28,10 @@ Gem::Specification.new do |s|
|
||||
s.add_development_dependency 'rake', '~> 13.0'
|
||||
s.add_development_dependency 'rspec', '~> 3.9.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.90.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.93.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.8.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.19.0'
|
||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user