Compare commits

..

22 Commits

Author SHA1 Message Date
erwanlr
5fd7e0ed22 Bumps version 2020-09-10 14:34:44 +02:00
erwanlr
d9f6c71015 Adds specs 2020-09-10 13:41:01 +02:00
Erwan
61a3106b3b Merge pull request #1540 from dwisiswant0/installer-log-regex-update
Update regex for WP Duplicator plugin installer-log
2020-09-10 13:22:15 +02:00
Dwi Siswanto
20eb2d825d 🔨 Update regex 2020-09-10 17:30:36 +07:00
Dwi Siswanto
906557d2ec 🔨 Update regex for WP Duplicator plugin installer-log 2020-09-10 04:38:19 +07:00
erwanlr
c1e278ea80 Updates rubocop-perf 2020-09-07 09:19:13 +02:00
erwanlr
e2d616a53f Adds DFs 2020-09-05 11:14:47 +02:00
erwanlr
c6802ccdd2 Updates rubocop 2020-09-03 11:05:36 +02:00
erwanlr
abd50fd037 Adds DFs 2020-08-29 12:02:20 +02:00
erwanlr
4515be53b4 Adds Dfs 2020-08-22 17:51:39 +02:00
Erwan
920a25bb25 Merge pull request #1536 from wpscanteam/dependabot/bundler/simplecov-tw-0.19.0
Update simplecov requirement from ~> 0.18.2 to ~> 0.19.0
2020-08-17 09:10:44 +02:00
dependabot-preview[bot]
648dd05069 Update simplecov requirement from ~> 0.18.2 to ~> 0.19.0
Updates the requirements on [simplecov](https://github.com/simplecov-ruby/simplecov) to permit the latest version.
- [Release notes](https://github.com/simplecov-ruby/simplecov/releases)
- [Changelog](https://github.com/simplecov-ruby/simplecov/blob/main/CHANGELOG.md)
- [Commits](https://github.com/simplecov-ruby/simplecov/compare/v0.18.2...v0.19.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-08-17 05:57:47 +00:00
erwanlr
713edcecca Adds DFs 2020-08-15 12:02:27 +02:00
erwanlr
ac16a951c5 Bumps version 2020-08-08 14:21:50 +02:00
erwanlr
1043bcb267 Adds Dfs 2020-08-08 13:25:15 +02:00
erwanlr
22979a1a77 Adds DFs 2020-08-07 09:39:50 +02:00
erwanlr
3039d2e7eb More rubocop fixes 2020-08-06 12:47:00 +02:00
erwanlr
557dee2d8c Updates rubocop 2020-08-06 11:43:26 +02:00
erwanlr
a506adcb64 Fixes #1529 2020-08-06 10:51:08 +02:00
erwanlr
3bfb120646 Adds DF for monarch - Ref #1527 2020-08-04 14:42:50 +02:00
erwanlr
43e613aa52 Updates Gravityforms detection - Ref #1526 2020-08-03 12:33:14 +02:00
erwanlr
0d930ed605 Adds Dfs 2020-08-01 10:45:42 +02:00
112 changed files with 55983 additions and 4863 deletions

View File

@@ -7,6 +7,8 @@ AllCops:
- 'vendor/**/*'
Layout/LineLength:
Max: 120
Lint/MissingSuper:
Enabled: false
Lint/UriEscapeUnescape:
Enabled: false
Metrics/AbcSize:
@@ -24,6 +26,8 @@ Metrics/MethodLength:
Max: 20
Exclude:
- 'app/controllers/enumeration/cli_options.rb'
Metrics/PerceivedComplexity:
Max: 11
Style/ClassVars:
Enabled: false
Style/Documentation:

View File

@@ -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

View File

@@ -13,7 +13,7 @@ module WPScan
def passive(opts = {})
found = []
slugs = items_from_links('themes', false) + items_from_codes('themes', false)
slugs = items_from_links('themes', uniq: false) + items_from_codes('themes', uniq: false)
slugs.each_with_object(Hash.new(0)) { |slug, counts| counts[slug] += 1 }.each do |slug, occurences|
found << Model::Theme.new(slug, target, opts.merge(found_by: found_by, confidence: 2 * occurences))

View File

@@ -6,6 +6,7 @@ require_relative 'users/oembed_api'
require_relative 'users/rss_generator'
require_relative 'users/author_id_brute_forcing'
require_relative 'users/login_error_messages'
require_relative 'users/author_sitemap'
require_relative 'users/yoast_seo_author_sitemap'
module WPScan
@@ -22,6 +23,7 @@ module WPScan
Users::WpJsonApi.new(target) <<
Users::OembedApi.new(target) <<
Users::RSSGenerator.new(target) <<
Users::AuthorSitemap.new(target) <<
Users::YoastSeoAuthorSitemap.new(target) <<
Users::AuthorIdBruteForcing.new(target) <<
Users::LoginErrorMessages.new(target)

View File

@@ -0,0 +1,36 @@
# frozen_string_literal: true
module WPScan
module Finders
module Users
# Since WP 5.5, /wp-sitemap-users-1.xml is generated and contains
# the usernames of accounts who made a post
class AuthorSitemap < CMSScanner::Finders::Finder
# @param [ Hash ] opts
#
# @return [ Array<User> ]
def aggressive(_opts = {})
found = []
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
username = user_tag.text.to_s[%r{/author/([^/]+)/}, 1]
next unless username && !username.strip.empty?
found << Model::User.new(username,
found_by: found_by,
confidence: 100,
interesting_entries: [sitemap_url])
end
found
end
# @return [ String ] The URL of the sitemap
def sitemap_url
@sitemap_url ||= target.url('wp-sitemap-users-1.xml')
end
end
end
end
end

View File

@@ -5,27 +5,7 @@ module WPScan
module Users
# The YOAST SEO plugin has an author-sitemap.xml which can leak usernames
# See https://github.com/wpscanteam/wpscan/issues/1228
class YoastSeoAuthorSitemap < CMSScanner::Finders::Finder
# @param [ Hash ] opts
#
# @return [ Array<User> ]
def aggressive(_opts = {})
found = []
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
username = user_tag.text.to_s[%r{/author/([^/]+)/}, 1]
next unless username && !username.strip.empty?
found << Model::User.new(username,
found_by: found_by,
confidence: 100,
interesting_entries: [sitemap_url])
end
found
end
class YoastSeoAuthorSitemap < AuthorSitemap
# @return [ String ] The URL of the author-sitemap
def sitemap_url
@sitemap_url ||= target.url('author-sitemap.xml')

View File

@@ -9,7 +9,7 @@ module WPScan
# @param [ Boolean ] uniq Wether or not to apply the #uniq on the results
#
# @return [ Array<String> ] The plugins/themes detected in the href, src attributes of the page
def items_from_links(type, uniq = true)
def items_from_links(type, uniq: true)
found = []
xpath = format(
'(//@href|//@src|//@data-src)[contains(., "%s")]',
@@ -31,7 +31,7 @@ module WPScan
# @param [ Boolean ] uniq Wether or not to apply the #uniq on the results
#
# @return [Array<String> ] The plugins/themes detected in the javascript/style of the homepage
def items_from_codes(type, uniq = true)
def items_from_codes(type, uniq: true)
found = []
page_res.html.xpath('//script[not(@src)]|//style[not(@src)]').each do |tag|

View File

@@ -31,7 +31,7 @@ module WPScan
finder_configs(
finder_class,
Regexp.last_match[1] == 'aggressive'
aggressive: Regexp.last_match[1] == 'aggressive'
)
end

View File

@@ -16,7 +16,7 @@ module WPScan
# @param [ Symbol ] finder_class
# @param [ Boolean ] aggressive
# @return [ Hash ]
def self.finder_configs(finder_class, aggressive = false)
def self.finder_configs(finder_class, aggressive: false)
configs = {}
return configs unless allowed_classes.include?(finder_class)

View File

@@ -24,7 +24,7 @@ module WPScan
# @param [ Symbol ] finder_class
# @param [ Boolean ] aggressive
# @return [ Hash ]
def self.finder_configs(finder_class, aggressive = false)
def self.finder_configs(finder_class, aggressive: false)
configs = {}
return configs unless allowed_classes.include?(finder_class)

View File

@@ -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

View File

@@ -2,5 +2,5 @@
# Version
module WPScan
VERSION = '3.8.5'
VERSION = '3.8.7'
end

View File

@@ -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

View File

@@ -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

View File

@@ -4,7 +4,7 @@ describe WPScan::Finders::InterestingFindings::EmergencyPwdResetScript do
subject(:finder) { described_class.new(target) }
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
let(:url) { 'http://ex.lo/' }
let(:file_url) { url + 'emergency.php' }
let(:file_url) { "#{url}emergency.php" }
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'emergency_pwd_reset_script') }
before do

View File

@@ -4,7 +4,7 @@ describe WPScan::Finders::InterestingFindings::UploadSQLDump do
subject(:finder) { described_class.new(target) }
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
let(:url) { 'http://ex.lo/' }
let(:dump_url) { url + 'wp-content/uploads/dump.sql' }
let(:dump_url) { "#{url}wp-content/uploads/dump.sql" }
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'upload_sql_dump') }
let(:wp_content) { 'wp-content' }

View File

@@ -13,8 +13,8 @@ describe WPScan::Finders::Medias::AttachmentBruteForcing do
describe '#target_urls' do
it 'returns the expected urls' do
expect(finder.target_urls(range: (1..2))).to eql(
url + '?attachment_id=1' => 1,
url + '?attachment_id=2' => 2
"#{url}?attachment_id=1" => 1,
"#{url}?attachment_id=2" => 2
)
end
end

View File

@@ -13,8 +13,8 @@ describe WPScan::Finders::Users::AuthorIdBruteForcing do
describe '#target_urls' do
it 'returns the correct URLs' do
expect(finder.target_urls(range: (1..2))).to eql(
url + '?author=1' => 1,
url + '?author=2' => 2
"#{url}?author=1" => 1,
"#{url}?author=2" => 2
)
end
end

View File

@@ -0,0 +1,48 @@
# frozen_string_literal: true
describe WPScan::Finders::Users::AuthorSitemap do
subject(:finder) { described_class.new(target) }
let(:target) { WPScan::Target.new(url) }
let(:url) { 'http://wp.lab/' }
let(:fixtures) { FINDERS_FIXTURES.join('users', 'author_sitemap') }
describe '#aggressive' do
before do
allow(target).to receive(:sub_dir).and_return(false)
stub_request(:get, finder.sitemap_url).to_return(body: body)
end
context 'when not an XML response' do
let(:body) { '' }
its(:aggressive) { should eql([]) }
end
context 'when an XML response' do
context 'when no usernames disclosed' do
let(:body) { File.read(fixtures.join('no_usernames.xml')) }
its(:aggressive) { should eql([]) }
end
context 'when usernames disclosed' do
let(:body) { File.read(fixtures.join('usernames.xml')) }
it 'returns the expected array of users' do
users = finder.aggressive
expect(users.size).to eql 2
expect(users.first.username).to eql 'admin'
expect(users.first.confidence).to eql 100
expect(users.first.interesting_entries).to eql ['http://wp.lab/wp-sitemap-users-1.xml']
expect(users.last.username).to eql 'author'
expect(users.last.confidence).to eql 100
expect(users.last.interesting_entries).to eql ['http://wp.lab/wp-sitemap-users-1.xml']
end
end
end
end
end

View File

@@ -8,7 +8,7 @@ describe WPScan::Finders::Users::Base do
describe '#finders' do
it 'contains the expected finders' do
expect(user.finders.map { |f| f.class.to_s.demodulize })
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator YoastSeoAuthorSitemap
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator AuthorSitemap YoastSeoAuthorSitemap
AuthorIdBruteForcing LoginErrorMessages]
end
end

View File

@@ -5,7 +5,7 @@ describe WPScan::Finders::WpVersion::Readme do
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
let(:url) { 'http://ex.lo/' }
let(:fixtures) { FINDERS_FIXTURES.join('wp_version', 'readme') }
let(:readme_url) { url + 'readme.html' }
let(:readme_url) { "#{url}readme.html" }
describe '#aggressive' do
before { stub_request(:get, readme_url).to_return(body: File.read(fixtures.join(file))) }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View 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"
}
}

View File

@@ -0,0 +1,91 @@
# Blank WordPress Pot
# Copyright 2014 ...
# This file is distributed under the GNU General Public License v3 or later.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: "
"Blank WordPress Pot "
"v1.0.0\n"
"POT-Creation-Date: "
"2020-07-27 14:57+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Fredrik Stigsson"
"<info@annytab.se>\n"
"Language-Team: Your Team "
"<translations@example."
"com>\n"
"Report-Msgid-Bugs-To: "
"Translator Name "
"<translations@example."
"com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/"
"plain; charset=UTF-8\n"
"Content-Transfer-"
"Encoding: 8bit\n"
"Plural-Forms: "
"nplurals=2; plural=n != "
"1;\n"
"X-Textdomain-Support: "
"yesX-Generator: Poedit "
"1.6.4\n"
"X-Poedit-SourceCharset: "
"UTF-8\n"
"X-Poedit-KeywordsList: "
"__;_e;esc_html_e;"
"esc_html_x:1,2c;"
"esc_html__;esc_attr_e;"
"esc_attr_x:1,2c;"
"esc_attr__;_ex:1,2c;"
"_nx:4c,1,2;"
"_nx_noop:4c,1,2;_x:1,2c;"
"_n:1,2;_n_noop:1,2;"
"__ngettext:1,2;"
"__ngettext_noop:1,2;_c,"
"_nc:4c,1,2\n"
"X-Poedit-Basepath: ..\n"
"Language: en_US\n"
"X-Generator: Poedit 2.4\n"
"X-Poedit-"
"SearchPath-0: .\n"
#: annytab-photoswipe.php:85
msgid "Share on Facebook"
msgstr ""
#: annytab-photoswipe.php:86
msgid "Tweet"
msgstr ""
#: annytab-photoswipe.php:87
msgid "Pin it"
msgstr ""
#: annytab-photoswipe.php:88
msgid "Download image"
msgstr ""
#: annytab-photoswipe.php:114
msgid "Close (Esc)"
msgstr ""
#: annytab-photoswipe.php:116
msgid "Share"
msgstr ""
#: annytab-photoswipe.php:118
msgid "Toggle fullscreen"
msgstr ""
#: annytab-photoswipe.php:120
msgid "Zoom in/out"
msgstr ""
#: annytab-photoswipe.php:137
msgid "Previous"
msgstr ""
#: annytab-photoswipe.php:140
msgid "Next"
msgstr ""

View File

@@ -0,0 +1,88 @@
# Copyright (C) 2020 PRESSMAN
# This file is distributed under the same license as the App Log plugin.
msgid ""
msgstr ""
"Project-Id-Version: App Log 1.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/app-log\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-29T02:35:19+00:00\n"
"PO-Revision-Date: 2020-08-07T06:01:23+00:00\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: aplg\n"
#. Plugin Name of the plugin
#: admin/aplg-dashboard.php:48
#: admin/aplg-settings.php:38
msgid "App Log"
msgstr ""
#. Description of the plugin
msgid "A simple logger for debugging."
msgstr ""
#. Author of the plugin
msgid "PRESSMAN"
msgstr ""
#. Author URI of the plugin
msgid "https://www.pressman.ne.jp/"
msgstr ""
#: admin/aplg-dashboard.php:64
msgid "File will be deleted. Are you sure you want to proceed?"
msgstr ""
#: admin/aplg-dashboard.php:83
msgid "Delete"
msgstr ""
#: admin/aplg-dashboard.php:105
msgid "No logs found."
msgstr ""
#: admin/aplg-dashboard.php:117
msgid "Log File List"
msgstr ""
#: admin/aplg-dashboard.php:117
msgid "Path"
msgstr ""
#: admin/aplg-dashboard.php:152
msgid "Set path to where the application logs are stored"
msgstr ""
#: admin/aplg-dashboard.php:159
msgid "※No need to set if default path will be used. (Default Path: %s)"
msgstr ""
#: admin/aplg-dashboard.php:191
msgid "Invalid access"
msgstr ""
#: admin/aplg-dashboard.php:231
#: classes/class-aplg-logger.php:122
msgid "%s successfully deleted."
msgstr ""
#: admin/aplg-settings.php:37
#: admin/aplg-settings.php:53
msgid "App Log Settings"
msgstr ""
#: admin/aplg-settings.php:60
msgid "Log Directory"
msgstr ""
#: admin/aplg-settings.php:68
msgid "Enable/Disable Mail Log"
msgstr ""
#: classes/class-aplg-logger.php:114
#: classes/class-aplg-logger.php:127
msgid "Failed to delete log."
msgstr ""

View File

@@ -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 ""

View File

@@ -0,0 +1,7 @@
# Changelog
## 1.1
- Fix: Resolve conflict with BadgeOS Community add-on
## 1.0
- Initial

View File

@@ -0,0 +1,9 @@
# Changelog
## 1.0
- Initial

View File

@@ -0,0 +1,24 @@
# Changelog
## 1.3
- New: Removed OB features
## 1.2
- New: Added option to allow only embed or social share on front-end
- New: Made the popup compatible with badgeOS Congratulation add-on popup
- Fix: UI Tweaks
## 1.1
- New: Option to display social sharing popup on badge award
- New: Option to display social sharing option with BadgeOS earned achievement shortcode
- New: Option to share badges to social media from front-end
- Fix: Fixed email image issue
- Fix: string translation issues in email
## 1.0
- Initial

View File

@@ -0,0 +1,3 @@
# Changelog
## 1.0
- Initial

View 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

View File

@@ -0,0 +1,32 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.0.6] - 2020-06-29
### Added
- First release version for wordpress repository
## [0.0.5] - 2020-02-26
### Fixed
- Avoid settings link in module overview overloading other modules settings links
## [0.0.4] - 2020-01-27
### Added
- count(): Parameter must be an array or an object that implements Countable as of as of PHP 7.2
- Updating composer/installers (v1.5.0 => v1.7.0)
## [0.0.3] - 2018-04-27
### Added
- Added defined check and prefix to constants.php
- Re-Worked Failsave email
## [0.0.2] - 2018-04-27
### Added
- Disabled Failsave email
- Make sure default timezone is set
## [0.0.1] - 2018-04-13
### Added
- Started changelog

View File

@@ -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> &copy; %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 "&#42;"
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 "&#37;"
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&#58; "
msgstr ""
#: cqfs-templates/template-results.php:94 cqfs.php:252
msgid "Status&#58; "
msgstr ""
#: cqfs-templates/template-results.php:95 cqfs.php:253
msgid "Note&#58; "
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&#58;"
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&#58;"
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&#58;"
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 "&#46; "
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 &#42;"
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 &#42;"
msgstr ""
#: inc/utilities.php:347
msgid "please type email."
msgstr ""
#: inc/utilities.php:399 inc/utilities.php:468
msgid "&times;"
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 ""

View File

@@ -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) -->

View File

@@ -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 ""

View File

@@ -0,0 +1,212 @@
# Copyright (C) 2020 Automattic
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Crowdsignal Forms 0.9.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/crowdsignal-forms\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-27T13:38:00+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.5.0-alpha-c4c9f7e\n"
"X-Domain: crowdsignal-forms\n"
#. Plugin Name of the plugin
msgid "Crowdsignal Forms"
msgstr ""
#. Plugin URI of the plugin
msgid "https://crowdsignal.com/crowdsignal-forms/"
msgstr ""
#. Description of the plugin
msgid "Crowdsignal Form Blocks"
msgstr ""
#. Author of the plugin
msgid "Automattic"
msgstr ""
#. Author URI of the plugin
msgid "https://automattic.com/"
msgstr ""
#: includes/admin/class-crowdsignal-forms-admin-notices.php:112
msgid "Action failed. Please refresh the page and retry."
msgstr ""
#: includes/admin/class-crowdsignal-forms-admin-notices.php:116
msgid "You don&#8217;t have permission to do this."
msgstr ""
#: includes/admin/class-crowdsignal-forms-admin.php:70
msgid "Crowdsignal"
msgstr ""
#: includes/admin/class-crowdsignal-forms-admin.php:71
#: includes/admin/class-crowdsignal-forms-admin.php:86
msgid "Settings"
msgstr ""
#: includes/admin/class-crowdsignal-forms-admin.php:72
#: includes/admin/class-crowdsignal-forms-admin.php:85
msgid "Getting Started"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:71
msgid "General"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:76
#: includes/admin/class-crowdsignal-forms-settings.php:184
msgid "Enter Crowdsignal API Key"
msgstr ""
#. translators: %s is a link to the Crowdsignal connection page.
#: includes/admin/class-crowdsignal-forms-settings.php:163
msgid "To collect responses and data with Crowdsignal Forms you need to <a href=\"%s\" target=\"_blank\">connect the plugin with a Crowdsignal account.</a>"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:169
msgid "You can do this by entering an API key below:"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:176
msgid "Settings successfully saved"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:204
msgid "Disconnect"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:210
msgid "Connect"
msgstr ""
#: includes/admin/class-crowdsignal-forms-settings.php:221
msgid "If you don't have an API key we can help you here:"
msgstr ""
#: includes/admin/views/html-admin-notice-core-setup.php:17
msgid "You are nearly ready to start creating polls with <strong>Crowdsignal</strong>."
msgstr ""
#: includes/admin/views/html-admin-notice-core-setup.php:21
msgid "Let's Get Started"
msgstr ""
#: includes/admin/views/html-admin-notice-core-setup.php:22
msgid "Skip Setup"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:24
msgid "Crowdsignal Support"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:24
msgid "Support"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:25
msgid "Terms of Service"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:25
msgid "Terms"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:26
msgid "Privacy Policy"
msgstr ""
#: includes/admin/views/html-admin-setup-footer.php:26
msgid "Privacy"
msgstr ""
#: includes/admin/views/html-admin-setup-header.php:43
msgid "Could not disconnect. Please try again."
msgstr ""
#: includes/admin/views/html-admin-setup-header.php:46
msgid "Successfully disconnected from Crowdsignal."
msgstr ""
#: includes/admin/views/html-admin-setup-header.php:49
msgid "Success! Your Crowdsignal account is successfully connected! You are ready!"
msgstr ""
#: includes/admin/views/html-admin-setup-header.php:52
msgid "You have been connected to Crowdsignal."
msgstr ""
#: includes/admin/views/html-admin-setup-header.php:55
msgid "Your API key has not been updated."
msgstr ""
#: includes/admin/views/html-admin-setup-step-1.php:14
msgid "Welcome to Crowdsignal Forms"
msgstr ""
#: includes/admin/views/html-admin-setup-step-1.php:24
msgid "Lets get started"
msgstr ""
#: includes/admin/views/html-admin-setup-step-2.php:20
msgid "You're ready to start using Crowdsignal!"
msgstr ""
#: includes/admin/views/html-admin-setup-step-3.php:15
msgid "First time using Crowdsignal?"
msgstr ""
#: includes/admin/views/html-admin-setup-step-3.php:20
msgid "You can search for our blocks, like the Poll block, in the library of the block editor."
msgstr ""
#: includes/admin/views/html-admin-setup-step-3.php:22
msgid "Here is a short video to get you started:"
msgstr ""
#. translators: Argument is a link to Crowdsignal's contact page.
#: includes/admin/views/html-admin-setup-step-3.php:37
msgid "<a href=\"%1s\" target=\"_blank\">Any questions about Crowdsignal?</a>"
msgstr ""
#. translators: Argument is a link to Crowdsignal's support page.
#: includes/admin/views/html-admin-setup-step-3.php:52
msgid "<a href=\"%1s\" target=\"_blank\">Read more about us here.</a>"
msgstr ""
#: includes/frontend/blocks/class-crowdsignal-forms-poll-block.php:149
msgid "Untitled Poll"
msgstr ""
#: includes/frontend/blocks/class-crowdsignal-forms-poll-block.php:178
msgid "Submit"
msgstr ""
#: includes/gateways/class-canned-api-gateway.php:60
#: includes/gateways/class-canned-api-gateway.php:79
msgid "Poll not found"
msgstr ""
#: includes/rest-api/controllers/class-polls-controller.php:210
#: includes/rest-api/controllers/class-polls-controller.php:235
msgid "No Poll ID was provided."
msgstr ""
#: includes/rest-api/controllers/class-polls-controller.php:295
#: includes/rest-api/controllers/class-polls-controller.php:336
msgid "Invalid poll ID"
msgstr ""
#: includes/rest-api/controllers/class-polls-controller.php:322
msgid "Invalid post ID"
msgstr ""
#: includes/rest-api/controllers/class-polls-controller.php:413
msgid "Resource not found"
msgstr ""

View File

@@ -0,0 +1,23 @@
{
"name": "pattonwebz/cta-bar-block",
"description": "",
"version": "1.0.0",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pattonwebz/cta-bar-block.git"
},
"author": "William Patton",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/pattonwebz/cta-bar-block/issues"
},
"homepage": "https://github.com/pattonwebz/cta-bar-block#readme",
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build"
},
"devDependencies": {
"@wordpress/scripts": "^12.0.0"
}
}

View File

@@ -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 "קובע את תכונת ברירת המחדל במוצרים עם וריאציות."

View File

@@ -0,0 +1,49 @@
# Copyright (C) 2020 F70 Simple Table of Contents
# This file is distributed under the same license as the F70 Simple Table of Contents package.
msgid ""
msgstr ""
"Project-Id-Version: F70 Simple Table of Contents 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/f70-simple-table-"
"of-contents\n"
"POT-Creation-Date: 2020-07-22 10:50:35+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-07-22 19:57+0900\n"
"Language-Team: \n"
"X-Generator: Poedit 2.3.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
"Language: ja\n"
#: includes/display.php:102 includes/meta_box.php:15
msgid "Table of contents"
msgstr "目次"
#: includes/meta_box.php:71
msgid "Display the table of contents"
msgstr "目次を表示する"
#: includes/meta_box.php:81
msgid "Headers level to include in the table of contents"
msgstr "目次に含める見出し"
#. Plugin Name of the plugin/theme
msgid "F70 Simple Table of Contents"
msgstr "F70 シンプル目次"
#. Plugin URI of the plugin/theme
msgid "https://factory70.com/simple-table-of-contents/"
msgstr "https://factory70.com/simple-table-of-contents/"
#. Description of the plugin/theme
msgid ""
"Display a table of contents in your posts by automatically generated from "
"the headings. No Javascript code, simple to use."
msgstr ""
"記事に目次を表示します。目次は見出しから自動生成されます。余分なJavascriptな"
"し。簡単に使えます。"
#. Author of the plugin/theme
msgid "Nao Matsuo"
msgstr "Nao Matsuo"

View File

@@ -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&#8217; 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 "&mdash; or &mdash;"
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"

View File

@@ -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 ""

View File

@@ -0,0 +1,145 @@
msgid ""
msgstr ""
"Project-Id-Version: Kontur Copy Code Button 1.0.0 \n"
"Report-Msgid-Bugs-To: https://profiles.wordpress.org/netzaufsicht/\n"
"Last-Translator: Eilert Behrends <hello@kontur.us>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-07-25 20:09+0000\n"
"PO-Revision-Date: 2020-07-25 22:25+0000\n"
"X-Domain: kontur-copy-code-button\n"
#. Plugin Name of the plugin
msgid "Kontur Copy Code Button"
msgstr "Kontur Copy Code Button"
#. Plugin URI of the plugin
msgid "https://wordpress.org/kontur-copy-code-button"
msgstr "https://wordpress.org/kontur-copy-code-button"
#. Description of the plugin
msgid ""
"Add your own \"kontur Copy Code Button\" <strong>with your own text, class, "
"color</strong> and \"pre\" Background. Works as well with the \"WP Code Block"
"\". The clicked button copies your code into the clipboard."
msgstr ""
"Erstelle Deinen eigenen \"kontur Copy Code Button\" <strong>mit Deinem Text, "
"CSS-Klasse, Farbe</strong> und \"pre\" Background. Funktioniert mit dem "
"\"WP Code Block\". Ein Klick auf den Button kopiert Deinen Code in die "
"Zwischenablage."
#. Author of the plugin
msgid "Eilert Behrends"
msgstr ""
#. Author URI of the plugin
msgid "https://profiles.wordpress.org/netzaufsicht"
msgstr ""
#: kontur-copy-code-button.php:107
msgid ">> Settings"
msgstr ""
#: kontur-copy-code-button.php:120
msgid "Coffee?"
msgstr ""
#: kontur-copy-code-button.php:137
msgid "kontur Copy Code Button"
msgstr ""
#: kontur-copy-code-button.php:193
msgid "SETTINGS UPDATED !"
msgstr ""
#: kontur-copy-code-button.php:233
msgid "Change Your Settings"
msgstr ""
#: kontur-copy-code-button.php:239
msgid "Set your own Text for the Button"
msgstr ""
#: kontur-copy-code-button.php:242
msgid "Copy Button Text:"
msgstr ""
#: kontur-copy-code-button.php:243
msgid " e.g. \"Copy Code\""
msgstr ""
#: kontur-copy-code-button.php:246
msgid "Text when copied:"
msgstr ""
#: kontur-copy-code-button.php:248
msgid " e.g. \"Copied\""
msgstr ""
#: kontur-copy-code-button.php:251
msgid "Save Button Label Texts"
msgstr ""
#: kontur-copy-code-button.php:261
msgid "You got the looks"
msgstr ""
#: kontur-copy-code-button.php:263
msgid "This is how it would look like right now:"
msgstr ""
#: kontur-copy-code-button.php:283
msgid "Style it Baby"
msgstr ""
#: kontur-copy-code-button.php:285
msgid "Button <strong>Background Color</strong>:"
msgstr ""
#: kontur-copy-code-button.php:290 kontur-copy-code-button.php:297
#: kontur-copy-code-button.php:305
msgid "Current color: "
msgstr ""
#: kontur-copy-code-button.php:292
msgid "Save Background Color"
msgstr ""
#: kontur-copy-code-button.php:294
msgid "Button <strong>Text Color</strong>:"
msgstr ""
#: kontur-copy-code-button.php:298
msgid "Save Text Color"
msgstr ""
#: kontur-copy-code-button.php:302
msgid "Code \"pre\" Block Background"
msgstr ""
#: kontur-copy-code-button.php:308
msgid "Save Box Background"
msgstr ""
#: kontur-copy-code-button.php:322
msgid "Get Classy"
msgstr ""
#: kontur-copy-code-button.php:325
msgid "Add your custom class(es) to make the button match your theme."
msgstr ""
#: kontur-copy-code-button.php:326
msgid " Input goes like this for multiple classes: \"class1 class2 class3\""
msgstr ""
#: kontur-copy-code-button.php:330
msgid "Save added classes"
msgstr ""
#: kontur-copy-code-button.php:353
msgid "Save all settings"
msgstr ""

View File

@@ -0,0 +1,16 @@
{
"name": "lazy-youtube",
"version": "1.0.0",
"description": "A gutenberg Youtube embed block that only loads Youtube assets when the user needs them.",
"main": "",
"scripts": {
"start": "wp-scripts start block/src/lazy-youtube-block.js --output-path=block/dist",
"build": "wp-scripts build block/src/lazy-youtube-block.js --output-path=block/dist",
"lint:js": "wp-scripts lint-js"
},
"author": "Laytan Laats",
"license": "GPL-2.0+",
"devDependencies": {
"@wordpress/scripts": "6.2.0"
}
}

View File

@@ -0,0 +1,56 @@
# Copyright (C) 2020 Laytan Laats
# This file is distributed under the same license as the Lazy Youtube plugin.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Lazy Youtube 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lazy-youtube\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-02-07 13:40+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: Poedit 1.8.7\n"
"X-Domain: lazy-youtube\n"
#. Plugin Name of the plugin
msgid "Lazy Youtube"
msgstr ""
#. Plugin URI of the plugin
msgid "https://github.com/laytan/lazy-youtube"
msgstr ""
#. Description of the plugin
msgid "A gutenberg Youtube embed block that only loads Youtube assets when the user needs them."
msgstr ""
#. Author of the plugin
msgid "Laytan Laats"
msgstr ""
#. Author URI of the plugin
msgid "https://github.com/laytan"
msgstr ""
#: block/dist/lazy-youtube-block.js:118 block/src/lazy-youtube-block.js:11
msgid "Lazy youtube"
msgstr ""
#: block/dist/lazy-youtube-block.js:119 block/src/lazy-youtube-block.js:12
msgid "A youtube embed that only loads Youtube scripts when needed."
msgstr ""
#: block/dist/lazy-youtube-block.js:181 block/src/lazy-youtube-block.js:68
msgid "Youtube embed options"
msgstr ""
#: block/dist/lazy-youtube-block.js:183 block/src/lazy-youtube-block.js:71
msgid "Youtube video link"
msgstr ""
#: block/dist/lazy-youtube-block.js:184 block/src/lazy-youtube-block.js:72
msgid "Youtube video link or embed link. allowed format is [https://www.youtube.com/watch?v=video_id]."
msgstr ""

View File

@@ -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 ""

View File

@@ -0,0 +1,26 @@
= 1.1.3 =
* Changed readme.txt
= 1.1.2 =
* Added readme.txt, ReadmeOSS
= 1.1.1 =
* Fixed hard-coded table prefix
= 1.1.0 =
* Added list of post types that can be edited by current user to environment REST
* Dependency to process request headers
= 1.0.3 - 2020-07-02 =
* Added CHANGELOG.md
* Changed correct link to documentation
= 1.0.2 - 2020-07-02 =
* Fixed authorization secret regeneration
= 1.0.1 - 2020-07-01 =
* Added default locale to environment REST
= 1.0.0 - 2020-06-19 =
* Added plugin code

View File

@@ -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 ""

View File

@@ -0,0 +1,511 @@
version 1.4.12 ( updated 03-11-2019 )
- Security Update: Fixed a vulnerability that could allow some cross-site request forgery checks within our core product framework to be bypassed. In all cases, these checks were also hardened by user permission checks, however, user permissions checks alone are not sufficient to protect against all CSRF vectors. View the full disclosure here: https://us7.campaign-archive.com/?u=9ae7aa91c578052b052b864d6&id=917542a075.
- Updated core to the latest version.
* core/admin/css/core.css
* core/admin/css/support-center.css
* core/admin/js/support-center.js
* core/components/Logger.php
* core/components/PageResource.php
* core/components/SupportCenter.php
* core/components/SupportCenterMUAutoloader.php
* core/components/Updates.php
* core/components/init.php
* core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php
* core/functions.php
* core/ui/utils/frames.js
version 1.4.11 ( updated 02-26-2019 )
- Updated core to the latest version.
* core/components/data/init.php
version 1.4.10 ( updated 12-12-2018 )
- Updated core to the latest version.
* core/components/data/Utils.php
version 1.4.9 ( updated 12-05-2018 )
- Various security hardening fixes.
- Added i18n support for visual builder toggle buttons.
- Fixed post_max_size megabytes conversion.
- Fixed a issue where Your Save Has Failed Modal Hides Wordfence's Blocked Request Notification.
- Fixed Monarch metabox styles in Gutenberg Editor.
- Removed LinkedIn share count API integration since it was deprecated and no longer supported by LinkedIn.
- Various security hardening fixes.
* core/admin/css/core.css
* core/admin/css/portability.css
* core/admin/js/core.js
* core/components/PageResource.php
* core/components/Portability.php
* core/components/Updates.php
* core/components/VersionRollback.php
* core/components/api/OAuthHelper.php
* core/components/api/Service.php
* core/components/api/email/HubSpot.php
* core/components/api/email/Provider.php
* core/components/api/email/Providers.php
* core/components/api/email/_MailPoet2.php
* core/components/api/email/_MailPoet3.php
* core/components/data/Utils.php
* core/components/data/init.php
* core/components/init.php
* core/components/lib/WPHttp.php
* core/components/post/Query.php
* core/functions.php
* core/ui/utils/attribute-binder.js
* core/ui/utils/frames.js
* css/stats-meta-styles.css
* monarch.php
version 1.4.8 ( updated 10-30-2018 )
- Applied some minor security hardening improvements.
version 1.4.7 ( updated 10-05-2018 )
- Fixed the Facebook follower count.
* monarch.php
version 1.4.6 ( updated 10-04-2018 )
- Fixed a slightly outdated React version being loaded.
- Updated custom fields retrieval and processing functions for Mailchimp to make it work with custom field names.
- Fixed the Subscription error shown when using Custom fields in the Email Optin module with MailPoet service provider.
- Fixed "et_social_stats" table missing error.
* .github/PULL_REQUEST_TEMPLATE.md
* core/admin/js/react-dom.production.min.js
* core/admin/js/react.production.min.js
* core/components/api/email/MailChimp.php
* core/components/api/email/_MailPoet3.php
* core/components/data/Utils.php
* monarch.php
version 1.4.5 ( updated 08-13-2018 )
- Fixed WSOD that occurred in some cases.
* monarch.php
version 1.4.4 ( updated 08-13-2018 )
- Corrected German translation of button text in WP Admin.
- Fixed PHP notice that was occurring since introduction of rollback feature.
- Fixed "et_social_stats" table missing error.
* core/components/VersionRollback.php
* core/languages/de_DE.mo
* core/languages/de_DE.po
* monarch.php
version 1.4.3 ( updated 7-13-2018 )
- Updated core framework to the latest version.
* core/*
* monarch.php
version 1.4.2 ( updated 6-14-2018 )
- Updated core framework to the latest version.
- Sanitized values used to generate sharing popup.
* core/*
* monarch.php
version 1.4.1 ( updated 5-31-2018 )
- Updated core framework to the latest version.
- Added extra security hardening to the OAuth2 authorization callback.
* core/*
version 1.4 ( updated 5-26-2018 )
- updated core framework to the latest version.
- Added the option to disable Google Fonts.
* monarch.php
* css/admin.css
* includes/monarch_options.php
* js/admin.js
* core/*
version 1.3.27 ( updated 4-26-2018 )
- Updated core framework to the latest version.
* core/*
version 1.3.26 ( updated 4-19-2018 )
- Updated core framework to the latest version.
* core/*
version 1.3.25 ( updated 2-8-2018 )
- Updated core framework to the latest version.
* core/*
version 1.3.24 ( updated 12-7-2017 )
- Updated core framework to the latest version.
* core/admin/js/portability.js
* core/components/Portability.php
* core/functions.php
version 1.3.23 ( updated 10-18-2017 )
- Updated core framework to the latest version.
* core/admin/css/portability.css
version 1.3.22 ( updated 10-18-2017 )
- Updated core framework to the latest version.
* core/admin/fonts/modules.eot
* core/admin/fonts/modules.svg
* core/admin/fonts/modules.ttf
* core/admin/fonts/modules.woff
version 1.3.21 ( updated 9-29-2017 )
- Updated core framework to the latest version.
* core/components/api/email/ConstantContact.php
* core/components/api/email/GetResponse.php
* core/components/api/email/MailPoet.php
* core/components/api/email/_MailPoet2.php
* core/components/api/email/Provider.php
* core/components/api/email/Providers.php
version 1.3.20 ( updated 9-21-2017 )
- Updated core framework to the latest version.
* core/functions.php
* core/components/data/init.php
* core/components/data/Utils.php
* core/components/api/email/init.php
* core/components/api/email/iContact.php
* core/components/api/email/_ProviderName.php
* core/components/api/email/Providers.php
* core/components/api/email/Provider.php
* core/components/api/email/MailPoet.php
* core/components/api/email/MadMimi.php
* core/components/api/email/HubSpot.php
* core/components/api/email/GetResponse.php
* core/components/api/email/Feedblitz.php
* core/components/api/email/Emma.php
* core/components/api/email/ConvertKit.php
* core/components/api/email/ConstantContact.php
* core/components/api/email/CampaignMonitor.php
* core/components/api/email/Aweber.php
* core/components/api/email/ActiveCampaign.php
* core/components/api/Service.php
* core/components/Logger.php
* core/components/HTTPInterface.php
version 1.3.19 ( updated 9-6-2017 )
- Updated core framework to the latest version.
* core/init.php
version 1.3.18 ( updated 7-27-2017 )
- Updated core framework to the latest version.
* core/functions.php
* core/admin/js/portability.js
* core/components/Portability.php
version 1.3.17 ( updated 7-14-2017 )
- Updated core framework to the latest version.
* core/components/PageResource.php
* core/components/PageResource.php
* core/functions.php
version 1.3.16 ( updated 7-10-2017 )
- Updated core framework to the latest versions.
- Fixed a bug that caused errors to occur on SiteGround hosting accounts for some customers when the Elegant Themes caching system attempted to clear the SiteGround cache during plugin & theme activation.
* core/components/PageResource.php
* core/components/data/Utils.php
* core/components/init.php
* core/functions.php
* core/init.php
version 1.3.15 ( updated 7-8-2017 )
- Updated core framework to the latest version.
* core/components/PageResource.php
* core/components/init.php
version 1.3.14 ( updated 7-2-2017 )
- Updated core framework to the latest version.
* core/components/PageResource.php
* core/components/init.php
version 1.3.13 ( updated 7-2-2017 )
- Updated core framework to the latest version.
* core/components/init.php
* core/components/PageResource.php
version 1.3.12 ( updated 7-1-2017 )
- Updated core framework to the latest version.
* core/init.php
version 1.3.11 ( updated 7-1-2017 )
- Updated core framework to the latest version.
* core/components/PageResource.php
version 1.3.10 ( updated 6-30-2017 )
- Updated core framework to the latest version.
* core/components/PageResource.php
version 1.3.9 ( updated 6-30-2017 )
- Updated core framework to the latest version.
* core/components/init.php
* core/components/PageResource.php
version 1.3.8 updated 6-28-2017 )
- Fixed undefined function PHP error that occurred after upgrading to the latest version in some cases.
* components/PageResource.php
version 1.3.7 ( updated 6-28-2017 )
- Updated core framework to the latest version.
* core/admin/js/page-resource-fallback.js
* core/admin/js/page-resource-fallback.min.js
* core/components/PageResource.php
* core/components/data/Utils.php
* core/components/init.php
* core/components/lib/BluehostCache.php
* core/functions.php
* core/init.php
version 1.3.6 ( updated 5-31-2017 )
- Updated Monarch to support the latest changes to the Facebook API.
* monarch.php
version 1.3.5 ( updated 5-11-2017 )
- Fixed an error that caused update notifications to fail when the latest version of Monarch was used with an old version of Divi.
* monarch.php
version 1.3.4 ( updated 4-26-2017 )
- Fixed error that occured on websites running PHP 5.2.
- Fixed error that occured when updating plugins for some customers.
* core/components/Updates.php
* core/functions.php
* core/main_functions.php
* core/init.php
version 1.3.3 ( updated 4-25-2017 )
- Updated Monarch with new core/ structure.
- Updated Facebook open graph to version 2.8
- Updated Delicious URL to the new version.
- An admin notice will now be displayed when an API needs re-authorization due to API updates.
- Added RTL support for the Monarch dashboard.
- Fixed a bug that allowed any empty @ symbol to be added when sharing via Twitter.
- Removed nofollow attribute that was mistakenly added to the data-social_link div.
- Removed FriendFeed from the list of available networks.
- Fixed a bug where media icons were not positioned correctly in some cases.
- Added validation to manual share count input fields in the Monarch dashboard.
- Added support for additional post types when choosing where social sharing buttons will appear.
- Fixed broken Vkontakte API.
- Added support for Vkontakte groups and public pages.
- Fixed a design conflict between Divi gallery hover icons and the On Media sharing location in Monarch.
- Fixed a bug that caused Monarch settings import to fail in some cases.
* monarch.php
* css/admin-rtl.css
* css/style.css
* includes/monarch_options.php
* js/custom.js
* js/admin.js
* core/*
version 1.3.2 ( updated 08-15-2016 )
- Fixed settings page font issues in WordPress 4.6
* monarch.php
* css/admin.css
* core/admin/css/core.css
* core/functions.php
version 1.3.1 ( updated 06-21-2016 )
- Fixed the issue with Inline Sharing buttons jumping on page load
- Fixed the issue with wrong hover effect for Outlook and Linkedin circle icons
* css/style.css
- Fixed an SQL error that showed up on posts/pages sharing stats page in some cases
- Fixed the issue with "Display on Home" option working incorrectly with some themes
* monarch.php
version 1.3 ( updated 05-16-2016 )
- Fixed some issues with Facebook API calls
* monarch.php
version 1.2.9 ( updated 05-10-2016 )
- Updated core submodule to latest versions (Fonts files were moved to /core. If you are currently calling these font files, your CSS files should be updated with new file paths).
* /core
- Updated Google+ icon to match the new Google+ logo & branding guidlines.
* core/admin/fonts
- Updated Facebook follow counts to handle change in latest API version
* monarch.php
version 1.2.8 ( updated 04-13-2016 )
- Fixed an issue that caused theme updates to fail when Bloom, Monarch or the Divi Builder were installed.
* core/admin/includes/class-updates.php
version 1.2.7.3 ( updated 04-12-2016 )
- Added option to configure auto updates from the Plugin Settings
* monarch.php
* css/admin.css
* includes/monarch_options.php
* js/admin.js
* /core
- Fixed the issue with Linkedin wrong followers count
* monarch.php
version 1.2.7.2 ( updated 02-26-2016 )
- Fixed the issue with Facebook counts, not working properly
* monarch.php
version 1.2.7.1 ( updated 02-18-2016 )
- Fixed the issue with meta box settings, not being loaded properly for non-admin users
* monarch.php
version 1.2.7 ( updated 02-17-2016 )
- IMPORTANT: Fixed critical privilege escalation security vulnerability that, if properly exploited, could allow unprivileged registered WordPress users to modify plugin settings.
* For more detailed information, please refer to the full public disclosure that was emailed to all customers on 2-17-2016: http://bit.ly/1Q9P13N
version 1.2.6 ( 11-23-2015 )
- Fixed warning messages, displayed on a fresh installation
- Twitter Share counts: Removed a request to an outdated endpoint
* monarch.php
version 1.2.5 ( 09-09-2015 )
- Fixed Facebook Follow count
* monarch.php
version 1.2.4 ( 08-18-2015 )
- GitHub: Fixed the issue with followers count for Organizations
- LinkedIn: Fixed the issues with followers count retrieval from linkedin network
- Pinterest: Fixed the issue with followers count in some cases
- Fixed the issue with quotes encoding in post title
- Fixed the issue with reset of share counts to 0 sometimes
- Fixed the issue with HTML tags in title when sharing
- Fixed the issue with sharing URL for buddypress pages
- Fixed the issue with localization of some strings in Dashboard
- Fixed the issue when Open Sans font loaded multiple times if Bloom and/or Divi was enabled
- Added localization for the "k" and "Mil" suffixes
* monarch.php
- Twitter: Fixed the issue with OAuthException class conflicts with some plugins
* includes/oauth.php
- YouTube: Added YouTube API v3 support
* monarch.php
* includes/monarch_options.php
- Fixed the issue with circle icons animation
* css/style.css
- Fixed WP_Widget class constructor warning message in WordPress 4.3
* includes/monarch-widget.php
- Added WPML support
* includes/monarch_options.php
* monarch.php
- "On media" location is supported on Product post type pages now
* includes/monarch_options.php
* js/custom.js
* monarch.php
- Added ability to set an empty title for the widget
* includes/monarch-widget.php
- Improved visibility of API settings in Dashboard, depending on selected networks
* css/admin.css
* includes/monarch_options.php
* js/admin.js
* monarch.php
- Added ability to filter the stats by location on Stats Page
* css/admin.css
* js/admin.js
* js/custom.js
* monarch.php
version 1.2.3 ( 05-02-2015 )
- Integrated Facebook API changes. Due to changes in Facebook's API, Monarch must be authorized to obtain follow/share counts from Facebook. Please get an App ID and App Secret from Facebook.
* includes/monarch_options.php
* js/admin.js
* monarch.php
- Updated localization files
* languages/Monarch-en_US.po
* languages/Monarch-en_US.mo
version 1.2.2 ( 04-21-2015 )
- Fixed the issue with "loading icon" visibility in WordPress 4.2
* css/admin.css
* js/admin.js
version 1.2.1 ( 02-19-2015 )
- Added support for all Pinterest data formats
- Fixed the issue with disabled "Share Count" option, visible on the mobile version
- Fixed the issue with Like count, not displaying inside the mobile sidebar
* monarch.php
- Added alt attribute ( alternate text ) to images in the Pinterest picker
* js/custom.js
version 1.2 ( 02-05-2015 )
- Monarch widget: Fixed the issue with likes count error
* monarch.php
- Added option for Sidebar on Right Browser Edge:
* css/style.css
* includes/monarch_options.php
* monarch.php
- Added a "Home" Option Within The Post Type Settings Of All Locations
* includes/monarch_options.php
* monarch.php
- Added All Time Stats Graph
* css/admin.css
* js/admin.js
* monarch.php
- Added Twitter Followers Auto Count
* includes/monarch_options.php
* includes/oauth.php
* includes/twitter_auth.php
* js/admin.js
* monarch.php
- Added Pinterest Followers Auto Count
- Added YouTube Api Support
- Improved YouTube response handling
- Fixed the issue with Pinterest icon, conflicting with the official Pinterest plugin icon
- Fixed the issue with wrong Google+ share counts
- Fixed the issue with Twitter sharing link on mobile devices
* monarch.php
- Added Stats Meta Box
* css/stats-meta-styles.css
* js/monarch-post-meta.js
* monarch.php
- Added "All Networks" Front-end Icon
* css/fonts
* css/style.css
* includes/monarch_options.php
* monarch.php
* js/custom.js
- Added "After Inactivity" Trigger
- Added "After Comment" Trigger To Fly-In & Pop-Up
- Added "Percentage Down The Page" trigger to Fly-In & Pop-Up
- Added "After WooCommerce Purchase" Trigger To Fly-In & Pop-Up
* includes/monarch_options.php
* js/custom.js
* js/idle-timer.js
* monarch.php
- Added Fadein/FadeOut Animation To Popup Overlay
* css/style.css
* js/custom.js
- Fixed the issue with monarch widget class that had no width defined
* css/style.css
- Added Highest performing posts to stats
* css/admin.css
* monarch.php
version 1.1.2 ( 11-21-2014 )
- Fixed the issue with override settings that were not saved correctly
- Fixed the issue with incorrectly encoded symbols in the sharing popup window
- Fixed the issue with a backslash displayed before apostrophes in popup/flyin titles and descriptions
- Fixed some issues with the Contact Form module in the Divi theme
- Counters display 1 Mil ( 1 million ) as opposed to 1000k now
* monarch.php
- Fixed the issue with image size / alignment inside of the media shortcode
- Fixed styling issues with some themes
* css/style.css
* js/custom.js
- Pinterest Modal window: added an error message if there are no images on a page, improved functionality
- Added "Hide/Show Sidebar" button
* css/style.css
* js/custom.js
* monarch.php
- Improved Auto Width styles, auto width buttons remain auto width on mobile.
* css/style.css
version 1.1.1 ( 10-28-2014 )
- Fixed the issue with page url, not working properly, when some additional information was appended to it.
* js/custom.js
version 1.1 ( 10-24-2014 )
- Fixed Pinterest Modal Images visibility issue
- Fixed styling issues
- Fixed OpenSans typo - the font was not being used
* css/style.css
- Added % Height to "Add Network" modal window
* css/admin.css
* js/admin.js
- Fixed the issue with cached share counts
- Fixed Pinterest modal warning message, when no networks were selected
* monarch.php
- Fixed the issue with automatic share counts, not properly calculated after a comment is made
* js/custom.js
* monarch.php
version 1.0 ( 10-22-2014 )
- Initial release

View File

@@ -0,0 +1,2 @@
= 1.0.0 =
* Initial Public Release

View 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"
}
}

View File

@@ -0,0 +1,209 @@
# Copyright (C) 2020 flowdee
# This file is distributed under the same license as the Oh Dear plugin.
msgid ""
msgstr ""
"Project-Id-Version: Oh Dear 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ohdear\n"
"Last-Translator: flowdee <coder@flowdee.de>\n"
"Language-Team: KryptoniteWP <support@kryptonitewp.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-05T15:24:49+03:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: ohdear\n"
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
"esc_html_x:1,2c\n"
"Language: en_US\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-Basepath: ..\n"
"X-Textdomain-Support: yes\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: assets\n"
#. Plugin Name of the plugin
#: includes/admin/class-menu.php:29
msgid "Oh Dear"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/ohdear/"
msgstr ""
#. Description of the plugin
msgid "Websites uptime monitoring."
msgstr ""
#: includes/admin/class-menu.php:31
#: includes/admin/plugins.php:25
msgid "Dashboard"
msgstr ""
#: includes/admin/class-menu.php:33
#: includes/admin/plugins.php:26
msgid "Settings"
msgstr ""
#: includes/admin/class-settings.php:250
msgid "API Status"
msgstr ""
#: includes/admin/class-settings.php:256
msgid "API Token"
msgstr ""
#. translators: OhDear page link
#: includes/admin/class-settings.php:259
msgid "Enter your OhDear API token, found on your <a href=\"%s\" target=\"_blank\">OhDear api settings page</a>"
msgstr ""
#: includes/admin/class-settings.php:265
msgid "Website"
msgstr ""
#: includes/admin/class-settings.php:267
msgid "Select the website from which the data will be taken from"
msgstr ""
#: includes/admin/class-settings.php:272
msgid "Grant Access"
msgstr ""
#: includes/admin/class-settings.php:274
msgid "Select which user roles can access the Oh Dear monitoring (administrators have access by default)"
msgstr ""
#: includes/admin/class-settings.php:323
msgid "Please enter a valid API token before selecting a site"
msgstr ""
#. translators: Callback name, passed by the setting
#: includes/admin/class-settings.php:427
msgid "The callback function used for the <strong>%s</strong> setting is missing."
msgstr ""
#: includes/admin/class-settings.php:476
msgid "No sites found"
msgstr ""
#: includes/admin/class-settings.php:488
msgid "Please select a site"
msgstr ""
#: includes/admin/views/dashboard.php:13
msgid "Oh Dear Monitoring"
msgstr ""
#. translators: 1: Plugin settings page link, 2: 'Settings' word
#: includes/admin/views/dashboard.php:20
msgid "Please set the valid Oh Dear API token at <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
msgstr ""
#: includes/admin/views/dashboard.php:22
#: includes/admin/views/dashboard.php:35
msgid "Settings page"
msgstr ""
#. translators: 1: Plugin settings page link, 2: 'Settings' word
#: includes/admin/views/dashboard.php:33
msgid "Please set the site at <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
msgstr ""
#: includes/admin/views/settings.php:11
msgid "Oh Dear Settings"
msgstr ""
#: includes/admin/views/templates/broken-widget.php:22
#: includes/admin/views/templates/broken.php:50
msgid "Status Code"
msgstr ""
#: includes/admin/views/templates/broken-widget.php:28
#: includes/admin/views/templates/broken.php:52
msgid "Broken Link"
msgstr ""
#: includes/admin/views/templates/broken-widget.php:34
#: includes/admin/views/templates/broken.php:54
msgid "Found on"
msgstr ""
#: includes/admin/views/templates/broken.php:20
msgid "Broken Links"
msgstr ""
#: includes/admin/views/templates/broken.php:25
#: includes/admin/views/templates/performance.php:25
#: includes/admin/views/templates/uptime.php:24
msgid "Open on Oh Dear"
msgstr ""
#: includes/admin/views/templates/broken.php:35
#: includes/admin/views/templates/performance.php:56
msgid "Last time checked"
msgstr ""
#: includes/admin/views/templates/broken.php:58
msgid "Actions"
msgstr ""
#: includes/admin/views/templates/broken.php:86
msgid "Edit"
msgstr ""
#: includes/admin/views/templates/broken.php:109
msgid "No Broken Links for the current site"
msgstr ""
#: includes/admin/views/templates/performance.php:20
msgid "Performance"
msgstr ""
#: includes/admin/views/templates/performance.php:56
msgid "Last 7 days"
msgstr ""
#: includes/admin/views/templates/performance.php:194
msgid "No Performance stats for the current site"
msgstr ""
#: includes/admin/views/templates/uptime.php:19
msgid "Uptime"
msgstr ""
#. translators: 1: Days count, 2: Date
#: includes/admin/views/templates/uptime.php:47
msgid "Last %1$s days. Last time checked: %2$s"
msgstr ""
#: includes/admin/views/templates/uptime.php:115
msgid "No Uptime stats for the current site"
msgstr ""
#: includes/admin/views/widgets.php:23
msgid "Oh Dear Uptime"
msgstr ""
#: includes/admin/views/widgets.php:24
msgid "Oh Dear Performance"
msgstr ""
#: includes/admin/views/widgets.php:25
msgid "Oh Dear Broken Links"
msgstr ""
#: includes/admin/views/widgets.php:156
msgid "View all "
msgstr ""
#: ohdear.php:93
msgid "Your version of PHP is below the minimum version of PHP required by this plugin. Please contact your host and request that your version be upgraded to 5.6 or later."
msgstr ""
#: ohdear.php:107
#: ohdear.php:118
msgid "Cheatin&#8217; huh?"
msgstr ""

View File

@@ -0,0 +1,4 @@
== Changelog ==
= 1.0.0 =
* First stable version

View File

@@ -0,0 +1,30 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.7.3] - 2020-07-31
### Added
- Released to WordPress Plugin Directory.
### Fixed
- Some under-the-hood improvements to the code (kudos to the WordPress Plugin Review team!).
## [0.7.2] - 2020-07-24
### Added
- Configuration option: default paywall availability.
### Fixed
- Corrected javascript bug that occurred when the Classic Editor was being used (with the WordPress plugin).
- Texts in Portuguese now display correctly.
## [0.7.1] - 2020-07-22
### Added
- Configuration option: default user to associate to articles.
### Changed
- The Paperview User that is associated to an Article is now determined by: 1) article author; 2) current user; and 3) default user (in this order).
## [0.7.0] - 2020-05-18
### Added
- Initial release.

View File

@@ -0,0 +1,277 @@
# Copyright (C) 2020 PhotoShelter
# This file is distributed under the same license as the PhotoShelter Importer plugin.
msgid ""
msgstr ""
"Project-Id-Version: PhotoShelter Importer 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/photoshelter-importer\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-31T17:06:01+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: photoshelter-importer\n"
#. Plugin Name of the plugin
msgid "PhotoShelter Importer"
msgstr ""
#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.photoshelter.com"
msgstr ""
#. Description of the plugin
msgid "PhotoShelter Digital Asset Manager integration with WordPress."
msgstr ""
#. Author of the plugin
#: assets/src/js/blocks/ps-media/index.js:24
msgid "PhotoShelter"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/Auth/DataSource.php:45
msgid "Auth\\authenticate_organization() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/Auth/DataSource.php:83
msgid "Auth\\deauthenticate_organization() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$d: Numeric HTTP status code (e.g. 400, 403, 500, etc.), %2$s Error message, if any.
#: includes/classes/API/ClientRemote.php:75
#: includes/classes/APIv3/ClientRemote.php:76
#: includes/classes/APIv3/ClientRemote.php:88
msgid "Bad response from API (%1$d): %2$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/Media/DataSource.php:49
msgid "Media\\download_media() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/Media/DataSource.php:92
msgid "Media\\get_media() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/OAuth/DataSource.php:58
msgid "OAuth\\register() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/API/OAuth/DataSource.php:106
#: includes/classes/APIv3/Organization/DataSource.php:91
msgid "OAuth\\token() is missing the following required fields: %1$s"
msgstr ""
#. translators: %1$s: list of required fields
#: includes/classes/APIv3/Organization/DataSource.php:43
msgid "OAuth\\get_organization() is missing the following required fields: %1$s"
msgstr ""
#: includes/functions/admin.php:63
msgid "Account Details"
msgstr ""
#: includes/functions/admin.php:71
msgid "PhotoShelter API Key"
msgstr ""
#: includes/functions/admin.php:79
msgid "Where can I find my API Key?"
msgstr ""
#: includes/functions/admin.php:101
msgid "Authorize through PhotoShelter"
msgstr ""
#: includes/functions/admin.php:112
msgid "PhotoShelter Org ID"
msgstr ""
#: includes/functions/admin.php:120
msgid "Where can I find my Org ID?"
msgstr ""
#: includes/functions/admin.php:160
msgid "PhotoShelter Importer Settings"
msgstr ""
#: includes/functions/admin.php:161
#: includes/functions/admin.php:169
#: includes/functions/admin.php:170
msgid "PS Importer"
msgstr ""
#: includes/functions/admin.php:357
msgid "Save Settings"
msgstr ""
#: includes/functions/admin.php:385
msgid "Please enter your PhotoShelter API Key in order to access your Library."
msgstr ""
#: includes/functions/admin.php:408
msgid "Enter API Key here."
msgstr ""
#: includes/functions/admin.php:473
msgid "Enter Org ID here, if you have one."
msgstr ""
#: includes/functions/admin.php:502
msgid "Disconnect"
msgstr ""
#: includes/functions/admin.php:536
msgid "Invalid API key specified."
msgstr ""
#: includes/functions/admin.php:549
msgid "Invalid Org ID specified."
msgstr ""
#: includes/functions/admin.php:670
msgid "organization"
msgstr ""
#: includes/functions/admin.php:675
#: includes/functions/rest-api.php:101
msgid "Library"
msgstr ""
#. translators: %s is the organition name
#: includes/functions/admin.php:719
msgid "Logged into %s."
msgstr ""
#. translators: %s is the organition name
#: includes/functions/admin.php:721
msgid "Logged out of %s."
msgstr ""
#: includes/functions/admin.php:755
msgid "Settings"
msgstr ""
#: includes/functions/rest-api.php:241
msgid "Access granted."
msgstr ""
#: includes/functions/rest-api.php:268
#: includes/functions/rest-api.php:351
msgid "Unexpected input"
msgstr ""
#: includes/functions/rest-api.php:282
#: includes/functions/rest-api.php:464
msgid "OK"
msgstr ""
#. translators: %s is the tmp file path
#: includes/functions/rest-api.php:376
msgid "Response in unexpected format: %s"
msgstr ""
#. translators: %s is the tmp file path
#: includes/functions/rest-api.php:399
msgid "Unable to write to file system: %s"
msgstr ""
#. translators: %s is the tmp file path
#: includes/functions/rest-api.php:424
msgid "Unable to sideload attachment: %s"
msgstr ""
#. translators: %s is the error message
#: includes/helpers/api.php:26
msgid "API Response error: %s"
msgstr ""
#: assets/src/js/blocks/ps-media/index.js:25
msgid "PhotoShelter Media Block"
msgstr ""
#: assets/src/js/blocks/ps-media/index.js:29
msgid "Images"
msgstr ""
#: assets/src/js/components/Breadcrumbs.js:38
msgid "Galleries"
msgstr ""
#: assets/src/js/components/Collection.js:12
msgid "Retrieving collection..."
msgstr ""
#: assets/src/js/components/Collection.js:31
msgid "Collection is empty"
msgstr ""
#: assets/src/js/components/Gallery.js:12
msgid "Retrieving gallery..."
msgstr ""
#: assets/src/js/components/Gallery.js:35
msgid "Gallery is empty"
msgstr ""
#: assets/src/js/components/LibraryHome.js:29
msgid "Fetching library..."
msgstr ""
#: assets/src/js/components/LibraryPlaceholder.js:47
msgid "Browse or search your PhotoShelter Library"
msgstr ""
#: assets/src/js/components/LibraryPlaceholder.js:49
msgid "Open Library"
msgstr ""
#: assets/src/js/components/SearchForm.js:44
msgid "Search"
msgstr ""
#: assets/src/js/components/SearchResults.js:40
msgid "There are no results yet"
msgstr ""
#: assets/src/js/components/SearchResults.js:41
msgid "Try a new search or change your filters."
msgstr ""
#: assets/src/js/components/SearchResults.js:47
msgid "Search Results"
msgstr ""
#: assets/src/js/components/ThumbnailGallery.js:50
msgid "File"
msgstr ""
#: assets/src/js/components/ThumbnailGallery.js:50
msgid "Files"
msgstr ""
#: assets/src/js/utilities/fetch.js:23
msgid "Bad JSON response."
msgstr ""
#. translators: %1$s is the status code, and %2$s is the status text.
#: assets/src/js/utilities/fetch.js:76
msgid "Status code: %1$s | %2$s"
msgstr ""
#. translators: %s is the stringified JSON response.
#: assets/src/js/utilities/fetch.js:86
msgid "Got unexpected response object: %s"
msgstr ""
#: assets/src/js/utilities/fetch.js:101
msgid "An unknown error occurred."
msgstr ""

View File

@@ -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 &rsaquo; Setup Wizard"
msgstr "WooCommerce Posti &rsaquo; 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 &rsaquo; 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 ""

View File

@@ -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">
@@ -398,6 +403,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/admin-keys/assets/js/mousetrap-global-bind.min.js?ver=1.4.0"></script>
<!-- ads-pixel -->
<link rel="stylesheet" id="facebook-pixel-css" href="http://wp.lab/wp-content/plugins/ads-pixel/public/css/facebook-pixel-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/ads-pixel/public/js/facebook-pixel-public.js?ver=1.0.0"></script>
<!-- adsense-plugin -->
<link rel="stylesheet" id="adsns_css-css" href="http://wp.lab/wp-content/plugins/adsense-plugin/css/adsns.css?ver=1.47" type="text/css" media="all">
@@ -636,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>
@@ -947,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>
@@ -1168,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">
@@ -2267,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">
@@ -3020,6 +3052,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chessgame-shizzle/frontend/js/chessgame-shizzle-frontend.js?ver=1.0.4"></script>
<!-- chilexpress-oficial -->
<link rel="stylesheet" id="chilexpress-woo-oficial-css" href="http://wp.lab/wp-content/plugins/chilexpress-oficial/public/css/chilexpress-woo-oficial-public.css?ver=1.1.0" media="all">
<script src="http://wp.lab/wp-content/plugins/chilexpress-oficial/public/js/chilexpress-woo-oficial-public.js?ver=1.1.0"></script>
<!-- chiliforms -->
<link rel="stylesheet" id="chiliforms_css-css" href="http://wp.lab/wp-content/plugins/chiliforms/assets/css/bundle/chiliforms.css?ver=0.5.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chiliforms/js/build/clientside/chiliforms.js?ver=0.5.1"></script>
@@ -3082,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>
@@ -3219,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&amp;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>
@@ -3754,6 +3801,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cpf-e-cnpj-para-contact-form-7/js/main.js?ver=1.0"></script>
<!-- cpt-ajax-load-more -->
<script src="http://wp.lab/wp-content/plugins/cpt-ajax-load-more/assets/js/app.js?ver=1.0.0"></script>
<!-- cpt-list -->
<link rel="stylesheet" id="cpt-list-style-css" href="http://wp.lab/wp-content/plugins/cpt-list/css/cpt-list.css?ver=0.1.1" type="text/css" media="all">
@@ -4703,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>
@@ -6133,6 +6188,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/getwid/assets/js/frontend.blocks.js?ver=1.3.1"></script>
<!-- getwid-megamenu -->
<link rel="stylesheet" id="getwid-megamenu-block-style-css" href="http://wp.lab/wp-content/plugins/getwid-megamenu/build/style-index.css?ver=0.0.1" media="all">
<script src="http://wp.lab/wp-content/plugins/getwid-megamenu/build/frontend.js?ver=0.0.1"></script>
<!-- gf-fields-persistence -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gf-fields-persistence/assets/js/gf-field-persistence.js?ver=1.0.1"></script>
@@ -6428,6 +6488,23 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/gridable/public/js/gridable-scripts.js?ver=1.2.2"></script>
<!-- grit-portfolio -->
<link rel="stylesheet" id="grit-portfolio-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/css/grit-portfolio-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfoliofont-awesome-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/font-awesome.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfolioanimate-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/animate.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfoliomagnific-popup-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/magnific-popup.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfolioowl-carousel-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/owl.carousel.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfoliostyle-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/style.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="grit-portfolioresponsive-css" href="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/css/responsive.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/js/grit-portfolio-public.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/jquery.magnific-popup.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/owl.carousel.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/wow.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/isotope.pkgd.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/imagesloaded.pkgd.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/grit-portfolio/public/assets/js/main.js?ver=1.0.0"></script>
<!-- grit-taxonomy-filter -->
<link rel="stylesheet" id="grit_taxonomy_filter-css" href="http://wp.lab/wp-content/plugins/grit-taxonomy-filter/public/css/grit-taxonomy-filter-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/grit-taxonomy-filter/public/js/grit-taxonomy-filter-public.js?ver=1.0.0"></script>
@@ -6787,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 -->
@@ -7081,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>
@@ -7597,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">
@@ -7920,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>
@@ -9273,6 +9379,13 @@
<!-- mon-laboratoire -->
<link rel="stylesheet" id="MonLabo-css" href="http://wp.lab/wp-content/plugins/mon-laboratoire/MonLabo.css?ver=3.0" media="all">
<link rel="stylesheet" id="MonLabo-css" href="http://wp.lab/wp-content/plugins/mon-laboratoire/mon-laboratoire.css?ver=3.0" media="all">
<!-- monarch -->
<link rel="stylesheet" id="et_monarch-css-css" href="https://wp.lab/wp-content/plugins/monarch/css/style.css?ver=1.4.12" type="text/css" media="all">
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/monarch/js/idle-timer.min.js?ver=1.4.12"></script>
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/monarch/js/custom.js?ver=1.4.12"></script>
<!-- monk -->
@@ -9577,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>
@@ -9843,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>
@@ -10454,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>
@@ -11011,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">
@@ -11298,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>
@@ -11486,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>
@@ -12363,6 +12525,11 @@
<link rel="stylesheet" id="rd-downloads-front-css-css" href="http://wp.lab/wp-content/plugins/rundiz-downloads/assets/css/front/rd-downloads.min.css?ver=0.3" type="text/css" media="all">
<!-- rut-chileno-con-validacion -->
<link rel="stylesheet" id="wc-chilean-bundle-css" href="http://wp.lab/wp-content/plugins/rut-chileno-con-validacion/public/css/wc-chilean-bundle-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/rut-chileno-con-validacion/public/js/wc-chilean-bundle-public.js?ver=1.0.0"></script>
<!-- rw-elephant-rental-inventory -->
<link rel="stylesheet" id="rwe-frontend-css" href="http://wp.lab/wp-content/plugins/rw-elephant-rental-inventory/lib/assets/css/rw-elephant.min.css?ver=2.1.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rw-elephant-rental-inventory/lib/assets/js/rw-elephant.min.js?ver=2.1.2"></script>
@@ -12461,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 -->
@@ -12927,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>
@@ -13255,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>
@@ -13446,6 +13626,11 @@
<script src="http://wp.lab/wp-content/plugins/slatre/public/js/slatre-public.js?ver=1.0.0"></script>
<!-- slazzer-background-changer -->
<link rel="stylesheet" id="slazzer-background-changer-css" href="http://wp.lab/wp-content/plugins/slazzer-background-changer/public/css/slazzer-background-changer-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/slazzer-background-changer/public/js/slazzer-background-changer-public.js?ver=1.0.0"></script>
<!-- slicewp -->
<link rel="stylesheet" id="slicewp-style-css" href="http://wp.lab/wp-content/plugins/slicewp/assets/css/style-front-end.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/slicewp/assets/js/script-tracking.js?ver=1.0.0"></script>
@@ -13510,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>
@@ -13780,6 +13971,14 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-rocket/js/script.js?ver=1.0.1"></script>
<!-- social-share-buttons-by-elixirs-io -->
<link rel="stylesheet" id="social-share-buttons-fontawesome-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/fontawesome.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="social-share-buttons-fontawesome-brands-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/brands.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="social-share-buttons-fontawesome-regular-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/fontawesome-5.13.1/regular.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="social-share-buttons-css" href="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/css/social-share-buttons-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/social-share-buttons-by-elixirs-io/public/js/social-share-buttons-public.js?ver=1.0.0"></script>
<!-- social-sharing-buttons-and-counters -->
<link rel="stylesheet" id="jcss-styles-css" href="http://wp.lab/wp-content/plugins/social-sharing-buttons-and-counters/assets/css/jc-social-sharing.css?ver=1.1.5" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-sharing-buttons-and-counters/assets/js/jc-social-sharing.js?ver=1.1.5"></script>
@@ -14111,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">
@@ -14334,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">
@@ -14342,6 +14551,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sv-sticky-menu/js/sv-sticky-menu.min.js?ver=1.0.5"></script>
<!-- svg-favicon -->
<link rel="stylesheet" id="svg-favicon-css" href="http://wp.lab/wp-content/plugins/svg-favicon/public/css/svg-favicon-public.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/svg-favicon/public/js/svg-favicon-public.js?ver=1.0.0"></script>
<!-- svg-map-by-saedi -->
<link rel="stylesheet" id="svg-map-by-saedi-css" href="http://wp.lab/wp-content/plugins/svg-map-by-saedi/public/css/svg-map-by-saedi-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/svg-map-by-saedi/public/js/svg-map-by-saedi-public.js?ver=1.0.0"></script>
@@ -14383,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 -->
@@ -14606,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>
@@ -14776,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">
@@ -14825,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">
@@ -14984,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">
@@ -15899,6 +16145,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vies-validator/public/js/vies-validator-public.js?ver=1.0.4"></script>
<!-- vindi-payment-gateway -->
<link rel="stylesheet" id="vindi_woocommerce_style-css" href="http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/css/frontend.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/js/imask.min.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/vindi-payment-gateway/src/assets/js/frontend.js?ver=1.0.0"></script>
<!-- vinteotv-video-ads -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vinteotv-video-ads/modules/js/front.js?ver=1.0"></script>
@@ -15919,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>
@@ -16260,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>
@@ -16294,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>
@@ -16422,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>
@@ -16445,6 +16714,10 @@
<link rel="stylesheet" id="whats-new-style-css" href="http://wp.lab/wp-content/plugins/whats-new-genarator/whats-new.css?ver=2.0.1" type="text/css" media="all">
<!-- whoframed -->
<script src="http://wp.lab/wp-content/plugins/whoframed/js/whoframed.min.js?ver=1.0"></script>
<!-- whois-dashboard-widget -->
<link rel="stylesheet" id="whoisdashboard-plugin-styles-css" href="http://wp.lab/wp-content/plugins/whois-dashboard-widget/public/assets/css/public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/whois-dashboard-widget/public/assets/js/public.js?ver=1.0.0"></script>
@@ -16578,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 -->
@@ -17501,6 +17775,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-customer-reviews/js/wp-customer-reviews.js?ver=3.1.5"></script>
<!-- wp-dark-mode -->
<link rel="stylesheet" id="wp-dark-mode-frontend-css" href="http://wp.lab/wp-content/plugins/wp-dark-mode/assets/css/frontend.css?ver=1.0.2" media="all">
<script src="http://wp.lab/wp-content/plugins/wp-dark-mode/assets/js/frontend.js?ver=1.0.2"></script>
<!-- wp-database-error-manager -->
<link rel="stylesheet" id="wp-db-error-manager-css" href="http://wp.lab/wp-content/plugins/wp-database-error-manager/public/css/wp-db-error-manager-public.css?ver=2.1.6" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-database-error-manager/public/js/wp-db-error-manager-public.js?ver=2.1.6"></script>
@@ -18115,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">
@@ -18167,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">
@@ -18558,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 -->
@@ -19131,6 +19430,13 @@
<link rel="stylesheet" id="WP-ViperGB-Default-css" href="http://wp.lab/wp-content/plugins/wp-vipergb/styles/Default.css?ver=1.4.3" type="text/css" media="all">
<!-- wp-visualize -->
<link rel="stylesheet" id="wp-visualize-css" href="http://wp.lab/wp-content/plugins/wp-visualize/public/css/wp-visualize-public.css?v=1.4.1&ver=1.0.2" media="all">
<script src="http://wp.lab/wp-content/plugins/wp-visualize/public/js/wp-visualize-public.js?v=1.3.4&ver=1.0.2"></script>
<script src="http://wp.lab/wp-content/plugins/wp-visualize/public/js/scene.js?ver=1.0.2"></script>
<script src="http://wp.lab/wp-content/plugins/wp-visualize/public/js/moveable.min.js?ver=1.0.2"></script>
<!-- wp-wdfy-integration-of-wodify -->
<link rel="stylesheet" id="soswodify-css" href="http://wp.lab/wp-content/plugins/wp-wdfy-integration-of-wodify/css/style.css?ver=1.12.1" type="text/css" media="all">
@@ -19150,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>
@@ -19185,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">
@@ -19886,6 +20200,15 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zone-marker/public/js/gil-zone-marker.js?ver=1.0.1"></script>
<!-- zone-pandemic-covid-19 -->
<link rel="stylesheet" id="pandemic-covid19-css" href="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/pandemic-covid19-public.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="zone-pandemic-covid19-bulma-css" href="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/bulma.min.css?ver=1.0.0" media="all">
<link rel="stylesheet" id="zone-pandemic-covid19-datatable-css-css" href="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/css/datatable/jquery.dataTables.css?ver=1.0.0" media="all">
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/pandemic-covid19-public.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/pandemic-covid19-ajax.js?ver=1.0.0"></script>
<script src="http://wp.lab/wp-content/plugins/zone-pandemic-covid-19/public/js/datatable/jquery.dataTables.js?ver=1.0.0"></script>
<!-- zoorvy-social-share -->
<link rel="stylesheet" id="zoorvy-social-share-css" href="http://wp.lab/wp-content/plugins/zoorvy-social-share/public/css/zoorvy-social-share-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zoorvy-social-share/public/js/zoorvy-social-share-public.js?ver=1.0.0"></script>

View File

@@ -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 ""

View File

@@ -0,0 +1,24 @@
{
"name": "sb-children-block",
"version": "1.0.0",
"description": "List children of the current content as links.",
"author": "bobbingwide",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start",
"dev": "wp-scripts start",
"packages-update": "wp-scripts packages-update",
"makepot": "wp i18n make-pot . languages/sb-children-block.pot --exclude=node_modules,vendor,src",
"makejson": "wp i18n make-json languages --no-purge",
"l10n": "l10n sb-children-block"
},
"devDependencies": {
"@wordpress/scripts": "^12.1.1"
},
"dependencies": {}
}

View File

@@ -0,0 +1,72 @@
# Copyright (C) 2020 bobbingwide
# This file is distributed under the same license as the SB Children block plugin.
msgid ""
msgstr ""
"Project-Id-Version: SB Children block 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sb-children-block\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
"Language: bb_BB\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2020-08-06T13:06:19+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: sb-children-block\n"
#. Plugin Name of the plugin
msgid "SB Children block"
msgstr "SB Cihdlern bolck"
#. Plugin URI of the plugin
msgid "https://www.oik-plugins.com/oik-plugins/sb-children-block"
msgstr "https://www.oik-plugins.com/oik-plugins/sb-children-block"
#. Description of the plugin
#: build/index.js:1
msgid "List children of the current content as links."
msgstr "Lsit cihdlern Of thE cruernt cnoetnt As lniks."
#. Author of the plugin
msgid "bobbingwide"
msgstr "bboibgniwde"
#. Author URI of the plugin
msgid "https://www.bobbingwide.com/about-bobbing-wide"
msgstr "https://www.bobbingwide.com/about-bobbing-wide"
#: build/index.js:1
msgid "Children"
msgstr "Cihdlern"
#: build/index.js:1
msgid "Tree"
msgstr "Tere"
#: build/index.js:1
msgid "Descendents"
msgstr "Dseecdnnets"
#: build/index.js:1
msgid "Child list"
msgstr "Cihld lsit"
#: build/index.js:1
msgid "0 for all levels, 1-n for defined,-1 for flat."
msgstr "0 fOr All lveles, 1-n fOr dfenied,-1 fOr falt."
#: build/index.js:1
msgid "Depth"
msgstr "Dpeth"

View 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 ""

View File

@@ -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 ""

View File

@@ -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 ""

View File

@@ -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&#39;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 ""

View File

@@ -0,0 +1,35 @@
##### [Version 1.0.8](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.7...v1.0.8) (2020-07-29)
> Things are getting better every day. 🚀
##### [Version 1.0.7](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.6...v1.0.7) (2020-07-29)
chore: adds SVN deployment workflow
##### [Version 1.0.6](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.5...v1.0.6) (2020-07-27)
> Things are getting better every day. 🚀
##### [Version 1.0.5](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.4...v1.0.5) (2020-07-27)
> Things are getting better every day. 🚀
##### [Version 1.0.4](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.3...v1.0.4) (2020-07-24)
Fetch starter sites remotely
##### [Version 1.0.3](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.2...v1.0.3) (2020-07-23)
> Things are getting better every day. 🚀
##### [Version 1.0.2](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.1...v1.0.2) (2020-07-23)
> Things are getting better every day. 🚀
##### [Version 1.0.1](https://github.com/Codeinwp/templates-patterns-collection/compare/v1.0.0...v1.0.1) (2020-07-21)
- adds plugin code
#### Version1.0.0 (2020-07-21)
Initial Release

View File

@@ -0,0 +1,175 @@
# Copyright (C) 2020 Themehigh Multiple Addresses
# This file is distributed under the same license as the Themehigh Multiple Addresses package.
msgid ""
msgstr ""
"Project-Id-Version: Themehigh Multiple Addresses 1.0.0\n"
"Report-Msgid-Bugs-To: support@themehigh.com\n"
"POT-Creation-Date: 2020-06-25 12:07+0530\n"
"PO-Revision-Date: 2020-06-25 11:55+0530\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: admin/class-thmaf-admin.php:77
msgid "Manage Address"
msgstr ""
#: admin/class-thmaf-admin.php:105
msgid "premium version provides more features to manage the users addresses."
msgstr ""
#: admin/class-thmaf-admin.php:108
msgid "Let Your Shoppers Choose from a List of Saved Addresses"
msgstr ""
#: admin/class-thmaf-admin.php:111
msgid "Manage All Addresses from My Account Page"
msgstr ""
#: admin/class-thmaf-admin.php:115
msgid "Save Time with Google Autocomplete Feature"
msgstr ""
#: admin/class-thmaf-admin.php:118
msgid "Custom Address Formats through Overriding"
msgstr ""
#: admin/class-thmaf-admin.php:121
msgid "Display Your Multiple Address Layouts in Style"
msgstr ""
#: admin/class-thmaf-admin.php:124
msgid "Highly Compatible with"
msgstr ""
#: admin/class-thmaf-admin-settings.php:24
msgid "General Settings"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:37
msgid "Enable multiple address for billing"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:40
msgid "Enable multiple address for shipping"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:43
msgid "Address Properties"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:62
msgid "Your changes were saved."
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:64
msgid "Your changes were not saved due to an error (or you made none!)."
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:159
msgid "Save changes"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:160
msgid "Reset to default"
msgstr ""
#: admin/class-thmaf-admin-settings-general.php:93
msgid "Settings successfully reset"
msgstr ""
#: admin/class-thmaf-admin.php:89 includes/class-thmaf.php:172
msgid "Settings"
msgstr ""
#: includes/class-thmaf.php:171
msgid "Premium plugin"
msgstr ""
#: includes/utils/class-thmaf-utils.php:62
msgid "Home"
msgstr ""
#: public/class-thmaf-public.php:62
msgid "Billing Addresses"
msgstr ""
#: public/class-thmaf-public.php:63
msgid "Shipping Addresses"
msgstr ""
#: public/class-thmaf-public.php:64
msgid "Addresses"
msgstr ""
#: public/class-thmaf-public.php:181
msgid "Additional billing addresses"
msgstr ""
#: public/class-thmaf-public.php:186 public/class-thmaf-public.php:204
msgid "There are no saved addresses yet "
msgstr ""
#: public/class-thmaf-public.php:199
msgid "Additional shipping addresses"
msgstr ""
#: public/class-thmaf-public.php:235
msgid "Are you sure you want to delete this address?"
msgstr ""
#: public/class-thmaf-public.php:248
msgid "Delete"
msgstr ""
#: public/class-thmaf-public.php:256 public/class-thmaf-public.php:264
msgid "Set as default"
msgstr ""
#: public/class-thmaf-public.php:333
msgid "Address Added successfully."
msgstr ""
#: public/class-thmaf-public.php:335
msgid "Address Changed successfully."
msgstr ""
#: public/class-thmaf-public.php:525 public/class-thmaf-public.php:537
#: public/class-thmaf-public.php:546
msgid "hidden value"
msgstr ""
#: public/class-thmaf-public.php:634 public/class-thmaf-public.php:673
msgid "Billing Address"
msgstr ""
#: public/class-thmaf-public.php:669 public/class-thmaf-public.php:749
msgid "Add New Address"
msgstr ""
#: public/class-thmaf-public.php:683 public/class-thmaf-public.php:762
msgid "Choose an Address.."
msgstr ""
#: public/class-thmaf-public.php:715 public/class-thmaf-public.php:753
msgid "Shipping Address"
msgstr ""
#: public/templates/myaccount/my-address.php:27
#: public/templates/myaccount/my-address.php:32
msgid "Billing address"
msgstr ""
#: public/templates/myaccount/my-address.php:28
msgid "Shipping address"
msgstr ""
#: public/templates/myaccount/my-address.php:41
msgid "The following addresses will be used on the checkout page by default."
msgstr ""
#: public/templates/myaccount/my-address.php:53
msgid "Edit"
msgstr ""
#: public/templates/myaccount/my-address.php:57
msgid "You have not set up this type of address yet."
msgstr ""

View File

@@ -0,0 +1,63 @@
# Copyright (C) 2020 Theme.id
# This file is distributed under the same license as the Theme.id's Caldera Form to Slack plugin.
msgid ""
msgstr ""
"Project-Id-Version: Theme.id's Caldera Form to Slack 0.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/themeid-caldera-form-to-slack\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-25T09:31:49+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.4.0\n"
"X-Domain: caladea-slack\n"
#. Plugin Name of the plugin
msgid "Theme.id's Caldera Form to Slack"
msgstr ""
#. Plugin URI of the plugin
msgid "http://caladea.com"
msgstr ""
#. Description of the plugin
msgid "Send notifications to Slack channels when certain on Caldera Form submission."
msgstr ""
#. Author of the plugin
msgid "Theme.id"
msgstr ""
#. Author URI of the plugin
msgid "https://theme.id"
msgstr ""
#: includes/caldera.php:57
msgid "Hook Url"
msgstr ""
#: includes/caldera.php:64
msgid "The name of Bot that will be display in message"
msgstr ""
#: includes/caldera.php:65
msgid "Bot Name"
msgstr ""
#: includes/caldera.php:71
msgid "Overrides the default channel for this web hook (e.g #myChannel) or leave blank to use default"
msgstr ""
#: includes/caldera.php:73
msgid "Channel Name"
msgstr ""
#: includes/caldera.php:79
msgid "You can put URL (https://domain.com/image.png) or emoji (:taco:) here"
msgstr ""
#: includes/caldera.php:81
msgid "Icon"
msgstr ""

View 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"
}
}

View File

@@ -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"
}
}

View File

@@ -0,0 +1,10 @@
Changelog
==========
#### 1.0.1 - Aug 4, 2020
Fixes an issue where the plugin would silently fail on PHP version 7.2 or lower.
#### 1.0.0 - Aug 3, 2020
Initial plugin release.

View 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

View 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": {}
}

View 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"
}
}

View File

@@ -0,0 +1,4 @@
= 1.0.0 =
Release Date: August 20, 2020
* Initial release

View File

@@ -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 &rarr;</a>"
msgstr ""
"Integracja WooCommerce z SMSAPI. <a href=\"%s\" target=\"_blank\">Sprawdź "
"dokumentację &rarr;</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"

View File

@@ -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 ""

View File

@@ -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 ""

View File

@@ -0,0 +1,11 @@
{
"name": "opcodespace",
"version": "1.0.0",
"description": "Wordpress plugin development boilerplate",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Mehedee Rahman",
"license": "ISC"
}

View File

@@ -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 ""

View File

@@ -0,0 +1,2 @@
Version 1.0.0 - Wednesday, 02nd September 2020
- Initial release

View File

@@ -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 ""

View File

@@ -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 ""

View 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"
}
}

View 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 "Didnt 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 well 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 ""

View File

@@ -11,6 +11,10 @@
<link rel='stylesheet' id='install-css' href='http://wp.lab/wp-admin/css/install.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='dashicons-css' href='http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='forms-css' href='http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='l10n-css' href='http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1' type='text/css' media='all' />
</head>
<body class="wp-core-ui">
<p id="logo"><a href="https://wordpress.org/" tabindex="-1">WordPress</a></p>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html>
<!--[if IE 8]>
<html xmlns="http://www.w3.org/1999/xhtml" class="ie8" lang="en-US">
<![endif]-->
<!--[if !(IE 8) ]><!-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Log In &lsaquo; WP 3.8.1 &#8212; WordPress</title>
<link rel='dns-prefetch' href='//s.w.org' />
<link rel='stylesheet' id='dashicons-css' href='http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='buttons-css' href='http://wp.lab/wp-includes/css/buttons.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='forms-css' href='http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='l10n-css' href='http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='login-css' href='http://wp.lab/wp-admin/css/login.min.css?ver=3.8.1' media='all' />
<meta name='robots' content='noindex,noarchive' />
<meta name='referrer' content='strict-origin-when-cross-origin' />
<meta name="viewport" content="width=device-width" />
</head>
<body class="login no-js login-action-login wp-core-ui locale-en-us">
<script type="text/javascript">
document.body.className = document.body.className.replace('no-js','js');
</script>
<div id="login">
<h1><a href="https://wordpress.org/">Powered by WordPress</a></h1>
<form name="loginform" id="loginform" action="http://wp.lab/wp-login.php" method="post">
<p>
<label for="user_login">Username or Email Address</label>
<input type="text" name="log" id="user_login" class="input" value="" size="20" autocapitalize="off" />
</p>
<div class="user-pass-wrap">
<label for="user_pass">Password</label>
<div class="wp-pwd">
<input type="password" name="pwd" id="user_pass" class="input password-input" value="" size="20" />
<button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="Show password">
<span class="dashicons dashicons-visibility" aria-hidden="true"></span>
</button>
</div>
</div>
<p class="forgetmenot"><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> <label for="rememberme">Remember Me</label></p>
<p class="submit">
<input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="Log In" />
<input type="hidden" name="redirect_to" value="http://wp.lab/wp-admin/" />
<input type="hidden" name="testcookie" value="1" />
</p>
</form>
<p id="nav">
<a href="http://wp.lab/wp-login.php?action=lostpassword">Lost your password?</a>
</p>
<script type="text/javascript">
function wp_attempt_focus() {setTimeout( function() {try {d = document.getElementById( "user_login" );d.focus(); d.select();} catch( er ) {}}, 200);}
wp_attempt_focus();
if ( typeof wpOnload === 'function' ) { wpOnload() } </script>
<p id="backtoblog"><a href="http://wp.lab/">
&larr; Back to WP 3.8.1 </a></p>
</div>
<script src='http://wp.lab/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp'></script>
<script src='http://wp.lab/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script>
var _zxcvbnSettings = {"src":"http:\/\/wp.lab\/wp-includes\/js\/zxcvbn.min.js"};
</script>
<script src='http://wp.lab/wp-includes/js/zxcvbn-async.min.js?ver=1.0'></script>
<script>
var pwsL10n = {"unknown":"Password strength unknown","short":"Very weak","bad":"Weak","good":"Medium","strong":"Strong","mismatch":"Mismatch"};
</script>
<script src='http://wp.lab/wp-admin/js/password-strength-meter.min.js?ver=3.8.1'></script>
<script src='http://wp.lab/wp-includes/js/underscore.min.js?ver=1.8.3'></script>
<script>
var _wpUtilSettings = {"ajax":{"url":"\/wp-admin\/admin-ajax.php"}};
</script>
<script src='http://wp.lab/wp-includes/js/wp-util.min.js?ver=3.8.1'></script>
<script>
var userProfileL10n = {"warn":"Your new password has not been saved.","warnWeak":"Confirm use of weak password","show":"Show","hide":"Hide","cancel":"Cancel","ariaShow":"Show password","ariaHide":"Hide password"};
</script>
<script src='http://wp.lab/wp-admin/js/user-profile.min.js?ver=3.8.1'></script>
<script>
/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
</script>
<div class="clear"></div>
</body>
</html>

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex,nofollow" />
<title>WordPress &rsaquo; Database Repair</title>
<link rel='stylesheet' id='dashicons-css' href='http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='buttons-css' href='http://wp.lab/wp-includes/css/buttons.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='forms-css' href='http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='l10n-css' href='http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1' media='all' />
<link rel='stylesheet' id='install-css' href='http://wp.lab/wp-admin/css/install.min.css?ver=3.8.1' media='all' />
</head>
<body class="wp-core-ui">
<p id="logo"><a href="https://wordpress.org/">WordPress</a></p>
<h1 class="screen-reader-text">Allow automatic database repair</h1><p>To allow use of this page to automatically repair database problems, please add the following line to your <code>wp-config.php</code> file. Once this line is added to your config, reload this page.</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p></body>
</html>

View File

@@ -10,6 +10,12 @@
<link rel='stylesheet' id='install-css' href='http://wp.lab/wp-admin/css/install.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='dashicons-css' href='http://wp.lab/wp-includes/css/dashicons.min.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='forms-css' href='http://wp.lab/wp-admin/css/forms.min.css?ver=3.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='l10n-css' href='http://wp.lab/wp-admin/css/l10n.min.css?ver=3.8.1' type='text/css' media='all' />
<!--[if lte IE 7]>
<link rel='stylesheet' id='ie-css' href='http://wp.lab/wp-admin/css/ie.min.css?ver=3.8.1' type='text/css' media='all' />
<![endif]-->

View File

@@ -0,0 +1,5 @@
********************************************************************************
* DUPLICATOR-LITE INSTALL-LOG
* STEP1 START @ 04:10:42
* NOTICE: Do NOT post to public sites or forums
********************************************************************************

View File

@@ -0,0 +1,5 @@
********************************************************************************
* DUPLICATOR-PRO: Install-Log
* STEP1 START @ 04:10:42
* NOTICE: Do NOT post to public sites or forums
********************************************************************************

Some files were not shown because too many files have changed in this diff Show More