Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5fd7e0ed22 | ||
|
|
d9f6c71015 | ||
|
|
61a3106b3b | ||
|
|
20eb2d825d | ||
|
|
906557d2ec | ||
|
|
c1e278ea80 | ||
|
|
e2d616a53f | ||
|
|
c6802ccdd2 | ||
|
|
abd50fd037 | ||
|
|
4515be53b4 | ||
|
|
920a25bb25 | ||
|
|
648dd05069 | ||
|
|
713edcecca |
@@ -9,7 +9,7 @@ module WPScan
|
||||
def aggressive(_opts = {})
|
||||
path = 'installer-log.txt'
|
||||
|
||||
return unless /DUPLICATOR INSTALL-LOG/.match?(target.head_and_get(path).body)
|
||||
return unless /DUPLICATOR(-|\s)?(PRO|LITE)?:? INSTALL-LOG/i.match?(target.head_and_get(path).body)
|
||||
|
||||
Model::DuplicatorInstallerLog.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
|
||||
@@ -56,9 +56,7 @@ module WPScan
|
||||
|
||||
homepage_result = find(target.homepage_res, opts)
|
||||
|
||||
if homepage_result
|
||||
return homepage_result unless homepage_result.is_a?(Array) && homepage_result.empty?
|
||||
end
|
||||
return homepage_result unless homepage_result.nil? || homepage_result&.is_a?(Array) && homepage_result&.empty?
|
||||
|
||||
find(target.error_404_res, opts)
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.6'
|
||||
VERSION = '3.8.7'
|
||||
end
|
||||
|
||||
@@ -52,9 +52,10 @@ describe WPScan::Controller::Core do
|
||||
%i[apache iis nginx].each do |server|
|
||||
context "when #{server}" do
|
||||
let(:cli_args) { "#{super()} --server #{server}" }
|
||||
let(:servers) { [:Apache, nil, :IIS, :Nginx] }
|
||||
|
||||
it "loads the #{server.capitalize} module and returns :#{server}" do
|
||||
@stubbed_server = [:Apache, nil, :IIS, :Nginx].sample
|
||||
@stubbed_server = servers.sample
|
||||
@expected = server == :iis ? :IIS : server.to_s.camelize.to_sym
|
||||
end
|
||||
end
|
||||
|
||||
@@ -35,15 +35,47 @@ describe WPScan::Finders::InterestingFindings::DuplicatorInstallerLog do
|
||||
end
|
||||
|
||||
context 'when the body matches' do
|
||||
let(:body) { File.read(fixtures.join(filename)) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
after do
|
||||
expect(finder.aggressive).to eql WPScan::Model::DuplicatorInstallerLog.new(
|
||||
log_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
end
|
||||
|
||||
context 'when old versions of the file' do
|
||||
let(:body) { File.read(fixtures.join('old.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
|
||||
context 'when newest versions of the file' do
|
||||
context 'when PRO format 1' do
|
||||
let(:body) { File.read(fixtures.join('pro.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
|
||||
context 'when PRO format 2' do
|
||||
let(:body) { File.read(fixtures.join('pro2.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
|
||||
context 'when LITE' do
|
||||
let(:body) { File.read(fixtures.join('lite.txt')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
# handled in after loop above
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
1735
spec/fixtures/db/dynamic_finders.yml
vendored
1735
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
643
spec/fixtures/dynamic_finders/expected.yml
vendored
643
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
29
spec/fixtures/dynamic_finders/plugin_version/addonify-quick-view/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/addonify-quick-view/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "addonify-quick-view",
|
||||
"version": "1.0.0",
|
||||
"description": "Addonify WooCoomerce Quick View plugin adds functionality to have a WooCoomerce product quick view preview on a modal window.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/addonify/addonify-quick-view.git"
|
||||
},
|
||||
"keywords": [
|
||||
"woocommerce",
|
||||
"quick",
|
||||
"view",
|
||||
"addonify"
|
||||
],
|
||||
"author": "Addonify",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/addonify/addonify-quick-view/issues"
|
||||
},
|
||||
"homepage": "https://github.com/addonify/addonify-quick-view#readme",
|
||||
"devDependencies": {
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-wp-pot": "^2.4.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
# Copyright (C) 2020 AWSM Innovations
|
||||
# This file is distributed under the same license as the Auto Delete Applications - Add-on for WP Job Openings plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Auto Delete Applications - Add-on for WP Job Openings 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://awsm.in/support\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Awsm Innovations <hello@awsm.in>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-28T17:05:59+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: auto-delete-wp-job-openings\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: auto-delete.php:143
|
||||
msgid "Auto Delete Applications - Add-on for WP Job Openings"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpjobopenings.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This is an add-on for WP Job Openings Plugin, which will let you delete the received applications periodically."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "AWSM Innovations"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://awsm.in/"
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:110
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:120
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:127
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: main plugin, %2$s: current plugin, %3$s: plugin activation link, %4$s: line break
|
||||
#: auto-delete.php:146
|
||||
msgid "The plugin %2$s needs the plugin %1$s active. %4$s Please %3$s %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: main plugin, %2$s: current plugin, %3$s: minimum required version of the main plugin, %4$s: plugin updation link
|
||||
#: auto-delete.php:149
|
||||
msgid "%2$s plugin requires %1$s version %3$s. Please %4$s %1$s plugin to the latest version."
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:165
|
||||
msgid "Auto delete applications "
|
||||
msgstr ""
|
||||
|
||||
#: auto-delete.php:168
|
||||
msgid "CAUTION: Checking this option will delete applications after the selected period from the date of application. (For example, if you configure the option for 6 months, all the applications you have received before 6 months will be deleted immediately and every application that completes 6 months will be deleted from next day onwards automatically)."
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:5
|
||||
msgid "Day(s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:6
|
||||
msgid "Month(s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:7
|
||||
msgid "Year(s)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:15
|
||||
msgid "Enable auto delete applications"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:23
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:46
|
||||
msgid "Enable force delete"
|
||||
msgstr ""
|
||||
|
||||
#: inc/remove-applications.php:48
|
||||
msgid "Whether to force delete applications or move it to trash."
|
||||
msgstr ""
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/badgeos-edd-integration/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/badgeos-edd-integration/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# Changelog
|
||||
|
||||
## 1.1
|
||||
- Fix: Resolve conflict with BadgeOS Community add-on
|
||||
|
||||
## 1.0
|
||||
- Initial
|
||||
@@ -0,0 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0
|
||||
- Initial
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/badgeos-rest-api-addon/change_log/CHANGELOG.md
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/badgeos-rest-api-addon/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
# Changelog
|
||||
## 1.0
|
||||
- Initial
|
||||
25
spec/fixtures/dynamic_finders/plugin_version/blockmeister/change_log/changelog.md
vendored
Normal file
25
spec/fixtures/dynamic_finders/plugin_version/blockmeister/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# Change Log
|
||||
|
||||
## [2.0.1] - 2020-09-03 ##
|
||||
|
||||
### Fixed
|
||||
- keywords taxonomy's edit capability
|
||||
|
||||
## [2.0.0] - 2020-08-20
|
||||
First public release.
|
||||
|
||||
### Fixed
|
||||
- refactored complete 1.0 code set
|
||||
|
||||
### Added
|
||||
- block settings menu item to add selected blocks to a new block pattern
|
||||
- category taxonomy
|
||||
- keyword taxonomy
|
||||
- viewport width setting
|
||||
- limit pattern building to administrators
|
||||
- admin capabilities
|
||||
- made translatable
|
||||
- Dutch translation
|
||||
|
||||
## [1.0.x] - 2020-07-10
|
||||
Private releases
|
||||
1506
spec/fixtures/dynamic_finders/plugin_version/boo-recipes/translation_file/languages/boo-recipes-de_DE.po
vendored
Normal file
1506
spec/fixtures/dynamic_finders/plugin_version/boo-recipes/translation_file/languages/boo-recipes-de_DE.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7236
spec/fixtures/dynamic_finders/plugin_version/branda-white-labeling/translation_file/languages/ub.pot
vendored
Normal file
7236
spec/fixtures/dynamic_finders/plugin_version/branda-white-labeling/translation_file/languages/ub.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,851 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Classic Quiz Feedback Survey 1.0.0\n"
|
||||
"POT-Creation-Date: 2020-08-28 19:56+0530\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:22+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Amit Biswas\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
|
||||
"_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: assets\n"
|
||||
"X-Poedit-SearchPathExcluded-1: admin/js\n"
|
||||
"X-Poedit-SearchPathExcluded-2: admin/css\n"
|
||||
"X-Poedit-SearchPathExcluded-3: .git\n"
|
||||
"X-Poedit-SearchPathExcluded-4: .gitignore\n"
|
||||
|
||||
#: admin/admin-scripts.php:91
|
||||
msgid "Required field contains invalid entry."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin-scripts.php:92
|
||||
msgid "Required field value cannot be null."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:203 admin/form-handle.php:318 inc/submission.php:87
|
||||
msgid "Security check unsuccessful."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:220 admin/form-handle.php:335
|
||||
msgid "Permission Denied."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:255
|
||||
#, php-format
|
||||
msgid "[Duplicate #%s]"
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:271
|
||||
msgid "Mail successfully sent."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:288
|
||||
msgid "Mail not send. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:356 inc/roles.php:93
|
||||
msgid "Cqfs Result"
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:358 inc/roles.php:95
|
||||
msgid "This page displays CQFS results. Please do not delete this page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:375
|
||||
msgid "Result page created successfully."
|
||||
msgstr ""
|
||||
|
||||
#: admin/form-handle.php:390
|
||||
msgid "Cannot create result page. Please refresh and check."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:63
|
||||
#, php-format
|
||||
msgid "This email was sent from <a href=\"%s\">%s</a> © %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:82
|
||||
msgid "CQFS Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:83
|
||||
msgid "CQFS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:98 admin/menu-pages.php:99
|
||||
msgid "CQFS Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:118
|
||||
msgid "Welcome to CQFS Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:127 cqfs.php:219
|
||||
msgid "Classic Quiz Feedback Survey"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:130
|
||||
msgid ""
|
||||
"This plugin is a free open source project. If this plugin is useful to "
|
||||
"you, please support me and keep this alive."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:135
|
||||
msgid "Donate via PayPal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:140
|
||||
msgid "Full Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:147
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:156
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:165
|
||||
msgid "CQFS shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:174
|
||||
msgid "Action Hooks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:183
|
||||
msgid "Filter Hooks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:192
|
||||
msgid "Live Demos"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:198
|
||||
msgid "Github Repositiroy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:203
|
||||
msgid "classic quiz feedback survey"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:223
|
||||
msgid "Result page is missing."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:233
|
||||
msgid "Create Result Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:242
|
||||
msgid "Great! Result page exists."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:272
|
||||
msgid "Mail Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:283
|
||||
msgid "Sender Email ID (from)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:285
|
||||
msgid ""
|
||||
"If not set, administrator email will be used. Try to use email id same as "
|
||||
"domain."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:295
|
||||
msgid "Email to admin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:297
|
||||
msgid ""
|
||||
"Send email to admin when a form is submitted by a user. Administrator "
|
||||
"email will be used."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:310
|
||||
msgid "Email to user."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:312
|
||||
msgid "Send email to the user when a form is submitted by that user."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:325
|
||||
msgid "Additional Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:327
|
||||
msgid ""
|
||||
"Add any additional notes in the email. It will appear above the footer. "
|
||||
"HTML allowed as post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:339
|
||||
msgid "Email Footer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:341
|
||||
msgid "Add custom footer content for the email. HTML allowed as post."
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:368 admin/menu-pages.php:369
|
||||
msgid "Add Question"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:378 admin/menu-pages.php:379
|
||||
msgid "Add Build"
|
||||
msgstr ""
|
||||
|
||||
#: admin/menu-pages.php:388 admin/menu-pages.php:389
|
||||
msgid "Add Entry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:39
|
||||
msgid "Build Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:49 inc/admin-columns.php:98
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:65
|
||||
msgid "Build Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:66
|
||||
msgid "Click to select the shortcode. Then copy it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:77
|
||||
msgid "Enable title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:78
|
||||
msgid "Enable ajax"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:79
|
||||
msgid "Enable guest"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:80
|
||||
msgid "Enable required"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:81
|
||||
msgid "Enable pagination"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:82
|
||||
msgid "Custom class"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:83
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:84
|
||||
msgid "Orderby"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:87
|
||||
msgid "Available attributes and example use:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:100
|
||||
msgid "Full documentation is here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:137
|
||||
msgid "Questions by Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:138
|
||||
msgid "You have selected the following categories for questions."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:147
|
||||
msgid "No categories are selected. Please select a category."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:158 inc/admin-columns.php:97
|
||||
msgid "Build Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:158
|
||||
#: admin/meta-boxes/metabox-build.php:186
|
||||
#: admin/meta-boxes/metabox-question.php:70
|
||||
#: admin/meta-boxes/metabox-question.php:81
|
||||
#: admin/meta-boxes/metabox-question.php:108
|
||||
msgid "*"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:159
|
||||
msgid "Select a build type."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:165
|
||||
#: admin/meta-boxes/metabox-question.php:88
|
||||
msgid "Please Select..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:166
|
||||
msgid "Quiz"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:167
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:168
|
||||
msgid "Survey"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:186
|
||||
msgid "Pass Percentage"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:187
|
||||
msgid ""
|
||||
"Set a percentage for pass mark. It is needed for all types as it will help "
|
||||
"us to assess things better."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:190 inc/utilities.php:236
|
||||
#: inc/utilities.php:245
|
||||
msgid "%"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:203
|
||||
msgid "Pass Message (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:204
|
||||
#: admin/meta-boxes/metabox-build.php:215
|
||||
msgid "Leave empty for default."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-build.php:214
|
||||
msgid "Fail Message (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:40
|
||||
msgid "Entry Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:50
|
||||
msgid "Edit This Entry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:59
|
||||
msgid "Entry Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:78
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:79
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:97 inc/utilities.php:704
|
||||
msgid "View Result"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:98
|
||||
msgid "Email to user"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:146 inc/admin-columns.php:159
|
||||
msgid "Form ID (cqfs build)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:147
|
||||
msgid "The form ID which user have submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:160 inc/admin-columns.php:160
|
||||
msgid "Form Type (cqfs build)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:161
|
||||
msgid "The form type which user have submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:173 inc/admin-columns.php:161
|
||||
msgid "Result"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:174
|
||||
msgid "The result."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:180
|
||||
msgid "Passed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:181
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:198
|
||||
msgid "Percentage"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:199
|
||||
msgid "Percentage obtained."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:212 inc/cpt.php:36 inc/cpt.php:38
|
||||
#: inc/cpt.php:40 inc/cpt.php:57
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:213
|
||||
msgid ""
|
||||
"The CQFS question list for this entry. Each line break represents a "
|
||||
"question."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:223
|
||||
#: admin/meta-boxes/metabox-question.php:70
|
||||
msgid "Answers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:224
|
||||
msgid ""
|
||||
"The CQFS answer list for this entry. Each line break represents an answer."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:234
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:235
|
||||
msgid ""
|
||||
"The CQFS answer status list for this entry. Each line break represents a "
|
||||
"status."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:245
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:246
|
||||
msgid ""
|
||||
"The additional notes for each question. Each line break represents a note."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:256
|
||||
msgid "Remarks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:257
|
||||
msgid "Pass or fail message."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:267
|
||||
msgid "User Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-entry.php:268
|
||||
msgid "Email ID of the user who have submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:38
|
||||
msgid "Question Data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:71
|
||||
msgid ""
|
||||
"Please use separate line for each answer. Each line will be considered as "
|
||||
"1, 2, 3 ... and so on."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:81 inc/admin-columns.php:48
|
||||
msgid "Answer Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:82
|
||||
msgid ""
|
||||
"If this question have more than one correct answer, select check boxes. "
|
||||
"Otherwise select radio button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:89
|
||||
msgid "Radio Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:90
|
||||
msgid "Check Boxes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:108
|
||||
msgid "Correct Answer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:109
|
||||
msgid ""
|
||||
"Consider the answers (above) in each line as 1, 2, 3... and so on. Please "
|
||||
"separate with comma for multiple correct answers. eg; 2,3 (no space)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:118
|
||||
msgid "Additional Note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/meta-boxes/metabox-question.php:119
|
||||
msgid ""
|
||||
"This is hidden in questionnaire and showed in the result page for build "
|
||||
"type \"quiz\"."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:40
|
||||
#: cqfs-templates/template-results.php:158
|
||||
msgid "Invalid Result."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:59 inc/utilities.php:233
|
||||
msgid "Congratulations! You have passed."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:61 inc/utilities.php:242
|
||||
msgid "Sorry! You have failed."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:93 cqfs.php:251
|
||||
msgid "You answered: "
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:94 cqfs.php:252
|
||||
msgid "Status: "
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:95 cqfs.php:253
|
||||
msgid "Note: "
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:129 cqfs.php:249 inc/utilities.php:610
|
||||
msgid "Thank you for your feedback."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:147 cqfs.php:250
|
||||
msgid "Thank you for your participation in the survey."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:166
|
||||
msgid "Sorry, something went terribly wrong. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs-templates/template-results.php:171
|
||||
msgid "No results found."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs.php:218
|
||||
#, php-format
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: cqfs.php:220
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: cqfs.php:260
|
||||
msgid "Invalid Result"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin-columns.php:162
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:37
|
||||
msgid "Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:39
|
||||
msgid "Question:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:41
|
||||
msgid "View Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:42
|
||||
msgid "Add New Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:43 inc/cpt.php:92 inc/cpt.php:140
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:44
|
||||
msgid "Edit Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:45
|
||||
msgid "Update Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:46
|
||||
msgid "Search Question"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:47
|
||||
msgid "Question Not found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:48 inc/cpt.php:97 inc/cpt.php:145
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:85 inc/cpt.php:86 inc/cpt.php:87 inc/cpt.php:89
|
||||
#: inc/cpt.php:106
|
||||
msgid "Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:88
|
||||
msgid "Build:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:90
|
||||
msgid "View Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:91
|
||||
msgid "Add New Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:93
|
||||
msgid "Edit Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:94
|
||||
msgid "Update Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:95
|
||||
msgid "Search Build"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:96
|
||||
msgid "Build Not found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:133 inc/cpt.php:134 inc/cpt.php:135 inc/cpt.php:154
|
||||
msgid "Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:136
|
||||
msgid "Entry:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:137
|
||||
msgid "Entries"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:138
|
||||
msgid "View Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:139
|
||||
msgid "Add New Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:141
|
||||
msgid "Edit Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:142
|
||||
msgid "Update Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:143
|
||||
msgid "Search Entry"
|
||||
msgstr ""
|
||||
|
||||
#: inc/cpt.php:144
|
||||
msgid "Entry Not found"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:77
|
||||
msgid "Something went terribly wrong. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:136
|
||||
msgid ". "
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:201
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:202
|
||||
msgid "Prev"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:203
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:216
|
||||
msgid "Processing..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/shortcode.php:217
|
||||
msgid "One or more fields are required. Please check again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:127 inc/submission.php:131
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<div class=\"cqfs-return-msg success\"><p><span class=\"cqfs-icon success-"
|
||||
"icon\"></span>%s</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:128
|
||||
msgid "Login Successful."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:132 inc/utilities.php:306
|
||||
msgid "You are now logged in."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:218
|
||||
msgid "Correct Answer."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:218
|
||||
msgid "Wrong Answer."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:231
|
||||
msgid "You have skipped this question."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:238
|
||||
msgid "Not Available."
|
||||
msgstr ""
|
||||
|
||||
#: inc/submission.php:299
|
||||
msgid "Guest"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:235
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<div class=\"cqfs-pass-msg\"><p class=\"cqfs-percentage\">%s correct.</"
|
||||
"p><p>%s</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:244
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<div class=\"cqfs-fail-msg\"><p class=\"cqfs-percentage\">%s correct.</"
|
||||
"p><p class=\"cqfs-remark\">%s</p></div>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:315
|
||||
msgid "Login and submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:321
|
||||
msgid "Or you may submit as a guest. Please provide the following info."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:328
|
||||
msgid "Invalid Name. Min 3, max 24 characters allowed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:333
|
||||
msgid "Your Name *"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:335
|
||||
msgid "please type your name."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:340
|
||||
msgid "Invalid Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:345
|
||||
msgid "Your Email *"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:347
|
||||
msgid "please type email."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:399 inc/utilities.php:468
|
||||
msgid "×"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:400
|
||||
msgid "Please login to submit"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:413
|
||||
msgid "Secure Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:415
|
||||
msgid "Username or email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:419
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:423
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:469
|
||||
msgid "Please confirm"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:494
|
||||
msgid "Send Email"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:530
|
||||
msgid "Classic quiz feedback survey"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:601
|
||||
#, php-format
|
||||
msgid "Hello %s,"
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:607
|
||||
msgid "Congratulations! You have passed the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:608
|
||||
msgid "Sorry! You did not passed the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:609
|
||||
msgid ""
|
||||
"Thank you for participating in the quiz. Here is your result page link "
|
||||
"below."
|
||||
msgstr ""
|
||||
|
||||
#: inc/utilities.php:611
|
||||
msgid "Thank you for participating in the survey."
|
||||
msgstr ""
|
||||
@@ -1193,8 +1193,8 @@ s0.parentNode.insertBefore(s1,s0);
|
||||
<!-- This site has installed PayPal for WooCommerce v2.1.12 - https://www.angelleye.com/product/woocommerce-paypal-plugin/ -->
|
||||
|
||||
|
||||
|
||||
<!-- provesource -->
|
||||
<!-- Start of Async ProveSource Code (Wordpress / Woocommerce v2.1.0) -->
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,192 @@
|
||||
# Copyright (C) 2020 Jeff Monteiro
|
||||
# This file is distributed under the same license as the Cool Admin Theme Lite for WordPress plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cool Admin Theme Lite for WordPress 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cool-admin-theme-lite-for-wp\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-25T16:51:57-03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: catforwp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Cool Admin Theme Lite for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/jeffsmonteiro/catliteforwp/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Turn your WordPress Admin Interface more clean, friendly and actual using this Free and Open Source WordPress Admin Theme. To get a more fun interface, you can enable this theme to use emojis to replace dashicons! ;)"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Jeff Monteiro"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.linkedin.com/in/jeff-monteiro"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:16
|
||||
#: inc/plugin-settings.php:17
|
||||
msgid "Cool Admin Theme Lite"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:30
|
||||
msgid "Emojify Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:31
|
||||
msgid "Thanks for using this plugin! Currently, Emojify offers 60 pre-configured emojis for the most popular plugins of WP.org repository. So, the major part of plugins will not display an icon on admin menu after activation. In this case, is recommended that you create a custom css to add this emoji. Over time, new emojis will be added by default."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:35
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:46
|
||||
msgid "Emojify Menu"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:47
|
||||
msgid "Check if you want to replace icons of the admin menu by emojis 😁"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:52
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:53
|
||||
msgid "Add new emojis using custom CSS code."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:62
|
||||
msgid "Be a PRO!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:64
|
||||
msgid "%1$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:66
|
||||
msgid "Get a White Label Admin with the Pro"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:68
|
||||
msgid "- Hide the WordPress brand in the navigation bar"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:69
|
||||
msgid "- Use your own brand on the top bar"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:70
|
||||
msgid "- Replace the WordPress brand with your own brand on the login page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:71
|
||||
msgid "- Change the brand link on the login page to your homepage"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:72
|
||||
msgid "- Change the background color of the login page"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:73
|
||||
msgid "- Replace the WordPress brand with your brand in the edit block (Gutenberg)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:74
|
||||
msgid "- Add a custom favicon to the Admin Area"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:75
|
||||
msgid "- Choose emojis for all sidebar menus using a picker"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:76
|
||||
msgid "- Hide or replace WordPress text at the bottom of the Admin Area"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:77
|
||||
msgid "- Hide the WordPress version text at the bottom of the Admin Area"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:78
|
||||
msgid "- Remove non functional widgets from dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:79
|
||||
msgid "- And more ..."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:81
|
||||
msgid "Check it out at "
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:81
|
||||
msgid "wpadmintheme.com"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:94
|
||||
msgid "Emojify not working"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:95
|
||||
msgid "To enable emojify you need to check the option on Emojify Settings tab. If Emojify is already enabled, can be your OS don't have emoji characteres installed."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:100
|
||||
msgid "Where do I customize emojis?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:101
|
||||
msgid "On free version you have a default set of emojis, but only for 60 items (the most popular). If you want to customize these items or add new items (when you get new plugins not coverted by our default sytlesheet), you can use the Custom CSS field to do it."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:106
|
||||
msgid "Can I use custom icons and emojis?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:107
|
||||
msgid "Maybe. After activation of the Emojify feature, all icons are replaced by emojis. May you can use the Custom CSS field to make changes. If you know a little bit of CSS you will do it."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:112
|
||||
msgid "Emojis that I set in the Custom CSS are not displayed"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:113
|
||||
msgid "Try to clear browser cache and refresh the page. If you are using some cache plugin like Total Cache, try to refresh the cache."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:118
|
||||
msgid "Some emojis don't appear in the menu"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:119
|
||||
msgid "Our plugin cover the 60 most populars in WordPress Plugin Repository, maybe the plugin that you are using are not covered. So, try to add the emoji using the Custom CSS field."
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:124
|
||||
msgid "Have a bug?"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:125
|
||||
msgid "Open an issue on %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:125
|
||||
msgid "Git Hub Repository"
|
||||
msgstr ""
|
||||
|
||||
#: inc/plugin-settings.php:136
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,71 @@
|
||||
# Copyright (C) 2020 Condless
|
||||
# This file is distributed under the same license as the Default Attributes for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Default Attributes for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/default-"
|
||||
"attributes-for-woocommerce\n"
|
||||
"Language-Team: Condless <info@condless.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-09-02 10:14+0300\n"
|
||||
"PO-Revision-Date: 2020-09-03 18:20+0300\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"X-Domain: default-attributes-for-woocommerce\n"
|
||||
"Last-Translator: Condless <info@condless.com>\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? "
|
||||
"2 : 3);\n"
|
||||
"Language: he_IL\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Default Attributes for WooCommerce"
|
||||
msgstr "תכונות ברירת מחדל לווקומרס"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://en.condless.com/default-attributes-for-woocommerce/"
|
||||
msgstr "https://www.condless.com/default-attributes-for-woocommerce/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"WooCommerce plugin that allows you to apply rules for how default attributes "
|
||||
"will be set."
|
||||
msgstr "תוסף לווקומרס המאפשר לך להחיל חוקים על איך ייקבעו תכונות הברירת מחדל."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Condless"
|
||||
msgstr "Condless"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.condless.com/"
|
||||
msgstr "https://www.condless.com/"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:148
|
||||
msgid ""
|
||||
"Set as default an option if it is the only option that has in-stock "
|
||||
"variations"
|
||||
msgstr ""
|
||||
"קבע כברירת מחדל אפשרות אם זו האפשרות היחידה בעלת וריאציות אשר קיימות במלאי"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:155
|
||||
msgid "Set as default the first option of each attribute"
|
||||
msgstr "קבע כברירת מחדל את האפשרות הראשונה בכל תכונה"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:162
|
||||
msgid "Disable out of stock variations"
|
||||
msgstr "בטל וריאציות שאזלו מהמלאי"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:169
|
||||
msgid ""
|
||||
"In archive pages display for variable products the attribute name instead of"
|
||||
msgstr "בעמודי ארכיון הצג במוצרים עם וריאציות את שם התכונה במקום"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:176
|
||||
msgid ""
|
||||
"In single product pages remove the select options text if default attribute "
|
||||
"is set"
|
||||
msgstr "בעמודי מוצר הסר את הטקסט \"בחר אפשרויות\" אם הוגדרה תכונת ברירת מחדל"
|
||||
|
||||
#: default-attributes-for-woocommerce.php:269
|
||||
msgid "Determines this attribute default value in variable products."
|
||||
msgstr "קובע את תכונת ברירת המחדל במוצרים עם וריאציות."
|
||||
@@ -0,0 +1,865 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#: includes/settings/settings-pyg.php:294
|
||||
#: includes/settings/settings-pyg.php:302
|
||||
#: includes/settings/settings-pyg.php:310
|
||||
#: includes/settings/settings-pyg.php:318
|
||||
#: includes/settings/settings-pyg.php:337
|
||||
#: includes/settings/settings-pyg.php:345
|
||||
#: includes/settings/settings-pyg.php:353
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-06-16 15:43+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Gateway Payougo Checkout"
|
||||
msgstr "Passerelle Payougo de paiement"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://payougo.com/"
|
||||
msgstr "https://payougo.com/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Accept all Mobile money payment (Orange, MTN), Simplify your merchant services and your payment gateway today! "
|
||||
msgstr "Acceptez tous les paiements Mobile Money (Orange, MTN), simplifiez vos services marchands et votre passerelle de paiement dès aujourd'hui!"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "BusinessOne"
|
||||
msgstr "BusinessOne"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://payougo.com/"
|
||||
msgstr "https://payougo.com/"
|
||||
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:62
|
||||
msgid "Capture Charge"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:86
|
||||
msgid ""
|
||||
"NOTE: PaYouGo does not accept decimal places for the currency in which you "
|
||||
"are transacting. The \"Number of Decimals\" "
|
||||
"."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:181
|
||||
msgid "Unable to capture charge!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:189
|
||||
#, php-format
|
||||
msgid "PaYouGo Checkout charge complete (Charge ID: %s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:231
|
||||
msgid "Unable to void charge!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:233
|
||||
#, php-format
|
||||
msgid "PaYouGo Checkout charge voided (Charge ID: %s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:340
|
||||
msgid "This represents the fee PaYouGo collects for the transaction."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:341
|
||||
msgid "PaYouGo Fee:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:350
|
||||
msgid ""
|
||||
"This represents the net total that will be credited to your PaYouGo account. "
|
||||
"This may be in a different currency than is set in your PaYouGo account."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:351
|
||||
msgid "PaYouGo Payout:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-admin-handler.php:387
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%1$sWarning!%2$s PaYouGo Checkout will drop support for WooCommerce %3$s in "
|
||||
"a soon to be released update. To continue using PaYouGo Checkout please "
|
||||
"%4$supdate to %1$sWooCommerce 3.0%2$s or greater%5$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:22
|
||||
msgid "Unable to communicate with PaYouGo. Please try your payment again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:23
|
||||
msgid ""
|
||||
"PaYouGo rejected your email address because it is not valid. Please double-"
|
||||
"check your email address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:26
|
||||
msgid "Your PaYouGo checkout session is invalid. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:27
|
||||
msgid "Your PaYouGo checkout session has expired. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:29
|
||||
msgid ""
|
||||
"Your PaYouGo payment has already been completed. Please contact the store "
|
||||
"owner for more information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:30
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please check out again or "
|
||||
"contact PaYouGo for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:31
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please select an alternative "
|
||||
"method of payment or contact PaYouGo for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:33
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please return to PaYouGo and "
|
||||
"select a new method of payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:35
|
||||
msgid ""
|
||||
"You have not approved this transaction on the PaYouGo website. Please check "
|
||||
"out again and be sure to complete all steps of the PaYouGo checkout process."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:36
|
||||
msgid ""
|
||||
"Your shipping address may not be in a different country than your country of "
|
||||
"residence. Please double-check your shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:37
|
||||
msgid ""
|
||||
"This store does not accept transactions from buyers in your country. Please "
|
||||
"contact the store owner for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:38
|
||||
msgid ""
|
||||
"The transaction is over the threshold allowed by this store. Please contact "
|
||||
"the store owner for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:40
|
||||
msgid ""
|
||||
"Your transaction was declined. Please contact the store owner for "
|
||||
"assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:41
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:46
|
||||
msgid ""
|
||||
"The country in your shipping address is not valid. Please double-check your "
|
||||
"shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:42
|
||||
msgid ""
|
||||
"The street address in your shipping address is not valid. Please double-"
|
||||
"check your shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:43
|
||||
msgid ""
|
||||
"The city in your shipping address is not valid. Please double-check your "
|
||||
"shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:44
|
||||
msgid ""
|
||||
"The state in your shipping address is not valid. Please double-check your "
|
||||
"shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:45
|
||||
msgid ""
|
||||
"The ZIP code or postal code in your shipping address is not valid. Please "
|
||||
"double-check your shipping address and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:47
|
||||
msgid ""
|
||||
"PaYouGo rejected your shipping address because the city, state, and/or ZIP "
|
||||
"code are incorrect. Please double-check that they are all spelled correctly "
|
||||
"and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:49
|
||||
msgid ""
|
||||
"Your PaYouGo payment could not be processed. Please contact PaYouGo for "
|
||||
"assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:51
|
||||
msgid ""
|
||||
"The redemption code(s) you entered on PaYouGo cannot be used at this time. "
|
||||
"Please return to PaYouGo and remove them."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:54
|
||||
msgid ""
|
||||
"Your funding instrument is invalid. Please check out again and select a new "
|
||||
"funding source."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-api-error.php:55
|
||||
#, php-format
|
||||
msgid ""
|
||||
"An error (%s) occurred while processing your PaYouGo payment. Please "
|
||||
"contact the store owner for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:65
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:135
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:156
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:314
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:359
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:394
|
||||
msgid "Check out with PaYouGo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:349
|
||||
msgid "— or —"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-cart-handler.php:364
|
||||
msgid "Pay with PaYouGo Credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:77
|
||||
msgid "Confirm your PaYouGo order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:258
|
||||
msgid "Billing details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:261
|
||||
msgid "Address:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:263
|
||||
msgid "Name:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:267
|
||||
msgid "Email:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:273
|
||||
msgid "Phone:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:297
|
||||
msgid "Create an account?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:306
|
||||
msgid ""
|
||||
"Create an account by entering the information below. If you are a returning "
|
||||
"customer please login at the top of the page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:346
|
||||
msgid "Shipping details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid "Your payment with Payougo is failed. Please check out again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid ""
|
||||
"You returned to the site without making a payment. Please check out again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid " : Paiement réussi pour la commande "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:436
|
||||
msgid "Paiement réussi pour la commande #"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:480
|
||||
msgid ""
|
||||
"Sorry, an error occurred while trying to retrieve your information from "
|
||||
"PaYouGo. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:481
|
||||
msgid "PAYMENT FAILED<br>Payougo transaction code : %s"
|
||||
msgstr "PAIEMENT ECHEC<br>Code de la transaction Payougo : %s"
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:514
|
||||
msgid "PAYMENT SUCCESS<br>Payougo transaction code : %s"
|
||||
msgstr "PAIEMENT SUCCESS<br>Code de la transaction Payougo : %s"
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:485
|
||||
msgid "Your Payougo checkout session has expired. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:588
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:648
|
||||
msgid "Your payment with PaYougo is failed. Please check out again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:653
|
||||
msgid ""
|
||||
"You have cancelled Checkout with Payougo. Please try to process your order "
|
||||
"again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1023
|
||||
#: includes/class-wc-gateway-pyg-ipn-handler.php:190
|
||||
msgid ""
|
||||
"Payment authorized. Change payment status to processing or complete to "
|
||||
"capture funds."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1025
|
||||
#: includes/class-wc-gateway-pyg-ipn-handler.php:192
|
||||
#, php-format
|
||||
msgid "Payment pending (%s)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1196
|
||||
msgid "Your PaYouGo checkout session has expired. Please check out again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1207
|
||||
msgid "The payment method was updated for this subscription."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1212
|
||||
msgid "The payment method was updated for all your current subscriptions."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1221
|
||||
msgid ""
|
||||
"There was a problem updating your payment method. Please try again later or "
|
||||
"use a different payment method."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-checkout-handler.php:1244
|
||||
msgid ""
|
||||
"You have cancelled Checkout with PaYouGo. The payment method was not updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:82
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:287
|
||||
msgid "Error: You must enter API password."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:302
|
||||
msgid "Missing credential"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:306
|
||||
msgid "Invalid credential object"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:310
|
||||
msgid "Invalid environment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-client.php:508
|
||||
#, php-format
|
||||
msgctxt "data sent to PaYouGo"
|
||||
msgid "Orders with %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:157
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s in Gateway PaYouGo Checkout plugin can only be called once"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:281
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires WooCommerce to be activated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:285
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires WooCommerce version 2.5 or "
|
||||
"greater"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:289
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires cURL to be installed on your "
|
||||
"server"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:292
|
||||
msgid ""
|
||||
"Gateway PaYouGo Checkout requires OpenSSL >= 1.0.1 to be "
|
||||
"installed on your server"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:319
|
||||
#, php-format
|
||||
msgid ""
|
||||
"PaYouGo Checkout is almost ready. To get started, <a href=\"%s\">connect "
|
||||
"your PaYouGo account</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:450
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-plugin.php:453
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-pyg-with-payougo-credit.php:15
|
||||
msgid "PaYouGo Credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:21
|
||||
msgid ""
|
||||
"You must be logged in to pay or go to the checkout page to fill in your "
|
||||
"information and pay with PaYougo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:18
|
||||
msgid "Payougo Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:19
|
||||
msgid "Allow customers to conveniently checkout directly with Payougo."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:22
|
||||
msgid "Pay with Payougo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:169
|
||||
msgid ""
|
||||
"Sorry, an error occurred while trying to process your payment. Please try "
|
||||
"again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:202
|
||||
msgid "No API certificate on file."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:211
|
||||
#, php-format
|
||||
msgid "expires on %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:215
|
||||
#, php-format
|
||||
msgid "expired on %s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:225
|
||||
#, php-format
|
||||
msgid "Certificate belongs to API username %1$s; %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:227
|
||||
msgid "The certificate on file is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:298
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:332
|
||||
msgid ""
|
||||
"Error: The API credentials you provided are not valid. Please double-check "
|
||||
"that you entered them correctly and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:303
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:336
|
||||
msgid ""
|
||||
"An error occurred while trying to validate your API credentials. Unable to "
|
||||
"verify that your API credentials are correct."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:310
|
||||
msgid "Error: The API certificate is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:318
|
||||
msgid "Error: The API certificate has expired."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:323
|
||||
msgid ""
|
||||
"Error: The API username does not match the name in the API certificate. "
|
||||
"Make sure that you have the correct API certificate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:341
|
||||
msgid "Error: You must provide API signature or certificate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:359
|
||||
msgid ""
|
||||
"The \"require billing address\" option is not enabled by your account and "
|
||||
"has been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:378
|
||||
msgid "Refund Error: You need to specify a refund amount."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:398
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:421
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:471
|
||||
#, php-format
|
||||
msgid "PaYouGo refund completed; transaction ID = %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:445
|
||||
msgid ""
|
||||
"Refund Error: All transactions have been fully refunded. There is no amount "
|
||||
"left to refund"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:447
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Refund Error: The requested refund amount is too large. The refund amount "
|
||||
"must be less than or equal to %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:562
|
||||
#, php-format
|
||||
msgid "Already using URL as image: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:570
|
||||
msgid "Select a image to upload"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:571
|
||||
msgid "Use this image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:572
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:575
|
||||
msgid "Add image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:583
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:622
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: includes/exceptions/class-wc-gateway-pyg-api-exception.php:40
|
||||
#: includes/exceptions/class-wc-gateway-pyg-api-exception.php:68
|
||||
msgid "An error occurred while calling the PaYouGo API."
|
||||
msgstr ""
|
||||
|
||||
#: includes/exceptions/class-wc-gateway-pyg-api-exception.php:64
|
||||
#, php-format
|
||||
msgid "PaYouGo error (%1$s): %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/exceptions/class-wc-gateway-pyg-missing-session-exception.php:19
|
||||
msgid "The buyer's session information could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:24
|
||||
msgid "Setup or link an existing PaYouGo account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:25
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s or <a href=\"#\" class=\"pyg-toggle-settings\">click here to toggle "
|
||||
"manual API credential input</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:38
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To reset current credentials and use another account %1$sclick here%2$s. "
|
||||
"%3$sLearn more about your API Credentials%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:39 includes/settings/settings-pyg.php:61
|
||||
msgid "Reset current credentials"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:41 includes/settings/settings-pyg.php:63
|
||||
msgid "Learn more"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:46
|
||||
msgid "Setup or link an existing PaYouGo Sandbox account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:47
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s or <a href=\"#\" class=\"pyg-toggle-sandbox-settings\">click here to "
|
||||
"toggle manual API credential input</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:60
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Your account setting is set to sandbox, no real charging takes place. To "
|
||||
"accept live payments, switch your environment to live and connect your "
|
||||
"PaYouGo account. To reset current credentials and use other sandbox account "
|
||||
"%1$sclick here%2$s. %3$sLearn more about your API Credentials%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:67
|
||||
msgid "Enable PaYouGo Credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:69
|
||||
msgid ""
|
||||
"This option is disabled. Currently PaYouGo Credit only available for U.S. "
|
||||
"merchants using USD currency."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:72
|
||||
msgid ""
|
||||
"This enables Payougo Credit, which displays a Payougo Credit button next to "
|
||||
"the primary PaYouGo Checkout button. Payougo Checkout lets you give "
|
||||
"customers access to financing through PaYouGo Credit® - at no additional "
|
||||
"cost to you. You get paid up front, even though customers have more time to "
|
||||
"pay. A pre-integrated payment button shows up next to the PaYouGo Button, "
|
||||
"and lets customers pay quickly with PaYouGo Credit®. (Should be unchecked "
|
||||
"for stores involved in Real Money Gaming.)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:276
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Activer/Désactiver"
|
||||
|
||||
#: includes/settings/settings-pyg.php:278
|
||||
msgid "Enable Payougo Checkout"
|
||||
msgstr "Activer la passerelle Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:279
|
||||
msgid ""
|
||||
"This enables Payougo Checkout which allows customers to checkout directly "
|
||||
"via Payougo from your cart page."
|
||||
msgstr "Cela permet aux clients de payer directement via Payougo à partir de la page de votre panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:285
|
||||
#: includes/settings/settings-pyg.php:373
|
||||
msgid "Account Settings"
|
||||
msgstr "Paramètres de compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:291
|
||||
msgid "Username account"
|
||||
msgstr "Nom d'utilisateur du compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:293
|
||||
msgid ""
|
||||
"This reserve to your account in payougo. for example : youraddress@email.com"
|
||||
msgstr "Il s'agit de login votre compte dans payougo. par exemple: youraddress@email.com"
|
||||
|
||||
#: includes/settings/settings-pyg.php:299
|
||||
msgid "Password account"
|
||||
msgstr "Mot de passe du compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:301
|
||||
msgid "Put password for your account Payougo"
|
||||
msgstr "Mettez le mot de passe pour votre compte Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:307
|
||||
msgid "API Key Payougo"
|
||||
msgstr "Clé API Payougo généré dans votre compte"
|
||||
|
||||
#: includes/settings/settings-pyg.php:309
|
||||
msgid "for example : ASsqXEmw4KzmX-CPChWSVDNCNfd.A3YNR7uz-VncXXAERFDFDFDF"
|
||||
msgstr "par : ASsqXEmw4KzmX-CPChWSVDNCNfd.A3YNR7uz-VncXXAERFDFDFDF"
|
||||
|
||||
#: includes/settings/settings-pyg.php:315
|
||||
msgid "Payougo Version SSL"
|
||||
msgstr "Verson Payougo SSL"
|
||||
|
||||
#: includes/settings/settings-pyg.php:322
|
||||
msgid "TLSv1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:323
|
||||
msgid "TLSv1.2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:328
|
||||
msgid "Functions Settings"
|
||||
msgstr "Paramètres de fonctions"
|
||||
|
||||
#: includes/settings/settings-pyg.php:334
|
||||
msgid "Customer/Buyer"
|
||||
msgstr "Client/Payeur"
|
||||
|
||||
#: includes/settings/settings-pyg.php:336
|
||||
msgid "for example : CHRONO ASSURANCES"
|
||||
msgstr "par exemple : CHRONO ASSURANCES"
|
||||
|
||||
#: includes/settings/settings-pyg.php:342
|
||||
msgid "Merchant code for account Payougo"
|
||||
msgstr "Code marchand pour votre compte Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:344
|
||||
msgid "for example : 000"
|
||||
msgstr "par exemple : 000"
|
||||
|
||||
#: includes/settings/settings-pyg.php:350
|
||||
msgid "Payment send Email"
|
||||
msgstr "Email de notification lors d'un paiement"
|
||||
|
||||
#: includes/settings/settings-pyg.php:352
|
||||
msgid ""
|
||||
"This allows you to send a notification email with each payment made. for "
|
||||
"example : notifpayment@email.com"
|
||||
msgstr "Cela permet d'envoyer un e-mail de notification à chaque paiement effectué. par exemple: notifpayment@email.com"
|
||||
|
||||
#: includes/settings/settings-pyg.php:358
|
||||
msgid "Title"
|
||||
msgstr "Titre"
|
||||
|
||||
#: includes/settings/settings-pyg.php:360
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr "Cela définit le titre qui sera vu par l'utilisateur durant la validation de la commande"
|
||||
|
||||
#: includes/settings/settings-pyg.php:361
|
||||
msgid "Payougo"
|
||||
msgstr "Payougo"
|
||||
|
||||
#: includes/settings/settings-pyg.php:365
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: includes/settings/settings-pyg.php:368
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr "Cela contrôle la description qui sera vu par l'utilisateur durant la validation de la commande"
|
||||
|
||||
#: includes/settings/settings-pyg.php:369
|
||||
msgid "pay with your mobile money account (Orange, MTN) securely."
|
||||
msgstr "payer avec votre compte d'argent mobile (Orange, MTN) en toute sécurité"
|
||||
|
||||
#: includes/settings/settings-pyg.php:378
|
||||
msgid "Environment"
|
||||
msgstr "Environnement"
|
||||
|
||||
#: includes/settings/settings-pyg.php:381
|
||||
msgid ""
|
||||
"This setting specifies whether you will process live transactions, or "
|
||||
"whether you will process simulated transactions using the Payougo Sandbox."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:385
|
||||
msgid "Live"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:386
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:390
|
||||
msgid "Advanced Settings"
|
||||
msgstr "Paramètres avancés"
|
||||
|
||||
#: includes/settings/settings-pyg.php:396
|
||||
msgid "Invoice Prefix"
|
||||
msgstr "Préfixe de facture"
|
||||
|
||||
#: includes/settings/settings-pyg.php:398
|
||||
msgid ""
|
||||
"Please enter a prefix for your invoice numbers. If you use your Payougo "
|
||||
"account for multiple stores ensure this prefix is unique as Payougo will not "
|
||||
"allow orders with the same invoice number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:403
|
||||
msgid "Billing Addresses"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:405
|
||||
msgid "Require Billing Address"
|
||||
msgstr "Exiger l'adresse de livraison"
|
||||
|
||||
#: includes/settings/settings-pyg.php:407
|
||||
msgid "Payougo only returns a shipping address back to the website. "
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:410
|
||||
#: includes/settings/settings-pyg.php:412
|
||||
msgid "Require Phone Number"
|
||||
msgstr "Exiger le numéro de téléphone"
|
||||
|
||||
#: includes/settings/settings-pyg.php:414
|
||||
msgid ""
|
||||
"Require buyer to enter their telephone number during checkout if none is "
|
||||
"provided by Payougo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings/settings-pyg.php:426
|
||||
msgid "Checkout on cart page"
|
||||
msgstr "Commander sur la page du panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:429
|
||||
msgid "Enable Payougo Checkout on the cart page"
|
||||
msgstr "Activer le bouton Payougo sur la page du panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:430
|
||||
msgid "This shows or hides the Payougo Checkout button on the cart page."
|
||||
msgstr "Cela permet de montrer ou cacher le bouton Payougo sur la page du panier"
|
||||
|
||||
#: includes/settings/settings-pyg.php:443
|
||||
msgid "Single Product Button Settings"
|
||||
msgstr "Paramètre du bouton sur la page produit"
|
||||
|
||||
#: includes/settings/settings-pyg.php:448
|
||||
#: includes/settings/settings-pyg.php:451
|
||||
msgid "Checkout on Single Product"
|
||||
msgstr "Commander sur la page du produit"
|
||||
|
||||
#: includes/settings/settings-pyg.php:454
|
||||
msgid "Enable Payougo Checkout on Single Product view"
|
||||
msgstr "Activer le bouton Payougo sur la page du produit"
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:298
|
||||
msgid "Username or password is incorrect"
|
||||
msgstr "Nom d'utilisateur ou mot de passe incorrect"
|
||||
|
||||
#: includes/abstracts/abstract-wc-gateway-pyg.php:307
|
||||
msgid "Good, you are connected"
|
||||
msgstr "Bravo, vous êtes connectés"
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,123 @@
|
||||
# Copyright (C) 2020 Richard Carlier
|
||||
# This file is distributed under the same license as the JSON Dashboard Infos plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JSON Dashboard Infos 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/json-dashboard-infos\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-27T13:25:55+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: json-dashboard-infos\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "JSON Dashboard Infos"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/rcarlier/json-dashboard-infos"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Get infos from your wordpress, in JSON format, to create centralized dashboards"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Richard Carlier"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://carlier.biz"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:65
|
||||
msgid "JSON to fetch:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:78
|
||||
msgid "Security Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:84
|
||||
msgid "Do NOT change without good reasons!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:85
|
||||
msgid "If you do, no spaces, no specials cars... (try suggestions bellow)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:86
|
||||
msgid "Don't forget to <b>update permalinks</b> if needed..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:97
|
||||
msgid "Transient timeout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:100
|
||||
msgid "In hour."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:103
|
||||
msgid "0 to disable the transient (no cache)."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:107
|
||||
msgid "Reset cache"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:112
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:117
|
||||
msgid "If needed..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:122
|
||||
msgid "Expose Infos"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:127
|
||||
msgid "Expose Updates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:132
|
||||
msgid "Expose Comments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:137
|
||||
msgid "Expose Users"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:142
|
||||
msgid "Expose Sizes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:149
|
||||
msgid "Expose Contents"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:155
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin.php:160
|
||||
msgid "JSON generated:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/get_datas.php:245
|
||||
msgid "last registration:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/tools.php:88
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/tools.php:93
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,36 @@
|
||||
# Copyright (C) 2020 LifterLMS
|
||||
# This file is distributed under the same license as the Lite LMS Progress Tracker by LifterLMS plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lite LMS Progress Tracker by LifterLMS 0.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://lifterlms.com/my-account/my-tickets\n"
|
||||
"Last-Translator: Team LifterLMS <team@lifterlms.com>\n"
|
||||
"Language-Team: Team LifterLMS <team@lifterlms.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-13T14:47:03-07:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Language: \n"
|
||||
"X-Generator: llms-dev 1.0.0\n"
|
||||
"X-Domain: llms-lite-progress\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Lite LMS Progress Tracker by LifterLMS"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/gocodebox/lifterlms-lite-lms-progress-tracker"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Easily track progress through simple online courses and other types of public or membership-protected content on your WordPress website."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "LifterLMS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://lifterlms.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,541 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mapplic Lite 1.0\n"
|
||||
"POT-Creation-Date: 2020-03-05 09:55+0200\n"
|
||||
"PO-Revision-Date: 2017-01-24 14:19+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: sekler\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/admin.php:57
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:58 admin/metaboxes.php:60 admin/metaboxes.php:235
|
||||
#: admin/metaboxes.php:297 admin/metaboxes.php:378
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:59 mapplic-lite.php:50
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:60 mapplic-lite.php:51
|
||||
msgid "Nothing found. Please try a different search."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:61 admin/admin.php:80 admin/metaboxes.php:177
|
||||
#: admin/metaboxes.php:213
|
||||
msgid "Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:62 admin/admin.php:151
|
||||
msgid "Raw"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:63
|
||||
msgid "Landmark ID is required and must be unique!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:78
|
||||
msgid "Maps Lite"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:79
|
||||
msgid "All Maps"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:81
|
||||
msgid "Add New Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:82
|
||||
msgid "New Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:83
|
||||
msgid "Edit Map"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:135
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:145
|
||||
msgid "Indent"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:152
|
||||
msgid "Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:161
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:162
|
||||
msgid "Floors"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:163
|
||||
msgid "Styles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:164 admin/metaboxes.php:117
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:165
|
||||
msgid "Geoposition"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:166
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:35
|
||||
msgid "World + US"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:36
|
||||
msgid "Canada"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:37
|
||||
msgid "Australia"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:38
|
||||
msgid "France"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:39
|
||||
msgid "Germany"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:40
|
||||
msgid "United Kingdom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:41
|
||||
msgid "Italy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:42
|
||||
msgid "Netherlands"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:43
|
||||
msgid "Switzerland"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:44
|
||||
msgid "Russia"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:45
|
||||
msgid "China"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:46
|
||||
msgid "Brazil"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:49
|
||||
msgid "Select Map Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:50
|
||||
msgid ""
|
||||
"Create a custom map using your own file(s) or select one of the built-in "
|
||||
"maps."
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:52
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:53
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:54
|
||||
msgid "Continents"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:55
|
||||
msgid "USA"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:61
|
||||
msgid "Upgrade Mapplic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:64
|
||||
msgid "Define Map File"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:65
|
||||
msgid ""
|
||||
"Upload or select map file from library. SVG, JPG and PNG formats supported."
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:67 admin/metaboxes.php:172 admin/metaboxes.php:204
|
||||
#: admin/metaboxes.php:318 admin/metaboxes.php:338
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:71
|
||||
msgid "ID (required)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:76
|
||||
msgid "Map File (required)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:83
|
||||
msgid "Width (reqiured)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/maps.php:87
|
||||
msgid "Height (reqiured)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:27
|
||||
msgid "Tooltip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:28
|
||||
msgid "Open link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:59 admin/metaboxes.php:258 admin/metaboxes.php:285
|
||||
#: admin/metaboxes.php:323 admin/metaboxes.php:369
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:65
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:66 admin/metaboxes.php:174 admin/metaboxes.php:205
|
||||
#: admin/metaboxes.php:320 admin/metaboxes.php:339
|
||||
msgid "ID (unique)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:72
|
||||
msgid "Geolocation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:77
|
||||
msgid "Color and Pin Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:86
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:89
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:90
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:93 admin/metaboxes.php:343
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:103
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:105
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:114
|
||||
msgid "Zoom Level"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:127
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:134
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:140
|
||||
msgid "Reveal Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:142 admin/metaboxes.php:357
|
||||
msgid "Hide from sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:144 admin/metaboxes.php:340
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:146
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:149
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:167 admin/metaboxes.php:172 admin/metaboxes.php:234
|
||||
msgid "New Floor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:184
|
||||
msgid "Minimap"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:191 admin/metaboxes.php:227 admin/metaboxes.php:260
|
||||
#: admin/metaboxes.php:287 admin/metaboxes.php:325 admin/metaboxes.php:371
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:209
|
||||
msgid "Show by default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:250 admin/metaboxes.php:296
|
||||
msgid "New Style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:255
|
||||
msgid "Class"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:273
|
||||
msgid "Class Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:275
|
||||
msgid "Base"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:278
|
||||
msgid "Hover & Highlight"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:281
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:293
|
||||
msgid "There are no reusable styles yet."
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:312 admin/metaboxes.php:318 admin/metaboxes.php:377
|
||||
msgid "New Group"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:354
|
||||
msgid "Add to legend"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:360
|
||||
msgid "Enable toggle mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:363
|
||||
msgid "Switch off by default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:410
|
||||
msgid "Map file dimensions either not set or invalid!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:416
|
||||
msgid "Map container height"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:421
|
||||
msgid "Map file dimensions (REQUIRED)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:423
|
||||
msgid "File Width"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:424 admin/metaboxes.php:428
|
||||
msgid "REQUIRED"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:427
|
||||
msgid "File Height"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:432
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:434
|
||||
msgid "Portrait breakpoint"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:435
|
||||
msgid "668 (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:437
|
||||
msgid "Default action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:445
|
||||
msgid "Default style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:455
|
||||
msgid "More button text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:456 mapplic-lite.php:49
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:459
|
||||
msgid "Hover tooltip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:462
|
||||
msgid "Enable fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:465
|
||||
msgid "Smart tooltip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:468
|
||||
msgid "Deeplinking"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:471
|
||||
msgid "Open links in new tab"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:474
|
||||
msgid "Enable minimap"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:478
|
||||
msgid "Zoom options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:480
|
||||
msgid "Enable zoom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:484
|
||||
msgid "Maximum zoom level"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:485
|
||||
msgid "No zoom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:488
|
||||
msgid "Zoom margin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:489
|
||||
msgid "200 (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:492
|
||||
msgid "Zoom buttons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:495
|
||||
msgid "Clear button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:498
|
||||
msgid "Zoom out when closing popup"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:501
|
||||
msgid "Close popup when zoomed out"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:504
|
||||
msgid "Mouse wheel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:507
|
||||
msgid "Always fill the container"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:512
|
||||
msgid "Sidebar options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:514
|
||||
msgid "Enable sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:518
|
||||
msgid "Search field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:521
|
||||
msgid "Search description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:524
|
||||
msgid "Minimum keyword length"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:525
|
||||
msgid "1 (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:528
|
||||
msgid "Alphabetically ordered list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:531
|
||||
msgid "Thumbnail placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:534
|
||||
msgid "Hide locations when no filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:537
|
||||
msgid "Highlight map on filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:542
|
||||
msgid "CSV Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:544
|
||||
msgid "CSV file"
|
||||
msgstr ""
|
||||
|
||||
#: admin/metaboxes.php:550
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: mapplic-lite.php:37
|
||||
msgid "Map List"
|
||||
msgstr ""
|
||||
|
||||
#: mapplic-lite.php:71
|
||||
msgid "Error: map with the specified ID doesn't exist!"
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/my-medium-article/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/my-medium-article/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.0 =
|
||||
* Initial Public Release
|
||||
37
spec/fixtures/dynamic_finders/plugin_version/mycookie-gdpr-compliance/composer_file/package.json
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/mycookie-gdpr-compliance/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "my-cookie",
|
||||
"version": "1.0.0",
|
||||
"description": "Another cookie plugin.",
|
||||
"main": "index.js",
|
||||
"babel": {
|
||||
"presets": [
|
||||
"@babel/preset-env"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"watch": "webpack --mode=development --watch --config webpack-config.js",
|
||||
"build": "webpack --mode=production --config webpack-config.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://gitlab.com/s60v5/mycookie-gdpr-compliance-for-wordpress.git"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://gitlab.com/s60v5/mycookie-gdpr-compliance-for-wordpress/issues"
|
||||
},
|
||||
"homepage": "https://gitlab.com/s60v5/mycookie-gdpr-compliance-for-wordpress#readme",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.7.7",
|
||||
"@babel/core": "^7.7.7",
|
||||
"@babel/preset-env": "^7.7.7",
|
||||
"babel-loader": "^8.0.6",
|
||||
"css-loader": "^3.4.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.13.0",
|
||||
"sass-loader": "^8.0.0",
|
||||
"webpack": "^4.41.5",
|
||||
"webpack-cli": "^3.3.10"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
4
spec/fixtures/dynamic_finders/plugin_version/order-tip-woo/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/order-tip-woo/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* First stable version
|
||||
@@ -0,0 +1,839 @@
|
||||
# Copyright (C) 2020 Posti
|
||||
# This file is distributed under the same license as the Posti Shipping for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Posti Shipping for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
|
||||
"shipping-plugin\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-04-30T12:25:24+00:00\n"
|
||||
"PO-Revision-Date: 2020-04-30 15:46+0300\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: en\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Posti Shipping for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/PostiDigital/plugin-woocommerce-itella"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Posti shipping service for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: posti_shipping/classes/class-text.php:15
|
||||
msgid "Posti"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.posti.fi/"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:94 core/class-admin.php:117
|
||||
msgid ""
|
||||
"Thank you for installing WooCommerce Pakettikauppa! To get started smoothly, "
|
||||
"please open our setup wizard."
|
||||
msgstr ""
|
||||
"Thank you for installing WooCommerce Posti! To get started smoothly, please "
|
||||
"open our setup wizard."
|
||||
|
||||
#: core/class-admin.php:174
|
||||
msgid "HS tariff number"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:176
|
||||
msgid ""
|
||||
"The HS tariff number must be based on the Harmonized Commodity Description "
|
||||
"and Coding System developed by the World Customs Organization."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:182
|
||||
msgid "Country of origin"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:184
|
||||
msgid ""
|
||||
"\"Country of origin\" means the country where the goods originated, e.g. "
|
||||
"were produced/manufactured or assembled."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:249
|
||||
msgid "Create and fetch shipping labels"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:280
|
||||
msgid "Create shipping label"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:327
|
||||
msgid "Cannot find shipments with given shipment numbers."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:389
|
||||
msgid ""
|
||||
"WooCommerce Pakettikauppa has been installed/updated but no shipping methods "
|
||||
"are currently active!"
|
||||
msgstr ""
|
||||
"WooCommerce Posti has been installed/updated but no shipping methods are "
|
||||
"currently active!"
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-admin.php:426 core/class-admin.php:888 core/class-admin.php:915
|
||||
#: core/class-shipment.php:213
|
||||
msgid "An error occurred: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:445
|
||||
msgid "Visit Pakettikauppa"
|
||||
msgstr "Visit Posti"
|
||||
|
||||
#: core/class-admin.php:446
|
||||
msgid "Show site Pakettikauppa"
|
||||
msgstr "Show site Posti"
|
||||
|
||||
#: core/class-admin.php:494
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:506 core/class-admin.php:646 core/class-admin.php:1002
|
||||
#: core/class-admin.php:1009
|
||||
msgid "Requested pickup point"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:510
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:528
|
||||
msgid ""
|
||||
"Please add shipping info to the order to manage Pakettikauppa shipments."
|
||||
msgstr "Please add shipping info to the order to manage Posti shipments."
|
||||
|
||||
#: core/class-admin.php:583 core/class-admin.php:609
|
||||
msgid "Label code"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:587 core/class-admin.php:613
|
||||
#: core/class-shipment.php:251
|
||||
msgid "Print document"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:589 core/class-admin.php:614
|
||||
#: core/class-shipment.php:252
|
||||
msgid "Track"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:593
|
||||
msgid "Update Status"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:594
|
||||
msgid "Create Return Label"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:597 core/class-admin.php:617
|
||||
msgid "Delete Shipping Label"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:599
|
||||
msgid "Delete Shipping Label and return labels"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:626
|
||||
msgid "Additional services"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:637 core/class-admin.php:687
|
||||
msgid "Parcel count"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:656 core/class-text.php:50
|
||||
msgid "No shipping"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:697
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:700
|
||||
msgid "Change shipping..."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:826
|
||||
msgid "Unable to create return label for this shipment type."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %%s: tracking code
|
||||
#: core/class-admin.php:869 core/class-admin.php:877
|
||||
msgid "Successfully deleted Pakettikauppa shipping label %s."
|
||||
msgstr "Successfully deleted Posti shipping label %s."
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-admin.php:895
|
||||
msgid "Deleting Pakettikauppa shipment failed! Errors: %s"
|
||||
msgstr "Deleting Posti shipment failed! Errors: %s"
|
||||
|
||||
#: core/class-admin.php:928
|
||||
msgid "Shipment tracking code is not defined."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:938
|
||||
msgid "Cannot find shipment with given shipment number."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Shipment tracking url
|
||||
#: core/class-admin.php:1006
|
||||
msgid ""
|
||||
"You can track your order at %1$s.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-admin.php:1013
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Shipment tracking URL 2: Shipment tracking code
|
||||
#: core/class-admin.php:1015
|
||||
msgid "You can <a href=\"%1$s\">track your order</a> with tracking code %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:60
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:62
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:163
|
||||
msgid "An error occurred. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:366 core/class-frontend.php:367
|
||||
#: core/class-frontend.php:516
|
||||
msgid "Pickup point"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:377
|
||||
msgid "Insert your shipping details to view nearby pickup points"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Postcode
|
||||
#: core/class-frontend.php:383
|
||||
msgid "Invalid postcode \"%1$s\". Please check your address information."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:419
|
||||
msgid "Choose one of pickup points close to the address you entered:"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:489
|
||||
msgid "Select a pickup point"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-frontend.php:530
|
||||
msgid "Please choose a pickup point."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:92
|
||||
msgid "Item is collected from sender - picked up"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:95
|
||||
msgid "Exception"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:98
|
||||
msgid "Item has been handed over to the recipient"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:101
|
||||
msgid "Item is in transport"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:104
|
||||
msgid "C.O.D payment is paid to the sender"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:107
|
||||
msgid "Informed consignee of arrival"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:110
|
||||
msgid "Item is loaded onto a means of transport"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:113
|
||||
msgid "Item not delivered – delivery attempt made"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:116
|
||||
msgid "Pre-information is received from sender"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:119
|
||||
msgid "Item is ready for delivery transportation"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:122
|
||||
msgid "Item is returning to the sender"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:125
|
||||
msgid "Item is arrived to a post office"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:128
|
||||
msgid "Outbound"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Status code
|
||||
#: core/class-shipment.php:132
|
||||
msgid "Unknown status: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:167
|
||||
msgid ""
|
||||
"The shipping label was not created because the order does not contain valid "
|
||||
"shipping method."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:179
|
||||
msgid ""
|
||||
"The shipping label was not created because the order does not contain valid "
|
||||
"shipping details."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-shipment.php:208
|
||||
msgid "Failed to create Pakettikauppa shipment. Errors: %s"
|
||||
msgstr "Failed to create Posti shipment. Errors: %s"
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-shipment.php:222 core/class-shipment.php:227
|
||||
msgid "Failed to create Pakettikauppa shipment."
|
||||
msgstr "Failed to create Posti shipment."
|
||||
|
||||
#. translators: 1: Shipping service title 2: Shipment tracking code 3: Shipping label URL 4: Shipment tracking URL
|
||||
#: core/class-shipment.php:259
|
||||
msgid "Created Pakettikauppa %1$s shipment.<br>%2$s<br>%1$s - %3$s<br>%4$s"
|
||||
msgstr "Created Posti %1$s shipment.<br>%2$s<br>%1$s - %3$s<br>%4$s"
|
||||
|
||||
#: core/class-shipment.php:272
|
||||
msgid "Posting label to URL failed!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipment.php:276
|
||||
msgid "Label posted to URL successfully."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Error message
|
||||
#: core/class-shipment.php:639
|
||||
msgid "WooCommerce Pakettikauppa: tracking code creation failed: %s"
|
||||
msgstr "WooCommerce Posti: tracking code creation failed: %s"
|
||||
|
||||
#: core/class-shipping-method.php:192
|
||||
msgid "Zone name"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:195
|
||||
msgid "Zone regions"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:197
|
||||
msgid "Shipping method(s)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:294 core/class-shipping-method.php:313
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:315
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:331
|
||||
msgid "Shipping class costs"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: URL for link.
|
||||
#: core/class-shipping-method.php:335
|
||||
msgid ""
|
||||
"These costs can optionally be added based on the <a href=\"%s\">product "
|
||||
"shipping class</a>."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: shipping class cost
|
||||
#: core/class-shipping-method.php:349
|
||||
msgid "\"%s\" shipping class cost"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:359 core/class-shipping-method.php:396
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:374
|
||||
msgid "Calculation type"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:379
|
||||
msgid "Per class: Charge shipping for each shipping class individually"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:380
|
||||
msgid "Per order: Charge shipping for the most expensive shipping class"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order status
|
||||
#: core/class-shipping-method.php:477 core/class-shipping-method.php:489
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: order status
|
||||
#: core/class-shipping-method.php:478 core/class-shipping-method.php:491
|
||||
msgid "Processing"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:602 core/class-shipping-method.php:611
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-shipping-method.php:603 core/class-shipping-method.php:612
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:26
|
||||
msgid "WooCommerce Pakettikauppa › Setup Wizard"
|
||||
msgstr "WooCommerce Posti › Setup Wizard"
|
||||
|
||||
#: core/class-text.php:30
|
||||
msgid "Start the setup wizard"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:34
|
||||
msgid "Pakettikauppa"
|
||||
msgstr "Posti"
|
||||
|
||||
#: core/class-text.php:38
|
||||
msgid "Edit to select shipping company and shipping prices."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: shipping method
|
||||
#: core/class-text.php:44
|
||||
msgid "Selected shipping method: %s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:54
|
||||
msgid "includes pickup points"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:58
|
||||
msgid "Select one shipping method"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:62
|
||||
msgid ""
|
||||
"Can not connect to Pakettikauppa server - please check Pakettikauppa API "
|
||||
"credentials, servers error log and firewall settings."
|
||||
msgstr ""
|
||||
"Can not connect to Posti server - please check Pakettikauppa API "
|
||||
"credentials, servers error log and firewall settings."
|
||||
|
||||
#. translators: Vendor name, not translatable
|
||||
#: core/class-text.php:72
|
||||
msgid ""
|
||||
"Only use this shipping method if no other shipping methods are available and "
|
||||
"suitable. Using this shipping method is not required to be able to use %s "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:81
|
||||
msgid "Shipping methods"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:85
|
||||
msgid "Shipping method"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:89
|
||||
msgid "Price (vat included)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:93
|
||||
msgid "Shipping cost"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:97
|
||||
msgid "Shipping cost (vat included)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:101
|
||||
msgid "Free shipping tier"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:105
|
||||
msgid "After which amount shipping is free."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:109
|
||||
msgid "Default shipping class cost"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:113
|
||||
msgid "No shipping class cost (vat included)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Vendor name, not translatable
|
||||
#: core/class-text.php:123
|
||||
msgid "Link to %s website"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:127
|
||||
msgid "Not now"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:131
|
||||
msgid "Skip this step"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:135
|
||||
msgid "Let's start!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:139
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:143
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:147
|
||||
msgid ""
|
||||
"Thank you for installing WooCommerce Pakettikauppa! This wizard will guide "
|
||||
"you through the setup process to get you started."
|
||||
msgstr ""
|
||||
"Thank you for installing WooCommerce Posti! This wizard will guide you "
|
||||
"through the setup process to get you started."
|
||||
|
||||
#. translators: %1$s: Vendor name, not translateable %2$s: Vendor url, not translateable
|
||||
#: core/class-text.php:165
|
||||
msgid ""
|
||||
"If you have already registered with %1$s, please choose \"Production mode\" "
|
||||
"and enter the credentials you received from %1$s. If you have not yet "
|
||||
"registered, please register at <a target=\"_blank\" rel=\"noopener noreferrer"
|
||||
"\" href=\"%2$s\">%2$s</a>. If you wish to test the plugin before making a "
|
||||
"contract with %1$s, please choose \"Test mode\" and leave the API secret/key "
|
||||
"fields empty."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:175
|
||||
msgid ""
|
||||
"Please fill the details of the merchant below. The information provided here "
|
||||
"will be used as the sender in shipping labels."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: link to WooCommerce shipping zone setting page %2$s: link to external WooCommerce documentation
|
||||
#: core/class-text.php:188
|
||||
msgid ""
|
||||
"Please configure the shipping methods of the currently active shipping zones "
|
||||
"to use Pakettikauppa shipping. Note that this plugin requires WooCommerce "
|
||||
"shipping zones and methods to be preconfigured in <a href=\"%1$s"
|
||||
"\">WooCommerce > Settings > Shipping > Shipping zones</a>. For more "
|
||||
"information, visit <a target=\"_blank\" href=\"%2$s\">%2$s</a>."
|
||||
msgstr ""
|
||||
"Please configure the shipping methods of the currently active shipping zones "
|
||||
"to use Posti shipping. Note that this plugin requires WooCommerce shipping "
|
||||
"zones and methods to be preconfigured in <a href=”%1$s”>WooCommerce > "
|
||||
"Settings > Shipping > Shipping zones</a>. For more information, visit <a "
|
||||
"target=”_blank” href=”%2$s”>%2$s</a>."
|
||||
|
||||
#: core/class-text.php:195
|
||||
msgid "Customize the order processing phase."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:199
|
||||
msgid ""
|
||||
"Congratulations, everything is now set up and you are now ready to start "
|
||||
"using the plugin!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:203
|
||||
msgid "Credentials"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:207
|
||||
msgid "Merchant"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:211
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:215
|
||||
msgid "Order Processing"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:219
|
||||
msgid "Ready!"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:223
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:227
|
||||
msgid "Mode"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:231
|
||||
msgid "Testing environment"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:235
|
||||
msgid "Production environment"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:239
|
||||
msgid "API key"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: Vendor name, not translatable
|
||||
#: core/class-text.php:248
|
||||
msgid "API key provided by %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:254
|
||||
msgid "API secret"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: Vendor name, not translatable
|
||||
#: core/class-text.php:263
|
||||
msgid "API secret provided by %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:269
|
||||
msgid "Shipping methods mapping"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:273
|
||||
msgid "Shipping settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: WooCommerce URL, not translatable
|
||||
#: core/class-text.php:282
|
||||
msgid ""
|
||||
"You can activate new shipping method to checkout in <b>WooCommerce > "
|
||||
"Settings > Shipping > Shipping zones</b>. For more information, see <a "
|
||||
"target=\"_blank\" href=\"%1$s\">%1$s</a>"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:288
|
||||
msgid "Add tracking link to the order completed email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:292
|
||||
msgid "Add selected pickup point information to the order completed email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:296
|
||||
msgid "When creating shipping label change order status to"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:300
|
||||
msgid "No order status change"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:304
|
||||
msgid "Create shipping labels automatically"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:308
|
||||
msgid "No automatic creation of shipping labels"
|
||||
msgstr ""
|
||||
|
||||
#. translators: order status, pretranslated
|
||||
#: core/class-text.php:313
|
||||
msgid "When order status is \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:317
|
||||
msgid "Print labels"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:321
|
||||
msgid "Browser"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:325
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:329
|
||||
msgid "Post shipping label to URL"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:333
|
||||
msgid ""
|
||||
"Plugin can upload shipping label to an URL when creating shipping label. "
|
||||
"Define URL if you want to upload PDF."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:337
|
||||
msgid "Pickup point search limit"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:341
|
||||
msgid "Limit the amount of nearest pickup points shown."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:345
|
||||
msgid "Show pickup points as"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:349
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:353
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:357
|
||||
msgid "Store owner information"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:361
|
||||
msgid "Sender name"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:365
|
||||
msgid "Sender address"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:369
|
||||
msgid "Sender postal code"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:373
|
||||
msgid "Sender city"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:377
|
||||
msgid "Sender country"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:381
|
||||
msgid "Sender phone"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:385
|
||||
msgid "Sender email"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:389
|
||||
msgid "Info-code for shipments"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:393
|
||||
msgid "Cash on Delivery (COD) Settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:397
|
||||
msgid "Bank account number for Cash on Delivery (IBAN)"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:401
|
||||
msgid "BIC code for Cash on Delivery"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:405
|
||||
msgid "Advanced settings"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:409
|
||||
msgid "Show Pakettikauppa shipping method"
|
||||
msgstr "Show Posti shipping method"
|
||||
|
||||
#: core/class-text.php:413
|
||||
msgid ""
|
||||
"WooCommerce Pakettikauppa requires WooCommerce to be installed and activated!"
|
||||
msgstr "WooCommerce Posti requires WooCommerce to be installed and activated!"
|
||||
|
||||
#: core/class-text.php:417
|
||||
msgid "No pickup points were found. Check the address."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:421
|
||||
msgid "An error occurred while searching for pickup points."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:425
|
||||
msgid ""
|
||||
"If none of your preferred pickup points are listed, fill in a custom address "
|
||||
"above and select another pickup point."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:429
|
||||
msgid "Custom pickup address"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:433
|
||||
msgid "Pickup address"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:437
|
||||
msgid "Search pickup points near you by typing your address above."
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:441
|
||||
msgid "Show pickup point override in checkout"
|
||||
msgstr ""
|
||||
|
||||
#: core/class-text.php:445
|
||||
msgid ""
|
||||
"The pickup point you've chosen is not available for public access. Are you "
|
||||
"sure that you can retrieve the package?"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:11
|
||||
msgid "WooCommerce Posti › Setup Wizard"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:19
|
||||
msgid ""
|
||||
"Thank you for installing WooCommerce Posti! This wizard will guide you "
|
||||
"through the setup process to get you started."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: link to WooCommerce shipping zone setting page %2$s: link to external WooCommerce documentation
|
||||
#: posti_shipping/classes/class-text.php:29
|
||||
msgid ""
|
||||
"Please configure the shipping methods of the currently active shipping zones "
|
||||
"to use Posti shipping. Note that this plugin requires WooCommerce shipping "
|
||||
"zones and methods to be preconfigured in <a href=\"%1$s\">WooCommerce > "
|
||||
"Settings > Shipping > Shipping zones</a>. For more information, visit <a "
|
||||
"target=\"_blank\" href=\"%2$s\">%2$s</a>."
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:36
|
||||
msgid "Show Posti shipping method"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:40
|
||||
msgid "WooCommerce Posti requires WooCommerce to be installed and activated!"
|
||||
msgstr ""
|
||||
|
||||
#: posti_shipping/classes/class-text.php:44
|
||||
msgid ""
|
||||
"WooCommerce Posti can't be activated at the same time with WooCommerce "
|
||||
"Pakettikauppa. Deactivate WooCommerce Pakettikauppa!"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -82,6 +82,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/3dprint-lite/includes/ext/easyaspie/assets/js/easyaspie.js?ver=1.7.1"></script>
|
||||
|
||||
|
||||
<!-- 5usujian-bottom-pop -->
|
||||
<link rel="stylesheet" id="5usujian-bottom-pop-css-css" href="//wp.lab/wp-content/plugins/5usujian-bottom-pop/asset/css/5usujian-bottom-pop.css?ver=1.0.2" media="all">
|
||||
<script src="//wp.lab/wp-content/plugins/5usujian-bottom-pop/asset/js/5usujian-bottom-pop.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- 5usujian-super-serv -->
|
||||
<link rel="stylesheet" id="5usujian-serv-icon-css-css" href="http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/css/wysj-iconfont.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="5usujian-serv-trade-css-css" href="http://wp.lab/wp-content/plugins/5usujian-super-serv/asset/css/5usujian-serv-trade.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -641,6 +646,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ainow/assets/scripts/front.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- aio-contact-lite -->
|
||||
<link rel="stylesheet" id="animate.css-css" href="http://wp.lab/wp-content/plugins/aio-contact-lite/vendor/animate/animate.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="fontawesome-free-css" href="http://wp.lab/wp-content/plugins/aio-contact-lite/vendor/fontawesome-free/all.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="aio-contact-lite-css" href="http://wp.lab/wp-content/plugins/aio-contact-lite/public/css/aio-contact-lite-public.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/aio-contact-lite/public/js/aio-contact-lite-public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ajar-productions-in5-embed -->
|
||||
<link rel="stylesheet" id="in5-public-css" href="http://wp.lab/wp-content/plugins/ajar-productions-in5-embed/assets/css/public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ajar-productions-in5-embed/assets/js/screenfull.js?ver=1.0.0"></script>
|
||||
@@ -952,6 +964,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/apex-notification-bar-lite/js/frontend/frontend.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- api-car-trawler -->
|
||||
<link rel="stylesheet" id="api-for-car-trawler-css" href="http://wp.lab/wp-content/plugins/api-car-trawler/public/css/api-for-car-trawler-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/api-car-trawler/public/js/api-for-car-trawler-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- apostle-social-wall -->
|
||||
<link rel="stylesheet" id="apostle-social-wall-css" href="http://wp.lab/wp-content/plugins/apostle-social-wall/public/css/apostle-social-wall-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/apostle-social-wall/public/js/apostle-social-wall-public.js?ver=1.0.0"></script>
|
||||
@@ -1173,6 +1190,11 @@
|
||||
<link rel="stylesheet" id="atsi-style-css" href="http://wp.lab/wp-content/plugins/atticthemes-social-icons/css/atticthemes-social-icons-style.min.css?ver=2.1.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- auctions-near-me -->
|
||||
<link rel="stylesheet" id="auctions-near-me-font-css-css" href="http://wp.lab/wp-content/plugins/auctions-near-me/assets/css/auctions-near-me-font.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="auctions-near-me-style-css" href="http://wp.lab/wp-content/plugins/auctions-near-me/assets/css/auctions-near-me.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- audio-player-with-playlist-ultimate -->
|
||||
<link rel="stylesheet" id="apwpultimate-public-style-css" href="http://wp.lab/wp-content/plugins/audio-player-with-playlist-ultimate/assets/css/apwpultimate-public-style.css?ver=1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="apwpultimate-jplayer-style-css" href="http://wp.lab/wp-content/plugins/audio-player-with-playlist-ultimate/assets/css/jplayer.blue.monday.min.css?ver=1.1" type="text/css" media="all">
|
||||
@@ -2272,6 +2294,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/br-knowledge-base/public/js/BR_KNOWLEDGE_BASE-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- brader-kits -->
|
||||
<link rel="stylesheet" id="brader-kits-css" href="http://wp.lab/wp-content/plugins/brader-kits/public/css/brader-kits-public.css?ver=20.8.21" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/brader-kits/public/js/brader-kits-public.js?ver=20.8.21"></script>
|
||||
|
||||
|
||||
<!-- branding -->
|
||||
<link rel="stylesheet" id="lolita-css-loader-css" href="http://wp.lab/wp-content/plugins/branding/LolitaFramework/CssLoader/assets/css/lolita_css_loader.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -3092,6 +3119,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/classy/public/js/classy-public.js?ver=1.2.3"></script>
|
||||
|
||||
|
||||
<!-- clean-social-icons -->
|
||||
<link rel="stylesheet" id="clean-social-icons-css" href="http://wp.lab/wp-content/plugins/clean-social-icons/public/css/style.css?ver=0.9.11" media="all">
|
||||
<link rel="stylesheet" id="clean-social-icons-fa-css" href="http://wp.lab/wp-content/plugins/clean-social-icons/public/icons/css/all.min.css?ver=0.9.11" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/clean-social-icons/public/js/clean-social-icons-public.js?ver=0.9.11"></script>
|
||||
|
||||
|
||||
<!-- cleantalk-spam-protect -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cleantalk-spam-protect/inc/cleantalk_nocache.js?ver=5.82"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cleantalk-spam-protect/js/apbct-public.js?ver=5.82"></script>
|
||||
@@ -3229,6 +3262,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/code-editor-and-compiler/code-prettify-master/loader/run_prettify.js?callback=cdbx_publicInit&ver=1.4.1"></script>
|
||||
|
||||
|
||||
<!-- code-for-cj-affiliate-network -->
|
||||
<script src="http://wp.lab/wp-content/plugins/code-for-cj-affiliate-network/inc/save_affiliate_referral_info.js?ver=2.11"></script>
|
||||
|
||||
|
||||
<!-- code-prettify -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/code-prettify/prettify/run_prettify.js?ver=1.3.4"></script>
|
||||
|
||||
@@ -4717,6 +4754,10 @@
|
||||
<script type='text/javascript' src='http://wp.lab/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=1.7.11'></script>
|
||||
|
||||
|
||||
<!-- eli-for-digital-magazines -->
|
||||
<script src="http://wp.lab/wp-content/plugins/eli-for-digital-magazines/script.js?ver=2.2"></script>
|
||||
|
||||
|
||||
<!-- ellie-code-snippet -->
|
||||
<link rel="stylesheet" id="ellie-code-snippet-css" href="http://wp.lab/wp-content/plugins/ellie-code-snippet/public/css/ellie-code-snippet-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ellie-code-snippet/public/js/ellie-code-snippet-public.js?ver=1.0.0"></script>
|
||||
@@ -6823,6 +6864,8 @@
|
||||
<!-- hootkit -->
|
||||
<link rel="stylesheet" id="hootkit-css" href="http://wp.lab/wp-content/plugins/hootkit/assets/hootkit.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hootkit/assets/hootkit.min.js?ver=1.0.1"></script>
|
||||
<link rel="stylesheet" id="lightSlider-css" href="http://wp.lab/wp-content/plugins/hootkit/assets/lightSlider.min.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/hootkit/assets/jquery.lightSlider.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- horizontal-post-slider -->
|
||||
@@ -7117,6 +7160,12 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/immonex-kickstart/skins/default/js/index.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- immonex-kickstart-team -->
|
||||
<link rel="stylesheet" id="inx-team-skin-css" href="http://wp.lab/wp-content/plugins/immonex-kickstart-team/skins/default/css/index.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/immonex-kickstart-team/js/frontend.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/immonex-kickstart-team/skins/default/js/index.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- improved-let-it-snow -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/improved-let-it-snow/script/snowstorm-min.js?ver=3.5"></script>
|
||||
|
||||
@@ -7633,6 +7682,23 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/k5hh-ham-radio-calculators/js/antenna-calculation-min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- kahaf-kit -->
|
||||
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/bootstrap.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="animate-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/animate.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="lity-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/lity.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="owl-carousel-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/owl-carousel.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="owl-theme-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/owl-theme.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="kahaf-kit-design-css" href="http://wp.lab/wp-content/plugins/kahaf-kit/assets/css/kahaf-kit-design.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/owl-carousel.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/popper.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/bootstrap.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/wow.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/lity.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/waypoints.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/counterup.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kahaf-kit/assets/js/kahaf-kit-design-js.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- kalendar-cz -->
|
||||
<link rel="stylesheet" id="kalendar_cz-css" href="http://wp.lab/wp-content/plugins/kalendar-cz/kalendar_cz_style.css?ver=2.0" type="text/css" media="all">
|
||||
|
||||
@@ -7956,6 +8022,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lazy-load-videos-and-sticky-control/assets/js/llvasc-public.min.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- lazy-map -->
|
||||
<script src="http://wp.lab/wp-content/plugins/lazy-map/block/src/lazy-map-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- lazy-widget-loader -->
|
||||
<link rel="stylesheet" id="lazy-widget-loader-css" href="http://wp.lab/wp-content/plugins/lazy-widget-loader/css/lwl.css?ver=1.2.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lazy-widget-loader/js/lazy-widget-loader.js?ver=1.2.8"></script>
|
||||
@@ -9620,6 +9690,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/mybox-b2b/public/js/mybox-b2b-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- mycookie-gdpr-compliance -->
|
||||
<script src="http://wp.lab/wp-content/plugins/mycookie-gdpr-compliance/assets/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- myego2go-verified-login-for-woocommerce -->
|
||||
<link rel="stylesheet" id="myego2go-css" href="http://wp.lab/wp-content/plugins/myego2go-verified-login-for-woocommerce/public/css/myego2go-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myego2go-verified-login-for-woocommerce/public/js/myego2go-public.js?ver=1.0.0"></script>
|
||||
@@ -9886,6 +9960,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nitek-carousel-cool-transitions/public/js/nitek-carousel-public.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- nk-search -->
|
||||
<link rel="stylesheet" id="nks-css-css" href="http://wp.lab/wp-content/plugins/nk-search//nk-assets/css/nk-search.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/nk-search//nk-assets/js/nk-search.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- nnsmarttooltip -->
|
||||
<link rel="stylesheet" id="NnSmartTooltip-css" href="http://wp.lab/wp-content/plugins/nnsmarttooltip/plugin-assets/public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nnsmarttooltip/plugin-assets/public.bundle.js?ver=1.0.0"></script>
|
||||
@@ -10497,6 +10576,32 @@
|
||||
<link rel="stylesheet" id="past-events-extension-css" href="http://wp.lab/wp-content/plugins/past-events-extension/public/css/past-events-extension-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- pathomation -->
|
||||
<link rel="stylesheet" id="pma-wordpress-css" href="http://wp.lab/wp-content/plugins/pathomation/public/css/pma-wordpress-public.css?ver=2.2.0" media="all">
|
||||
<link rel="stylesheet" id="pma-wordpress_perfect-scrollbar-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/perfect-scrollbar.css?ver=2.2.0" media="">
|
||||
<link rel="stylesheet" id="pma-wordpress_ol-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/ol.css?ver=2.2.0" media="">
|
||||
<link rel="stylesheet" id="pma-wordpress_nouislider-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/nouislider.css?ver=2.2.0" media="">
|
||||
<link rel="stylesheet" id="pma-wordpress_fancytree-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/jquery.fancytree.css?ver=2.2.0" media="">
|
||||
<link rel="stylesheet" id="pma-wordpress_font-awesome-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/font-awesome.css?ver=2.2.0" media="">
|
||||
<link rel="stylesheet" id="pma-wordpress_pmaui-css" href="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/pma.ui.css?ver=2.2.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/public/js/pma-wordpress-public.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/webpack.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/elm-pep.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/file-saver.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/font-awesome.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/ieee754.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/jquery.fancytree.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/nouislider.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/ol.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/pbf.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/perfect-scrollbar.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/pixelworks.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/rbush.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/turf.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/turf-jsts.js?ver=2.2.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/pathomation/includes/pma.ui/pma.ui.js?ver=2.2.0"></script>
|
||||
|
||||
|
||||
<!-- pathshala -->
|
||||
<link rel="stylesheet" id="pathshala-css" href="http://wp.lab/wp-content/plugins/pathshala/public/css/pathshala-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pathshala/public/js/pathshala-public.js?ver=1.0.0"></script>
|
||||
@@ -11054,6 +11159,11 @@
|
||||
<link rel="stylesheet" id="psac-public-style-css" href="http://wp.lab/wp-content/plugins/post-slider-and-carousel/assets/css/psac-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- post-slider-for-elementor -->
|
||||
<link rel="stylesheet" id="psea_css-css" href="http://wp.lab/wp-content/plugins/post-slider-for-elementor/assets/css/slider-style.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/post-slider-for-elementor/assets/js/slider-style.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- post-slider-wd -->
|
||||
<link rel="stylesheet" id="wdps_frontend-css" href="http://wp.lab/wp-content/plugins/post-slider-wd/css/wdps_frontend.css?ver=1.0.52" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wdps_effects-css" href="http://wp.lab/wp-content/plugins/post-slider-wd/css/wdps_effects.css?ver=1.0.52" type="text/css" media="all">
|
||||
@@ -11341,6 +11451,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/product-customizer-light/public/js/customizer.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- product-feature-request -->
|
||||
<script src="http://wp.lab/wp-content/plugins/product-feature-request/assets/public/js/thpfr-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- product-qa-for-woocommerce -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/product-qa-for-woocommerce/public/js/faq-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -11529,6 +11643,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pws-better-widget-title/public/js/pws-better-widget-title-public.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- pyxis-mobile-menu -->
|
||||
<link rel="stylesheet" id="pyxis-mobile-menu-css" href="http://wp.lab/wp-content/plugins/pyxis-mobile-menu/assets/css/style.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/pyxis-mobile-menu/assets/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- q2w3-fixed-widget -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/q2w3-fixed-widget/js/q2w3-fixed-widget.min.js?ver=5.0.4"></script>
|
||||
|
||||
@@ -12509,11 +12628,15 @@
|
||||
<!-- save-as-image-by-pdfcrowd -->
|
||||
<link rel="stylesheet" id="save-as-image-pdfcrowd-css" href="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/css/save-as-image-pdfcrowd-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/js/save-as-image-pdfcrowd-public.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="save-as-image-pdfcrowdindicators-css" href="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/css/save-as-image-pdfcrowd-indicators.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/save-as-image-by-pdfcrowd/public/js/save-as-image-pdfcrowd-indicators.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- save-as-pdf-by-pdfcrowd -->
|
||||
<link rel="stylesheet" id="save-as-pdf-pdfcrowd-css" href="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/css/save-as-pdf-pdfcrowd-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/js/save-as-pdf-pdfcrowd-public.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="save-as-pdf-pdfcrowdindicators-css" href="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/css/save-as-pdf-pdfcrowd-indicators.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/save-as-pdf-by-pdfcrowd/public/js/save-as-pdf-pdfcrowd-indicators.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- save-page-to-pdf -->
|
||||
@@ -12975,6 +13098,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shortcodes-finder/public/js/shortcodes-finder-public.js?ver=1.1.3"></script>
|
||||
|
||||
|
||||
<!-- shortcodes-for-font-awesome -->
|
||||
<link rel="stylesheet" id="shortcodes-for-font-awesome-css" href="http://wp.lab/wp-content/plugins/shortcodes-for-font-awesome/public/css/all.min.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- shortest-website-monetization -->
|
||||
<link rel="stylesheet" id="shortest-website-monetization-plugin-styles-css" href="http://wp.lab/wp-content/plugins/shortest-website-monetization/css/public.css?ver=1.1.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shortest-website-monetization/js/public.js?ver=1.1.6"></script>
|
||||
@@ -13303,6 +13430,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-responsive-images//ressources/js/responsive.min.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- simple-sermon-media-podcast -->
|
||||
<link rel="stylesheet" id="sermon-media-css" href="http://wp.lab/wp-content/plugins/simple-sermon-media-podcast/public/css/sermon-media-public.css?ver=1.0.12" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/simple-sermon-media-podcast/public/js/sermon-media-public.js?ver=1.0.12"></script>
|
||||
|
||||
|
||||
<!-- simple-share-sticky -->
|
||||
<link rel="stylesheet" id="simple_share_sticky-css" href="http://wp.lab/wp-content/plugins/simple-share-sticky/simple-share-sticky.css?ver=0.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-share-sticky/simple-share-sticky.js?ver=0.0.1"></script>
|
||||
@@ -13563,6 +13695,12 @@
|
||||
<link rel="stylesheet" id="wp-spaios-public-css-css" href="http://wp.lab/wp-content/plugins/sliderspack-all-in-one-image-sliders/assets/css/wp-spaios-public.css?ver=1.1.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- sliderview -->
|
||||
<script src="http://wp.lab/wp-content/plugins/sliderview/js/jquery.cycle2.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/sliderview/js/frontend.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/sliderview/js/vimeo-player.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- slideshow -->
|
||||
<link rel="stylesheet" id="slideshow-css" href="http://wp.lab/wp-content/plugins/slideshow/slideshow.css?ver=0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/slideshow/slideshow.js?ver=0.1"></script>
|
||||
@@ -14172,6 +14310,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-related-posts/js/sticky-related-posts.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- sticky-social-icons -->
|
||||
<link rel="stylesheet" id="sticky-social-icons-css" href="http://wp.lab/wp-content/plugins/sticky-social-icons/public/assets/build/css/sticky-social-icons-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- stickyadmin -->
|
||||
<link rel="stylesheet" id="sticky-fonts-css" href="http://wp.lab/wp-content/plugins/stickyadmin/lib/css/sticky-fonts.css?ver=1.0.6" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="sticky-adminbar-css" href="http://wp.lab/wp-content/plugins/stickyadmin/lib/css/sticky-adminbar.css?ver=1.0.6" type="text/css" media="all">
|
||||
@@ -14395,6 +14537,12 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/surplus-essentials/public/js/surplus-essentials-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- survey-popup -->
|
||||
<link rel="stylesheet" id="survey-popupfont-awesome-css" href="http://wp.lab/wp-content/plugins/survey-popup/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="survey-popup-css" href="http://wp.lab/wp-content/plugins/survey-popup/public/css/survey-popup-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/survey-popup/public/js/survey-popup-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- suspended-lists-for-sportspress -->
|
||||
<link rel="stylesheet" id="suspended-lists-for-sportspress-front-styles-css" href="http://wp.lab/wp-content/plugins/suspended-lists-for-sportspress/assets/css/front/styles.css?ver=0.0.1" type="text/css" media="all">
|
||||
|
||||
@@ -14449,6 +14597,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sympose/public/libs/font-awesome/svg-with-js/js/fontawesome-all.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="sympose-css" href="http://wp.lab/wp-content/plugins/sympose/public/css/sympose.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sympose/public/js/sympose.min.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="sympose-css" href="http://wp.lab/wp-content/plugins/sympose/css/dist/public/sympose.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sympose/js/dist/public/sympose.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- syndication-links -->
|
||||
@@ -14672,6 +14822,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/telaalbums/public/assets/js/jssor.slider-23.1.5.min.js?ver=1.4.6"></script>
|
||||
|
||||
|
||||
<!-- template-builder-elementor -->
|
||||
<link rel="stylesheet" id="tmpenvo-css" href="http://wp.lab/wp-content/plugins/template-builder-elementor/public/css/tmpenvo-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/template-builder-elementor/public/js/tmpenvo-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- templatesnext-onepager -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/templatesnext-onepager/js/circle-progress.min.js?ver=1.2.0"></script>
|
||||
|
||||
@@ -14842,6 +14997,18 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/three-d-cube/includes/admin/assets/js/OrbitControls.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- thrive-esig-gen -->
|
||||
<link rel="stylesheet" id="siggen-frontend-css" href="http://wp.lab/wp-content/plugins/thrive-esig-gen/assets/css/frontend.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/thrive-esig-gen/assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- thundertix -->
|
||||
<link rel="stylesheet" id="thundertix-css" href="http://wp.lab/wp-content/plugins/thundertix/public//css/thundertix-public.css?ver=2020.8.31" media="all">
|
||||
<link rel="stylesheet" id="thundertix-events-block-css" href="http://wp.lab/wp-content/plugins/thundertix/public//css/thundertix-public-events-block.css?ver=2020.8.31" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/thundertix/commun/js/thundertix-commun-base-api.js?ver=2020.8.31"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/thundertix/public//js/thundertix-public-polyfills.js?ver=2020.8.31"></script>
|
||||
|
||||
|
||||
<!-- ticker-ultimate -->
|
||||
<link rel="stylesheet" id="wptu-front-style-css" href="http://wp.lab/wp-content/plugins/ticker-ultimate/assets/css/wptu-front.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -14891,6 +15058,11 @@
|
||||
<link rel="stylesheet" id="tahs-public-style-css" href="http://wp.lab/wp-content/plugins/timeline-and-history-slider/assets/css/slick-slider-style.css?ver=1.2.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- timeline-awesome -->
|
||||
<link rel="stylesheet" id="timeline-awesome-css" href="http://wp.lab/wp-content/plugins/timeline-awesome/public/css/timeline-awesome-public.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="timeline-awesome-responsive-css" href="http://wp.lab/wp-content/plugins/timeline-awesome/public/css/responsive.css?ver=1.0.1" media="all">
|
||||
|
||||
|
||||
<!-- timeline-feed -->
|
||||
<link rel="stylesheet" id="st-timeline-feed-css" href="http://wp.lab/wp-content/plugins/timeline-feed/assets/css/style.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
@@ -15050,6 +15222,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tour-operator-search/assets/js/to-search.min.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- tp-product-tooltip -->
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-tooltip-css" href="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/css/tp-woocommerce-product-tooltip-public.css?ver=1.0.2" media="all">
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-tooltip-tp_animate-css" href="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/css/tp_animate.css?ver=1.0.2" media="all">
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-tooltip-lity-css" href="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/css/lity.min.css?ver=1.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/js/tp-woocommerce-product-tooltip-public.js?ver=1.0.2"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/tp-product-tooltip/public/js/lity.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- tp-woocommerce-product-gallery -->
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-gallery-css" href="http://wp.lab/wp-content/plugins/tp-woocommerce-product-gallery/public/css/woocommerce-product-gallery-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="tp-woocommerce-product-gallery-tpslick-css" href="http://wp.lab/wp-content/plugins/tp-woocommerce-product-gallery/public/css/tpslick.css?ver=1.0.0" media="all">
|
||||
@@ -15991,6 +16171,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/virtual-marketplace-store/public/js/vmstore-public.js?ver=1.2.0"></script>
|
||||
|
||||
|
||||
<!-- virtual-real-estate-agent -->
|
||||
<link rel="stylesheet" id="virtual-agent-css" href="http://wp.lab/wp-content/plugins/virtual-real-estate-agent/public/css/virtual-agent-public.css?ver=1.1.2" media="all">
|
||||
|
||||
|
||||
<!-- visideign-login -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/visideign-login/js/login.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/visideign-login/js/blockui.js?ver=1.0"></script>
|
||||
@@ -16332,6 +16516,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/weaver-themes-shortcode-compatibility/includes/wvr.compatibility.min.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- web-notification-bar -->
|
||||
<script src="http://wp.lab/wp-content/plugins/web-notification-bar/assets/js/logic.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- webamps-remove-double-menu -->
|
||||
<script src="http://wp.lab/wp-content/plugins/webamps-remove-double-menu/js/doublemenuscript.js?ver=1.0"></script>
|
||||
|
||||
@@ -16366,6 +16554,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webhotelier/public/js/wp-webhotelier-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- webinar-manager-for-zoom-meetings -->
|
||||
<link rel="stylesheet" id="webinar-manager-for-zoom-meetings-css" href="http://wp.lab/wp-content/plugins/webinar-manager-for-zoom-meetings/assets/public/css/main.min.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- webiots-teamshowcase -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webiots-teamshowcase/assets/js/owl.carousel.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webiots-teamshowcase/assets/js/teamshowcase.js?ver=1.0"></script>
|
||||
@@ -16494,6 +16686,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wetter/public/js/wetter-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wettervorhersage -->
|
||||
<link rel="stylesheet" id="wettervorhersage-css" href="http://wp.lab/wp-content/plugins/wettervorhersage/public/css/wettervorhersage-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wettervorhersage/public/js/wettervorhersage-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wext-woocommerce-product-tab -->
|
||||
<link rel="stylesheet" id="customstyle-css" href="http://wp.lab/wp-content/plugins/wext-woocommerce-product-tab/css/customstyle.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wext-woocommerce-product-tab/js/tab-active.js?ver=1.0"></script>
|
||||
@@ -16654,6 +16851,7 @@
|
||||
<!-- wonderplugin-slider-lite -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wonderplugin-slider-lite/engine/wonderpluginsliderskins.js?ver=6.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wonderplugin-slider-lite/engine/wonderpluginslider.js?ver=6.2"></script>
|
||||
<link rel="stylesheet" id="wonderplugin-slider-css-css" href="http://wp.lab/wp-content/plugins/wonderplugin-slider-lite/engine/wonderpluginsliderengine.css?ver=6.2" media="all">
|
||||
|
||||
|
||||
<!-- wonderplugin-video-embed -->
|
||||
@@ -18196,6 +18394,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-live-post-search//public/js/wp-live-post-search-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-live-tv -->
|
||||
<link rel="stylesheet" id="wptv-frontend-css" href="http://wp.lab/wp-content/plugins/wp-live-tv//assets/css/frontend.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-live-tv//assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-load-list -->
|
||||
<link rel="stylesheet" id="load-list-css" href="http://wp.lab/wp-content/plugins/wp-load-list/public/css/load-list-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="load-listjqueryuimin-css" href="http://wp.lab/wp-content/plugins/wp-load-list/public/css/smoothness/jquery-ui.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -18248,6 +18451,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-lucky-wheel/js/wp-lucky-wheel.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-magazine-modules-lite -->
|
||||
<link rel="stylesheet" id="wpmagazine-modules-lite-frontend-css" href="http://wp.lab/wp-content/plugins/wp-magazine-modules-lite/includes/assets/css/build.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-magazine-modules-lite/includes/assets/js/frontend.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-magazine-modules-lite/includes/assets/library/jQuery.Marquee/jquery.marquee.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-magic-carousel -->
|
||||
<link rel="stylesheet" id="a-custom-css" href="http://wp.lab/wp-content/plugins/wp-magic-carousel/css/custom.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -18639,6 +18848,15 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-recall/add-on/rating-system//js/scripts.js?ver=16.12.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-recall/add-on/publicpost//js/scripts.js?ver=16.12.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-recall/add-on/rcl-chat//js/scripts.js?ver=16.12.0"></script>
|
||||
<link rel="stylesheet" id="animate-css-css" href="http://wp.lab/wp-content/plugins/wp-recall/assets/css/animate-css/animate.min.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-core-css" href="http://wp.lab/wp-content/plugins/wp-recall/assets/css/core.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-users-list-css" href="http://wp.lab/wp-content/plugins/wp-recall/assets/css/users.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-register-form-css" href="http://wp.lab/wp-content/plugins/wp-recall/assets/css/regform.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-bar-css" href="http://wp.lab/wp-content/plugins/wp-recall/assets/css/recallbar.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="cab_15-css" href="http://wp.lab/wp-content/plugins/wp-recall/add-on/theme-sunshine/style.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-rating-system-css" href="http://wp.lab/wp-content/plugins/wp-recall/add-on/rating-system/style.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-publics-css" href="http://wp.lab/wp-content/plugins/wp-recall/add-on/publicpost/style.css?ver=16.12.0" media="all">
|
||||
<link rel="stylesheet" id="rcl-chat-css" href="http://wp.lab/wp-content/plugins/wp-recall/add-on/rcl-chat/style.css?ver=16.12.0" media="all">
|
||||
|
||||
|
||||
<!-- wp-recaptcha-appsaur -->
|
||||
@@ -19238,6 +19456,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-whydonate/public/js/wp-whydonate-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-widget-styler -->
|
||||
<link rel="stylesheet" id="wpws-style-css" href="http://wp.lab/wp-content/plugins/wp-widget-styler/assets/css/minified/style.min.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- wp-wiki-tooltip -->
|
||||
<link rel="stylesheet" id="wp-wiki-tooltip-css-css" href="http://wp.lab/wp-content/plugins/wp-wiki-tooltip/static/css/wp-wiki-tooltip.css?ver=1.7.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-wiki-tooltip/static/js/wp-wiki-tooltip.js?ver=1.7.4"></script>
|
||||
@@ -19273,6 +19495,10 @@
|
||||
<link rel="stylesheet" id="cws_ytp_slick_carousel_css_theme-css" href="http://wp.lab/wp-content/plugins/wp-youtube-embed/shortcodes/pro/lib/slick/slick-theme.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-youtube-video-gallery -->
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-youtube-video-gallery/assets/js/logic.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-zillow-review-slider -->
|
||||
<link rel="stylesheet" id="wpzillow_w3-css" href="http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/css/wpzillow_w3.css?ver=1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="unslider-css" href="http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/css/wprs_unslider.css?ver=1.1" type="text/css" media="all">
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
# Copyright (C) 2014 Responsive Calendar Widget
|
||||
# This file is distributed under the same license as the Responsive Calendar Widget package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Responsive Calendar Widget 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/Responsive-Calendar-Widget\n"
|
||||
"POT-Creation-Date: 2014-04-07 11:28:06+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: classes/post-types/class-responsive-calendar-widget-post_type.php:52
|
||||
#: includes/post-types/class-responsive-calendar-widget-post_type.php:42
|
||||
msgctxt "post type general name"
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
63
spec/fixtures/dynamic_finders/plugin_version/seo-ready/translation_file/languages/seo-ready.pot
vendored
Normal file
63
spec/fixtures/dynamic_finders/plugin_version/seo-ready/translation_file/languages/seo-ready.pot
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
# Copyright (C) 2020 MyPreview
|
||||
# This file is distributed under the GPL-3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SEO Ready 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/seo-ready\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-25T20:19:33+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: seo-ready\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SEO Ready"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.mypreview.one"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin offers a GUI to generate most commonly used meta tags, so you can optimize your WordPress site for search engines… and do it in less time than it takes to brew a cup of coffee."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "MyPreview"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://mahdiyazdani.com"
|
||||
msgstr ""
|
||||
|
||||
#: seo-ready.php:119
|
||||
msgctxt "clone"
|
||||
msgid "Cloning instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: seo-ready.php:130
|
||||
msgctxt "wakeup"
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: seo-ready.php:306
|
||||
msgctxt "plugin link"
|
||||
msgid "%1$sHire Me!%2$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: seo-ready.php:306
|
||||
msgctxt "upsell"
|
||||
msgid "Looking for help? Hire Me!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Open anchor tag, 2: Close anchor tag.
|
||||
#: seo-ready.php:308
|
||||
msgctxt "plugin link"
|
||||
msgid "%1$sSupport%2$s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,161 @@
|
||||
# SCFA Language Template File (.POT)
|
||||
# Copyright (C) 2020 Joaquim Homrighausen
|
||||
# This file is distributed under the same license as the SCFA package.
|
||||
# Joaquim Homrighausen <joho@webbplatsen.se>, 2020
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SCFA 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-08-25 10:48+0200\n"
|
||||
"PO-Revision-Date: 2020-08-31 11:55+0200\n"
|
||||
"Last-Translator: Joaquim Homrighausen <joho@webbplatsen.se>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
# Description
|
||||
msgid "Generate inline HTML for Font Awesome using shortcodes"
|
||||
msgstr ""
|
||||
|
||||
# URL settings
|
||||
msgid "URL settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:131 admin/class-scfa-admin.php:131
|
||||
msgid "Insert SCFA"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:152 admin/class-scfa-admin.php:152
|
||||
msgid ""
|
||||
"Please note that to serve the specified asset URL as CSS, Font Awesome "
|
||||
"expects to be able to include web fonts relative to the URL you specify."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:153 admin/class-scfa-admin.php:153
|
||||
msgid ""
|
||||
"If you specify https://mysite.com/assets/css/all.min.css, Font Awesome will "
|
||||
"attempt to include web fonts from https://mysite.com/assets/webfonts/..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:157 admin/class-scfa-admin.php:157
|
||||
msgid "Please make sure you include the Font Awesome assets in some other way."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:167 admin/class-scfa-admin.php:167
|
||||
msgid "Quick reference"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:168 admin/class-scfa-admin.php:168
|
||||
msgid ""
|
||||
"This is intended as a quick reference for the shortcode. For a complete list "
|
||||
"of Font Awesome classes, please see"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:170 admin/class-scfa-admin.php:170
|
||||
msgid "Some icon styles may only be available with a Pro license"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:172 admin/class-scfa-admin.php:172
|
||||
msgid ""
|
||||
"You can (obviously) specify everything class related in the class=\"\" "
|
||||
"parameter if that is more convenient for you"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:174 admin/class-scfa-admin.php:174
|
||||
msgid "General format"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:177 admin/class-scfa-admin.php:177
|
||||
msgid "Generate <span> element with icon and default (icon) style:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:182 admin/class-scfa-admin.php:182
|
||||
msgid "Generate <span> element with the specified style and icon:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:187 admin/class-scfa-admin.php:187
|
||||
msgid "Generate <span> element with the specified style and icon and size:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:192 admin/class-scfa-admin.php:192
|
||||
msgid ""
|
||||
"Generate <span> element with the specified style and icon and custom CSS:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:197 admin/class-scfa-admin.php:197
|
||||
msgid ""
|
||||
"Generate <span> element with the specified style and icon and custom class:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:202 admin/class-scfa-admin.php:202
|
||||
msgid ""
|
||||
"Generate <span> element with the specified style and icon and fixed width:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:217 admin/class-scfa-admin.php:217
|
||||
msgid "SCFA settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:233 admin/class-scfa-admin.php:233
|
||||
msgid "Asset URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:242 admin/class-scfa-admin.php:242
|
||||
msgid "Enter a valid URL for the CSS or JS file to be used"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:244 admin/class-scfa-admin.php:244
|
||||
msgid ""
|
||||
"The URL of a Font Awesome CSS or JS file to be included when your site "
|
||||
"loads. Leave empty to use included Font Awesome CSS resources. If this is "
|
||||
"configured correctly, you will see some Font Awesome icons below the SCFA "
|
||||
"header on this page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:254 admin/class-scfa-admin.php:254
|
||||
msgid "Other settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:256 admin/class-scfa-admin.php:256
|
||||
msgid "Asset type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:270 admin/class-scfa-admin.php:270
|
||||
msgid "How the asset URL (above) should be used"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:277 admin/class-scfa-admin.php:277
|
||||
msgid "Default style"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:291 admin/class-scfa-admin.php:291
|
||||
msgid "Default icon style if not specified"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:298 admin/class-scfa-admin.php:298
|
||||
msgid "Remove settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:306 admin/class-scfa-admin.php:306
|
||||
msgid "Remove all SCFA plugin settings and data when plugin is uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:265
|
||||
msgid "Serve local Font Awesome CSS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:266
|
||||
msgid "Serve asset URL as CSS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:267
|
||||
msgid "Serve asset URL as Font Awesome CDN kit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-scfa-admin.php:268
|
||||
msgid "None of the above, Font Awesome is activated elsewhere"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,206 @@
|
||||
# Copyright (C) 2020 SkyMonitor.com
|
||||
# This file is distributed under the same license as the Simple Login Limit & Protect plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simple Login Limit & Protect 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-login-limit-protect\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-28T11:28:05-03:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: simple-login-limit-protect\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Simple Login Limit & Protect"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://skymonitor.com/products/simple-login-limit-protect-for-wordpress/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Protect your Wordpress instalation against hackers attempts, easy and fast"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "SkyMonitor.com"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://skymonitor.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-login-limit-protect-admin.php:48
|
||||
msgid "Simple Login Limit & Protect is running on a Private Network IP Address or behind a Proxy or Load Balancer. If you are running on a test computer or on a local Network, this is expected. If you are running behind a Proxy, Firewall or Load Balancer, you may need to configure the option \"Identify Remote IP Address\", if those are not the case, please contact us."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-login-limit-protect-admin.php:81
|
||||
msgid "Security"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-login-limit-protect-admin.php:109
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-allowlist.php:9
|
||||
msgid "Allow List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-blocklist.php:11
|
||||
msgid "Block List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-display.php:30
|
||||
msgid "Dismiss this notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-display.php:47
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:11
|
||||
msgid "Sorry, your nonce was not correct. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:38
|
||||
msgid "Options successfully updated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:60
|
||||
msgctxt "number"
|
||||
msgid "%s invalid login attempts has been blocked since installation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:66
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:79
|
||||
msgid "Security Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:82
|
||||
msgid "Intelligent"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:89
|
||||
msgid "<strong>Intelligent Mode</strong> will Learn to determine if the visitor is a good or bad guy. This will block a hacker in the first or second try, and will allow a legitimate user to try many times."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:101
|
||||
msgid "GDPR Compliance"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:105
|
||||
msgid "Makes the plugin <a href=\"https://gdpr-info.eu/\" target=\"_blank\" >GDPR</a> compliant"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:106
|
||||
msgid "<a target=\"_blank\" href=\"https://skymonitor.com/why-hash-dont-anonimize-an-ip-address-and-what-this-affects-gdpr/\">Why other plugins are doing it wrong</a>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:111
|
||||
msgid "Action for blocked IPs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:114
|
||||
msgid "Show Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:115
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:137
|
||||
msgid "Redirect to URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:116
|
||||
msgid "Do Nothing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:119
|
||||
msgid "Doing nothing will make hackers loosing time trying again and again and again while blocked, but this will also consume your servers resources and real users may become confused, since they won't know that they has been blocked"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:125
|
||||
msgid "Messsage for Blocked IPs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:131
|
||||
msgid "The message will be followed by the time remaining, i.e. 1m10s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:150
|
||||
msgid "Identify Remote IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:153
|
||||
msgid "REMOTE_ADDR - the usual, if your server is facing Internet directly"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:154
|
||||
msgid "HTTP_X_FORWARDED_FOR - the mostly used behind Proxies and Load Balancers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:155
|
||||
msgid "HTTP_X_FORWARDED - used behind Proxies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:156
|
||||
msgid "HTTP_FORWARDED - used behind Proxies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:157
|
||||
msgid "HTTP_X_REAL_IP - used behind Proxies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:158
|
||||
msgid "HTTP_CF_CONNECTING_IP - if you are customer of CloudFlare"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:159
|
||||
msgid "HTTP_X_SUCURI_CLIENTIP - if you are customer of Sucuri Web Firewall"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:162
|
||||
msgid "This option tries to identify if your server is behind a Proxy, Firewall or WAF, since this could change how we get the real user IP, and we want to do this in the most secure way. Some plugins tries to determine this automatically, but only REMOTE_ADDR is trusted, all the other options can be faked by an attacker. Bellow are the results that we identified from your access:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:172
|
||||
msgid "Option: %s, Captured IP: %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:177
|
||||
msgid "Options not displayed should not be used."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:185
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:188
|
||||
msgid "Any thoughts? Help us improve"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-general.php:189
|
||||
msgid "fill the form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/simple-login-limit-protect-admin-logs.php:9
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: login/simple-login-limit-protect-login.php:59
|
||||
msgid "Welcome, this site is protected by Simple Login Limit & Protect"
|
||||
msgstr ""
|
||||
|
||||
#: login/simple-login-limit-protect-login.php:125
|
||||
msgid "Your IP has been blocked. You can try again in"
|
||||
msgstr ""
|
||||
|
||||
#: login/simple-login-limit-protect-login.php:171
|
||||
#: login/simple-login-limit-protect-login.php:187
|
||||
msgid "Invalid login or password"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,761 @@
|
||||
# Copyright (C) 2020 John West, StefanBoonstra
|
||||
# This file is distributed under the same license as the Slideshow SE plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Slideshow SE 2.5.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/SlideshowSE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-08-03T17:50:51+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: slideshow-jquery-image-gallery\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Slideshow SE"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The slideshow plugin is easily deployable on your website. Add any image that has already been uploaded to add to your slideshow, add text slides, or even add a video. Options and styles are customizable for every single slideshow on your website."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "John West, StefanBoonstra"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://stefanboonstra.com/"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:85
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:86
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings.php:15
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:153
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:154
|
||||
msgid "Are you sure you want to delete this custom style?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:210
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:8
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:211
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:9
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginGeneralSettings.php:367
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:145
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:800
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:405
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:83
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:112
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:49
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:801
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:406
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:84
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:113
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:50
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:543
|
||||
msgid "The style used for this slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:803
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:804
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:128
|
||||
msgid "Custom style editor"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:451
|
||||
msgid "Animation used for transition between slides"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
msgid "Slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Fade"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:805
|
||||
#: classes/SlideshowSEPluginInstaller.php:806
|
||||
#: classes/SlideshowSEPluginInstaller.php:807
|
||||
#: classes/SlideshowSEPluginInstaller.php:808
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:481
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:482
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:483
|
||||
msgid "Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:806
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:452
|
||||
msgid "Number of seconds the slide takes to slide in"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:807
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:453
|
||||
msgid "Number of seconds the description takes to slide in"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:808
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:454
|
||||
msgid "Seconds between changing slides"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:809
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:455
|
||||
msgid "Number of slides to fit into one slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:809
|
||||
#: classes/SlideshowSEPluginInstaller.php:810
|
||||
#: classes/SlideshowSEPluginInstaller.php:811
|
||||
#: classes/SlideshowSEPluginInstaller.php:812
|
||||
#: classes/SlideshowSEPluginInstaller.php:813
|
||||
#: classes/SlideshowSEPluginInstaller.php:814
|
||||
#: classes/SlideshowSEPluginInstaller.php:815
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:484
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:485
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:486
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:487
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:489
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:490
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:491
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:492
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:810
|
||||
msgid "Width of the slideshow, set to parent's width on 0"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:811
|
||||
msgid "Height of the slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:812
|
||||
msgid "Height of the description boxes"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:813
|
||||
msgid "Fit image into slide (stretching it)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:814
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:462
|
||||
msgid "Show title and description"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:815
|
||||
msgid "Hide description box, it will pop up when a mouse hovers over the slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:816
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:464
|
||||
msgid "Automatically slide to the next slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:816
|
||||
#: classes/SlideshowSEPluginInstaller.php:817
|
||||
#: classes/SlideshowSEPluginInstaller.php:818
|
||||
#: classes/SlideshowSEPluginInstaller.php:819
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:493
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:494
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:495
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:496
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:497
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:498
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:499
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:500
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:501
|
||||
msgid "Control"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:817
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:465
|
||||
msgid "Return to the beginning of the slideshow after last slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:818
|
||||
msgid "Activate buttons (so the user can scroll through the slides)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginInstaller.php:819
|
||||
msgid "Show control panel (play and pause button)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:45
|
||||
msgid "Slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:46
|
||||
#: views/SlideshowSEPluginWidget/form.php:9
|
||||
#: build/index.js:230
|
||||
#: src/edit.js:38
|
||||
msgid "Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:47
|
||||
msgid "Add New Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:48
|
||||
msgid "Edit slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:49
|
||||
msgid "New slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:50
|
||||
msgid "View slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:51
|
||||
msgid "Search slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:52
|
||||
#: classes/SlideshowSEPluginPostType.php:53
|
||||
msgid "No slideshows found"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:100
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:109
|
||||
msgid "Slides List"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:118
|
||||
msgid "Slideshow Style"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:127
|
||||
msgid "Slideshow Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:169
|
||||
msgid "Slideshow created"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:173
|
||||
msgid "Slideshow updated"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:262
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginPostType.php:313
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginShortcode.php:147
|
||||
msgid "No slideshow selected."
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideInserter.php:77
|
||||
msgid "Are you sure you want to delete this slide?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideInserter.php:78
|
||||
msgid "Insert image slide"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:456
|
||||
msgid "Maximum width. When maximum width is 0, maximum width is ignored"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:457
|
||||
msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:457
|
||||
msgid "More info"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:457
|
||||
msgid "Proportional relationship%s between slideshow's width and height (width:height)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:458
|
||||
msgid "Slideshow's height"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:459
|
||||
msgid "Image behaviour"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:460
|
||||
msgid "Shrink slideshow's height when width shrinks"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:461
|
||||
msgid "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:463
|
||||
msgid "Hide description box, pop up when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:466
|
||||
msgid "Pause slideshow when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:467
|
||||
msgid "Activate navigation buttons"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:468
|
||||
msgid "Hide navigation buttons, show when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:469
|
||||
msgid "Activate pagination"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:470
|
||||
msgid "Hide pagination, show when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:471
|
||||
msgid "Activate control panel (play and pause button)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:472
|
||||
msgid "Hide control panel, show when mouse hovers over"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:473
|
||||
msgid "Wait until the next slide has loaded before showing it"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:474
|
||||
msgid "Show a loading icon until the first slide appears"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:475
|
||||
msgid "Randomize slides"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:476
|
||||
msgid "Avoid content filter (disable if '%s' is shown)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Left"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Right"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Up"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Slide Down"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Cross Fade"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Direct Fade"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:480
|
||||
msgid "Random Animation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
msgid "Natural and centered"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
msgid "Crop to fit"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:488
|
||||
msgid "Stretch to fit"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:502
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:503
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:504
|
||||
#: classes/SlideshowSEPluginSlideshowSettingsHandler.php:505
|
||||
msgid "Miscellaneous"
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginWidget.php:23
|
||||
msgid "Enables you to show your slideshows in the widget area of your website."
|
||||
msgstr ""
|
||||
|
||||
#: classes/SlideshowSEPluginWidget.php:29
|
||||
msgid "Slideshow Widget"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:37
|
||||
msgid "Play"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:37
|
||||
msgid "Pause"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:38
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:39
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPlugin/slideshow.php:40
|
||||
msgid "Go to slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:48
|
||||
msgid "Default stylesheets"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:62
|
||||
msgid "Create a new custom style from this style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:64
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:78
|
||||
msgid "Custom stylesheets"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:91
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:174
|
||||
msgid "Edit this style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:93
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:176
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:118
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:100
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:183
|
||||
msgid "Delete this style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:102
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:185
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:132
|
||||
msgid "Select a stylesheet to start customizing it."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:141
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:194
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:126
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:19
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:188
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:84
|
||||
#: views/SlideshowSEPluginWidget/form.php:4
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:150
|
||||
#: views/SlideshowSEPluginGeneralSettings/custom-styles-tab.php:202
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:13
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:19
|
||||
msgid "The settings set on this page apply only to newly created slideshows and therefore do not alter any existing ones. To adapt a slideshow's settings, %1$sclick here.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:31
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings.php:16
|
||||
msgid "Default Slideshow Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:43
|
||||
#: views/SlideshowSEPluginPostType/settings.php:13
|
||||
msgid "settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/default-slideshow-settings-tab.php:79
|
||||
msgid "Default Slideshow Stylesheet"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:14
|
||||
msgid "Add slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:15
|
||||
msgid "Edit slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:16
|
||||
msgid "Delete slideshows"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:23
|
||||
msgid "User Capabilities"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:25
|
||||
msgid "Select the user roles that will able to perform certain actions."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:41
|
||||
msgid "Untitled role"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:68
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:72
|
||||
msgid "Stylesheet location"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:75
|
||||
msgid "top"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:76
|
||||
msgid "bottom"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings-tab.php:81
|
||||
msgid "Enable lazy loading"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginGeneralSettings/general-settings.php:17
|
||||
msgid "Custom Styles"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:3
|
||||
msgid "To use this slideshow in your website either add this piece of shortcode to your posts or pages"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:7
|
||||
msgid "Or add this piece of code to where ever in your website you want to place the slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:11
|
||||
msgid "Or go to the %1$swidgets page%2$s and show the slideshow as a widget."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/information.php:13
|
||||
msgid "Or choose this slideshow in the Slideshow block using the Gutenberg editor"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/settings.php:27
|
||||
#: views/SlideshowSEPluginPostType/style-settings.php:12
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:3
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:5
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:107
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:173
|
||||
msgid "Image slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:6
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:10
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:73
|
||||
msgid "Text slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:7
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:95
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:32
|
||||
msgid "Video slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:11
|
||||
msgid "Open all"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:12
|
||||
msgid "Close all"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/slides.php:16
|
||||
msgid "Add slides to this slideshow by using one of the buttons above."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginPostType/style-settings.php:22
|
||||
msgid "Custom styles can be created and customized %1$shere%2$s."
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:6
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:11
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:20
|
||||
msgid "Insert a Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:14
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:53
|
||||
msgid "Insert Slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:29
|
||||
msgid "Select a slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:38
|
||||
#: views/SlideshowSEPluginWidget/form.php:14
|
||||
msgid "Untitled slideshow"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:58
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginShortcode/shortcode-inserter.php:69
|
||||
msgid "It seems you haven't created any slideshows yet. %1$sYou can create a slideshow here!%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:141
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:34
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:203
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:99
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:156
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:60
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:218
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:125
|
||||
msgid "URL"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:159
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:63
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:221
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:128
|
||||
msgid "Open URL in"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:161
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:65
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:223
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:130
|
||||
msgid "Same window"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:162
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:66
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:224
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:131
|
||||
msgid "New window"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:166
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:70
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:228
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:135
|
||||
msgid "Don't let search engines follow link"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:174
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:235
|
||||
msgid "Alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_attachment.php:180
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:77
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:118
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:155
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:241
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:142
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:55
|
||||
msgid "Delete slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:49
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:114
|
||||
msgid "Text color"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:52
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:117
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:54
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_text.php:119
|
||||
msgid "(Leave empty for a transparent background)"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:104
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:41
|
||||
msgid "Youtube Video ID"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:111
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_video.php:48
|
||||
msgid "Show related videos"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:136
|
||||
msgid "Embedded Media slide"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginSlideshowSlide/backend_templates.php:145
|
||||
msgid "Media URL to embed"
|
||||
msgstr ""
|
||||
|
||||
#: views/SlideshowSEPluginWidget/form.php:11
|
||||
msgid "Random Slideshow"
|
||||
msgstr ""
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/twst-login-block/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/twst-login-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "twst-login-block",
|
||||
"version": "1.0.1",
|
||||
"description": "Easily insert a login form block into your post",
|
||||
"author": "TWST",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "real-time-auto-find-and-replace",
|
||||
"version": "1.0.0",
|
||||
"description": "Find replace plugin",
|
||||
"main": "app.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"build": "webpack --mode production",
|
||||
"watch": "webpack --watch --mode development"
|
||||
},
|
||||
"author": "M.Tuhin",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.10.5",
|
||||
"@babel/polyfill": "^7.10.4",
|
||||
"@babel/preset-env": "^7.10.4",
|
||||
"autoprefixer": "^9.8.5",
|
||||
"babel-loader": "^8.1.0",
|
||||
"css-loader": "^3.6.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.14.1",
|
||||
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
||||
"postcss-loader": "^3.0.0",
|
||||
"sass-loader": "^9.0.2",
|
||||
"uglifyjs-webpack-plugin": "^2.2.0",
|
||||
"webpack": "^4.43.0",
|
||||
"webpack-cli": "^3.3.12",
|
||||
"webpack-fix-style-only-entries": "^0.5.1"
|
||||
}
|
||||
}
|
||||
15
spec/fixtures/dynamic_finders/plugin_version/virtual-real-estate-agent/change_log/CHANGELOG.md
vendored
Normal file
15
spec/fixtures/dynamic_finders/plugin_version/virtual-real-estate-agent/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
*** WordPress Virtual Real Estate Agent Changelog ***
|
||||
|
||||
14.08.2020 - Version 1.1.2
|
||||
* Modify the settings page pictures and content
|
||||
|
||||
12.08.2020 - Version 1.1.1
|
||||
* Update the plugin structure
|
||||
|
||||
11.08.2020 - Version 1.1.0
|
||||
* Change the name of the WordPress plugin
|
||||
|
||||
20.07.2020 - Version 1.0.0
|
||||
* Initial version of the plugin to serve standalone chatbot to the frontend of WordPress websites
|
||||
* English and the German translation to follow the instructions to display the chatbot
|
||||
* Display chatbot on the bottom right or bottom left of the screen
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/wc-missing-addons/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/wc-missing-addons/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "springdevs_wma",
|
||||
"version": "1.0.0",
|
||||
"description": "WooCommerce Missing Addons",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "npm run development",
|
||||
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"watch": "npm run development -- --watch",
|
||||
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
|
||||
"prod": "npm run production",
|
||||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"cross-env": "^7.0.2",
|
||||
"laravel-mix": "^5.0.4",
|
||||
"vue": "^2.6.11"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/web-vitals-block/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/web-vitals-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "web-vitals-block",
|
||||
"version": "1.0.1",
|
||||
"description": "Display web vitals in a block.",
|
||||
"author": "adamsilverstein",
|
||||
"license": "MIT",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"watch": "wp-scripts build --watch",
|
||||
"format:js": "wp-scripts format-js",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"start": "wp-scripts start",
|
||||
"packages-update": "wp-scripts packages-update"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^12.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"web-vitals-element": "^1.0.2"
|
||||
}
|
||||
}
|
||||
4
spec/fixtures/dynamic_finders/plugin_version/wijntransport/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/wijntransport/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
= 1.0.0 =
|
||||
Release Date: August 20, 2020
|
||||
|
||||
* Initial release
|
||||
@@ -0,0 +1,239 @@
|
||||
# Copyright (C) 2020 Inspire Labs
|
||||
# This file is distributed under the same license as the WooCommerce SMSAPI.pl plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce SMSAPI.pl 2.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-smsapi-pl\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-21T14:51:26+02:00\n"
|
||||
"PO-Revision-Date: 2020-07-21 14:53+0200\n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"X-Domain: woocommerce-smsapi\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
|
||||
"|| n%100>14) ? 1 : 2);\n"
|
||||
"Language: pl_PL\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WooCommerce SMSAPI.pl"
|
||||
msgstr "WooCommerce SMSAPI.pl"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://www.wpdesk.pl/sklep/smsapi-woocommerce/"
|
||||
msgstr "http://www.wpdesk.pl/sklep/smsapi-woocommerce/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"WooCommerce integration with <a href=\"https://ssl.smsapi.pl/"
|
||||
"rejestracja/4PT2\" target=\"_blank\">SMSAPI.pl</a>."
|
||||
msgstr ""
|
||||
"Integracja WooCommerce z SMSAPI <a href=\"https://ssl.smsapi.pl/"
|
||||
"rejestracja/4PT2\" target=\"_blank\">SMSAPI.pl</a>."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Inspire Labs"
|
||||
msgstr "Inspire Labs"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.inspirelabs.pl/"
|
||||
msgstr "http://www.inspirelabs.pl/"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:38
|
||||
msgid "SMSAPI"
|
||||
msgstr "SMSAPI"
|
||||
|
||||
#. translators: %s: URL
|
||||
#: class/wcSmsApiIntegration.php:42
|
||||
msgid ""
|
||||
"WooCommerce integration with SMSAPI. <a href=\"%s\" target=\"_blank\">Check "
|
||||
"out the docs →</a>"
|
||||
msgstr ""
|
||||
"Integracja WooCommerce z SMSAPI. <a href=\"%s\" target=\"_blank\">Sprawdź "
|
||||
"dokumentację →</a>"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:95
|
||||
msgid "{customer} - Customer first name and last name"
|
||||
msgstr "{customer} - Imię i nazwisko klienta"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:100
|
||||
msgid "{number} - Order number"
|
||||
msgstr "{number} - Numer zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:105
|
||||
msgid "{phone} - Customer phone number"
|
||||
msgstr "{phone} - Numer telefonu klienta"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:110
|
||||
msgid "{total_price} - Total Order value"
|
||||
msgstr "{total_price} - Całkowita wartość zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:202 class/wcSmsApiIntegration.php:350
|
||||
msgid "SMS Marketing"
|
||||
msgstr "SMS Marketing"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:305
|
||||
msgid "Error. Please fill in valid API Token."
|
||||
msgstr "Błąd. Proszę, uzupełnij poprawny token API."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:308
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:312
|
||||
msgid "Connection status:"
|
||||
msgstr "Status połączenia:"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:329 class/wcSmsApiIntegration.php:371
|
||||
#: class/wcSmsApiIntegration.php:392 class/wcSmsApiIntegration.php:413
|
||||
msgid "Enable"
|
||||
msgstr "Włącz"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:330
|
||||
msgid "Enable SMSAPI integration"
|
||||
msgstr "Włącz integrację z SMSAPI"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:335
|
||||
msgid "API version"
|
||||
msgstr "Wersja API"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:342
|
||||
msgid "API Token"
|
||||
msgstr "Token API"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:345
|
||||
msgid "SMSAPI API Token. You can generate it in SMSAPI customer panel."
|
||||
msgstr "Token SMSAPI. Token można wygenerować w panelu klienta SMSAPI."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:418
|
||||
msgid "SMS Sender name"
|
||||
msgstr "Pole nadawcy SMS"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:422
|
||||
msgid ""
|
||||
"Only names with \"Active\" status are available. The status can be checked "
|
||||
"in the SMSAPI customer panel."
|
||||
msgstr ""
|
||||
"Do wyboru są tylko nazwy o statusie \"Aktywny\". Status można sprawdzic "
|
||||
"w panelu klienta SMSAPI."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:349
|
||||
msgid "Enable user consent to SMS Marketing"
|
||||
msgstr "Włącz zgodę użytkownika na SMS marketing"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:353
|
||||
msgid ""
|
||||
"Checkbox will be added to checkout page allowing users to agree to SMS "
|
||||
"marketing."
|
||||
msgstr ""
|
||||
"Zostanie dodany checkbox do strony zamówienia, który umożliwi użytkownikowi "
|
||||
"wyrażenie zgody na SMS marketing."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:356
|
||||
msgid "Checkbox label"
|
||||
msgstr "Etykieta przy checkboksie"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:358
|
||||
msgid "I agree to receiving marketing content via SMS"
|
||||
msgstr "Zgadzam się na otrzymywanie marketingowych wiadomości SMS"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:361
|
||||
msgid "Checkbox position"
|
||||
msgstr "Pozycja checkboksa"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:364
|
||||
msgid "Above Place order button"
|
||||
msgstr "Nad przyciskiem złożenia zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:365
|
||||
msgid "Below Place order button"
|
||||
msgstr "Pod przyciskiem złożenia zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:370
|
||||
msgid "Processing order SMS"
|
||||
msgstr "SMS dla zamówienia w trakcie realizacji"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:374
|
||||
msgid "SMS will be sent when order status is changed to processing."
|
||||
msgstr ""
|
||||
"SMS zostanie wysłany po zmianie statusu zamówienia na w trakcje realizacji."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:378
|
||||
msgid "Processing order SMS text"
|
||||
msgstr "Treść SMSa dla zamówienia w trakcje realizacji"
|
||||
|
||||
#. translators: %s: Name of a blog
|
||||
#: class/wcSmsApiIntegration.php:382
|
||||
msgid "Your order number {number} status at %s changed to processing."
|
||||
msgstr ""
|
||||
"Status twojego zamówienia numer {number} w %s został zmieniony na w trakcie "
|
||||
"realizacji."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:384 class/wcSmsApiIntegration.php:405
|
||||
msgid ""
|
||||
"One SMS is a maximum of 160 characters. Note that if you enter special "
|
||||
"characters (including Polish characters), the limit will be 70 characters. If "
|
||||
"this value is exceeded, the system will send a message as several linked "
|
||||
"SMSes - up to 1530 characters (or 670 with special characters) as 10 linked "
|
||||
"SMSs, charging the account according to the current price list."
|
||||
msgstr ""
|
||||
"Jedna wiadomość SMS to maksymalnie 160 znaków. Zwróć uwagę, że jeśli wpiszesz "
|
||||
"znaki specjalne (w tym polskie znaki) limit wyniesie 70 znaków. Po "
|
||||
"przekroczeniu tej wartości system wyśle wiadomość jako kilka połączonych SMS-"
|
||||
"ów - maksymalnie 1530 znaków (lub 670 ze znakami specjalnymi) jako 10 "
|
||||
"połączonych SMS-ów obciążając konto zgodnie z aktualnym cennikiem."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:386 class/wcSmsApiIntegration.php:407
|
||||
msgid "List of available parameters that can be used in the message:"
|
||||
msgstr "Lista dostępnych parametrów które można wykorzystać w wiadomości:"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:391
|
||||
msgid "Completed order SMS"
|
||||
msgstr "SMS dla zrealizowanego zamówienia"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:395
|
||||
msgid "SMS will be sent when order status is changed to completed."
|
||||
msgstr "SMS zostanie wysłany po zmianie statusu zamówienia na zrealizowane."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:399
|
||||
msgid "Completed order SMS text"
|
||||
msgstr "Treść SMSa dla zrealizowanego zamówienia"
|
||||
|
||||
#. translators: %s: Name of a blog
|
||||
#: class/wcSmsApiIntegration.php:403
|
||||
msgid "Your order number {number} status at %s changed to completed."
|
||||
msgstr ""
|
||||
"Status twojego zamówienia numer {number} w %s został zmieniony na "
|
||||
"zrealizowane."
|
||||
|
||||
#: class/wcSmsApiIntegration.php:412
|
||||
msgid "Customer note SMS"
|
||||
msgstr "SMS dla notatki dla klienta"
|
||||
|
||||
#: class/wcSmsApiIntegration.php:416
|
||||
msgid "Text will be taken from the customer note."
|
||||
msgstr "Tekst zostanie pobrany z treści notatki."
|
||||
|
||||
#. translators: %s: URL
|
||||
#: class/wcSmsApiIntegration.php:480
|
||||
msgid ""
|
||||
"You are running out of funds. In order to keep sending SMS messages, <a href="
|
||||
"\"%s\" target=\"_blank\">log in</a> to you SMSAPI account and buy more points."
|
||||
msgstr ""
|
||||
"Środki na twoim koncie się kończą. Aby dalej wysyłać wiadomości SMS, <a href="
|
||||
"\"%s\" target=\"_blank\">zaloguj się</a> na swoje konto w SMSAPI i kup więcej "
|
||||
"punktów."
|
||||
|
||||
#: woocommerce-smsapi.php:107
|
||||
msgid "Settings"
|
||||
msgstr "Ustawienia"
|
||||
|
||||
#: woocommerce-smsapi.php:108
|
||||
msgid "Docs"
|
||||
msgstr "Dokumentacja"
|
||||
|
||||
#: woocommerce-smsapi.php:109
|
||||
msgid "Support"
|
||||
msgstr "Wsparcie"
|
||||
@@ -0,0 +1,226 @@
|
||||
# Copyright (C) 2020 ThemeMantis
|
||||
# This file is distributed under the same license as the WP Full Screen Search plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Full Screen Search 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-full-screen-search\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-22T05:53:20+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-full-screen-search\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Full Screen Search"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://thememantis.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Converts default WordPress search to full screen search overlay"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ThemeMantis"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Mayank Majeji"
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:157
|
||||
msgid "Sorry, you are not allowed to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:168
|
||||
msgid "nonce field is missing. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:172
|
||||
msgid "'Invalid nonce specified. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: wp-full-screen-search.php:184
|
||||
msgid "Settings Saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:29
|
||||
msgid "WP Full Screen Search"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:32
|
||||
msgid "Full Screen Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:35
|
||||
msgid "Full Screen Background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:39
|
||||
msgid "Choose full screen background color."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:46
|
||||
msgid "Search Box Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:49
|
||||
msgid "Search Box Background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:53
|
||||
msgid "Choose background color of search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:58
|
||||
msgid "Search Box Placeholder Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:62
|
||||
msgid "Choose placeholder color of search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:67
|
||||
msgid "Search Box Placeholder Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:71
|
||||
msgid "Enter placeholder text for search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:76
|
||||
msgid "Search Box Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:80
|
||||
msgid "Choose text color of search box."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:87
|
||||
msgid "Close Button Settings Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:90
|
||||
msgid "Make Close Button Round Shape"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:95
|
||||
msgid "Enable / Disable round shape for close button background."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:100
|
||||
msgid "Close Button Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:104
|
||||
msgid "Choose background color of close button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:108
|
||||
msgid "Close Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:113
|
||||
msgid "Choose text color of close button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:123
|
||||
msgid "Save WP Full Screen Search Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Name of this plugin
|
||||
#: admin/dashboard-notices.php:11
|
||||
msgid "Thank you for installing %1$s!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/dashboard-notices.php:14
|
||||
msgid "Click here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/dashboard-notices.php:14
|
||||
msgid "to configure the plugin."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Link to TheMaverickSpirit blog
|
||||
#: views/sidebar.php:9
|
||||
msgid "Learn More About WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:17
|
||||
msgid "Want to learn more about WordPress? Check out our free WordPress tutorials on %s."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:18
|
||||
msgid "TheMaverickSpirit blog"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:25
|
||||
msgid "Some of our popular guides:"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:31
|
||||
msgid "Add Alt Tags to WordPress Images"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:36
|
||||
msgid "Disable Self Pingbacks & Trackbacks"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:41
|
||||
msgid "Essential Settings After WordPress Installation"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:46
|
||||
msgid "Improve WordPress Speed & Performance"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:51
|
||||
msgid "Improve WordPress Security"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:62
|
||||
msgid "Looking for a WordPress Theme?"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:66
|
||||
msgid "Check out our list of WordPress themes articles that covers different niches."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:71
|
||||
msgid "Best WordPress Theme Marketplaces"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:76
|
||||
msgid "Amazon Affiliate WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:81
|
||||
msgid "WooCommerce WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:86
|
||||
msgid "Multipurpose WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:91
|
||||
msgid "One Page WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:96
|
||||
msgid "Blog WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:101
|
||||
msgid "Lifestyle Blog WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:106
|
||||
msgid "Personal Blog WordPress Themes"
|
||||
msgstr ""
|
||||
12243
spec/fixtures/dynamic_finders/plugin_version/wp-job-portal/translation_file/languages/wp-job-portal-en_US.po
vendored
Normal file
12243
spec/fixtures/dynamic_finders/plugin_version/wp-job-portal/translation_file/languages/wp-job-portal-en_US.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,145 @@
|
||||
# Copyright (C) 2020 Grepstad Nilsen
|
||||
# This file is distributed under the same license as the WP Pagespeed Score plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Pagespeed Score 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: Grepstad Nilsen <https://www.grepstadnilsen.no/>\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-03-27T21:36:30+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-pagespeed-score\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Pagespeed Score"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.grepstadnilsen.no/wp-pagespeed-score-uri/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This is a short description of what the plugin does. It's displayed in the WordPress admin area."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Grepstad Nilsen"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.grepstadnilsen.no/"
|
||||
msgstr ""
|
||||
|
||||
#: src/Admin/Settings/Main.php:190
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin name(s).
|
||||
#: src/Bootstrap.php:150
|
||||
msgid "The following plugin needs to be updated to its latest version to ensure maximum compatibility with "
|
||||
msgid_plural "The following plugins need to be updated to their latest version to ensure maximum compatibility with "
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#. translators: 1: plugin name
|
||||
#: src/Bootstrap.php:157
|
||||
msgid "Plugin not activated. A higher version of %s is needed for this plugin. Please update the plugin."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin display name, 2: required minimum PHP version, 3: current PHP version, help link
|
||||
#: src/Bootstrap.php:176
|
||||
msgid "%1$s requires at least PHP version %2$s in order to work. You have version %3$s. Please see %4$s for more information."
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: child theme name
|
||||
#: src/Bootstrap.php:245
|
||||
msgid " and %1$s child theme "
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin display name, 2: parent theme name, 3: child theme name message, 4: wp-admin link to themes, if applicable
|
||||
#: src/Bootstrap.php:252
|
||||
msgid "The %1$s plugin requires the %2$s parent theme%3$sin order to work.%4$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:58
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:63
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:68
|
||||
msgid "Pinterest"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Choices.php:73
|
||||
msgid "LinkedIn"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Settings/Main.php:99
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: plugin display name, 2: name of debug function, 3: PHP End of Line character, 4: name of function triggering debug function, 5: debug log message
|
||||
#: src/Common/Utilities/Debug.php:58
|
||||
msgid "%1$s - Message from %2$s():%3$s%4$s%5$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Utilities/Debug.php:80
|
||||
msgctxt "Successfully emailed from output_to_log()"
|
||||
msgid "Email sent."
|
||||
msgstr ""
|
||||
|
||||
#: src/Common/Utilities/Debug.php:82
|
||||
msgctxt "Unsuccessfully emailed from output_to_log()"
|
||||
msgid "Email attempted but failed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:88
|
||||
msgid "Plugin options and settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:96
|
||||
msgid "Example Section"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:97
|
||||
msgid "Example Section description."
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:162
|
||||
msgid "Social Network(s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:163
|
||||
msgid "Checked ones will output; unchecked ones will not. Drag and drop to set your preferred display order."
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:212
|
||||
msgid "Post Type(s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Customizer/Customizer.php:213
|
||||
msgid "Which Post Types should be enabled?"
|
||||
msgstr ""
|
||||
|
||||
#: src/PluginData.php:85
|
||||
msgctxt "Plugin name for display"
|
||||
msgid "WP Pagespeed Score"
|
||||
msgstr ""
|
||||
|
||||
#: src/Shortcodes/Shortcode.php:149
|
||||
msgctxt "Shortcode error cause default text"
|
||||
msgid "Unspecified"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: shortcode tag, 2: cause, 3: raw capability required
|
||||
#: src/Shortcodes/Shortcode.php:154
|
||||
msgctxt "Shortcode error message"
|
||||
msgid "Your attempt to use the `[%1$s]` shortcode resulted in an error because: %2$s. Please reference the documentation or inspect the code and try again. (Message only shown to users with the `%3$s` capability.)"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,235 @@
|
||||
# Copyright (C) 2020 ThemeMantis
|
||||
# This file is distributed under the same license as the WP Utility and Performance plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Utility and Performance 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-utility-and-performance\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-07-22T05:53:20+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wp-utility-and-performance\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Utility and Performance"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "http://thememantis.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allows you to remove unused resources and improve speed and performance of your WordPress website"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ThemeMantis"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Mayank Majeji"
|
||||
msgstr ""
|
||||
|
||||
#: class-mantis-wp-utility.php:141
|
||||
msgid "nonce field is missing. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: class-mantis-wp-utility.php:144
|
||||
msgid "'Invalid nonce specified. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: class-mantis-wp-utility.php:166
|
||||
msgid "Settings Saved."
|
||||
msgstr ""
|
||||
|
||||
#: class-mantis-wp-utility.php:288
|
||||
msgid "No feed available, please visit the"
|
||||
msgstr ""
|
||||
|
||||
#: class-mantis-wp-utility.php:288
|
||||
msgid "homepage"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Name of this plugin
|
||||
#: views/dashboard-notices.php:11
|
||||
msgid "Thank you for installing %1$s!"
|
||||
msgstr ""
|
||||
|
||||
#: views/dashboard-notices.php:14
|
||||
msgid "Click here"
|
||||
msgstr ""
|
||||
|
||||
#: views/dashboard-notices.php:14
|
||||
msgid "to configure the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:6
|
||||
#: views/settings.php:29
|
||||
msgid "WP Utility & Performance WordPress Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:34
|
||||
msgid "Script & Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:38
|
||||
msgid "Hide CSS Files Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:42
|
||||
msgid "Hide JS Files Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:46
|
||||
msgid "Disable Dashicons in Frontend"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:50
|
||||
msgid "Disable Embeds"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:54
|
||||
msgid "Disable Emojis"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:59
|
||||
msgid "WordPress Meta Tag Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:63
|
||||
msgid "Remove RSD Link"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:67
|
||||
msgid "Hide WordPress Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:71
|
||||
msgid "Disable XML RPC"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:75
|
||||
msgid "Remove WLW Manifest Link"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:79
|
||||
msgid "Remove Shortlink"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:84
|
||||
msgid "WordPress Autoupdate Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:88
|
||||
msgid "Enable Plugin Autoupdate"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:92
|
||||
msgid "Enable Theme Autoupdate"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:97
|
||||
msgid "RSS Feed Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:101
|
||||
msgid "Disable RSS Feed"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:105
|
||||
msgid "Remove RSS Feed Links"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:109
|
||||
msgid "Add Feature Image To RSS Feed"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:115
|
||||
msgid "WordPress Widget Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:115
|
||||
msgid "Enable Shortcode in WP Widgets"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Link to TheMaverickSpirit blog
|
||||
#: views/sidebar.php:9
|
||||
msgid "Learn More About WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:17
|
||||
msgid "Want to learn more about WordPress? Check out our free WordPress tutorials on %s."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:18
|
||||
msgid "TheMaverickSpirit blog"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:25
|
||||
msgid "Some of our popular guides:"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:31
|
||||
msgid "Add Alt Tags to WordPress Images"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:36
|
||||
msgid "Disable Self Pingbacks & Trackbacks"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:41
|
||||
msgid "Essential Settings After WordPress Installation"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:46
|
||||
msgid "Improve WordPress Speed & Performance"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:51
|
||||
msgid "Improve WordPress Security"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:62
|
||||
msgid "Looking for a WordPress Theme?"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:66
|
||||
msgid "Check out our list of WordPress themes articles that covers different niches."
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:71
|
||||
msgid "Best WordPress Theme Marketplaces"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:76
|
||||
msgid "Amazon Affiliate WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:81
|
||||
msgid "WooCommerce WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:86
|
||||
msgid "Multipurpose WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:91
|
||||
msgid "One Page WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:96
|
||||
msgid "Blog WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:101
|
||||
msgid "Lifestyle Blog WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: views/sidebar.php:106
|
||||
msgid "Personal Blog WordPress Themes"
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/wp-widget-styler/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/wp-widget-styler/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
Version 1.0.0 - Wednesday, 02nd September 2020
|
||||
- Initial release
|
||||
@@ -0,0 +1,316 @@
|
||||
# Copyright (C) 2020 WebEmpire
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Widget Styler 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-widget-styler\n"
|
||||
"POT-Creation-Date: 2020-09-01 13:52:38+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:220
|
||||
msgid "Title Tag"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:223
|
||||
msgid "H1"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:224
|
||||
msgid "H2"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:225
|
||||
msgid "H3"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:226
|
||||
msgid "H4"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:227
|
||||
msgid "H5"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:228
|
||||
msgid "Span"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:229
|
||||
msgid "Paragraph"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:238
|
||||
msgid "Hide Widget Title"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:250
|
||||
#: classes/class-wp-widget-styler-config.php:326
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:251
|
||||
#: classes/class-wp-widget-styler-config.php:327
|
||||
msgid "Tablet"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:252
|
||||
#: classes/class-wp-widget-styler-config.php:328
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:254
|
||||
msgid "Overall Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:256
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:257
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:258
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:290
|
||||
msgid "Apply text color to widget title."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:318
|
||||
msgid "Display rule for responsive devices."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:319
|
||||
#: includes/wp-widget-styler-addons.php:47
|
||||
msgid "Responsive Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:320
|
||||
msgid "Checked devices will not show this widget."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:357
|
||||
msgid "Display Locations"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:358
|
||||
msgid "Add locations for where this widget should appear."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:400
|
||||
msgid "Exclude Locations"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:401
|
||||
msgid "This widget will not appear at these locations."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:443
|
||||
msgid "User Logic"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:445
|
||||
msgid "Users with this targeted login status roles will not load this widget."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:448
|
||||
msgid "All Logged In Users"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:449
|
||||
msgid "All Logged Out Users"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:478
|
||||
msgid "Custom ID"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:480
|
||||
msgid "No need to add \"#\" in ID name."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:482
|
||||
msgid "idname"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:490
|
||||
msgid "Custom Class"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:492
|
||||
msgid "No need to add \".\" in class name. Separate each class with space."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-config.php:494
|
||||
msgid "classname"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-loader.php:316
|
||||
msgid "Confiure WP Widget Styler Settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-loader.php:316
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wp-widget-styler-meta-fields.php:463
|
||||
msgid "Ok, You Deserve It »"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:37 public/widget-styler-general.php:22
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:38
|
||||
msgid "A General section includes Title Tag, Visibility, Alignment options."
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:42
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:43
|
||||
msgid "It includes all Colors & Background settings for your widget."
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:48
|
||||
msgid ""
|
||||
"A Responsive Visibility section provides you privilege to Show / Hide your "
|
||||
"widget on responsive devices."
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:52
|
||||
msgid "Display Rules"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:53
|
||||
msgid ""
|
||||
"A Display Rules section let's you enable your current widget based on "
|
||||
"Display rulesets."
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:57
|
||||
msgid "Exclusion Rules"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:58
|
||||
msgid ""
|
||||
"A Exclusion Rules section let's you disable your current widget based on "
|
||||
"Exclusion rulesets."
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:62
|
||||
msgid "User Login State Conditional Logic"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:63
|
||||
msgid ""
|
||||
"A User Login State Conditional Logic section grants you to control widget "
|
||||
"visibility based on user login status."
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:67
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: includes/wp-widget-styler-addons.php:68
|
||||
msgid "An Advanced section includes Custom Classes & ID privilege for the widget."
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-admin.php:24
|
||||
msgid "Activate All"
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-admin.php:25
|
||||
msgid "Deactivate All"
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-admin.php:34
|
||||
msgid "Settings saved successfully."
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:79
|
||||
msgid "Contact Developer"
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:85
|
||||
msgid "Get in touch with our WP Widget Styler developers. We're happy to help!"
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:90
|
||||
msgid "Get Support »"
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:105
|
||||
#. translators: %1$s: demos link.
|
||||
msgid "Code Snippets"
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:110
|
||||
msgid "Custom codes are listed here, which will help you for custom requirements."
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:112
|
||||
msgid "Actions / Filters / CSS »"
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:118
|
||||
msgid "Thanking You!"
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:124
|
||||
msgid "Thanks for choosing the WP Widget Styler. We hope you like it!!!"
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:130
|
||||
msgid "Could you please do us a BIG favor and give it a 5-star rating on WordPress?"
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:135
|
||||
msgid ""
|
||||
"This would boost our motivation and help other users make a comfortable "
|
||||
"decision while choosing the Widget Styler."
|
||||
msgstr ""
|
||||
|
||||
#: public/widget-styler-general.php:140
|
||||
msgid "Ok, you deserve it »"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WP Widget Styler"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/wp-widget-styler/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Power-up your WordPress widgets using these awesome styler configurations."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WebEmpire"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://webempire.org.in/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,252 @@
|
||||
# WPO365 Pot
|
||||
# Copyright 2020 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPO365 Pot v10.10\n"
|
||||
"POT-Creation-Date: 2020-08-09 20:42+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Language-Team: Marco van Wieren <support@wpo365.com>\n"
|
||||
"Report-Msgid-Bugs-To: Marco van Wieren <support@wpo365.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.4\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: nl\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: .vscode\n"
|
||||
"X-Poedit-SearchPathExcluded-1: apps\n"
|
||||
"X-Poedit-SearchPathExcluded-2: build\n"
|
||||
"X-Poedit-SearchPathExcluded-3: images\n"
|
||||
"X-Poedit-SearchPathExcluded-4: dist\n"
|
||||
"X-Poedit-SearchPathExcluded-5: languages\n"
|
||||
|
||||
#: Wpo/SCIM/SCIM_Controller.php:39
|
||||
msgid ""
|
||||
"e.g /Users?filter=userName eq \"Test_User_dfeef4c5-5681-4387-b016-"
|
||||
"bdf221e82081\""
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Sync/Sync_Manager.php:587
|
||||
#, php-format
|
||||
msgid "User Sync completed on your site %s."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Sync/Sync_Manager.php:591
|
||||
#, php-format
|
||||
msgid "[%s] User Sync completed"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/User/User_Details.php:233
|
||||
msgid "Office 365 Profile Information"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/User/User_Details.php:307
|
||||
msgid "Directory Info"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/User/User_Manager.php:386
|
||||
msgid "Updating your email address is currently not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/EDD_SL_Plugin_Updater.php:230
|
||||
#, php-format
|
||||
msgid ""
|
||||
"There is a new version of %1$s available. %2$sView version %3$s details%4$s."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/EDD_SL_Plugin_Updater.php:238
|
||||
#, php-format
|
||||
msgid ""
|
||||
"There is a new version of %1$s available. %2$sView version %3$s details%4$s "
|
||||
"or %5$supdate now%6$s."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/EDD_SL_Plugin_Updater.php:476
|
||||
msgid "You do not have permission to install plugin updates"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/EDD_SL_Plugin_Updater.php:476
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:71
|
||||
msgid ""
|
||||
"Wordpress + Office 365 login not configured yet. Please contact your System "
|
||||
"Administrator."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:72
|
||||
msgid "Please contact your System Administrator and check log file."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:73
|
||||
msgid ""
|
||||
"Your login might be tampered with. Please contact your System Administrator."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:74
|
||||
msgid ""
|
||||
"Could not create or retrieve your login. Please contact your System "
|
||||
"Administrator."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:75
|
||||
msgid "Access Denied. Please contact your System Administrator."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:76
|
||||
msgid ""
|
||||
"Your ID token could not be processed. Please contact your System "
|
||||
"Administrator."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:77
|
||||
msgid ""
|
||||
"The BASIC edition of the WordPress + Office 365 plugin does not "
|
||||
"automatically create new users. See the following <a href=\"https://www."
|
||||
"wpo365.com/basic-edition/\">online documentation</a> for more info."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:78
|
||||
msgid ""
|
||||
"Alternatively, you can click the following link to sign into this website "
|
||||
"with your corporate <a href=\"__##OAUTH_URL##__\">network login (Office "
|
||||
"365)</a>"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:79
|
||||
msgid ""
|
||||
"Alternatively, you can click the following link to sign into this website "
|
||||
"with your corporate <span class=\"wpo365-dual-login-notice\" style=\"cursor: "
|
||||
"pointer; text-decoration: underline; color: #000CD\" onclick=\"window.wpo365."
|
||||
"pintraRedirect.toMsOnline()\">network login (Office 365)</span>"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:80
|
||||
msgid ""
|
||||
"Could not create or retrieve your login. Most likely the authentication "
|
||||
"response received from Microsoft does not contain an email address. Consult "
|
||||
"the <a target=\"_blank\" href=\"https://www.wpo365.com/troubleshooting-the-"
|
||||
"wpo365-login-plugin/#PARSING_ERROR\">online documentation</a> for details."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Error_Handler.php:81
|
||||
msgid "Account deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Helpers.php:667
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Helpers.php:1013
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Click <strong><a href=\"%s?page=wpo365-wizard\">here</a></strong> to "
|
||||
"configure WordPress + Office 365 Single Sign-on. The configuration must - at "
|
||||
"the very least - provide a valid <strong>Directory (tenant) ID</strong>, "
|
||||
"<strong>Application ID</strong> and a so-called <strong>Redirect URI</"
|
||||
"strong>. Please review <a target=\"_blank\" href=\"https://docs.wpo365.com/"
|
||||
"article/22-sso\">this article</a> for details."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Helpers.php:1040
|
||||
msgid ""
|
||||
"Many thanks for using <strong>WordPress + Microsoft Office 365 / Azure AD</"
|
||||
"strong>! Could you please spare a minute and give it a review over at "
|
||||
"WordPress.org?"
|
||||
msgstr ""
|
||||
"Ik hoop dat <strong>WordPress + Microsoft Office 365 / Azure AD</strong> u "
|
||||
"goed bevalt! Wellicht kunt u in een verloren minuutje anderen helpen en uw "
|
||||
"waardering geven op WordPress.org?"
|
||||
|
||||
#: Wpo/Util/Helpers.php:1041
|
||||
msgid "Yes, here we go!"
|
||||
msgstr "Ja, heel graag!"
|
||||
|
||||
#: Wpo/Util/Helpers.php:1041
|
||||
msgid "Remind me later"
|
||||
msgstr "Wellicht later"
|
||||
|
||||
#: Wpo/Util/Helpers_Premium.php:129
|
||||
msgid "Every 5 minutes"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Helpers_Premium.php:134
|
||||
msgid "WPO365 Daily"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Helpers_Premium.php:139
|
||||
msgid "WPO365 Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/License.php:141
|
||||
#, php-format
|
||||
msgid "Your license key expired on %s."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/License.php:146
|
||||
msgid "Your license key has been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/License.php:149
|
||||
msgid "Invalid license."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/License.php:153
|
||||
msgid "Your license is not active for this URL."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/License.php:156
|
||||
#, php-format
|
||||
msgid "This appears to be an invalid license key for %s."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/License.php:159
|
||||
msgid "Your license key has reached its activation limit."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/License.php:162
|
||||
msgid "An error occurred, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Notifications.php:43
|
||||
#, php-format
|
||||
msgid "New user registration on your site %s:"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Notifications.php:45 Wpo/Util/Notifications.php:109
|
||||
#, php-format
|
||||
msgid "Username: %s"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Notifications.php:47
|
||||
#, php-format
|
||||
msgid "Email: %s"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Notifications.php:52
|
||||
#, php-format
|
||||
msgid "[%s] New User Registration"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Notifications.php:110
|
||||
msgid "To set your password, visit the following address:"
|
||||
msgstr ""
|
||||
|
||||
#: Wpo/Util/Notifications.php:118
|
||||
#, php-format
|
||||
msgid "[%s] Your username and password info"
|
||||
msgstr ""
|
||||
|
||||
#: templates/login-button.php:100
|
||||
msgid "Sign in with Microsoft"
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/wysiwyg-calculator-block/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/wysiwyg-calculator-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "wcw_calculator-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.1"
|
||||
}
|
||||
}
|
||||
470
spec/fixtures/dynamic_finders/plugin_version/zoho-flow/translation_file/languages/zoho-flow.pot
vendored
Normal file
470
spec/fixtures/dynamic_finders/plugin_version/zoho-flow/translation_file/languages/zoho-flow.pot
vendored
Normal file
@@ -0,0 +1,470 @@
|
||||
# Copyright (C) 2020 Zoho Flow
|
||||
# This file is distributed under the same license as the Zoho Flow plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Zoho Flow 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/trunk\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-02T11:11:39+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: zoho-flow\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Author of the plugin
|
||||
#: admin/admin.php:22
|
||||
#: admin/admin.php:23
|
||||
#: admin/admin.php:142
|
||||
msgid "Zoho Flow"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.zoho.com/flow/?utm_source=wordpress&utm_campaign=plugin-uri&utm_medium=link"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Zoho Flow helps you integrate your favorite Wordpress plugins with hundreds of popular business apps like Zoho CRM, Mailchimp, HubSpot, and Eventbrite. Save hours of time at work by automatically syncing data between the plugins and the apps you use."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.zoho.com/flow/?utm_source=wordpress&utm_campaign=author-uri&utm_medium=link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:52
|
||||
#: admin/admin.php:87
|
||||
#: includes/rest-api.php:26
|
||||
msgid "You are not allowed to perform the operation."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:56
|
||||
msgid "Unable to generate API Key. Please try after refreshing the page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:77
|
||||
#: admin/admin.php:117
|
||||
msgid "Service not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:91
|
||||
msgid "Unable to remove API Key. Please try after refreshing the page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:95
|
||||
msgid "Invalid API Key ID provided"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:113
|
||||
msgid "Removed API key successfully"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:144
|
||||
msgid "Integrate your favourite WordPress plugins with hundreds of business apps"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:152
|
||||
msgid "It appears that permalink has not been enabled for this site. For this plugin to work properly, you need to enable permalinks. "
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:161
|
||||
msgid "This plugin needs to call external url for its functionality. However, it did not work due to the below error."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s refers to the minimum TLS version
|
||||
#: admin/admin.php:177
|
||||
msgid "This plugins requires at least %s to work properly. Kindly upgrade the TLS version of your wordpress setup."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:209
|
||||
msgid "Supported Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:210
|
||||
msgid "Automate workflows between these WordPress plugins and other apps you use"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:221
|
||||
msgid "About Zoho Flow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:224
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:225
|
||||
msgid "App gallery"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:226
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:227
|
||||
msgid "Pricing"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:241
|
||||
msgid "Didn’t find an app or plugin?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:242
|
||||
msgid "Are we missing any important apps or plugins you use? Let us know and we’ll try our best to add them."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:243
|
||||
msgid "Request app / plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:254
|
||||
msgid "The plugin was not found!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:261
|
||||
#: admin/admin.php:349
|
||||
msgid "Generate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:262
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:276
|
||||
msgid "Generating API key..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:280
|
||||
msgid "Copy the API key and keep it safe. The API key cannot be retrieved again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:300
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:312
|
||||
msgid "API Keys"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:313
|
||||
#: admin/admin.php:349
|
||||
msgid "Generate new API key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:313
|
||||
msgid "+ New API Key"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s refers to the plugin name
|
||||
#: admin/admin.php:318
|
||||
msgid "You can use any of the active API keys to allow Zoho Flow integrate %s with other apps. Generate one if you don't have any."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s refers to the plugin name
|
||||
#: admin/admin.php:343
|
||||
msgid "How to integrate %s with other apps via Zoho Flow?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:346
|
||||
msgid "Step 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:347
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:347
|
||||
msgid " for an account in Zoho Flow or login if you already have one."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:348
|
||||
msgid "Step 2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:349
|
||||
msgid " an API Key for the plugin. Keep it safe, as it cannot be retrieved again."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:350
|
||||
msgid "Step 3"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:351
|
||||
msgid "Go to Zoho Flow and create a new flow. Each plugin supports certain triggers/actions. Pick the one you want to use in the automation."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:352
|
||||
msgid "Step 4"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s refers to the plugin name
|
||||
#: admin/admin.php:356
|
||||
msgid "When you create a connection for %s, use the generated API key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:359
|
||||
msgid "Step 5"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:360
|
||||
msgid "Add the base URL which is the part of the URL as instructed in Flow."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:361
|
||||
msgid "Step 6"
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:362
|
||||
msgid "Configure the trigger/action you wish to add."
|
||||
msgstr ""
|
||||
|
||||
#: admin/admin.php:365
|
||||
msgid "Note: Zoho Flow supports certain triggers/actions which you can use for your use case. Write to <a href=\"mailto:support@zohoflow.com\">support@zohoflow.com</a> if you want to see any different trigger/action in a plugin."
|
||||
msgstr ""
|
||||
|
||||
#. translators; %s refers to the plugin name
|
||||
#: admin/admin.php:373
|
||||
msgid "%s integrations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/zoho-flow-service.php:153
|
||||
msgid "The webhook is not found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/zoho-flow-service.php:158
|
||||
msgid "The webhook could not be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/zoho-flow-service.php:173
|
||||
msgid "You cannot create more than 10 API keys"
|
||||
msgstr ""
|
||||
|
||||
#: includes/zoho-flow-service.php:194
|
||||
msgid "You are not authorized to remove the API key."
|
||||
msgstr ""
|
||||
|
||||
#: includes/zoho-flow-service.php:197
|
||||
msgid "The API key is not found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/zoho-flow-service.php:202
|
||||
msgid "The API key could not be removed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/zoho-flow-service.php:273
|
||||
msgid "You are not authorized to access the API."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s refers to the plugin name
|
||||
#: includes/zoho-flow-services.php:138
|
||||
msgid "Edit %s"
|
||||
msgstr ""
|
||||
|
||||
#: integrations.php:11
|
||||
msgid "Contact Form 7 is a Wordpress form builder that supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and more."
|
||||
msgstr ""
|
||||
|
||||
#: integrations.php:70
|
||||
msgid "WPForms is a WordPress forms plugin with drag and drop online form builder that allows users to create contact forms, email subscription forms, payment forms and more."
|
||||
msgstr ""
|
||||
|
||||
#: integrations.php:129
|
||||
msgid "Ninja Forms is a Wordpress form builder that provides drag and drop form fields, multi-page forms, conditional forms and more."
|
||||
msgstr ""
|
||||
|
||||
#: integrations.php:181
|
||||
msgid "Formidable Forms is a drag and drop Wordpress forms plugin that lets you create contact forms, surveys, quizzes, registration forms, payment forms and more."
|
||||
msgstr ""
|
||||
|
||||
#: integrations.php:233
|
||||
msgid "Everest Forms is a WordPress form plugin with a drag and drop form builder. It provides multiple column layout, shortcode support, smart tags and more."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:47
|
||||
msgid "ID of the Contact Form 7 form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:53
|
||||
msgid "The title of the Contact Form 7 form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:67
|
||||
#: integrations/contact-form-7/contact-form-7.php:157
|
||||
#: integrations/contact-form-7/contact-form-7.php:195
|
||||
#: integrations/contact-form-7/contact-form-7.php:221
|
||||
#: integrations/everest-forms/everest-forms.php:66
|
||||
#: integrations/everest-forms/everest-forms.php:159
|
||||
#: integrations/everest-forms/everest-forms.php:197
|
||||
#: integrations/everest-forms/everest-forms.php:223
|
||||
#: integrations/formidable-forms/formidable-forms.php:48
|
||||
#: integrations/formidable-forms/formidable-forms.php:115
|
||||
#: integrations/formidable-forms/formidable-forms.php:153
|
||||
#: integrations/formidable-forms/formidable-forms.php:179
|
||||
#: integrations/ninja-forms/ninja-forms.php:63
|
||||
#: integrations/ninja-forms/ninja-forms.php:91
|
||||
#: integrations/ninja-forms/ninja-forms.php:127
|
||||
#: integrations/ninja-forms/ninja-forms.php:153
|
||||
#: integrations/wpforms/wpforms.php:66
|
||||
#: integrations/wpforms/wpforms.php:194
|
||||
#: integrations/wpforms/wpforms.php:233
|
||||
#: integrations/wpforms/wpforms.php:262
|
||||
msgid "The form ID is invalid."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:72
|
||||
#: integrations/contact-form-7/contact-form-7.php:162
|
||||
#: integrations/contact-form-7/contact-form-7.php:200
|
||||
#: integrations/contact-form-7/contact-form-7.php:226
|
||||
#: integrations/everest-forms/everest-forms.php:71
|
||||
#: integrations/everest-forms/everest-forms.php:164
|
||||
#: integrations/everest-forms/everest-forms.php:202
|
||||
#: integrations/everest-forms/everest-forms.php:228
|
||||
#: integrations/formidable-forms/formidable-forms.php:53
|
||||
#: integrations/formidable-forms/formidable-forms.php:120
|
||||
#: integrations/formidable-forms/formidable-forms.php:158
|
||||
#: integrations/formidable-forms/formidable-forms.php:184
|
||||
#: integrations/ninja-forms/ninja-forms.php:68
|
||||
#: integrations/ninja-forms/ninja-forms.php:96
|
||||
#: integrations/ninja-forms/ninja-forms.php:132
|
||||
#: integrations/ninja-forms/ninja-forms.php:158
|
||||
#: integrations/wpforms/wpforms.php:71
|
||||
#: integrations/wpforms/wpforms.php:198
|
||||
#: integrations/wpforms/wpforms.php:238
|
||||
#: integrations/wpforms/wpforms.php:267
|
||||
msgid "The form is not found."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:121
|
||||
#: integrations/everest-forms/everest-forms.php:123
|
||||
#: integrations/formidable-forms/formidable-forms.php:79
|
||||
msgid "Unique name of the field."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:127
|
||||
#: integrations/everest-forms/everest-forms.php:129
|
||||
#: integrations/formidable-forms/formidable-forms.php:85
|
||||
#: integrations/wpforms/wpforms.php:158
|
||||
msgid "Label of the field."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:132
|
||||
#: integrations/everest-forms/everest-forms.php:134
|
||||
#: integrations/formidable-forms/formidable-forms.php:90
|
||||
#: integrations/wpforms/wpforms.php:163
|
||||
msgid "Type of the field."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:137
|
||||
#: integrations/everest-forms/everest-forms.php:139
|
||||
#: integrations/formidable-forms/formidable-forms.php:95
|
||||
msgid "Options of a dropdown/multiselect/checkbox/radio field."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:142
|
||||
#: integrations/everest-forms/everest-forms.php:144
|
||||
#: integrations/formidable-forms/formidable-forms.php:100
|
||||
#: integrations/wpforms/wpforms.php:168
|
||||
msgid "Whether the field is mandatory."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:231
|
||||
#: integrations/everest-forms/everest-forms.php:233
|
||||
#: integrations/formidable-forms/formidable-forms.php:189
|
||||
#: integrations/ninja-forms/ninja-forms.php:163
|
||||
#: integrations/wpforms/wpforms.php:272
|
||||
msgid "The webhook ID is invalid."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:251
|
||||
#: integrations/everest-forms/everest-forms.php:253
|
||||
#: integrations/formidable-forms/formidable-forms.php:209
|
||||
#: integrations/ninja-forms/ninja-forms.php:183
|
||||
#: integrations/wpforms/wpforms.php:292
|
||||
msgid "Unique id of the webhook."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:257
|
||||
#: integrations/everest-forms/everest-forms.php:259
|
||||
#: integrations/formidable-forms/formidable-forms.php:215
|
||||
#: integrations/ninja-forms/ninja-forms.php:189
|
||||
#: integrations/wpforms/wpforms.php:298
|
||||
msgid "Unique id of the form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:263
|
||||
#: integrations/everest-forms/everest-forms.php:265
|
||||
#: integrations/formidable-forms/formidable-forms.php:221
|
||||
#: integrations/ninja-forms/ninja-forms.php:195
|
||||
#: integrations/wpforms/wpforms.php:304
|
||||
msgid "The webhook URL."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:277
|
||||
msgid "The requested file name is invalid."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/contact-form-7/contact-form-7.php:282
|
||||
msgid "The requested file could not be found."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/everest-forms/everest-forms.php:46
|
||||
msgid "ID of the Everest Forms form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/everest-forms/everest-forms.php:52
|
||||
msgid "The title of the Everest Forms form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/formidable-forms/formidable-forms.php:28
|
||||
msgid "ID of the Formidable form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/formidable-forms/formidable-forms.php:34
|
||||
msgid "The title of the Formidable form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/ninja-forms/ninja-forms.php:38
|
||||
msgid "ID of the Ninja Form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/ninja-forms/ninja-forms.php:44
|
||||
msgid "The title of the Ninja Form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/ninja-forms/ninja-forms.php:49
|
||||
msgid "Created Date of the Ninja Form"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wpforms/wpforms.php:44
|
||||
msgid "ID of the form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wpforms/wpforms.php:50
|
||||
msgid "The title of the form."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wpforms/wpforms.php:152
|
||||
msgid "Unique id of the field."
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wpforms/wpforms.php:173
|
||||
msgid "Format of name field"
|
||||
msgstr ""
|
||||
|
||||
#: integrations/wpforms/wpforms.php:178
|
||||
msgid "Choices in a dropdown/multiselect/checkbox/radio field"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:39
|
||||
msgid "Zoho Flow Webhooks"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:40
|
||||
msgid "Zoho Flow Webhook"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:57
|
||||
#: settings.php:58
|
||||
msgid "Zoho Flow API Keys"
|
||||
msgstr ""
|
||||
5
spec/fixtures/finders/interesting_findings/duplicator_installer_log/lite.txt
vendored
Normal file
5
spec/fixtures/finders/interesting_findings/duplicator_installer_log/lite.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
********************************************************************************
|
||||
* DUPLICATOR-LITE INSTALL-LOG
|
||||
* STEP1 START @ 04:10:42
|
||||
* NOTICE: Do NOT post to public sites or forums
|
||||
********************************************************************************
|
||||
5
spec/fixtures/finders/interesting_findings/duplicator_installer_log/pro.txt
vendored
Normal file
5
spec/fixtures/finders/interesting_findings/duplicator_installer_log/pro.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
********************************************************************************
|
||||
* DUPLICATOR-PRO: Install-Log
|
||||
* STEP1 START @ 04:10:42
|
||||
* NOTICE: Do NOT post to public sites or forums
|
||||
********************************************************************************
|
||||
5
spec/fixtures/finders/interesting_findings/duplicator_installer_log/pro2.txt
vendored
Normal file
5
spec/fixtures/finders/interesting_findings/duplicator_installer_log/pro2.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
********************************************************************************
|
||||
DUPLICATOR PRO INSTALL-LOG
|
||||
STEP1 START @ 04:10:42
|
||||
NOTICE: Do NOT post to public sites or forums
|
||||
********************************************************************************
|
||||
@@ -38,8 +38,10 @@ describe WPScan::Target do
|
||||
|
||||
%i[wp_version main_theme plugins themes timthumbs config_backups db_exports medias users].each do |method|
|
||||
describe "##{method}" do
|
||||
let(:methods) { %i[wp_version main_theme] }
|
||||
|
||||
before do
|
||||
return_value = %i[wp_version main_theme].include?(method) ? false : []
|
||||
return_value = methods.include?(method) ? false : []
|
||||
|
||||
expect(WPScan::Finders.const_get("#{method.to_s.camelize}::Base"))
|
||||
.to receive(:find).with(target, opts).and_return(return_value)
|
||||
|
||||
@@ -28,9 +28,9 @@ 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.89.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.7.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.18.2'
|
||||
s.add_development_dependency 'rubocop', '~> 0.90.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'
|
||||
|
||||
Reference in New Issue
Block a user