Compare commits
3 Commits
v3.5.4
...
plugin-bac
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
82db02a688 | ||
|
|
2c07de8c6b | ||
|
|
4b0b8fa624 |
@@ -30,7 +30,6 @@
|
||||
- Curl >= 7.21 - Recommended: latest
|
||||
- The 7.29 has a segfault
|
||||
- RubyGems - Recommended: latest
|
||||
- Nokogiri might require packages to be installed via your package manager depending on your OS, see https://nokogiri.org/tutorials/installing_nokogiri.html
|
||||
|
||||
### From RubyGems (Recommended)
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ require_relative 'interesting_findings/readme'
|
||||
require_relative 'interesting_findings/wp_cron'
|
||||
require_relative 'interesting_findings/multisite'
|
||||
require_relative 'interesting_findings/debug_log'
|
||||
require_relative 'interesting_findings/backup_db'
|
||||
require_relative 'interesting_findings/plugin_backup_folders'
|
||||
require_relative 'interesting_findings/mu_plugins'
|
||||
require_relative 'interesting_findings/registration'
|
||||
require_relative 'interesting_findings/tmm_db_migrate'
|
||||
@@ -24,7 +24,7 @@ module WPScan
|
||||
super(target)
|
||||
|
||||
%w[
|
||||
Readme DebugLog FullPathDisclosure BackupDB DuplicatorInstallerLog
|
||||
Readme DebugLog FullPathDisclosure PluginBackupFolders DuplicatorInstallerLog
|
||||
Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate
|
||||
UploadSQLDump EmergencyPwdResetScript WPCron
|
||||
].each do |f|
|
||||
|
||||
@@ -1,26 +0,0 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
module InterestingFindings
|
||||
# BackupDB finder
|
||||
class BackupDB < CMSScanner::Finders::Finder
|
||||
# @return [ InterestingFinding ]
|
||||
def aggressive(_opts = {})
|
||||
path = 'wp-content/backup-db/'
|
||||
res = target.head_and_get(path, [200, 403])
|
||||
|
||||
return unless [200, 403].include?(res.code) && !target.homepage_or_404?(res)
|
||||
|
||||
Model::BackupDB.new(
|
||||
target.url(path),
|
||||
confidence: 70,
|
||||
found_by: DIRECT_ACCESS,
|
||||
interesting_entries: target.directory_listing_entries(path),
|
||||
references: { url: 'https://github.com/wpscanteam/wpscan/issues/422' }
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
34
app/finders/interesting_findings/plugin_backup_folders.rb
Normal file
34
app/finders/interesting_findings/plugin_backup_folders.rb
Normal file
@@ -0,0 +1,34 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
module InterestingFindings
|
||||
# Known Backup Folders from Plugin finder
|
||||
class PluginBackupFolders < CMSScanner::Finders::Finder
|
||||
PATHS = %w[wp-content/backup-db/ wp-content/backups-dup-pro/ wp-content/updraft/].freeze
|
||||
|
||||
# @return [ InterestingFinding ]
|
||||
def aggressive(_opts = {})
|
||||
found = []
|
||||
|
||||
PATHS.each do |path|
|
||||
res = target.head_and_get(path, [200, 403])
|
||||
|
||||
next unless [200, 403].include?(res.code) && !target.homepage_or_404?(res)
|
||||
|
||||
found << Model::PluginBackupFolder.new(
|
||||
target.url(path),
|
||||
confidence: 70,
|
||||
found_by: DIRECT_ACCESS,
|
||||
interesting_entries: target.directory_listing_entries(path),
|
||||
references: { url: ['https://github.com/wpscanteam/wpscan/issues/422',
|
||||
'https://github.com/wpscanteam/wpscan/issues/1342'] }
|
||||
)
|
||||
end
|
||||
|
||||
found
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
#
|
||||
# Empty classes for the #type to be correctly displayed (as taken from the self.class from the parent)
|
||||
#
|
||||
class BackupDB < InterestingFinding
|
||||
class PluginBackupFolder < InterestingFinding
|
||||
end
|
||||
|
||||
class DebugLog < InterestingFinding
|
||||
|
||||
@@ -11,10 +11,9 @@
|
||||
}<% unless index == last_index %>,<% end -%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
}
|
||||
<% if @item.respond_to?(:vulnerabilities) -%>
|
||||
,"vulnerabilities": [
|
||||
<% unless (vulns = @item.vulnerabilities).empty? -%>
|
||||
},
|
||||
"vulnerabilities": [
|
||||
<% if @item.respond_to?(:vulnerabilities) && !(vulns = @item.vulnerabilities).empty? -%>
|
||||
<% last_index = vulns.size - 1 -%>
|
||||
<% vulns.each_with_index do |v, index| -%>
|
||||
{
|
||||
@@ -24,5 +23,4 @@
|
||||
}<% unless index == last_index -%>,<% end -%>
|
||||
<% end -%>
|
||||
<% end -%>
|
||||
]
|
||||
<% end -%>
|
||||
]
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.5.4'
|
||||
VERSION = '3.5.3'
|
||||
end
|
||||
|
||||
@@ -1,73 +0,0 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::BackupDB do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'backup_db') }
|
||||
let(:wp_content) { 'wp-content' }
|
||||
let(:dir_url) { target.url("#{wp_content}/backup-db/") }
|
||||
|
||||
before do
|
||||
expect(target).to receive(:content_dir).at_least(1).and_return(wp_content)
|
||||
expect(target).to receive(:head_or_get_params).and_return(method: :head)
|
||||
end
|
||||
|
||||
describe '#aggressive' do
|
||||
context 'when not a 200 or 403' do
|
||||
it 'returns nil' do
|
||||
stub_request(:head, dir_url).to_return(status: 404)
|
||||
|
||||
expect(finder.aggressive).to eql nil
|
||||
end
|
||||
end
|
||||
|
||||
context 'when 200 and matching the homepage' do
|
||||
it 'returns nil' do
|
||||
stub_request(:head, dir_url)
|
||||
stub_request(:get, dir_url)
|
||||
|
||||
expect(target).to receive(:homepage_or_404?).and_return(true)
|
||||
|
||||
expect(finder.aggressive).to eql nil
|
||||
end
|
||||
end
|
||||
|
||||
context 'when 200 or 403' do
|
||||
before do
|
||||
stub_request(:head, dir_url)
|
||||
stub_request(:get, dir_url).and_return(body: body)
|
||||
|
||||
expect(target).to receive(:homepage_or_404?).and_return(false)
|
||||
end
|
||||
|
||||
after do
|
||||
found = finder.aggressive
|
||||
|
||||
expect(found).to eql WPScan::Model::BackupDB.new(
|
||||
dir_url,
|
||||
confidence: 70,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
|
||||
expect(found.interesting_entries).to eq @expected_entries
|
||||
end
|
||||
|
||||
context 'when no directory listing' do
|
||||
let(:body) { '' }
|
||||
|
||||
it 'returns an empty interesting_findings attribute' do
|
||||
@expected_entries = []
|
||||
end
|
||||
end
|
||||
|
||||
context 'when directory listing enabled' do
|
||||
let(:body) { File.read(fixtures.join('dir_listing.html')) }
|
||||
|
||||
it 'returns the expected interesting_findings attribute' do
|
||||
@expected_entries = %w[sqldump.sql test.txt]
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,76 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::PluginBackupFolders do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'plugin_backup_folders') }
|
||||
|
||||
before do
|
||||
expect(target).to receive(:content_dir).at_least(1).and_return('wp-content')
|
||||
|
||||
finder.class::PATHS.each { |path| stub_request(:head, target.url(path)).to_return(status: 404) }
|
||||
|
||||
allow(target).to receive(:head_or_get_params).and_return(method: :head)
|
||||
end
|
||||
|
||||
describe '#aggressive' do
|
||||
context 'when none of them exist' do
|
||||
it 'returns an empty array' do
|
||||
expect(finder.aggressive).to eql([])
|
||||
end
|
||||
end
|
||||
|
||||
context 'when one exist but matches the homepage' do
|
||||
let(:existing_url) { target.url(finder.class::PATHS.sample) }
|
||||
|
||||
it 'ignores it' do
|
||||
stub_request(:head, existing_url)
|
||||
stub_request(:get, existing_url)
|
||||
|
||||
expect(target).to receive(:homepage_or_404?).and_return(true)
|
||||
|
||||
expect(finder.aggressive).to eql([])
|
||||
end
|
||||
end
|
||||
|
||||
context 'when 200 or 403' do
|
||||
let(:existing_url) { target.url(finder.class::PATHS.sample) }
|
||||
|
||||
before do
|
||||
stub_request(:head, existing_url)
|
||||
stub_request(:get, existing_url).and_return(body: body)
|
||||
|
||||
expect(target).to receive(:homepage_or_404?).and_return(false)
|
||||
end
|
||||
|
||||
after do
|
||||
found = finder.aggressive
|
||||
|
||||
expect(found.size).to eql 1
|
||||
|
||||
expect(found).to eql([WPScan::Model::PluginBackupFolder.new(existing_url,
|
||||
confidence: 70,
|
||||
found_by: described_class::DIRECT_ACCESS)])
|
||||
|
||||
expect(found.first.interesting_entries).to eq @expected_entries
|
||||
end
|
||||
|
||||
context 'when no directory listing' do
|
||||
let(:body) { '' }
|
||||
|
||||
it 'returns an empty interesting_findings attribute' do
|
||||
@expected_entries = []
|
||||
end
|
||||
end
|
||||
|
||||
context 'when directory listing enabled' do
|
||||
let(:body) { File.read(fixtures.join('dir_listing.html')) }
|
||||
|
||||
it 'returns the expected interesting_findings attribute' do
|
||||
@expected_entries = %w[sqldump.sql test.txt]
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
799
spec/fixtures/db/dynamic_finders.yml
vendored
799
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1014
spec/fixtures/dynamic_finders/expected.yml
vendored
1014
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,37 +0,0 @@
|
||||
# Changelog
|
||||
|
||||
## 1.1.6 - 19 Mar 2019
|
||||
* FIX [#32](https://github.com/BeAPI/acf-options-for-polylang/issues/32) & [#40](https://github.com/BeAPI/acf-options-for-polylang/issues/40) : fix `get_field()` if an object is provided (WP Term, WP Post, WP Comment)
|
||||
|
||||
## 1.1.5 - 11 Dec 2018
|
||||
* FIX wrong constant
|
||||
|
||||
## 1.1.4 - 13 Nov 2018
|
||||
* Refactor by adding the Helpers class
|
||||
* FEATURE [#26](https://github.com/BeAPI/acf-options-for-polylang/issues/26) : allow to precise to show or hide default values for a specific option page
|
||||
* FEATURE [#21](https://github.com/BeAPI/acf-options-for-polylang/pull/21) : handle custom option id
|
||||
|
||||
## 1.1.3 - 2 Aug 2018
|
||||
* FEATURE [#23](https://github.com/BeAPI/acf-options-for-polylang/pull/23) : requirement to php5.6 whereas namespace are 5.3
|
||||
|
||||
## 1.1.2 - 31 Jul 2018
|
||||
* FIX [#22](https://github.com/BeAPI/acf-options-for-polylang/pull/22) : error with repeater fields default values
|
||||
|
||||
## 1.1.1 - 9 Mai 2018
|
||||
* FIX [#15](https://github.com/BeAPI/acf-options-for-polylang/issues/15) : way requirements are checked to trigger on front / admin
|
||||
|
||||
## 1.1.0 - Mar 2018
|
||||
* True (complet) plugin.
|
||||
* Add check for ACF 5.6.
|
||||
|
||||
## 1.0.2 - 23 Dec 2017
|
||||
* Refactor and reformat.
|
||||
* Handle all options page and custom post_id.
|
||||
* Now load only if ACF & Polylang are activated.
|
||||
* Load later at plugins loaded.
|
||||
|
||||
## 1.0.1 - 19 Sep 2016
|
||||
* Plugin update.
|
||||
|
||||
## 1.0.0 - 8 Mar 2016
|
||||
* Init plugin.
|
||||
@@ -1,31 +0,0 @@
|
||||
# Copyright (C) 2019 Andy Fragen
|
||||
# This file is distributed under the same license as the Admin Only Jetpack plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Admin Only Jetpack 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/admin-only-jetpack\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-04-26T14:33:28+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: admin-only-jetpack\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Admin Only Jetpack"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/afragen/admin-only-jetpack"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Show Jetpack menu for Admin users only."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Andy Fragen"
|
||||
msgstr ""
|
||||
@@ -1,6 +0,0 @@
|
||||
1.0.0
|
||||
- Initial release
|
||||
|
||||
1.0.2
|
||||
- Fixed issues with the chrome extension
|
||||
- Simpliy way to connect your store to the chrome extension
|
||||
@@ -1,34 +0,0 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
#### 1.0.1 - May 10, 2019
|
||||
|
||||
**Fixed**
|
||||
- AffiliateWP integration subscribing the wrong user if affiliate ID differs from user ID.
|
||||
- Broken url
|
||||
|
||||
**Improvements**
|
||||
- Test by latest wordpress 5.2
|
||||
|
||||
#### 1.0.0 - September 21, 2018
|
||||
|
||||
**Changes**
|
||||
|
||||
- Change module name from AvangEmail to AvangPress
|
||||
- Change logo
|
||||
|
||||
**Additions**
|
||||
|
||||
- Fix bug on detect connection
|
||||
- Fix bug saved list to database.
|
||||
|
||||
|
||||
#### 0.0.1 - August 8, 2018
|
||||
|
||||
**Improvements**
|
||||
|
||||
- Init project based on AvangPress for wordpress plugin
|
||||
|
||||
**Additions**
|
||||
|
||||
- Add AvangPress php api to project.
|
||||
@@ -1,18 +0,0 @@
|
||||
{
|
||||
"name": "awesome-hooks",
|
||||
"version": "0.0.2",
|
||||
"main": "Gruntfile.js",
|
||||
"author": "Surror",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.0.1",
|
||||
"grunt-contrib-clean": "^1.1.0",
|
||||
"grunt-contrib-compress": "^1.4.3",
|
||||
"grunt-contrib-concat": "^1.0.1",
|
||||
"grunt-contrib-copy": "^1.0.0",
|
||||
"grunt-contrib-cssmin": "^2.2.1",
|
||||
"grunt-contrib-uglify": "^3.3.0",
|
||||
"grunt-postcss": "^0.9.0",
|
||||
"grunt-rtlcss": "^2.0.1",
|
||||
"grunt-wp-i18n": "~1.0.0"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,74 +0,0 @@
|
||||
# Copyright (C) 2019 Bunty
|
||||
# This file is distributed under the same license as the BuddyPress Profile Field Duplicator package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BuddyPress Profile Field Duplicator 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/bp-profile-field-duplicator\n"
|
||||
"POT-Creation-Date: 2019-05-26 15:21:43+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:55
|
||||
msgid "Duplicate This"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:67
|
||||
msgid "Are you sure you want to duplicate this?"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:105
|
||||
msgid "Something went wrong."
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:114
|
||||
msgid "Field is not available."
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:138
|
||||
msgid " - Copy"
|
||||
msgstr ""
|
||||
|
||||
#: app/admin/class-bp-profile-field-duplicator-admin.php:183
|
||||
msgid "Fail to create duplicate field."
|
||||
msgstr ""
|
||||
|
||||
#: bp-profile-field-duplicator.php:63
|
||||
msgid "%s works with BuddyPress only. Please activate BuddyPress or de-activate %s."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "BuddyPress Profile Field Duplicator"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "bhargavb.wordpress.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Make a duplicate of BuddyPress profile fields."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Bunty"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "bhargavb.wordpress.com/about-me"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -993,16 +993,4 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
<!--Cached with Swift Performance Lite-->
|
||||
|
||||
|
||||
<!-- master-popups-lite -->
|
||||
<!-- MPP:MasterPopups v1.0.2 -->
|
||||
|
||||
|
||||
<!-- social-rocket -->
|
||||
<!-- Begin Social Rocket v1.0.1 https://wpsocialrocket.com -->
|
||||
|
||||
|
||||
<!-- open-wp-seo -->
|
||||
<!-- Open WordPress SEO 1.0.0 -->
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,401 +0,0 @@
|
||||
# Copyright (C) 2019 ScriptsTown
|
||||
# This file is distributed under the same license as the Contact Form Query plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Contact Form Query 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/contact-form-query\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-05-22T23:31:24+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: contact-form-query\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/inc/class-stcfq-admin-menu.php:10
|
||||
#: admin/inc/setting/index.php:13
|
||||
msgid "Contact Form Query"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add a contact form and receive messages directly to your WordPress admin panel with search and filter options. View latest messages received in dashboard."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ScriptsTown"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://scriptstown.com/"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %d: Number of unanswered messages
|
||||
#: admin/inc/class-stcfq-admin-menu.php:14
|
||||
msgid "Contact <span class=\"awaiting-mod\">%d</span>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-admin-menu.php:16
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-admin-menu.php:25
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-admin-menu.php:28
|
||||
#: admin/inc/class-stcfq-setting.php:7
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-message.php:41
|
||||
#: admin/inc/class-stcfq-message.php:97
|
||||
msgid "Message not found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-message.php:58
|
||||
msgid "Message deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-message.php:123
|
||||
msgid "Message status updated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-message.php:147
|
||||
msgid "Contact Form Latest Messages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:51
|
||||
#: includes/class-stcfq-helper.php:17
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:54
|
||||
#: includes/class-stcfq-helper.php:25
|
||||
msgid "Your Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:57
|
||||
#: admin/inc/message/filter.php:17
|
||||
#: admin/inc/message/filter.php:45
|
||||
#: admin/inc/message/index.php:19
|
||||
#: admin/inc/message/load.php:37
|
||||
#: admin/inc/message/view.php:32
|
||||
#: includes/class-stcfq-helper.php:33
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:60
|
||||
#: admin/inc/message/filter.php:26
|
||||
#: admin/inc/message/filter.php:48
|
||||
#: admin/inc/message/index.php:20
|
||||
#: admin/inc/message/load.php:40
|
||||
#: admin/inc/message/view.php:24
|
||||
#: admin/inc/message/view.php:36
|
||||
#: includes/class-stcfq-helper.php:41
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:66
|
||||
msgid "The fields are invalid or not supported."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:72
|
||||
msgid "Please enable at least one field."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stcfq-setting.php:113
|
||||
#: admin/inc/class-stcfq-setting.php:149
|
||||
#: admin/inc/class-stcfq-setting.php:165
|
||||
msgid "Setting saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:5
|
||||
msgid "Search & Filter Messages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:20
|
||||
#: admin/inc/message/filter.php:46
|
||||
#: admin/inc/message/index.php:21
|
||||
#: admin/inc/message/load.php:43
|
||||
#: admin/inc/message/view.php:40
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:23
|
||||
#: admin/inc/message/filter.php:47
|
||||
#: admin/inc/message/index.php:22
|
||||
#: admin/inc/message/load.php:46
|
||||
#: admin/inc/message/view.php:44
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:29
|
||||
#: admin/inc/message/filter.php:49
|
||||
#: admin/inc/message/index.php:23
|
||||
#: admin/inc/message/load.php:49
|
||||
#: admin/inc/message/view.php:48
|
||||
msgid "Answered"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:32
|
||||
#: admin/inc/message/filter.php:50
|
||||
#: admin/inc/message/view.php:52
|
||||
#: admin/inc/message/view.php:93
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:62
|
||||
msgid "Add more"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/filter.php:63
|
||||
msgid "Apply filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/index.php:12
|
||||
msgid "Contact Form Messages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/index.php:18
|
||||
#: admin/inc/message/load.php:34
|
||||
msgid "S.No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/index.php:24
|
||||
#: admin/inc/message/view.php:56
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/index.php:25
|
||||
#: admin/inc/message/load.php:55
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/index.php:68
|
||||
msgid "No more messages."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/latest.php:42
|
||||
msgid "View all"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/load.php:50
|
||||
#: admin/inc/message/view.php:49
|
||||
#: admin/inc/setting/tabs/form-fields.php:50
|
||||
#: admin/inc/setting/tabs/form-fields.php:76
|
||||
#: admin/inc/setting/tabs/form-fields.php:111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/load.php:50
|
||||
#: admin/inc/message/view.php:49
|
||||
#: admin/inc/setting/tabs/form-fields.php:55
|
||||
#: admin/inc/setting/tabs/form-fields.php:81
|
||||
#: admin/inc/setting/tabs/form-fields.php:116
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/load.php:52
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/load.php:59
|
||||
msgid "Are you sure to delete this message?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/view.php:74
|
||||
#: admin/inc/message/view.php:78
|
||||
#: admin/inc/message/view.php:82
|
||||
msgid "Is Answered?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/view.php:85
|
||||
msgid "Mark this message as \"Answered\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/view.php:98
|
||||
msgid "Enter any extra note."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/message/view.php:106
|
||||
#: admin/inc/setting/tabs/captcha.php:106
|
||||
#: admin/inc/setting/tabs/form-fields.php:182
|
||||
#: admin/inc/setting/tabs/uninstall.php:39
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:7
|
||||
#: admin/inc/setting/tabs/form-fields.php:30
|
||||
msgid "Form Fields"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:8
|
||||
#: admin/inc/setting/tabs/captcha.php:25
|
||||
msgid "Captcha"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:9
|
||||
msgid "Uninstall"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:29
|
||||
msgid "Select Captcha"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:51
|
||||
msgid "Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:56
|
||||
msgid "Enter Google reCAPTCHA v2 Site Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:57
|
||||
#: admin/inc/setting/tabs/captcha.php:70
|
||||
msgid "Click Here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:64
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:69
|
||||
msgid "Enter Google reCAPTCHA v2 Secret Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:77
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:82
|
||||
#: admin/inc/setting/tabs/captcha.php:99
|
||||
msgid "Select Google reCAPTCHA Version 2 Theme."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:20
|
||||
msgid "Contact Form Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:24
|
||||
msgid "Use above shortcode in any page or post to display the contact form."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:37
|
||||
msgid "field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:45
|
||||
#: admin/inc/setting/tabs/form-fields.php:106
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:62
|
||||
msgid "Form Label"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:71
|
||||
msgid "Required Field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:88
|
||||
#: admin/inc/setting/tabs/form-fields.php:132
|
||||
#: admin/inc/setting/tabs/form-fields.php:167
|
||||
msgid "Additional Class (use space for multiple classes)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:101
|
||||
msgid "Consent Field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:123
|
||||
msgid "Field Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:141
|
||||
msgid "Validation message (if unchecked)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:152
|
||||
msgid "Submit Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/form-fields.php:158
|
||||
msgid "Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/uninstall.php:15
|
||||
msgid "This will delete all the data when you delete the plugin using WordPress \"Plugins\" menu if you enable this setting."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/uninstall.php:22
|
||||
msgid "Data Deletion"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/uninstall.php:26
|
||||
#: admin/inc/setting/tabs/uninstall.php:30
|
||||
msgid "Delete all data on plugin's deletion"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:104
|
||||
msgid "I consent to having this website store my submitted information so they can respond to my inquiry."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:108
|
||||
msgid "Please confirm."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:121
|
||||
msgid "Send Your Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:129
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:130
|
||||
msgid "Google reCAPTCHA Version 2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:136
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stcfq-helper.php:137
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:16
|
||||
msgid "Error occurred while sending your message. Please try again after some time."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:45
|
||||
#: public/inc/class-stcfq-shortcode.php:48
|
||||
msgid "<strong>ERROR:</strong> Please confirm you are not a robot."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:82
|
||||
msgid "Please provide your name."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:91
|
||||
msgid "Please provide your email."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:93
|
||||
msgid "Please provide a valid email."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:102
|
||||
msgid "Please specify subject."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:111
|
||||
msgid "Please provide your message."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stcfq-shortcode.php:146
|
||||
msgid "Thank you for contacting us. We will reply to your email as soon as possible."
|
||||
msgstr ""
|
||||
@@ -1,137 +0,0 @@
|
||||
# Copyright (C) 2019 1&1 IONOS
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CoSy Address Book 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/cosy-address-book\n"
|
||||
"POT-Creation-Date: 2019-03-11 17:02:56+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.5.4\n"
|
||||
|
||||
#: cosy-address-book/cosy-address-book.php:87
|
||||
msgid "cosy_address_book_admin_page_title"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/cosy-address-book.php:88
|
||||
msgid "cosy_address_book_menu_title"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:2
|
||||
msgid "cosy_address_book_invitation"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:4
|
||||
#: cosy-address-book/inc/views/description.php:22
|
||||
msgid "cosy_address_book_url_text"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:7
|
||||
#: cosy-address-book/inc/views/settings.php:2
|
||||
msgid "cosy_address_book_connection_header"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:8
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:18
|
||||
msgid "cosy_address_book_generic_error"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:11
|
||||
msgid "cosy_address_book_guidance_summary"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:15
|
||||
msgid "cosy_address_book_guidance_step_one_label"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:19
|
||||
msgid "cosy_address_book_guidance_step_one_content"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:29
|
||||
msgid "cosy_address_book_guidance_step_two_label"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:33
|
||||
msgid "cosy_address_book_guidance_step_two_content"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:37
|
||||
msgid "cosy_address_book_activation_form_label"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/description.php:45
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:55
|
||||
msgid "cosy_address_book_form_button_text"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/main.php:3
|
||||
msgid "cosy_address_book_menu_page_headline"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/description.php:2
|
||||
msgid "cosy_address_book_plugin_description_header"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/description.php:3
|
||||
msgid "cosy_address_book_plugin_activation_hint"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/description.php:11
|
||||
msgid "cosy_address_book_web_form_insertion_hint"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:15
|
||||
msgid "cosy_address_book_mapping_description"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:22
|
||||
msgid "cosy_address_book_mapping_header_api_fields"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:25
|
||||
msgid "cosy_address_book_mapping_header_form_fields"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:50
|
||||
msgid "cosy_address_book_consent_field_constraint_hint"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:60
|
||||
msgid "cosy_address_book_synchronisation_ready_hint"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/plugins/settings.php:65
|
||||
msgid "cosy_address_book_gdpr_hint_content"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/settings.php:3
|
||||
msgid "cosy_address_book_connection_confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: cosy-address-book/inc/views/settings.php:6
|
||||
msgid "cosy_address_book_deconnection_url_text"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "CoSy Address Book"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.ionos.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Sends visitor contact data generated by contact forms embedded in WordPress "
|
||||
"websites to CoSy Address Book"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "1&1 IONOS"
|
||||
msgstr ""
|
||||
@@ -1,5 +0,0 @@
|
||||
Version 1.0.1 - Monday, 30th May 2019
|
||||
- Fix: Authentication with new AffiliateWP setup where visits are Zero.
|
||||
|
||||
Version 1.0.0 - Monday, 20th May 2019
|
||||
- Initial Release
|
||||
@@ -1,141 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Daily Snapshot for WooCommerce Admin 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-06-05 18:53+0530\n"
|
||||
"PO-Revision-Date: 2019-06-05 18:53+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: MakeWebBetter <webmaster@makewebbetter.com>\n"
|
||||
"Language: English\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-KeywordsList: __;esc_html_e\n"
|
||||
"X-Poedit-Basepath: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: daily-snapshot-for-woocommerce-admin.php:34
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The Daily Snapshots for WooCommerce Admin feature plugin requires <a href="
|
||||
"\"%s\">WooCommerce Admin</a> to be installed and active."
|
||||
msgstr ""
|
||||
|
||||
#: daily-snapshot-for-woocommerce-admin.php:78
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:32
|
||||
msgid "Daily Snapshot"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:53
|
||||
msgid "Automated Reports"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:58
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:62
|
||||
msgid "Enable Daily Snapshot"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:65
|
||||
msgid "Recipients"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:67
|
||||
msgid "Comma seperated email addresses, reports are sent to."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:68
|
||||
msgid "Comma seperated emails to send reports to."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:212
|
||||
#, php-format
|
||||
msgid "Daily summary of %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mwb-dss-wc-admin.php:214
|
||||
msgid "Store Admin"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:27
|
||||
msgid "Gross Revenue"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:65
|
||||
msgid "Net Revenue"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:94
|
||||
msgid "Taxes|Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:112
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:139
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:181
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:204
|
||||
msgid "Avg Orders Value"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:232
|
||||
msgid "Product Sold"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:265
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:288
|
||||
msgid "Avg items/order"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:297
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:324
|
||||
msgid "Best Product"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:361
|
||||
msgid "Coupons"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:384
|
||||
msgid "Coupons Value"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:417
|
||||
msgid "Refunds"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:440
|
||||
msgid "Refunded Value"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:482
|
||||
msgid "New/Returning Customer"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:493
|
||||
msgid "Number of returning customer"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/snap-two-stacks.php:507
|
||||
msgid "Number of new customer"
|
||||
msgstr ""
|
||||
@@ -1,8 +0,0 @@
|
||||
# Changelog
|
||||
|
||||
## [1.0.2] - 2019-05-29
|
||||
- Readme fixes
|
||||
|
||||
## [1.0.1] - 2019-05-29
|
||||
### Fixed
|
||||
- CSS changes
|
||||
@@ -1,192 +0,0 @@
|
||||
# FaniMani.pl
|
||||
# Copyright 2019 FaniMani.pl
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FaniMani.pl v1.1.3\n"
|
||||
"Report-Msgid-Bugs-To: FaniMani.pl <info@fanimani.pl>\n"
|
||||
"POT-Creation-Date: 2019-05-04 19:52+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Tomasz Topa <tomasz@topa.pl>\n"
|
||||
"Language-Team: FaniMani.pl <info@fanimani.pl>\n"
|
||||
"Language: pl_PL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
|
||||
"|| n%100>14) ? 1 : 2);\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.2.1\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPath-1: fanimani.php\n"
|
||||
|
||||
#: fanimani.php:57
|
||||
msgid "FaniMani.pl settings"
|
||||
msgstr "Ustawienia FaniMani.pl"
|
||||
|
||||
#: fanimani.php:107
|
||||
msgid "Links updated"
|
||||
msgstr "Linki zaktualizowane"
|
||||
|
||||
#: fanimani.php:112
|
||||
msgid "Main settings"
|
||||
msgstr "Ustawienia główne"
|
||||
|
||||
#: fanimani.php:113
|
||||
msgid "FaniMani Widget"
|
||||
msgstr "Widget FaniMani"
|
||||
|
||||
#: fanimani.php:128
|
||||
msgid "Beneficiary Key"
|
||||
msgstr "Klucz Beneficjenta"
|
||||
|
||||
#: fanimani.php:131
|
||||
msgid "Unique Beneficiary Key received from FaniMani"
|
||||
msgstr "Unikalny Klucz Beneficjenta otrzymany od FaniMani"
|
||||
|
||||
#: fanimani.php:146
|
||||
msgid ""
|
||||
"You can read more about FaniSEO at <a href=\"https://fanimani.pl/faniseo?"
|
||||
"utm_source=plugin-wordpress\" taget=\"_blank\">fanimani.pl/faniseo</a>"
|
||||
msgstr ""
|
||||
"Więcej o programie FaniSEO na stronie <a href=\"https://fanimani.pl/faniseo?"
|
||||
"utm_source=plugin-wordpress” taget=\"_blank”>fanimani.pl/faniseo</a>"
|
||||
|
||||
#: fanimani.php:155 fanimani.php:159
|
||||
msgid "Enable FaniSEO"
|
||||
msgstr "Włącz FaniSEO"
|
||||
|
||||
#: fanimani.php:164
|
||||
msgid "Section title"
|
||||
msgstr "Tytuł sekcji"
|
||||
|
||||
#: fanimani.php:166
|
||||
msgid "Our donors"
|
||||
msgstr "Nasi darczyńcy"
|
||||
|
||||
#: fanimani.php:170
|
||||
msgid "Color of texts and links"
|
||||
msgstr "Kolor tekstu i linków"
|
||||
|
||||
#: fanimani.php:179
|
||||
msgid ""
|
||||
"Make sure that there is appropriate contrast between the background and text "
|
||||
"color - e.g. dark background and light links or light background and dark "
|
||||
"links. The links must be clearly visible on the page. The offer can be "
|
||||
"cancelled due to poorly visible links."
|
||||
msgstr ""
|
||||
"Zadbaj o odpowiedni kontrast tła i linków - np. ciemne tło i jasne linki, "
|
||||
"albo jasne tło i ciemne linki. Linki muszą być dobrze widoczne na stronie. "
|
||||
"Oferta może zostać anulowana jeśli linki nie będą widoczne."
|
||||
|
||||
#: fanimani.php:183 fanimani.php:269
|
||||
msgid ""
|
||||
"Do you use any caching plugins? Remember to clear the cache after changing "
|
||||
"the settings."
|
||||
msgstr ""
|
||||
"Korzystasz z wtyczek do cache? Pamiętaj o odświeżeniu cache po zmianie tego "
|
||||
"ustawienia."
|
||||
|
||||
#: fanimani.php:190
|
||||
msgid "Available links"
|
||||
msgstr "Dostępne linki"
|
||||
|
||||
#: fanimani.php:192
|
||||
msgid "Last update"
|
||||
msgstr "Ostatnia aktualizacja"
|
||||
|
||||
#: fanimani.php:194
|
||||
msgid "Download links for the first time"
|
||||
msgstr "Pobierz linki po raz pierwszy"
|
||||
|
||||
#: fanimani.php:197
|
||||
msgid "Download links"
|
||||
msgstr "Pobierz linki"
|
||||
|
||||
#: fanimani.php:203
|
||||
msgid "Start date"
|
||||
msgstr "Rozpoczęcie"
|
||||
|
||||
#: fanimani.php:204
|
||||
msgid "End date"
|
||||
msgstr "Zakończenie"
|
||||
|
||||
#: fanimani.php:205
|
||||
msgid "Link"
|
||||
msgstr "Link"
|
||||
|
||||
#: fanimani.php:206
|
||||
msgid "Anchor text"
|
||||
msgstr "Tekst linku"
|
||||
|
||||
#: fanimani.php:207
|
||||
msgid "Title attribute"
|
||||
msgstr "Title"
|
||||
|
||||
#: fanimani.php:226
|
||||
msgid ""
|
||||
"Do you use any caching plugins? Remember to clear the cache after "
|
||||
"downloading new links."
|
||||
msgstr ""
|
||||
"Korzystasz z wtyczek do cache? Pamiętaj o odświeżeniu cache po pobraniu "
|
||||
"nowych linków."
|
||||
|
||||
#: fanimani.php:228
|
||||
msgid "No available links"
|
||||
msgstr "Brak dostępnych linków"
|
||||
|
||||
#: fanimani.php:233 fanimani.php:275
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please enter the <strong>Beneficiary Key</strong> in <a href=\"%d\">Main "
|
||||
"settings tab</a>"
|
||||
msgstr ""
|
||||
"Uzupełnij <strong>Klucz Beneficjenta</strong> w <a href=\"%d\">zakładce "
|
||||
"Ustawienia główne</a>"
|
||||
|
||||
#: fanimani.php:250
|
||||
msgid ""
|
||||
"FaniMani Widget is an easy tool that will help you \"squeeze out\" a bit "
|
||||
"more from your website."
|
||||
msgstr ""
|
||||
"Widget FaniMani to proste narzędzie, które pozwoli Wam \"wycisnąć\" więcej z "
|
||||
"Waszej strony WWW."
|
||||
|
||||
#: fanimani.php:252
|
||||
msgid ""
|
||||
"Configure selected features in the \"Widget\" section in your <a href="
|
||||
"\"https://fanimani.pl?utm_source=plugin-wordpress\" target=\"_blank"
|
||||
"\">Beneficiary Panel </a> at FaniMani.pl"
|
||||
msgstr ""
|
||||
"Skonfiguruj wybrane funkcje w sekcji \"Widget\" w <a href=\"https://fanimani."
|
||||
"pl?utm_source=plugin-wordpress\" target=\"_blank\">Panelu Beneficjenta</a> "
|
||||
"na FaniMani.pl"
|
||||
|
||||
#: fanimani.php:253
|
||||
msgid ""
|
||||
"You can read more about the Widget at <a href=\"https://fanimani.pl/widget/?"
|
||||
"utm_source=plugin-wordpress\" taget=\"_blank\">fanimani.pl/widget</a>"
|
||||
msgstr ""
|
||||
"Więcej na temat widgetu dowiesz się na <a href=\"https://fanimani.pl/widget/?"
|
||||
"utm_source=plugin-wordpress\" taget=\"_blank\">fanimani.pl/widget</a>"
|
||||
|
||||
#: fanimani.php:254
|
||||
msgid "Use the option below to add the Widget to your website."
|
||||
msgstr "Skorzystaj z opcji poniżej, aby dodać Widget do Waszej strony."
|
||||
|
||||
#: fanimani.php:260 fanimani.php:264
|
||||
msgid "Enable FaniMani Widget"
|
||||
msgstr "Uruchom Widget FaniMani"
|
||||
|
||||
#: fanimani.php:322
|
||||
msgid "None"
|
||||
msgstr "Brak"
|
||||
|
||||
#: fanimani.php:324
|
||||
msgid "Downloaded links"
|
||||
msgstr "Pobrane linki"
|
||||
@@ -1,73 +0,0 @@
|
||||
# Copyright (C) 2019 Christoph Nagel
|
||||
# This file is distributed under the GPL-3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Floating Contact Button 1.0\n"
|
||||
"Report-Msgid-Bugs-To: <chris@cms-geek.de>\n"
|
||||
"POT-Creation-Date: 2019-04-23 08:00:00+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-05-19 12:46+0200\n"
|
||||
"Language-Team: Christoph Nagel <chris@cms-geek.de>\n"
|
||||
"X-Generator: Poedit 2.2.1\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"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: de_DE\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: floating-contact.php:4
|
||||
msgid "Integrates a floating contact button and opens an modal with your favorite contact form."
|
||||
msgstr ""
|
||||
"Integriert einen Floating-Kontakt-Button und öffnet ein Modal mit einem bevorzugten "
|
||||
"Kontaktformular."
|
||||
|
||||
#: floating-contact.php:69
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Plugin Einstellungen"
|
||||
|
||||
#: floating-contact.php:71
|
||||
msgid "Insert here your shortcode:"
|
||||
msgstr "Shortcode einfügen:"
|
||||
|
||||
#: floating-contact.php:79
|
||||
msgid "Button color (optional):"
|
||||
msgstr "Button Farbe (optional):"
|
||||
|
||||
#: floating-contact.php:92
|
||||
msgid ""
|
||||
"1. Install your favorite contact form plugin. Tested with Contact Form 7, Ninja Forms & "
|
||||
"Caldera Forms."
|
||||
msgstr ""
|
||||
"1. Installieren sie ihr bevorzugtes Kontaktformular-Plugin. Getestet mit Contact Form 7, "
|
||||
"Ninja Forms & Caldera Forms."
|
||||
|
||||
#: floating-contact.php:93
|
||||
msgid ""
|
||||
"2. Generate a form and entering the shortcode into the field. This form will shown in the "
|
||||
"modal, when the Floating Contact Button is clicked."
|
||||
msgstr ""
|
||||
"2. Generieren sie ein Formular und geben sie den Shortcode in das Feld ein. Dieses Formular "
|
||||
"wird im Modal angezeigt, wenn auf die Schaltfläche des \"Floating Contact Button\" geklickt "
|
||||
"wird."
|
||||
|
||||
#: floating-contact.php:94
|
||||
msgid "3. Change the main color of the button (default value: #ff0000)."
|
||||
msgstr "3. Ändern sie die Hauptfarbe der Schaltfläche (Standardwert: #ff0000)."
|
||||
|
||||
#: floating-contact.php:124
|
||||
msgid "Settings Saved"
|
||||
msgstr "Einstellungen gespeichert"
|
||||
|
||||
#: floating-contact.php:135
|
||||
msgid "Save Settings"
|
||||
msgstr "Speichern"
|
||||
|
||||
#: floating-contact.php:151
|
||||
msgid "Close"
|
||||
msgstr "Schliessen"
|
||||
@@ -1,240 +0,0 @@
|
||||
# Copyright (C) 2019 GreenPay
|
||||
# This file is distributed under the same license as the GreenPay Payment Gateway plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GreenPay Payment Gateway 2.2.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/greenpay-payment-gateway\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-05-08T22:52:43+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: greenpay-payment-gateway\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "GreenPay Payment Gateway"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://support.greenpay.me/hc/es-mx/articles/360020253972-Plugin-para-Wordpres"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Take card payments on your store using GreenPay."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/class-greenpay-payment-gateway.php:40
|
||||
msgid "GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://greenpay.me"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1. URL link.
|
||||
#: greenpay-payment-gateway.php:32
|
||||
msgid "GreenPay payments requires WooCommerce to be installed and active. You can download %s here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:33
|
||||
msgid "GreenPay Gateway configurations."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:41
|
||||
msgid "Pay with a credit or debit card through GreenPay."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:107
|
||||
msgid "Authorization number: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:113
|
||||
#: includes/catch-greenpay-checkout-response.php:108
|
||||
msgid "Error : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:120
|
||||
msgid "There was an error comunicating with Greenpay, contact to support@greenpay.me."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:145
|
||||
msgid "Error : This subscription does not have a card token associated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:309
|
||||
msgid "Error creating change payment method order, try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:321
|
||||
msgid "Error creating subscription order, try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-greenpay-payment-gateway.php:336
|
||||
msgid "Error creating checkout order, try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:8
|
||||
msgid "Change"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:10
|
||||
msgid "Enable changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:14
|
||||
msgid "MerchandId"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:16
|
||||
msgid "Its the merchantId value in the credentials file given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:22
|
||||
msgid "Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:24
|
||||
msgid "Its the secret value in the credentials file given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:30
|
||||
msgid "TerminalId"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:32
|
||||
msgid "Its the terminalId value in the credentials file given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:38
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:40
|
||||
msgid "Its the currency code value in ISO 4217 accepted by the terminalId"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:46
|
||||
msgid "Pulic key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:48
|
||||
msgid "Its the public key value in the credentials file given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:54
|
||||
msgid "Checkout form URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:56
|
||||
msgid "Its the checkout form url given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:62
|
||||
msgid "Merchant URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:64
|
||||
msgid "Its the merchant url given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:70
|
||||
msgid "Gateway style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:72
|
||||
msgid "Use CSS ONLY to customize the web forms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:81
|
||||
msgid "Tokenize form URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/greenpay-settings.php:83
|
||||
msgid "Its the tokenize form url given by GreenPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-token-response.php:18
|
||||
#: includes/catch-greenpay-token-response.php:63
|
||||
msgid "Update payment method was cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-token-response.php:19
|
||||
#: includes/catch-greenpay-token-response.php:64
|
||||
msgid "Update payment method was cancel by the user"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-token-response.php:40
|
||||
#: includes/catch-greenpay-token-response.php:85
|
||||
msgid "New card : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-token-response.php:49
|
||||
#: includes/catch-greenpay-token-response.php:94
|
||||
msgid "Error updating payment method"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-token-response.php:50
|
||||
#: includes/catch-greenpay-token-response.php:95
|
||||
msgid "Error updating payment method : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:24
|
||||
msgid "Subcription was cancel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:27
|
||||
#: includes/catch-greenpay-checkout-response.php:87
|
||||
msgid "Order cancelled by user"
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:33
|
||||
msgid "Subscription canceled by the user."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:61
|
||||
msgid "Subscription added."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:62
|
||||
msgid "Card : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:65
|
||||
msgid "Error paying with the card."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:74
|
||||
msgid "Error in tokenization: "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:75
|
||||
msgid "Error adding card."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:85
|
||||
msgid "Checkout was cancel."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:100
|
||||
msgid "Card number : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:101
|
||||
msgid "Authorization number : "
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:104
|
||||
msgid "Paid success."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:109
|
||||
msgid "Error processing transaction."
|
||||
msgstr ""
|
||||
|
||||
#: includes/catch-greenpay-checkout-response.php:114
|
||||
msgid "GreenPay response was alter on the processes."
|
||||
msgstr ""
|
||||
@@ -1,75 +0,0 @@
|
||||
# Copyright (C) 2019 IDPay
|
||||
# This file is distributed under the same license as the IDPay myCRED plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: IDPay myCRED 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/idpay-mycred\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-05-18T12:07:10+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: idpay-mycred\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "IDPay myCRED"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "IDPay payment gateway for myCRED"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "IDPay"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://idpay.ir"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:11
|
||||
#: class-mycred-gateway-idpay.php:60
|
||||
#: class-mycred-gateway-idpay.php:64
|
||||
#: class-mycred-gateway-idpay.php:128
|
||||
msgid "IDPay payment gateway"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:21
|
||||
msgid "IDPay Gateway"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:75
|
||||
msgid "Rial"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:76
|
||||
msgid "Toman"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:91
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:105
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:243
|
||||
msgid "An error occurred while verifying the transaction. status: %s, code: %s, message: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:253
|
||||
msgid "Payment succeeded. Status: %s, Track id: %s, Card no: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:259
|
||||
msgid "An unexpected error occurred when completing the payment but it is done at the gateway. Track id is: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-mycred-gateway-idpay.php:265
|
||||
#: class-mycred-gateway-idpay.php:273
|
||||
msgid "Payment failed. Status: %s, Track id: %, Card no: %s"
|
||||
msgstr ""
|
||||
@@ -1,146 +0,0 @@
|
||||
# Copyright (C) 2019 Integration CDS
|
||||
# This file is distributed under the same license as the Integration CDS package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Integration CDS 1.1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/integration-cds\n"
|
||||
"POT-Creation-Date: 2019-05-16 14:34:57+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: admin.php:32
|
||||
msgid "CDS Integration Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:190
|
||||
msgid "Sorry, this authentication type is not supported at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:197
|
||||
msgid "Sorry, this deployment type is not supported at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:237
|
||||
msgid "System Information"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:253
|
||||
msgid "Resource Usage"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:258
|
||||
msgid "Memory Usage"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:265
|
||||
msgid "Disk Usage"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:305
|
||||
msgid "Show recent log"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:312
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:313
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:314
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:315
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
|
||||
#: admin.php:326
|
||||
msgid "Expand"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# integration-cds.pot (Integration CDS 1.1.1) #-#-#-#-#
|
||||
#. Plugin Name of the plugin/theme
|
||||
#: core.php:40 core.php:41
|
||||
msgid "Integration CDS"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:52 core.php:53
|
||||
msgid "Integration CDS Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:471
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:472
|
||||
msgid "Connection"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:473
|
||||
msgid "Caching"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:474
|
||||
msgid "Add-ons"
|
||||
msgstr ""
|
||||
|
||||
#: core.php:475
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: integration-cds.php:56
|
||||
msgid ""
|
||||
"Integration CDS detected that your PHP version is %1$s. The plugin requires "
|
||||
"at least PHP %2$s to work. Please update your PHP installation to enable the "
|
||||
"plugin."
|
||||
msgstr ""
|
||||
|
||||
#: src/API/Endpoints/ActivateAddon.php:87
|
||||
msgid "Successfully activated."
|
||||
msgstr ""
|
||||
|
||||
#: src/API/Endpoints/CheckConnection.php:60
|
||||
msgid "Provided deployment type is not supported."
|
||||
msgstr ""
|
||||
|
||||
#: src/API/Endpoints/DeactivateAddon.php:69
|
||||
msgid "Successfully deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: src/API/Endpoints/GetEntityMetadata.php:61
|
||||
msgid "Connection to CDS has not been configured."
|
||||
msgstr ""
|
||||
|
||||
#: src/API/Endpoints/GetEntityMetadata.php:69
|
||||
msgid "Authentication against CDS failed. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Shortcode/Twig.php:54
|
||||
msgid ""
|
||||
"<div class=\"alert alert-danger\">Failed to render the template: %s</div>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Twig/Template.php:60
|
||||
msgid "Unexpected error. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# integration-cds.pot (Integration CDS 1.1.1) #-#-#-#-#
|
||||
#. Plugin URI of the plugin/theme
|
||||
#. #-#-#-#-# integration-cds.pot (Integration CDS 1.1.1) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://alexacrm.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Integrate Common Data Service organizations with WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "AlexaCRM"
|
||||
msgstr ""
|
||||
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"name": "jquery-manager",
|
||||
"version": "1.9.0",
|
||||
"description": "Manage jQuery and jQuery Migrate on a WordPress website, select a specific jQuery and/or jQuery Migrate version. The ultimate jQuery debugging tool for WordPress. This plugin is a open source project, made possible by your contribution (code). Development is done on GitHub.",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/Remzi1993/jquery-manager.git"
|
||||
},
|
||||
"keywords": [
|
||||
"wordpress"
|
||||
],
|
||||
"author": "Remzi Cavdar",
|
||||
"license": "GPL-3.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Remzi1993/jquery-manager/issues"
|
||||
},
|
||||
"homepage": "https://github.com/Remzi1993/jquery-manager"
|
||||
}
|
||||
@@ -1,283 +0,0 @@
|
||||
# Copyright (C) 2019 ScriptsTown
|
||||
# This file is distributed under the same license as the Login Security Recaptcha plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Login Security Recaptcha 1.0.4\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/login-security-recaptcha\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-05-22T04:07:02+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: login-security-recaptcha\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/inc/class-stlsr-admin-menu.php:6
|
||||
#: admin/inc/class-stlsr-admin-menu.php:9
|
||||
#: admin/inc/setting/index.php:13
|
||||
msgid "Login Security Recaptcha"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Secure WordPress login, registration and comment form with Google reCAPTCHA. Monitor error logs. Prevent Brute-force attack and much more."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ScriptsTown"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://scriptstown.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-admin-menu.php:6
|
||||
msgid "Login Security"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-setting.php:7
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-setting.php:72
|
||||
msgid "Please select valid captcha."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-setting.php:124
|
||||
msgid "Setting saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-setting.php:147
|
||||
msgid "The plugin has been reset to its default state."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stlsr-setting.php:161
|
||||
msgid "The error logs have been cleared successfully."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:7
|
||||
#: admin/inc/setting/tabs/error-logs.php:27
|
||||
msgid "Captcha"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:8
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:9
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:82
|
||||
msgid "Please set the the \"Site Key\" for \"Google reCAPTCHA Version 2\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:89
|
||||
msgid "Please set the the \"Secret Key\" for \"Google reCAPTCHA Version 2\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:99
|
||||
msgid "Please set the the \"Site Key\" for \"Google reCAPTCHA Version 3\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:106
|
||||
msgid "Please set the the \"Secret Key\" for \"Google reCAPTCHA Version 3\"."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:124
|
||||
msgid "Enable Captcha"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:128
|
||||
msgid "Enable Captcha at Login Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:132
|
||||
msgid "Enable at Login Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:190
|
||||
msgid "Only when user is not logged in."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:202
|
||||
msgid "Captcha Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:206
|
||||
msgid "Set Captcha Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:229
|
||||
#: admin/inc/setting/tabs/captcha.php:283
|
||||
msgid "Site Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:234
|
||||
msgid "Enter Google reCAPTCHA v2 Site Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:235
|
||||
#: admin/inc/setting/tabs/captcha.php:248
|
||||
#: admin/inc/setting/tabs/captcha.php:289
|
||||
#: admin/inc/setting/tabs/captcha.php:302
|
||||
msgid "Click Here"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:242
|
||||
#: admin/inc/setting/tabs/captcha.php:296
|
||||
msgid "Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:247
|
||||
msgid "Enter Google reCAPTCHA v2 Secret Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:255
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:260
|
||||
#: admin/inc/setting/tabs/captcha.php:277
|
||||
msgid "Select Google reCAPTCHA Version 2 Theme."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:288
|
||||
msgid "Enter Google reCAPTCHA v3 Site Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:301
|
||||
msgid "Enter Google reCAPTCHA v3 Secret Key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:309
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:314
|
||||
msgid "Select Google reCAPTCHA Version 3 Score."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:331
|
||||
msgid "reCAPTCHA v3 returns a score (0.0 is very likely a bot). Select Google reCAPTCHA Version 3 Score."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/captcha.php:338
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:11
|
||||
msgid "Last 20 Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:18
|
||||
msgid "Are you sure to clear the error logs?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:18
|
||||
msgid "Clear Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:26
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:28
|
||||
msgid "Error Code"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:29
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:30
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/error-logs.php:48
|
||||
msgid "There was no error."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:13
|
||||
msgid "This will reset the plugin to its default state and clear all data created by this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:16
|
||||
msgid "Are you sure to reset the plugin to its default state?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:16
|
||||
msgid "Reset Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:7
|
||||
msgid "Google reCAPTCHA Version 2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:8
|
||||
msgid "Google reCAPTCHA Version 3"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:14
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:15
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:21
|
||||
msgid "0.1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:22
|
||||
msgid "0.2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:23
|
||||
msgid "0.3"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:24
|
||||
msgid "0.4"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stlsr-helper.php:25
|
||||
msgid "0.5"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:64
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:107
|
||||
#: public/inc/class-stlsr-captcha.php:158
|
||||
#: public/inc/class-stlsr-captcha.php:225
|
||||
#: public/inc/class-stlsr-captcha.php:276
|
||||
#: public/inc/class-stlsr-captcha.php:343
|
||||
#: public/inc/class-stlsr-captcha.php:394
|
||||
#: public/inc/class-stlsr-captcha.php:465
|
||||
#: public/inc/class-stlsr-captcha.php:516
|
||||
msgid "<strong>ERROR:</strong> Please confirm you are not a robot."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:151
|
||||
#: public/inc/class-stlsr-captcha.php:269
|
||||
#: public/inc/class-stlsr-captcha.php:387
|
||||
#: public/inc/class-stlsr-captcha.php:509
|
||||
msgid "low-score"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:182
|
||||
msgid "Lost Password"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:300
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/class-stlsr-captcha.php:422
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
@@ -1,4 +0,0 @@
|
||||
## Change log
|
||||
|
||||
### 1.0.0
|
||||
* Initial Release
|
||||
@@ -1,14 +0,0 @@
|
||||
IMPORTANT:
|
||||
-----------------------------------------------------------------------------------------
|
||||
Please be sure to read the Important Update Notes before you update:
|
||||
https://wp-works.com
|
||||
We are always proactive in preventing security issues, however nobody can assume they will never come up.
|
||||
This is why we highly recommend to stay up to date with each new theme version and plugins.
|
||||
|
||||
|
||||
-----------------------------------------------------------------------------------------
|
||||
Version 1.0.0
|
||||
-----------------------------------------------------------------------------------------
|
||||
|
||||
* Released.
|
||||
|
||||
@@ -1,190 +0,0 @@
|
||||
# Copyright (C) 2019 Mantrabrain
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Instagram Pack 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: mantrabrain@gmail.com\n"
|
||||
"POT-Creation-Date: 2019-06-07 12:47: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: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: includes/admin/class-mb-instagram-pack-admin-settings.php:72
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mb-instagram-pack-admin-settings.php:541
|
||||
msgid "Select a page…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mb-instagram-pack-admin.php:74
|
||||
#: includes/admin/class-mb-instagram-pack-admin.php:95
|
||||
#: includes/admin/class-mb-instagram-pack-admin.php:96
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mb-instagram-pack-admin.php:87
|
||||
msgid "Instagram Pack Setting Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mb-instagram-pack-admin.php:88
|
||||
msgid "Instagram"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:29
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:42
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:43
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:134
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:141
|
||||
msgid "Click here to connect instagram a/c."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:143
|
||||
msgid "Connect to instagram a/c"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:148
|
||||
msgid "Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:149
|
||||
msgid "Instagram Access Token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:154
|
||||
msgid "Instagram Gallery Grid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:155
|
||||
msgid "Select grid for instagram feed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:167
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:168
|
||||
msgid "Per Page Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:174
|
||||
msgid "Hide post like counter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:175
|
||||
msgid "Click here to hide post like counter for individual post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:179
|
||||
msgid "Hide post comment counter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:180
|
||||
msgid "Click here to hide post comment counter for individual post"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:184
|
||||
msgid "Load More Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:185
|
||||
msgid "Load more text button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:188
|
||||
#: templates/tmpl-feed.php:97
|
||||
msgid "Load more.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:190
|
||||
msgid "Load More Loading Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:191
|
||||
msgid "Load more loading text button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:194
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:196
|
||||
msgid "Follow text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:197
|
||||
msgid "Follow text button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-general.php:200
|
||||
#: templates/tmpl-feed.php:99
|
||||
msgid "Follow"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-miscellaneous.php:29
|
||||
#: includes/admin/settings/class-mb-instagram-pack-settings-miscellaneous.php:75
|
||||
msgid "Miscellaneous"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-settings.php:50
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mb-instagram-pack-ajax.php:43
|
||||
msgid "Something wrong, please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mb-instagram-pack-api.php:43
|
||||
#: includes/class-mb-instagram-pack.php:60
|
||||
msgid "Cloning is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mb-instagram-pack-api.php:53
|
||||
#: includes/class-mb-instagram-pack.php:70
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:62
|
||||
#. translators: %s template
|
||||
msgid "%s does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:79
|
||||
msgid ""
|
||||
"action_args should not be overwritten when calling "
|
||||
"mb_instagram_pack_get_template."
|
||||
msgstr ""
|
||||
|
||||
#: includes/shortcodes/class-mb-instagram-pack-shortcode-feed.php:70
|
||||
msgid " Instagram access token invalid, please contact your website administrator"
|
||||
msgstr ""
|
||||
|
||||
#: templates/tmpl-feed.php:98
|
||||
msgid "Loading.."
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Instagram Pack"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/mb-instagram-pack/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Mantrabrain"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://mantrabrain.com/"
|
||||
msgstr ""
|
||||
@@ -1,49 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
|
||||
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
|
||||
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marko Maksym\n"
|
||||
"Language: uk_UA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../includes\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Title of the page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Link Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/index.php:8
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:10
|
||||
msgid "Main page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
|
||||
msgid "Page 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
|
||||
msgid "Page 2"
|
||||
msgstr ""
|
||||
@@ -1,49 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
|
||||
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
|
||||
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marko Maksym\n"
|
||||
"Language: uk_UA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../includes\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Title of the page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Link Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/index.php:8
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:10
|
||||
msgid "Main page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
|
||||
msgid "Page 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
|
||||
msgid "Page 2"
|
||||
msgstr ""
|
||||
@@ -1,369 +0,0 @@
|
||||
# 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: "
|
||||
"2019-05-09 10:19+0700\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Your "
|
||||
"Name <you@example.com>\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.2.1\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: inc/admin.php:53
|
||||
#: inc/admin.php:54
|
||||
#: inc/admin.php:194
|
||||
#: inc/admin.php:426
|
||||
#: tpl/admin/admin.php:2
|
||||
msgid "Price Matrix"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:109
|
||||
msgid ""
|
||||
"The theme "
|
||||
"<strong>woocommerce_before_single_product</"
|
||||
"strong> not found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:195
|
||||
msgid ""
|
||||
"Replace front-end "
|
||||
"dropdowns with a price "
|
||||
"matrix. This option "
|
||||
"limits \"Used for "
|
||||
"varations\" to 2."
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:289
|
||||
msgid ""
|
||||
"You must choose the "
|
||||
"direction of the table, "
|
||||
"is one horizontal or one "
|
||||
"vertical"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:297
|
||||
#: inc/admin.php:304
|
||||
msgid ""
|
||||
"You must choose the "
|
||||
"direction of the table, "
|
||||
"is two horizontal or two "
|
||||
"vertical"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:327
|
||||
msgid ""
|
||||
"Press the <strong>Input "
|
||||
"Price</strong> button to "
|
||||
"input price for this "
|
||||
"product before saving!"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:355
|
||||
#: inc/ajax.php:109
|
||||
msgid ""
|
||||
"Price Matrix: Input Price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:404
|
||||
msgid ""
|
||||
"<strong>Note:</strong> "
|
||||
"When you finish enter "
|
||||
"the price for this "
|
||||
"attribute, please press "
|
||||
"the Save Price Matrix "
|
||||
"button before choosing "
|
||||
"another attribute. "
|
||||
"Double click to input "
|
||||
"the price!</p><p>To "
|
||||
"input the sale price, "
|
||||
"please use the \"-\" "
|
||||
"characters between "
|
||||
"prices. Eg: original "
|
||||
"price is $5, sale price "
|
||||
"is $2, the convention is "
|
||||
"5-2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:409
|
||||
#: inc/ajax.php:283
|
||||
msgid ""
|
||||
"<strong>Note:</strong> "
|
||||
"Double click to input "
|
||||
"the price!</p><p>To "
|
||||
"input the sale price, "
|
||||
"please use the \"-\" "
|
||||
"characters between "
|
||||
"prices. Eg: original "
|
||||
"price is $5, sale price "
|
||||
"is $2, the convention is "
|
||||
"5-2"
|
||||
msgstr ""
|
||||
|
||||
#: inc/admin.php:413
|
||||
msgid ""
|
||||
"Sorry, this options not "
|
||||
"available for enter price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/frontend.php:50
|
||||
#: tpl/frontend/price-matrix-4.php:94
|
||||
#: tpl/frontend/price-matrix-horizontal-3.php:83
|
||||
#: tpl/frontend/price-matrix-vertical-3.php:73
|
||||
#: tpl/frontend/price-matrix.php:61
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: inc/frontend.php:243
|
||||
msgid "Choose an option"
|
||||
msgstr ""
|
||||
|
||||
#: inc/frontend.php:302
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Template for table %s "
|
||||
"exists"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.init.php:4
|
||||
#: inc/settings.php:25
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: inc/functions.init.php:5
|
||||
#: inc/settings.php:26
|
||||
msgid "Before Tab"
|
||||
msgstr ""
|
||||
|
||||
#: inc/metabox.php:204
|
||||
msgid "Upload/Add image"
|
||||
msgstr ""
|
||||
|
||||
#: inc/metabox.php:205
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:20
|
||||
msgid ""
|
||||
"Price matrix table "
|
||||
"position"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:31
|
||||
msgid ""
|
||||
"Hide Additional "
|
||||
"information"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:35
|
||||
msgid ""
|
||||
"Hide Additional "
|
||||
"information tab in "
|
||||
"Product Details"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:38
|
||||
msgid ""
|
||||
"Show calculator text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:42
|
||||
msgid ""
|
||||
"Show calculator text "
|
||||
"after Add to cart button"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:45
|
||||
msgid "Enable heading"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:49
|
||||
msgid ""
|
||||
"Turn on heading before "
|
||||
"Price Matrix table"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:52
|
||||
msgid "Heading title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:59
|
||||
msgid ""
|
||||
"Scroll when select price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:63
|
||||
msgid ""
|
||||
"Scroll the screen to the "
|
||||
"Price Matrix table when "
|
||||
"user choose attributes"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:66
|
||||
msgid ""
|
||||
"Display regular & sale "
|
||||
"price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:71
|
||||
msgid ""
|
||||
"Display the sale price "
|
||||
"in the Price Matrix table"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:77
|
||||
msgid ""
|
||||
"Background color of "
|
||||
"price matrix table"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:84
|
||||
msgid "Table Text color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:91
|
||||
msgid "Table Border color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:101
|
||||
msgid ""
|
||||
"Tooltips background color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:108
|
||||
msgid "Tooltips text color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:115
|
||||
msgid ""
|
||||
"Tooltips border color"
|
||||
msgstr ""
|
||||
|
||||
#: inc/settings.php:122
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:71
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:72
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:87
|
||||
msgid "Configure"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:88
|
||||
msgid "Docs"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:89
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: nbt-woocommerce-price-matrix-lite.php:101
|
||||
msgid ""
|
||||
"WooCommerce plugin is "
|
||||
"not activated. Please "
|
||||
"install and activate it "
|
||||
"to use for plugin "
|
||||
"<strong>NBT WooCommerce "
|
||||
"Price Matrix (Lite)</"
|
||||
"strong>."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/price-matrix-product.php:20
|
||||
#: tpl/admin/row-repeater.php:14
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/price-matrix-product.php:21
|
||||
#: tpl/admin/row-repeater.php:15
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/row-repeater-empty.php:2
|
||||
msgid ""
|
||||
"Before you can use Price "
|
||||
"Matrix, you need add "
|
||||
"minimum of two variation "
|
||||
"attributes on the "
|
||||
"<strong>Attributes</"
|
||||
"strong> tab."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/row-repeater-empty.php:3
|
||||
msgid "Learn more"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/row-repeater.php:6
|
||||
msgid ""
|
||||
"Currently, Price Matrix "
|
||||
"only support display "
|
||||
"maximum is 4 attributes "
|
||||
"to price matrix table"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/row-repeater.php:7
|
||||
msgid ""
|
||||
"By default, attribute at "
|
||||
"the bottom will not be "
|
||||
"displayed to the table, "
|
||||
"it will just show in "
|
||||
"selection mode. You can "
|
||||
"choose which attribute "
|
||||
"to be shown in the table "
|
||||
"by click Show/hide next "
|
||||
"to it"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/settings.php:17
|
||||
msgid "Settings Saved"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/admin/settings.php:35
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
@@ -1,211 +0,0 @@
|
||||
# Copyright (C) 2019 Neykane
|
||||
# This file is distributed under the same license as the Neykane Viral List Posts plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Neykane Viral List Posts 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/neykane-viral-list-posts\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-05-20T22:43:15-07:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: neykane-viral-list-posts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Neykane Viral List Posts"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.neykane.com/products/viral-list-posts"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds a new \"List Posts\" Custom Post Type to help you create memorable, well-organized, and highly-shareable list posts."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Neykane"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.neykane.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:36
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/settings.php:37
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:176
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Viral List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:177
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Viral List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:179
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:207
|
||||
msgid "Viral List Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:180
|
||||
msgid "Viral List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:181
|
||||
msgid "List Post Archives"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:182
|
||||
msgid "List Post Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:183
|
||||
msgid "Parent List Post:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:184
|
||||
msgid "All List Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:185
|
||||
msgid "Add New List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:186
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:187
|
||||
msgid "New List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:188
|
||||
msgid "Edit List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:189
|
||||
msgid "Update List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:190
|
||||
msgid "View List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:191
|
||||
msgid "View List Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:192
|
||||
msgid "Search List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:193
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:194
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:195
|
||||
msgid "Featured Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:196
|
||||
msgid "Set featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:197
|
||||
msgid "Remove featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:198
|
||||
msgid "Use as featured image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:199
|
||||
msgid "Insert into List Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:200
|
||||
msgid "Uploaded to this list Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:201
|
||||
msgid "List Post list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:202
|
||||
msgid "List Post list navigation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:203
|
||||
msgid "Filter List Post list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:209
|
||||
msgid "Viral List Posts are composed of items, each of which have associated media and text."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:241
|
||||
msgid "Intro"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:250
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:259
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:268
|
||||
msgid "Enable Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:277
|
||||
msgid "Embed Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:367
|
||||
msgid "Modern (vertical)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:368
|
||||
msgid "Modern (horizontal)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:396
|
||||
msgid "Enable sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:413
|
||||
msgid "Add a new item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:463
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:478
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:489
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:519
|
||||
msgid "Rewrite Slug"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-neykane-viral-list-posts-admin.php:591
|
||||
msgid "Appears on "
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,43 +0,0 @@
|
||||
{
|
||||
"name": "press-search",
|
||||
"title": "pressSearch",
|
||||
"description": "The best WordPress extension ever made!",
|
||||
"version": "0.0.2",
|
||||
"homepage": "#",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": ""
|
||||
},
|
||||
"author": {
|
||||
"name": "TruongSa",
|
||||
"email": "shrimp2t@gmail.com",
|
||||
"url": "#"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chai": "^3.5.0",
|
||||
"glob": "~5.0.15",
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-autoprefixer": "latest",
|
||||
"grunt-bumpup": "latest",
|
||||
"grunt-contrib-clean": "^0.6.0",
|
||||
"grunt-contrib-compress": "^1.4.3",
|
||||
"grunt-contrib-concat": "^0.5.1",
|
||||
"grunt-contrib-copy": "^0.8.0",
|
||||
"grunt-contrib-cssmin": "^3.0.0",
|
||||
"grunt-contrib-sass": "^1.0.0",
|
||||
"grunt-contrib-uglify": "^4.0.0",
|
||||
"grunt-contrib-watch": "^1.1.0",
|
||||
"grunt-eslint": "^18.1.0",
|
||||
"grunt-jscs": "^3.0.1",
|
||||
"grunt-mocha": "^1.2.0",
|
||||
"grunt-phpunit": "^0.3.6",
|
||||
"grunt-postcss": "^0.6.0",
|
||||
"grunt-rtlcss": "latest",
|
||||
"grunt-text-replace": "latest",
|
||||
"grunt-wp-i18n": "latest",
|
||||
"grunt-wp-readme-to-markdown": "^0.9.0",
|
||||
"load-grunt-config": "^1.0.2",
|
||||
"load-grunt-tasks": "^3.3.0"
|
||||
},
|
||||
"keywords": []
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,117 +0,0 @@
|
||||
# Copyright (C) 2019 pushe.co
|
||||
# This file is distributed under the same license as the Pushe Webpush plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pushe Webpush 0.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pushe-webpush\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-05-20T12:21:06+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: pushe-webpush\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/pages/AdminPages.php:35
|
||||
msgid "Pushe Webpush"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Official Pushe.co's webpush plugin for wordpress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "pushe.co"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://pushe.co"
|
||||
msgstr ""
|
||||
|
||||
#: templates/modalOptions.php:2
|
||||
msgid "Pushe Modal Options"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:2
|
||||
msgid "Pushe webpush settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:20
|
||||
msgid "app id"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:29
|
||||
msgid "public key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:38
|
||||
msgid "enable webpush"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:50
|
||||
msgid "show dialog"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:60
|
||||
msgid "title"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:69
|
||||
msgid "content"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:78
|
||||
msgid "accept text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:87
|
||||
msgid "reject text"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:96
|
||||
msgid "icon"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:105
|
||||
msgid "dialog position"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:118
|
||||
msgid "dialog position in mobile"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/SettingsFieldsBuilder.php:131
|
||||
msgid "dialog retry time"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/AdminPages.php:47
|
||||
#: inc/pages/AdminPages.php:90
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/pages/AdminPages.php:96
|
||||
msgid "Modal Options"
|
||||
msgstr ""
|
||||
|
||||
#: inc/api/callbacks/SettingsCallbacks.php:18
|
||||
msgid "* app id:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/api/callbacks/SettingsCallbacks.php:18
|
||||
msgid "You should get your app_id from"
|
||||
msgstr ""
|
||||
|
||||
#: inc/api/callbacks/SettingsCallbacks.php:18
|
||||
msgid "Pushe.co's console"
|
||||
msgstr ""
|
||||
|
||||
#: inc/api/callbacks/ModalOptionsCallback.php:20
|
||||
msgid "These options are, available parameters of Pushe's webpush subscribe modal and All fields are optional, and modal would show default value for them."
|
||||
msgstr ""
|
||||
|
||||
#: inc/api/callbacks/ModalOptionsCallback.php:21
|
||||
msgid "For more information you can check out the documentation at "
|
||||
msgstr ""
|
||||
@@ -136,10 +136,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/accessibility-help-button/public/js/aa-call-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- accessibility-toolbar -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/accessibility-toolbar/dist/public.js?ver=1.2.2"></script>
|
||||
|
||||
|
||||
<!-- accesspress-anonymous-post -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/accesspress-anonymous-post/js/frontend.js?ver=2.7.3"></script>
|
||||
<link rel="stylesheet" id="ap-front-styles-css" href="http://wp.lab/wp-content/plugins/accesspress-anonymous-post/css/frontend-style.css?ver=2.7.3" type="text/css" media="all">
|
||||
@@ -630,16 +626,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/altruly-simple-diy-fundraising-for-charities-and-nonprofits/public/js/altruly-simple-diy-fundraising-for-charities-and-nonprofits-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- amazing-linker -->
|
||||
<link rel="stylesheet" id="amazing-linker-css" href="http://wp.lab/wp-content/plugins/amazing-linker/public/css/amazing-linker-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/amazing-linker/public/js/amazing-linker-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- amazing-search -->
|
||||
<link rel="stylesheet" id="amazing-search-css" href="http://wp.lab/wp-content/plugins/amazing-search/public/css/amazing-search-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/amazing-search/public/js/amazing-search-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- amazon-associates-link-builder -->
|
||||
<link rel="stylesheet" id="aalb_basics_css-css" href="http://wp.lab/wp-content/plugins/amazon-associates-link-builder/css/aalb_basics.css?ver=1.4.13" type="text/css" media="all">
|
||||
|
||||
@@ -782,10 +768,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/apostle-social-wall/public/js/apostle-social-wall-masonry.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- apoyl-weixinshare -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/apoyl-weixinshare/public/js/jweixin-1.4.0.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- app-mockups-carousel -->
|
||||
<link rel="stylesheet" id="wpos-swiper-style-css" href="http://wp.lab/wp-content/plugins/app-mockups-carousel/assets/css/swiper.min.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wp-amc-public-css-css" href="http://wp.lab/wp-content/plugins/app-mockups-carousel/assets/css/wp-amc-public.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -975,7 +957,6 @@
|
||||
|
||||
<!-- 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">
|
||||
|
||||
|
||||
<!-- audioigniter -->
|
||||
@@ -1078,10 +1059,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/awesome-google-analytics/assets/js/autotrack.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- awesome-hooks -->
|
||||
<link rel="stylesheet" id="awesome-hooks-css" href="http://wp.lab/wp-content/plugins/awesome-hooks/assets/awesome-hooks.min.css?ver=0.0.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- awesome-instagram-feed -->
|
||||
<link rel="stylesheet" id="awesome-instagram-feed-css" href="http://wp.lab/wp-content/plugins/awesome-instagram-feed/public/css/awesome-instagram-feed-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/awesome-instagram-feed/public/js/awesome-instagram-feed-public.js?ver=1.0.0"></script>
|
||||
@@ -1823,10 +1800,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bp-user-to-do-list/assets/js/tempust.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- bp-verified-member -->
|
||||
<link rel="stylesheet" id="bp-verified-member-style-css" href="http://wp.lab/wp-content/plugins/bp-verified-member/assets/css/style.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- bpmcontext-client-suite -->
|
||||
<link rel="stylesheet" id="css_bpmcontext_missing_menu-css" href="http://wp.lab/wp-content/plugins/bpmcontext-client-suite/includes/bpm-sdk/css/bpmcontext_missing_menu.css?ver=3.1.12" type="text/css" media="screen">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/bpmcontext-client-suite/js/datamaps.world.min.js?ver=3.1.12"></script>
|
||||
@@ -2139,11 +2112,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-scroll-progress-bar/public/js/catch-scroll-progress-bar-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- catch-under-construction -->
|
||||
<link rel="stylesheet" id="catch-under-construction-css" href="http://wp.lab/wp-content/plugins/catch-under-construction/public/css/catch-under-construction-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-under-construction/public/js/catch-under-construction-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- category-post-slider -->
|
||||
<link rel="stylesheet" id="cps_css_style-css" href="http://wp.lab/wp-content/plugins/category-post-slider/css/cps-style.css?ver=1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/category-post-slider/js/jquery.cpsslider.js?ver=1.1"></script>
|
||||
@@ -2262,10 +2230,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cc-quebec-tax-calculator/cc-income-tax-qc.js?ver=0.2015.1"></script>
|
||||
|
||||
|
||||
<!-- cc-social-buttons -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cc-social-buttons/assets/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ccr-client-testimonials -->
|
||||
<link rel="stylesheet" id="ccr-ct-style-css" href="http://wp.lab/wp-content/plugins/ccr-client-testimonials/assets/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ccr-client-testimonials/assets/js/bootstrap.js?ver=1.0.0"></script>
|
||||
@@ -2321,11 +2285,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-notie/public/js/notie.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- cf7-reply-manager -->
|
||||
<link rel="stylesheet" id="cf7_rm_style-css" href="http://wp.lab/wp-content/plugins/cf7-reply-manager/admin/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-reply-manager/admin/js/cf7_rm.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cf7-shortcode-finder -->
|
||||
<link rel="stylesheet" id="contact-form-shortcode-finder-css" href="http://wp.lab/wp-content/plugins/cf7-shortcode-finder/public/css/contact-form-shortcode-finder-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-shortcode-finder/public/js/contact-form-shortcode-finder-public.js?ver=1.0.0"></script>
|
||||
@@ -2360,11 +2319,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/change-admin-login-logo/public/js/Change-Admin-Login-Logo-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- change-buddypress-user-display-name-and-slug -->
|
||||
<link rel="stylesheet" id="mf-change-bp-user-display-slug-css" href="http://wp.lab/wp-content/plugins/change-buddypress-user-display-name-and-slug/public/css/mf-change-bp-user-display-slug-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/change-buddypress-user-display-name-and-slug/public/js/mf-change-bp-user-display-slug-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- change-wc-price-title -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/change-wc-price-title/assets/js/cwpt-price-title.js?ver=1.1"></script>
|
||||
|
||||
@@ -2462,14 +2416,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/chroma-lightbox/public/js/chroma_lightbox-public.min.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- churchtithewp -->
|
||||
<link rel="stylesheet" id="church_tithe_wp_default_skin-css" href="http://wp.lab/wp-content/plugins/churchtithewp/includes/frontend/css/build/church-tithe-wp.css?ver=1.0.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="church_tithe_wp_flags-css" href="http://wp.lab/wp-content/plugins/churchtithewp/assets/images/flags/flags.min.css?ver=1.0.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/churchtithewp/assets/libraries/react/react.min.js?ver=1.0.0.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/churchtithewp/assets/libraries/react/react-dom.min.js?ver=1.0.0.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/churchtithewp/includes/frontend/js/build/church-tithe-wp-frontend.js?ver=1.0.0.1"></script>
|
||||
|
||||
|
||||
<!-- civic-job-posting -->
|
||||
<link rel="stylesheet" id="civic-job-posting-css" href="http://wp.lab/wp-content/plugins/civic-job-posting/public/css/civic-job-posting-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -2527,7 +2473,6 @@
|
||||
|
||||
<!-- clicksco-offerstack -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/clicksco-offerstack/public/js/app.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="offerstack-css" href="http://wp.lab/wp-content/plugins/clicksco-offerstack/public/css/index.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- clicksports-maps -->
|
||||
@@ -2829,8 +2774,6 @@
|
||||
<!-- contact-list -->
|
||||
<link rel="stylesheet" id="contact-list-css" href="http://wp.lab/wp-content/plugins/contact-list/public/css/contact-list-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/contact-list/public/js/contact-list-public.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="contact-list-css" href="http://wp.lab/wp-content/plugins/contact-list/public/contact-list-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/contact-list/public/contact-list-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- contact-us-page-contact-people -->
|
||||
@@ -2914,11 +2857,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cookie-optin-interface/public/js/coii-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cookiealert -->
|
||||
<link rel="stylesheet" id="cookiealert-css" href="http://wp.lab/wp-content/plugins/cookiealert/public/css/cookiealert-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cookiealert/public/js/cookiealert-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cookiebar -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cookiebar/cookiebar-latest.min.js?1&ver=1.5.24"></script>
|
||||
|
||||
@@ -3380,10 +3318,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-fancybox/fancybox/jquery.fancybox-1.3.8.min.js?ver=1.6.2"></script>
|
||||
|
||||
|
||||
<!-- easy-feedback -->
|
||||
<link rel="stylesheet" id="easy-feedback-css" href="http://wp.lab/wp-content/plugins/easy-feedback/assets/ef-style.css?ver=1.0.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- easy-gdpr-consent-mailchimp -->
|
||||
<link rel="stylesheet" id="egcf-style-css" href="http://wp.lab/wp-content/plugins/easy-gdpr-consent-mailchimp/css/main.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-gdpr-consent-mailchimp/js/main.js?ver=1.0.1"></script>
|
||||
@@ -3542,16 +3476,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easytimetable-responsive-schedule-management-system/public/js/dist/html2canvas.svg.min.js?ver=1.4.3"></script>
|
||||
|
||||
|
||||
<!-- echelon-so -->
|
||||
<link rel="stylesheet" id="echelonso-utilities-css" href="http://wp.lab/wp-content/plugins/echelon-so/inc/utilities.css?ver=1.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/animated-gradients/inc/granim.min.js?ver=1.1.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/animated-gradients/inc/animated-gradients.js?ver=1.1.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/animate/inc/animate.js?ver=1.1.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/tooltip/inc/tooltip.js?ver=1.1.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/sticky/inc/sticky.js?ver=1.1.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/echelon-so/features/waypoints/inc/waypoints.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- ecwid-widgets-avalanche -->
|
||||
<link rel="stylesheet" id="sjf_et_styles-css" href="http://wp.lab/wp-content/plugins/ecwid-widgets-avalanche/inc/css/styles.css?ver=1.6.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ecwid-widgets-avalanche/inc/js/scripts.js?ver=1.6.1"></script>
|
||||
@@ -3956,11 +3880,6 @@
|
||||
<link rel="stylesheet" id="explanatory_dictionary-plugin-styles-css" href="http://wp.lab/wp-content/plugins/explanatory-dictionary/public/classes/../assets/css/public.css?ver=4.1.5" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- export-woocommerce-customer-list -->
|
||||
<link rel="stylesheet" id="pisol-ewcl-css" href="http://wp.lab/wp-content/plugins/export-woocommerce-customer-list/public/css/pisol-ewcl-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/export-woocommerce-customer-list/public/js/pisol-ewcl-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- express-twitter-feed -->
|
||||
<link rel="stylesheet" id="extf-style-min-css" href="http://wp.lab/wp-content/plugins/express-twitter-feed/front/css/style.min.css?ver=0.2.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/express-twitter-feed/front/js/front.min.js?ver=0.2.1"></script>
|
||||
@@ -4321,11 +4240,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fobi-chatbot/public/js/embed.min.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- focus-on-reviews-for-woocommerce -->
|
||||
<link rel="stylesheet" id="forfwc-css" href="http://wp.lab/wp-content/plugins/focus-on-reviews-for-woocommerce/public/css/forfwc-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/focus-on-reviews-for-woocommerce/public/js/forfwc-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- font -->
|
||||
<link rel="stylesheet" id="fontsforwebstyle-css" href="http://wp.lab/wp-content/plugins/font/css/fontsforwebstyle.css?pver=7.5.1&ver=4.9.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/font/js/jquery.fontPlugin.js?pver=7.5.1&ver=4.9.1"></script>
|
||||
@@ -4466,11 +4380,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/formlift/js/lib/intl-tel-input-master/js/intlTelInput.min.js?ver=7.2.1"></script>
|
||||
|
||||
|
||||
<!-- forms-to-webmerge -->
|
||||
<link rel="stylesheet" id="forms-to-webmerge-css" href="http://wp.lab/wp-content/plugins/forms-to-webmerge/public/css/forms-to-webmerge-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/forms-to-webmerge/public/js/forms-to-webmerge-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- formularios-de-contacto-salesup -->
|
||||
<link rel="stylesheet" id="su_izitoast_css-css" href="http://wp.lab/wp-content/plugins/formularios-de-contacto-salesup/helpers/izitoast/css/iziToast.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="su_jquery_ui_css-css" href="http://wp.lab/wp-content/plugins/formularios-de-contacto-salesup/helpers/jquery-ui-1.12.1/jquery-ui.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -4485,10 +4394,6 @@
|
||||
<link rel="stylesheet" id="foxyshop_css-css" href="http://wp.lab/wp-content/plugins/foxyshop/css/foxyshop.css?ver=4.7.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- freelancer-sharing-icons -->
|
||||
<link rel="stylesheet" id="freelancer_share_icons-css" href="http://wp.lab/wp-content/plugins/freelancer-sharing-icons/public/css/freelancer_share_icons-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- front-end-pm -->
|
||||
<link rel="stylesheet" id="fep-style-css" href="http://wp.lab/wp-content/plugins/front-end-pm/assets/css/style.css?ver=7.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="fep-common-style-css" href="http://wp.lab/wp-content/plugins/front-end-pm/assets/css/common-style.css?ver=7.1" type="text/css" media="all">
|
||||
@@ -5281,17 +5186,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- hmh-footer-builder-for-elementor -->
|
||||
<link rel="stylesheet" id="bbfb-css" href="http://wp.lab/wp-content/plugins/hmh-footer-builder-for-elementor//assets/css/bbfb.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hmh-footer-builder-for-elementor//assets/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- hmh-fullpage -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hmh-fullpage//assets/js/fullpage.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hmh-fullpage//assets/js/script.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hmh-fullpage//assets/js/scrolloverflow.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- holler-box -->
|
||||
<link rel="stylesheet" id="holler-css-css" href="http://wp.lab/wp-content/plugins/holler-box/assets/css/holler-frontend.min.css?ver=1.3.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/holler-box/assets/js/holler-frontend.min.js?ver=1.3.1"></script>
|
||||
@@ -5422,11 +5316,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/icanwp-reservation-form-connector-for-choice-hotels/public/js/ch-reservation-public.js?ver=1.4.1"></script>
|
||||
|
||||
|
||||
<!-- ice-chat -->
|
||||
<link rel="stylesheet" id="cbf-css" href="http://wp.lab/wp-content/plugins/ice-chat/public/css/chat-box-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ice-chat/public/js/chat-box-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- icegram -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/icegram/assets/js/main.min.js?ver=1.10.14"></script>
|
||||
|
||||
@@ -5700,10 +5589,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/instant-annotation/public/js/iasemantify-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- instant-seo -->
|
||||
<script type="module" src="http://wp.lab/wp-content/plugins/instant-seo/js/instantpage-1.2.2.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- instant-weekly-roundup -->
|
||||
<link rel="stylesheet" id="iwru_css_file-css" href="http://wp.lab/wp-content/plugins/instant-weekly-roundup/css/instant_weekly_roundup.css?ver=1.0.0" type="text/css" media="">
|
||||
|
||||
@@ -6568,11 +6453,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/login-with-ajax/widget/login-with-ajax.js?ver=3.1.7"></script>
|
||||
|
||||
|
||||
<!-- logistia -->
|
||||
<link rel="stylesheet" id="logistia-css" href="http://wp.lab/wp-content/plugins/logistia/public/css/logistia-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/logistia/public/js/logistia-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- logo-carousel-free -->
|
||||
<link rel="stylesheet" id="slick-css" href="http://wp.lab/wp-content/plugins/logo-carousel-free/public/assets/css/slick.css?ver=3.1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-min-css" href="http://wp.lab/wp-content/plugins/logo-carousel-free/public/assets/css/font-awesome.min.css?ver=3.1.1" type="text/css" media="all">
|
||||
@@ -6806,10 +6686,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailermailer/js/public.js?ver=1.2.5"></script>
|
||||
|
||||
|
||||
<!-- mailgo -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailgo/dist/mailgo.min.js?ver=0.4.5"></script>
|
||||
|
||||
|
||||
<!-- mailoptin -->
|
||||
<link rel="stylesheet" id="mailoptin-css" href="http://wp.lab/wp-content/plugins/mailoptin/../mailoptin/vendor/mailoptin/core/src/assets/css/mailoptin.min.css?ver=1.2.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailoptin/../mailoptin/vendor/mailoptin/core/src/assets/js/mailoptin.min.js?ver=1.2.0.0"></script>
|
||||
@@ -6856,11 +6732,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mango-popup/assets/frontend/js/main.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- mantrabrain-instagram-pack -->
|
||||
<link rel="stylesheet" id="mb-instagram-pack-style-css" href="http://wp.lab/wp-content/plugins/mantrabrain-instagram-pack/assets/css/mb-instagram-pack.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mantrabrain-instagram-pack/assets/js/mb-instagram-pack.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- mapfit -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mapfit/public/js/mapfit-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -6942,12 +6813,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/master-accordion/assets/public/js/mran-accordion-public.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- master-popups-lite -->
|
||||
<link rel="stylesheet" id="master-popups-css" href="http://wp.lab/wp-content/plugins/master-popups-lite/assets/public/css/master-popups.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="mpp-font-awesome-css" href="http://wp.lab/wp-content/plugins/master-popups-lite/assets/public/css/font-awesome.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/master-popups-lite/assets/public/js/master-popups.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- master-slider -->
|
||||
<link rel="stylesheet" id="msl-main-css" href="http://wp.lab/wp-content/plugins/master-slider/public/assets/css/masterslider.main.css?ver=3.4.1" type="text/css" media="all">
|
||||
|
||||
@@ -7066,11 +6931,6 @@
|
||||
<link rel="stylesheet" id="mks-map-css-css" href="http://wp.lab/wp-content/plugins/meks-easy-maps/public/css/map.css?ver=1.1.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- meks-easy-social-share -->
|
||||
<link rel="stylesheet" id="meks_ess-main-css" href="http://wp.lab/wp-content/plugins/meks-easy-social-share/assets/css/main.css?ver=1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/meks-easy-social-share/assets/js/main.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- meks-flexible-shortcodes -->
|
||||
<link rel="stylesheet" id="mks_shortcodes_fntawsm_css-css" href="http://wp.lab/wp-content/plugins/meks-flexible-shortcodes/css/font-awesome/css/font-awesome.min.css?ver=1.3.1" type="text/css" media="screen">
|
||||
<link rel="stylesheet" id="mks_shortcodes_simple_line_icons-css" href="http://wp.lab/wp-content/plugins/meks-flexible-shortcodes/css/simple-line/simple-line-icons.css?ver=1.3.1" type="text/css" media="screen">
|
||||
@@ -7098,10 +6958,6 @@
|
||||
<link rel="stylesheet" id="melonpan-block-container-front-css" href="http://wp.lab/wp-content/plugins/melonpan-block-container/build/melonpan-block-container-front.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- melonpan-block-images -->
|
||||
<link rel="stylesheet" id="melonpan-block-images-front-css" href="http://wp.lab/wp-content/plugins/melonpan-block-images/build/melonpan-block-images-front.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- memberlite-elements -->
|
||||
<link rel="stylesheet" id="memberlite_elements_frontend-css" href="http://wp.lab/wp-content/plugins/memberlite-elements/css/memberlite-elements.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -7227,10 +7083,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mingrana-wp-to-blockchain/public/js/mingrana-wp-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- mino-flatsome-title-with-category -->
|
||||
<link rel="stylesheet" id="flatsome-title-category-css" href="http://wp.lab/wp-content/plugins/mino-flatsome-title-with-category/assets/css/mino-flatsome-title-with-category.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- mins-to-read -->
|
||||
<link rel="stylesheet" id="mtr-user-css-css" href="http://wp.lab/wp-content/plugins/mins-to-read/public/css/mtr-user.css?ver=1.2.1" type="text/css" media="all">
|
||||
|
||||
@@ -7525,17 +7377,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mwp-side-menu/public/js/side-menu.js?ver=3.1.1"></script>
|
||||
|
||||
|
||||
<!-- mx-pagebuilder-html -->
|
||||
<link rel="stylesheet" id="mxmph_style-css" href="http://wp.lab/wp-content/plugins/mx-pagebuilder-html/includes/frontend/assets/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mx-pagebuilder-html/includes/frontend/assets/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- mx-time-zone-clocks -->
|
||||
<link rel="stylesheet" id="mxmtzc_style-css" href="http://wp.lab/wp-content/plugins/mx-time-zone-clocks/includes/frontend/assets/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mx-time-zone-clocks/includes/frontend/assets/js/script.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mx-time-zone-clocks/includes/frontend/assets/js/jquery.canvasClock.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- mxr-easy-embed-wall -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mxr-easy-embed-wall/public/js/mixer-wall-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -7552,16 +7393,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/my-chatbot/assets/js/frontend.js?ver=0.5"></script>
|
||||
|
||||
|
||||
<!-- my-restaurant-reviews -->
|
||||
<link rel="stylesheet" id="my_restaurant_reviews-css" href="http://wp.lab/wp-content/plugins/my-restaurant-reviews/public/css/mrr-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/my-restaurant-reviews/public/js/mrr-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- myanmar-unipress -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myanmar-unipress/_inc/js/rabbit.js?ver=1.1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/myanmar-unipress/_inc/js/bunny.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- mybookprogress -->
|
||||
<link rel="stylesheet" id="mbp-frontend-style-css" href="http://wp.lab/wp-content/plugins/mybookprogress/css/frontend.css?ver=1.0.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mybookprogress/js/frontend.js?ver=1.0.4"></script>
|
||||
@@ -7576,11 +7407,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mygallery/public/js/1.bundle.js?ver=1.1.2"></script>
|
||||
|
||||
|
||||
<!-- mygdex-for-woocommerce -->
|
||||
<link rel="stylesheet" id="gdex-css" href="http://wp.lab/wp-content/plugins/mygdex-for-woocommerce/public/css/gdex-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mygdex-for-woocommerce/public/js/gdex-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- myspeakingpage -->
|
||||
<link rel="stylesheet" id="msp-frontend-style-css" href="http://wp.lab/wp-content/plugins/myspeakingpage/css/frontend.css?ver=1.0.3" type="text/css" media="all">
|
||||
|
||||
@@ -7770,11 +7596,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nimble-portfolio/includes/prettyphoto/nimble-prettyPhoto.js?ver=3.0.1"></script>
|
||||
|
||||
|
||||
<!-- nines-music -->
|
||||
<link rel="stylesheet" id="nines_music_css-css" href="http://wp.lab/wp-content/plugins/nines-music/dist/APlayer.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nines-music/dist/APlayer.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- nitek-carousel-cool-transitions -->
|
||||
<link rel="stylesheet" id="nitek-carousel-css" href="http://wp.lab/wp-content/plugins/nitek-carousel-cool-transitions/public/css/nitek-carousel-public.css?ver=1.1.0" type="text/css" media="all">
|
||||
<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>
|
||||
@@ -8001,13 +7822,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ontario-hst-calculator/cc-ontario-hst-calculator.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- open-booking-calendar -->
|
||||
<link rel="stylesheet" id="open-booking-calendar-css" href="http://wp.lab/wp-content/plugins/open-booking-calendar/public/css/open-booking-calendar-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="flatpickr-css" href="http://wp.lab/wp-content/plugins/open-booking-calendar/includes/css/flatpickr.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/open-booking-calendar/public/js/open-booking-calendar-public.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/open-booking-calendar/includes/js/flatpickr.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- open-external-links-in-new-window -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/open-external-links-in-new-window/oelinw.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -8115,16 +7929,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/outboundlinks/js/outbound.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- outdr-booking-widget -->
|
||||
<link rel="stylesheet" id="outdr-main-css-css" href="http://wp.lab/wp-content/plugins/outdr-booking-widget/main.css?ver=0.0.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/outdr-booking-widget/main.js?ver=0.0.6"></script>
|
||||
|
||||
|
||||
<!-- ovic-addon-toolkit -->
|
||||
<link rel="stylesheet" id="ovic-core-css" href="http://wp.lab/wp-content/plugins/ovic-addon-toolkit/assets/css/ovic-core.min.css?ver=1.2.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ovic-addon-toolkit/assets/js/ovic-core.min.js?ver=1.2.4"></script>
|
||||
|
||||
|
||||
<!-- oxygen-visual-site-builder -->
|
||||
<link rel="stylesheet" id="oxygen-css" href="http://wp.lab/wp-content/plugins/oxygen-visual-site-builder/component-framework/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -8158,7 +7962,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/parallax.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/rellax.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/frontend.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/liquid.js?ver=1.27.84"></script>
|
||||
|
||||
|
||||
<!-- page-builder-sandwich -->
|
||||
@@ -8446,11 +8249,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pixproof/js/public.js?ver=1.2.4"></script>
|
||||
|
||||
|
||||
<!-- pj-contact-form -->
|
||||
<link rel="stylesheet" id="pj-cf-style-css" href="http://wp.lab/wp-content/plugins/pj-contact-form/assets/front-end/css/style.css?ver=0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pj-contact-form/assets/front-end/js/main.js?ver=0.1"></script>
|
||||
|
||||
|
||||
<!-- pj-jquery-ui-helper -->
|
||||
<link rel="stylesheet" id="jquery-ui-style-css" href="http://wp.lab/wp-content/plugins/pj-jquery-ui-helper/css/themes//minified/jquery-ui.min.css?ver=1.0.8" type="text/css" media="all">
|
||||
|
||||
@@ -8808,7 +8606,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/powerkit/modules/scroll-to-top/public/js/public-powerkit-scroll-to-top.js?ver=1.2.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/powerkit/modules/slider-gallery/public/js/flickity.pkgd.min.js?ver=1.2.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/powerkit/modules/slider-gallery/public/js/public-powerkit-slider-gallery.js?ver=1.2.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/powerkit/modules/share-buttons/public/js/public-powerkit-share-buttons.js?ver=1.2.4"></script>
|
||||
|
||||
|
||||
<!-- powerpack-lite -->
|
||||
@@ -8819,11 +8616,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ppm-accordion/js/ppm-accordion-active.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- pppt -->
|
||||
<link rel="stylesheet" id="pppt-css" href="http://wp.lab/wp-content/plugins/pppt/public/css/pppt-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pppt/public/js/pppt-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- pramadillo-activecampaign-email-preference-center -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pramadillo-activecampaign-email-preference-center/public/js/public.js?ver=1.0.5"></script>
|
||||
|
||||
@@ -8862,26 +8654,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-release-newsroom/inc/frontend/js/prwirepro-press_release_newsroom-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- press-release-services -->
|
||||
<link rel="stylesheet" id="prwirepro-press_release_services-css" href="http://wp.lab/wp-content/plugins/press-release-services/inc/frontend/css/prwirepro-press_release_services-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-release-services/inc/frontend/js/prwirepro-press_release_services-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- press-release-template -->
|
||||
<link rel="stylesheet" id="prwirepro-press_release_template-css" href="http://wp.lab/wp-content/plugins/press-release-template/inc/frontend/css/prwirepro-press_release_template-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-release-template/inc/frontend/js/prwirepro-press_release_template-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- press-release-writer -->
|
||||
<link rel="stylesheet" id="prwirepro-press_release_writer-css" href="http://wp.lab/wp-content/plugins/press-release-writer/inc/frontend/css/prwirepro-press_release_writer-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-release-writer/inc/frontend/js/prwirepro-press_release_writer-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- press-search -->
|
||||
<link rel="stylesheet" id="press-search-css" href="http://wp.lab/wp-content/plugins/press-search/assets/css/frontend.css?ver=0.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-search/assets/js/frontend.js?ver=0.0.2"></script>
|
||||
|
||||
|
||||
<!-- pretty-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/charming.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/TweenMax.min.js?ver=1.0.0"></script>
|
||||
@@ -8953,11 +8730,6 @@
|
||||
<link rel="stylesheet" id="dwspecs-front-css-css" href="http://wp.lab/wp-content/plugins/product-specifications/assets/css/front-styles.css?ver=0.3.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- productdyno -->
|
||||
<link rel="stylesheet" id="productdyno-css" href="http://wp.lab/wp-content/plugins/productdyno/public/css/productdyno-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/productdyno/public/js/productdyno-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- professional-contact-form -->
|
||||
<link rel="stylesheet" id="pcf-front-inputs-css" href="http://wp.lab/wp-content/plugins/professional-contact-form/assets/stylesheets/pcf-front-inputs.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="pcf-front-layout-css" href="http://wp.lab/wp-content/plugins/professional-contact-form/assets/stylesheets/pcf-front-layout.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -9267,11 +9039,6 @@
|
||||
<link rel="stylesheet" id="srizon-mortgage-site-css" href="http://wp.lab/wp-content/plugins/reactive-mortgage-calculator/site/resources/app.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- read-me-later -->
|
||||
<link rel="stylesheet" id="read-me-later-css" href="http://wp.lab/wp-content/plugins/read-me-later/public/css/read-me-later-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/read-me-later/public/js/read-me-later-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- read-more-buddy -->
|
||||
<link rel="stylesheet" id="read_mb-css" href="http://wp.lab/wp-content/plugins/read-more-buddy/public/css/read_mb-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/read-more-buddy/public/js/read_mb-public.js?ver=1.0.0"></script>
|
||||
@@ -9411,11 +9178,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/related-posts-with-slider/public/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- related-products-sku -->
|
||||
<link rel="stylesheet" id="wcrp-css" href="http://wp.lab/wp-content/plugins/related-products-sku/public/css/wcrp-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/related-products-sku/public/js/wcrp-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- related-products-slider-for-woocommerce -->
|
||||
<link rel="stylesheet" id="rp_main_style-css" href="http://wp.lab/wp-content/plugins/related-products-slider-for-woocommerce//assets/css/main.css?ver=1.0" type="text/css" media="">
|
||||
|
||||
@@ -9753,10 +9515,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rs-user-access/public/assets/js/public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- rsg-compiled-libraries -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rsg-compiled-libraries/my-lib/rsg/rsg.min.js?ver=0.0.1"></script>
|
||||
|
||||
|
||||
<!-- rsrpp -->
|
||||
<link rel="stylesheet" id="rsrpp-css" href="http://wp.lab/wp-content/plugins/rsrpp/public/css/rsrpp-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rsrpp/public/js/rsrpp-public.js?ver=1.0.0"></script>
|
||||
@@ -9975,12 +9733,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/searchwp-live-ajax-search/assets/javascript/build/searchwp-live-search.min.js?ver=1.2.0"></script>
|
||||
|
||||
|
||||
<!-- seatgeek-affiliate-tickets -->
|
||||
<link rel="stylesheet" id="seatgeek-affiliate-ticketsbootstrap-css" href="http://wp.lab/wp-content/plugins/seatgeek-affiliate-tickets/public/css/wisersteps-bootstrap.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="seatgeek-affiliate-tickets-css" href="http://wp.lab/wp-content/plugins/seatgeek-affiliate-tickets/public/css/seatgeek-affiliate-tickets-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seatgeek-affiliate-tickets/public/js/seatgeek-affiliate-tickets-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- section-block -->
|
||||
<link rel="stylesheet" id="wdp/section-block-css" href="http://wp.lab/wp-content/plugins/section-block/build/block.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/section-block/build/background-position-events.min.js?ver=1.0.0"></script>
|
||||
@@ -10057,10 +9809,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/send24/assets/js/frontend-main.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- sendapi-net -->
|
||||
<link rel="stylesheet" id="sendapi-css" href="http://wp.lab/wp-content/plugins/sendapi-net/public/css/sendapi-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- sensei-lms -->
|
||||
<link rel="stylesheet" id="module-frontend-css" href="http://wp.lab/wp-content/plugins/sensei-lms/assets/css/modules-frontend.css?ver=2.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="sensei-frontend-css" href="http://wp.lab/wp-content/plugins/sensei-lms/assets/css/frontend/sensei.css?ver=2.0.1" type="text/css" media="screen">
|
||||
@@ -10106,11 +9854,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seotudy/public/js/seotudy-public.js?ver=1.4.0"></script>
|
||||
|
||||
|
||||
<!-- serious-toxic-comments -->
|
||||
<link rel="stylesheet" id="serious-toxic-comments-css" href="http://wp.lab/wp-content/plugins/serious-toxic-comments/public/css/serious-toxic-comments-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/serious-toxic-comments/public/js/serious-toxic-comments-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- seriously-simple-podcasting -->
|
||||
<link rel="stylesheet" id="ssp-player-styles-css" href="http://wp.lab/wp-content/plugins/seriously-simple-podcasting/assets/css/icon_fonts.css?ver=1.19.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ssp-player-gizmo-css" href="http://wp.lab/wp-content/plugins/seriously-simple-podcasting/assets/fonts/Gizmo/gizmo.css?ver=1.19.3" type="text/css" media="all">
|
||||
@@ -10574,10 +10317,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simply-snow/assets/js/simply-snow.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- single-post-meta-description -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/single-post-meta-description/admin/js/single-post-meta-description-ajax-script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sinm-scroll-to-top -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sinm-scroll-to-top/js/jquery.scrollUp.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sinm-scroll-to-top/js/active.js?ver=1.0"></script>
|
||||
@@ -10904,10 +10643,6 @@
|
||||
<link rel="stylesheet" id="foundrysl-css-css" href="http://wp.lab/wp-content/plugins/social-networks-links-by-performance-foundry/assets/css/foundrysl.css?ver=0.1.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- social-parts -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-parts/public/js/social-parts-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- social-polls-by-opinionstage -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-polls-by-opinionstage/public/js/shortcodes.js?ver=19.2.4"></script>
|
||||
|
||||
@@ -10916,15 +10651,6 @@
|
||||
<link rel="stylesheet" id="social-proof-slider-css" href="http://wp.lab/wp-content/plugins/social-proof-testimonials-slider/public/css/social-proof-slider-public.css?ver=2.0.6" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- social-rocket -->
|
||||
<link rel="stylesheet" id="social_rocket-css" href="http://wp.lab/wp-content/plugins/social-rocket/css/style.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="fontawesome_core-css" href="http://wp.lab/wp-content/plugins/social-rocket/css/fontawesome.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="fontawesome_brands-css" href="http://wp.lab/wp-content/plugins/social-rocket/css/fa-brands.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="fontawesome_regular-css" href="http://wp.lab/wp-content/plugins/social-rocket/css/fa-regular.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="fontawesome_solid-css" href="http://wp.lab/wp-content/plugins/social-rocket/css/fa-solid.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-rocket/js/script.js?ver=1.0.1"></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>
|
||||
@@ -10940,10 +10666,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/social-wiggle/js/socialwiggle.js?ver=0.8.2"></script>
|
||||
|
||||
|
||||
<!-- socialized -->
|
||||
<link rel="stylesheet" id="socialized-css" href="http://wp.lab/wp-content/plugins/socialized/assets/styles/socialized.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- socialsnap -->
|
||||
<link rel="stylesheet" id="socialsnap-styles-css" href="http://wp.lab/wp-content/plugins/socialsnap/assets/css/socialsnap.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/socialsnap/assets/js/socialsnap.js?ver=1.0.0"></script>
|
||||
@@ -11015,11 +10737,6 @@
|
||||
<link rel="stylesheet" id="custom_sl_admin_style-css" href="http://wp.lab/wp-content/plugins/sparky-logos/admin/sl-admin-style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- sparrow -->
|
||||
<link rel="stylesheet" id="getsparrow-css" href="http://wp.lab/wp-content/plugins/sparrow/public/css/getsparrow-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sparrow/public/js/getsparrow-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- speed-up-lazy-load -->
|
||||
<script type="text/javascript" async="async" src="http://wp.lab/wp-content/plugins/speed-up-lazy-load/js/lazy-load.min.js?ver=1.0.16"></script>
|
||||
|
||||
@@ -11186,11 +10903,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stencil/public/js/stencil-public.js?ver=1.2.2"></script>
|
||||
|
||||
|
||||
<!-- stibee-email-subscription-form -->
|
||||
<link rel="stylesheet" id="wp-stibee-css" href="http://wp.lab/wp-content/plugins/stibee-email-subscription-form/public/css/wp-stibee-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stibee-email-subscription-form/public/js/wp-stibee-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sticky-add-to-cart-for-woo -->
|
||||
<link rel="stylesheet" id="satcwoo-css" href="http://wp.lab/wp-content/plugins/sticky-add-to-cart-for-woo/public/css/satcwoo-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-add-to-cart-for-woo/public/js/satcwoo-public.js?ver=1.0.0"></script>
|
||||
@@ -11361,11 +11073,6 @@
|
||||
<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>
|
||||
|
||||
|
||||
<!-- swap-google-font-display -->
|
||||
<link rel="stylesheet" id="google-font-display-swapper-css" href="http://wp.lab/wp-content/plugins/swap-google-font-display/public/css/google-font-display-swapper-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/swap-google-font-display/public/js/google-font-display-swapper-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- swfput -->
|
||||
<link rel="stylesheet" id="evhh5v_css-css" href="http://wp.lab/wp-content/plugins/swfput/evhh5v/evhh5v.css?ver=3.0.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/swfput/evhh5v/front.min.js?ver=3.0.8"></script>
|
||||
@@ -11403,10 +11110,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/syntax-highlighter-mt/brushTypes.js?ver=2.2.5"></script>
|
||||
|
||||
|
||||
<!-- table-addons-for-elementor -->
|
||||
<link rel="stylesheet" id="table-addons-for-elementor-css" href="http://wp.lab/wp-content/plugins/table-addons-for-elementor/public/css/table-addons-for-elementor-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- table-builder-for-csv -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/table-builder-for-csv/js/script.js?ver=1.0"></script>
|
||||
|
||||
@@ -11617,10 +11320,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tfa-update-attached-file/public/js/TFA_update_attached_file-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- th23-subscribe -->
|
||||
<link rel="stylesheet" id="th23-subscribe-css-css" href="http://wp.lab/wp-content/plugins/th23-subscribe/th23-subscribe.css?ver=3.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- th23-user-management -->
|
||||
<link rel="stylesheet" id="th23-user-management-css-css" href="http://wp.lab/wp-content/plugins/th23-user-management/th23-user-management.css?ver=2.3.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/th23-user-management/th23-user-management.js?ver=2.3.0"></script>
|
||||
@@ -11678,7 +11377,6 @@
|
||||
|
||||
<!-- themify-builder -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themify-builder/themify/js/main.min.js?ver=4.1.3"></script>
|
||||
<link rel="preload" href="http://wp.lab/wp-content/plugins/themify-builder/css/themify-builder-style.min.css?ver=4.1.3" as="style">
|
||||
|
||||
|
||||
<!-- themify-builder-lite -->
|
||||
@@ -11732,10 +11430,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ticketmaster/public/js/ticketmaster-nomodal.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- tidings -->
|
||||
<link rel="stylesheet" id="tidings-css-css" href="http://wp.lab/wp-content/plugins/tidings/css/tidings.css?ver=1.0.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- time-clock -->
|
||||
<link rel="stylesheet" id="etimeclockwp-public-css-css" href="http://wp.lab/wp-content/plugins/time-clock/assets/css/etimeclockwp-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/time-clock/assets/js/etimeclockwp-date_time.js?ver=1.0.1"></script>
|
||||
@@ -11763,11 +11457,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tiny-bar/front/js/hmtb_script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- tiny-desk-pixel -->
|
||||
<link rel="stylesheet" id="tiny-desk-pixel-css" href="http://wp.lab/wp-content/plugins/tiny-desk-pixel/public/css/tiny-desk-pixel-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tiny-desk-pixel/public/js/tiny-desk-pixel-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- tiny-youtube-post-widget -->
|
||||
<link rel="stylesheet" id="tiny-youtube-post-widget-css" href="http://wp.lab/wp-content/plugins/tiny-youtube-post-widget/public/css/tiny-youtube-post-widget-public.css?ver=3.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tiny-youtube-post-widget/public/js/tiny-youtube-post-widget-public.js?ver=3.0.1"></script>
|
||||
@@ -12224,11 +11913,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-post-list/public/js/ultimate-post-list-public.js?ver=4.0.3"></script>
|
||||
|
||||
|
||||
<!-- ultimate-post-review -->
|
||||
<link rel="stylesheet" id="ultimate-post-review-css" href="http://wp.lab/wp-content/plugins/ultimate-post-review/public/css/ultimate-post-review-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-post-review/public/js/ultimate-post-review-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ultimate-post-thumbnails -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-post-thumbnails/js/front.js?ver=2.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-post-thumbnails/inc/prettyphoto/js/front.prettyphoto.js?ver=2.1"></script>
|
||||
@@ -12259,26 +11943,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-sms-notifications/public/js/woo-usn-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ultimate-viral-quiz -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/vender/angularjs/angular.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/vender/angularjs/ui-switch/angular-ui-switch.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/vender/angular-animate/angular-animate.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/vender/angularjs/angular-file-upload-shim.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/vender/angularjs/angular-file-upload.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/vender/bootstrap.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/vender/fuelux.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/app.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/listController.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/personalityController.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/pollController.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/rankController.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/triviaController.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/vender/sticky.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/vender/jquery-validation/jquery.validate.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/libs/vender/jquery-validation/additional-methods.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-viral-quiz//assets/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- ultimate-widgets-light -->
|
||||
<link rel="stylesheet" id="uwl-style-css" href="http://wp.lab/wp-content/plugins/ultimate-widgets-light/assets/css/style.min.css?ver=1.5.9.4" type="text/css" media="all">
|
||||
|
||||
@@ -12358,7 +12022,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/universam-demo/assets/js/rating.js?ver=4.50.02"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/universam-demo/assets/js/feedback.js?ver=4.50.02"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/universam-demo/assets/js/webform.js?ver=4.50.02"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/universam-demo/assets/js/universam.js?ver=4.50.02"></script>
|
||||
|
||||
|
||||
<!-- unveil-lazy-load -->
|
||||
@@ -12440,30 +12103,10 @@
|
||||
<link rel="stylesheet" id="userdocs-css" href="http://wp.lab/wp-content/plugins/userdocs/public/css/userdocs-public.css?ver=0.9.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- userisle -->
|
||||
<link rel="stylesheet" id="userisle-layout-css" href="http://wp.lab/wp-content/plugins/userisle/assets/css/userisle-layout.css?ver=1.0.05" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="userisle-style-css" href="http://wp.lab/wp-content/plugins/userisle/assets/css/userisle-style.css?ver=1.0.05" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="userisle-general-css" href="http://wp.lab/wp-content/plugins/userisle/assets/css/userisle.css?ver=1.0.05" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="userisle-media-css" href="http://wp.lab/wp-content/plugins/userisle/assets/css/userisle-media.css?ver=1.0.05" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/userisle/assets/js/jquery-tiptip/jquery-tiptip.js?ver=1.0.05"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/userisle/assets/js/jquery-toggles/jquery-toggles.js?ver=1.0.05"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/userisle/assets/js/jquery-modal/jquery-modal.js?ver=1.0.05"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/userisle/assets/js/jquery-selectize/jquery-selectize.js?ver=1.0.05"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/userisle/assets/js/jquery-raty/jquery-raty.js?ver=1.0.05"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/userisle/assets/js/jquery-wui/jquery-wui.js?ver=1.0.05"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/userisle/assets/js/frontend/userisle.js?ver=1.0.05"></script>
|
||||
|
||||
|
||||
<!-- users-activity -->
|
||||
<link rel="stylesheet" id="users-activity-css" href="http://wp.lab/wp-content/plugins/users-activity/asset/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- users-list-table -->
|
||||
<link rel="stylesheet" id="font-awesome-public-css" href="http://wp.lab/wp-content/plugins/users-list-table/public/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="users-list-css" href="http://wp.lab/wp-content/plugins/users-list-table/public/css/users-list-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/users-list-table/public/js/users-list-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- utm-tracker -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/utm-tracker/js/utmtracker.min.js?ver=1.0.2" async="async"></script>
|
||||
|
||||
@@ -12520,11 +12163,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vector-slider/assets/js/vs-slider.js?ver=1.0.6"></script>
|
||||
|
||||
|
||||
<!-- vejret-widget -->
|
||||
<link rel="stylesheet" id="vejret-css" href="http://wp.lab/wp-content/plugins/vejret-widget/public/css/vejret-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vejret-widget/public/js/vejret-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- velocity -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/velocity/core/js/velocity.min.js?ver=1.1.1"></script>
|
||||
|
||||
@@ -12546,13 +12184,6 @@
|
||||
<link rel="stylesheet" id="cc-vrp-style-css" href="http://wp.lab/wp-content/plugins/vertical-related-posts/css/vertical-related-posts.css?ver=1.2.6" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- vertycal -->
|
||||
<link rel="stylesheet" id="vertycal-plugin-style-css" href="http://wp.lab/wp-content/plugins/vertycal//prop/css/vertycal-plugin-style.css?ver=1.0.1" type="text/css" media="">
|
||||
<link rel="stylesheet" id="vertycal-jquery-ui-css" href="http://wp.lab/wp-content/plugins/vertycal/prop/css/jquery-ui.css?ver=1.0.1" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vertycal/prop/js/vertycal-public.js?ver=1.0.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vertycal/prop/js/vertycal-vtabs.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- very-simple-slider -->
|
||||
<link rel="stylesheet" id="very-simple-slider-style-css" href="http://wp.lab/wp-content/plugins/very-simple-slider/css/very-simple-slider.css?ver=1.0" type="text/css" media="screen">
|
||||
|
||||
@@ -12623,11 +12254,6 @@
|
||||
<link rel="stylesheet" id="vloops-buttons-style-css" href="http://wp.lab/wp-content/plugins/viral-loops-wp-integration/assets/css/button-styles.css?ver=2.0.7" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- virtual-jquery-keyboard -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/virtual-jquery-keyboard/js/jquery.ml-keyboard.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/virtual-jquery-keyboard/js/jquery-keyboard.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- virtual-marketplace-store -->
|
||||
<link rel="stylesheet" id="lightbox-css" href="http://wp.lab/wp-content/plugins/virtual-marketplace-store/public/css/lightbox.min.css?ver=1.2.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="vmstore-css" href="http://wp.lab/wp-content/plugins/virtual-marketplace-store/public/css/vmstore-public.css?ver=1.2.0" type="text/css" media="all">
|
||||
@@ -13216,10 +12842,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-checkout-quick-scroll/public/js/woocommerce-checkout-quick-scroll-public.js?ver=1.0.5"></script>
|
||||
|
||||
|
||||
<!-- woo-chrome-one-tap-login -->
|
||||
<link rel="stylesheet" id="chrome-one-tap-login-for-woocommerce-store-css" href="http://wp.lab/wp-content/plugins/woo-chrome-one-tap-login/public/css/chrome-one-tap-login-for-woocommerce-store-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- woo-correios-calculo-de-frete-na-pagina-do-produto -->
|
||||
<link rel="stylesheet" id="woocommerce-correios-calculo-de-frete-na-pagina-do-produto-css" href="http://wp.lab/wp-content/plugins/woo-correios-calculo-de-frete-na-pagina-do-produto/public/css/woocommerce-correios-calculo-de-frete-na-pagina-do-produto-public.css?ver=1.3.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-correios-calculo-de-frete-na-pagina-do-produto/public/js/woocommerce-correios-calculo-de-frete-na-pagina-do-produto-public.js?ver=1.3.5"></script>
|
||||
@@ -13341,11 +12963,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-seo-content-randomizer-addon/public/js/isswscr-public.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- woo-shipping-dpd-baltic -->
|
||||
<link rel="stylesheet" id="woo-shipping-dpd-baltic-css" href="http://wp.lab/wp-content/plugins/woo-shipping-dpd-baltic/public/css/dpd-public.css?ver=1.0.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-shipping-dpd-baltic/public/js/dpd-public-dist.js?ver=1.0.5"></script>
|
||||
|
||||
|
||||
<!-- woo-shop-customizer -->
|
||||
<link rel="stylesheet" id="woocommerce-shop-customizer-css" href="http://wp.lab/wp-content/plugins/woo-shop-customizer/public/css/woocommerce-shop-customizer-public.css?ver=1.0.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-shop-customizer/public/js/woocommerce-shop-customizer-public.js?ver=1.0.8"></script>
|
||||
@@ -13622,15 +13239,8 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-and-divi-icons/js/icons.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- wp-applicantstack-jobs-display -->
|
||||
<link rel="stylesheet" id="applicantstack-jobs-css" href="http://wp.lab/wp-content/plugins/wp-applicantstack-jobs-display/css/asj.css?ver=1.1.1" type="text/css" media="screen">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-applicantstack-jobs-display/js/isotope.pkgd.min.js?ver=1.1.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-applicantstack-jobs-display/js/asj.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- wp-applink -->
|
||||
<link rel="stylesheet" id="wpal-css" href="http://wp.lab/wp-content/plugins/wp-applink/assets/css/wp-applink.css?ver=0.2.5" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpal-css" href="http://wp.lab/wp-content/plugins/wp-applink/assets/css/style.css?ver=0.2.5" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-appointments -->
|
||||
@@ -13880,11 +13490,6 @@
|
||||
<link rel="stylesheet" id="wpcdps-public-style-css" href="http://wp.lab/wp-content/plugins/wp-current-date-post-slider/assets/css/recent-post-style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-custom-author-url -->
|
||||
<link rel="stylesheet" id="wp-custom-author-url-css" href="http://wp.lab/wp-content/plugins/wp-custom-author-url/public/css/wp-custom-author-url-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-custom-author-url/public/js/wp-custom-author-url-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-custom-register-login -->
|
||||
<link rel="stylesheet" id="wp-custom-register-login-css" href="http://wp.lab/wp-content/plugins/wp-custom-register-login/public/css/wp-custom-register-login-public.css?ver=2.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wp-custom-register-login-bootstrap-css" href="http://wp.lab/wp-content/plugins/wp-custom-register-login/public/css/bootstrap.min.css?ver=2.0.0" type="text/css" media="all">
|
||||
@@ -14150,11 +13755,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-front-end-login-and-register/public/js/validator/bootstrap-validator.min.js?ver=2.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-frontend-delete-account -->
|
||||
<link rel="stylesheet" id="wpfda-frontend-css-css" href="http://wp.lab/wp-content/plugins/wp-frontend-delete-account/assets/css/wpfda-frontend.css?ver=1.0.1" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-frontend-delete-account/assets/js/frontend.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- wp-frontend-submit -->
|
||||
<link rel="stylesheet" id="wp-frontend-submit-css" href="http://wp.lab/wp-content/plugins/wp-frontend-submit/public/css/wp-frontend-submit-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-frontend-submit/public/js/wp-frontend-submit-public.js?ver=1.0.0"></script>
|
||||
@@ -14287,7 +13887,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-inventory-manager/js/wpinventory.js?ver=1.5.7"></script>
|
||||
<link rel="stylesheet" id="wpinventory-theme-css" href="http://wp.lab/wp-content/plugins/wp-inventory-manager//themes/css/default-theme.css?ver=1.5.7" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-inventory-manager//js/wpinventory.js?ver=1.5.7"></script>
|
||||
<link rel="stylesheet" id="wpinventory-theme-css" href="http://wp.lab/wp-content/plugins/wp-inventory-manager/themes/css/default-theme.css?ver=1.5.7" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-invoice -->
|
||||
@@ -14659,19 +14258,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-post-comment-rating/js/custom.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-post-grid-slider-filter-by-xgenious -->
|
||||
<link rel="stylesheet" id="animate-css" href="http://wp.lab/wp-content/plugins/wp-post-grid-slider-filter-by-xgenious//assets/css/animate.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/wp-post-grid-slider-filter-by-xgenious//assets/css/font-awesome.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="owl-carousel-css" href="http://wp.lab/wp-content/plugins/wp-post-grid-slider-filter-by-xgenious//assets/css/owl.carousel.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="xg-normalize-css" href="http://wp.lab/wp-content/plugins/wp-post-grid-slider-filter-by-xgenious//assets/css/xg_normalize.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="xgenious-tab-css" href="http://wp.lab/wp-content/plugins/wp-post-grid-slider-filter-by-xgenious//assets/css/xgenious.tab.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="xg-posts-main-css" href="http://wp.lab/wp-content/plugins/wp-post-grid-slider-filter-by-xgenious//assets/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-post-grid-slider-filter-by-xgenious//assets/js/isotope.pkgd.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-post-grid-slider-filter-by-xgenious//assets/js/owl.carousel.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-post-grid-slider-filter-by-xgenious//assets/js/xgenious.tab.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-post-grid-slider-filter-by-xgenious//assets/js/main.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-post-likes -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-post-likes/js/wp-post-likes.js?ver=1.0"></script>
|
||||
|
||||
@@ -14928,11 +14514,6 @@
|
||||
<link rel="stylesheet" id="wp-show-posts-css" href="http://wp.lab/wp-content/plugins/wp-show-posts/css/wp-show-posts-min.css?ver=1.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-sightmap -->
|
||||
<link rel="stylesheet" id="wp-sightmap-css" href="http://wp.lab/wp-content/plugins/wp-sightmap/public/css/wp-sightmap.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-sightmap/public/js/wp-sightmap.min.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- wp-simple-anchors-links -->
|
||||
<link rel="stylesheet" id="wpsimpleanchorslinks_styles-css" href="http://wp.lab/wp-content/plugins/wp-simple-anchors-links/css/styles.css?ver=1.0.0" type="text/css" media="screen">
|
||||
|
||||
@@ -15252,10 +14833,6 @@
|
||||
<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">
|
||||
|
||||
|
||||
<!-- wp-whatsapp-product-request -->
|
||||
<link rel="stylesheet" id="wpwpr_style_css-css" href="http://wp.lab/wp-content/plugins/wp-whatsapp-product-request/css/wpwpr_style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-whydonate -->
|
||||
<link rel="stylesheet" id="wp-whydonate-css" href="http://wp.lab/wp-content/plugins/wp-whydonate/public/css/wp-whydonate-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-whydonate/public/js/jquery.validate.js?ver=1.0.0"></script>
|
||||
@@ -15320,11 +14897,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp30-by-who/public/js/wp30-by-who-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpa-woocommerce-product-gallery-lite -->
|
||||
<link rel="stylesheet" id="wpawg-style-css" href="http://wp.lab/wp-content/plugins/wpa-woocommerce-product-gallery-lite/assets/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpawg-custom-style-css" href="http://wp.lab/wp-content/plugins/wpa-woocommerce-product-gallery-lite/assets/css/custom-style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wpac-like-system -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpac-like-system/assets/js/ajax.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -15358,11 +14930,6 @@
|
||||
<link rel="stylesheet" id="wpb-wssn-main-css" href="http://wp.lab/wp-content/plugins/wpb-woocommerce-show-sales-numbers/assets/css/main.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wpb-woocommerce-widgets-accordion -->
|
||||
<link rel="stylesheet" id="wpb-wwa-style-css" href="http://wp.lab/wp-content/plugins/wpb-woocommerce-widgets-accordion/assets/css/main.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpb-woocommerce-widgets-accordion/assets/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wpbmb-entrez -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpbmb-entrez/js/featherlight.min.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -15488,10 +15055,6 @@
|
||||
<link rel="stylesheet" id="wpnextpreviouslink-css" href="http://wp.lab/wp-content/plugins/wpnextpreviouslink/public/css/wpnextpreviouslink-public.css?ver=2.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wpopal-medical -->
|
||||
<link rel="stylesheet" id="opalmedical-frontend-css-css" href="http://wp.lab/wp-content/plugins/wpopal-medical/assets/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wpos-owl-carousel-ultimate -->
|
||||
<link rel="stylesheet" id="wpos-owl-style-css" href="http://wp.lab/wp-content/plugins/wpos-owl-carousel-ultimate/assets/css/owl.carousel.css?ver=1.1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpocup-public-style-css" href="http://wp.lab/wp-content/plugins/wpos-owl-carousel-ultimate/assets/css/wpocup-public.css?ver=1.1.1" type="text/css" media="all">
|
||||
@@ -15714,11 +15277,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yapsody-events-calendar/includes/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- yatra -->
|
||||
<link rel="stylesheet" id="yatra-style-css" href="http://wp.lab/wp-content/plugins/yatra/assets/css/yatra.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yatra/assets/js/yatra.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ycwp-qr-me -->
|
||||
<link rel="stylesheet" id="ycwp-qr-me-style-css" href="http://wp.lab/wp-content/plugins/ycwp-qr-me/css/ycwp-qr-me.css?ver=1.3.2" type="text/css" media="screen">
|
||||
|
||||
@@ -15870,10 +15428,6 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ziyarat-ashura/js/za-js.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- zone-marker -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/zone-marker/public/js/gil-zone-marker.js?ver=1.0.1"></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>
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
# Changelog
|
||||
|
||||
## 1.42
|
||||
|
||||
- Changed IPStack API url call to use plain HTTP as free accounts don't support SSL requests. Added related error code notification.
|
||||
|
||||
## 1.41
|
||||
|
||||
- Prevented "Settings" link from appearing in Network Plugins page on Multisite installation.
|
||||
|
||||
## 1.4
|
||||
|
||||
- Added plugin activation check to see if the plugin has been previously activated and had its restriction function enabled to prevent users from potentially being locked out of their site again.
|
||||
- Countries Whitelist now hidden until restriction function enabled and API Key set, this process improves the first-run experience when configuring the plugin.
|
||||
- Added notice in Dashboard and Plugin page to prompt user to configure the plugin via a link to the plugin settings page.
|
||||
|
||||
## 1.3
|
||||
|
||||
- Added validation of notification recipient email address, notice displayed next to field in admin and the notifications emails will not be sent if the email address is considered invalid.
|
||||
|
||||
## 1.2
|
||||
|
||||
- Added UI for saving an email address to receive notifications
|
||||
- Added UI for enabling type of email notifications to receive
|
||||
- Added various error handling and notifications in the admin, in particular to notify if the API request limit has been reached.
|
||||
|
||||
## 1.1
|
||||
|
||||
- Added support for IPStack API as the sole geolocation provider
|
||||
- Added UI for saving IPStack API Key
|
||||
- Added UI for enabling / disabling restriction
|
||||
- Added UI for setting restricted countries
|
||||
- Added warning when no countries have been set to strongly encourage user to add their current location to try and prevent them being locked out of the Admin(!)
|
||||
|
||||
## 1.0
|
||||
|
||||
- Initial plugin build.
|
||||
@@ -1,18 +0,0 @@
|
||||
# Changelog
|
||||
|
||||
## 1.2
|
||||
- Updated PayPal donation link
|
||||
- Fixed typo on donation link settings
|
||||
|
||||
## 1.1
|
||||
|
||||
- Added 'heading_class' attribute to shortcode to enable a custom class to be added to the optional list heading.
|
||||
- Updated documentation to include more detail about CSS classes and styling.
|
||||
|
||||
## 1.0
|
||||
|
||||
- Added some additional attributes to provide more of the capabilities of `wp_list_pages` such as 'child_of', 'exclude', 'include' etc.
|
||||
|
||||
## 0.9
|
||||
|
||||
- Initial plugin build.
|
||||
@@ -1,4 +0,0 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 - 2018-06-07 =
|
||||
* Initial release.
|
||||
@@ -1,31 +0,0 @@
|
||||
{
|
||||
"name": "sendbox",
|
||||
"version": "1.0.0",
|
||||
"description": "Sendbox Email Marketing Newsletter",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "test",
|
||||
"msgfmt": "msgfmt languages/sendbox-email-marketing-newsletter-ru_RU.po -o languages/sendbox-email-marketing-newsletter-ru_RU.mo",
|
||||
"msgmerge": "msgmerge -vU languages/sendbox-email-marketing-newsletter-ru_RU.po languages/sendbox-email-marketing-newsletter.pot",
|
||||
"prod": "gulp prod && npm run msgmerge && npm run msgfmt",
|
||||
"pomo": "npm run msgmerge && npm run msgfmt"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git"
|
||||
},
|
||||
"keywords": [
|
||||
"wordpress"
|
||||
],
|
||||
"author": "Sendbox",
|
||||
"license": "GPL-2.0",
|
||||
"devDependencies": {
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-cssnano": "^2.1.2",
|
||||
"gulp-minify": "0.0.14",
|
||||
"gulp-rename": "^1.2.2",
|
||||
"gulp-wp-pot": "^2.0.4",
|
||||
"gulp-zip": "^4.0.0"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
@@ -1,127 +0,0 @@
|
||||
# Copyright (C) 2019 ScriptsTown
|
||||
# This file is distributed under the same license as the Share Social Media plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Share Social Media 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/share-social-"
|
||||
"media\n"
|
||||
"POT-Creation-Date: 2019-05-26T04:38:50+02:00\n"
|
||||
"PO-Revision-Date: 2019-05-26 08:09+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: hi_IN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.2\n"
|
||||
"X-Domain: share-social-media\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: admin/inc/class-stssm-admin-menu.php:6 admin/inc/setting/index.php:12
|
||||
msgid "Share Social Media"
|
||||
msgstr "शेयर सामाजिक मीडिया"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"Add social media sharing icons to a post or page of your WordPress website "
|
||||
"and allow visitors to share your content on various social media sites."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ScriptsTown"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://scriptstown.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stssm-admin-menu.php:6
|
||||
msgid "Social Share"
|
||||
msgstr "सामाजिक शेयर"
|
||||
|
||||
#: admin/inc/class-stssm-setting.php:7
|
||||
msgid "Settings"
|
||||
msgstr "सेटिंग्स"
|
||||
|
||||
#: admin/inc/class-stssm-setting.php:64
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/class-stssm-setting.php:80
|
||||
msgid "The plugin has been reset to its default state."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:7
|
||||
msgid "Social Icons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/index.php:8
|
||||
msgid "Reset"
|
||||
msgstr "रीसेट"
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:13
|
||||
msgid ""
|
||||
"This will reset the plugin to its default state and clear all data created "
|
||||
"by this plugin."
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:16
|
||||
msgid "Are you sure to reset the plugin to its default state?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/reset.php:16
|
||||
msgid "Reset Plugin"
|
||||
msgstr "प्लगइन रीसेट करें"
|
||||
|
||||
#: admin/inc/setting/tabs/social-icons.php:26
|
||||
#: admin/inc/setting/tabs/social-icons.php:42
|
||||
msgid "Social Share Icons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/social-icons.php:56
|
||||
#: admin/inc/setting/tabs/social-icons.php:61
|
||||
msgid "Sticky Icons Placement"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/social-icons.php:73
|
||||
#: admin/inc/setting/tabs/social-icons.php:78
|
||||
msgid "Placement on Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/social-icons.php:90
|
||||
#: admin/inc/setting/tabs/social-icons.php:95
|
||||
msgid "Placement on Posts"
|
||||
msgstr ""
|
||||
|
||||
#: admin/inc/setting/tabs/social-icons.php:109
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stssm-helper.php:7
|
||||
msgid "Enable Sticky Icons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stssm-helper.php:8
|
||||
msgid "Enable on all Pages"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stssm-helper.php:9
|
||||
msgid "Enable on all Posts"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stssm-helper.php:15
|
||||
msgid "Left"
|
||||
msgstr "बाएं"
|
||||
|
||||
#: includes/class-stssm-helper.php:16
|
||||
msgid "Right"
|
||||
msgstr "सही"
|
||||
|
||||
#: includes/class-stssm-helper.php:22 includes/class-stssm-helper.php:29
|
||||
msgid "Before Content"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-stssm-helper.php:23 includes/class-stssm-helper.php:30
|
||||
msgid "After Content"
|
||||
msgstr ""
|
||||
@@ -1,254 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Table Addons For Elementor 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-05-29 02:26+0600\n"
|
||||
"PO-Revision-Date: 2019-05-29 02:26+0600\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: IqbalBary <contact@iqbalbary.com>\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.6.11\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;esc_attr__;esc_html__;_e;esc_attr_e;esc_html_e;_x;"
|
||||
"esc_attr_x;esc_html_x\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor
|
||||
#: includes/class-table-addons-for-elementor-extension.php:129
|
||||
#, php-format
|
||||
msgid "\"%1$s\" requires \"%2$s\" to be installed and activated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-extension.php:130
|
||||
#: includes/class-table-addons-for-elementor-extension.php:154
|
||||
#: includes/class-table-addons-for-elementor-extension.php:179
|
||||
msgid "Table Addons for Elementor"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-extension.php:131
|
||||
#: includes/class-table-addons-for-elementor-extension.php:155
|
||||
msgid "Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Plugin name 2: Elementor 3: Required Elementor version
|
||||
#. translators: 1: Plugin name 2: PHP 3: Required PHP version
|
||||
#: includes/class-table-addons-for-elementor-extension.php:153
|
||||
#: includes/class-table-addons-for-elementor-extension.php:178
|
||||
#, php-format
|
||||
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-extension.php:180
|
||||
msgid "PHP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:41
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:85
|
||||
#: includes/class-table-addons-for-elementor-widget.php:97
|
||||
#: includes/class-table-addons-for-elementor-widget.php:100
|
||||
msgid "Table Header"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:93
|
||||
msgid "Table Header Cell"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:106
|
||||
#: includes/class-table-addons-for-elementor-widget.php:256
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:109
|
||||
#: includes/class-table-addons-for-elementor-widget.php:110
|
||||
msgid "table data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:114
|
||||
#: includes/class-table-addons-for-elementor-widget.php:269
|
||||
msgid "Advance Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:116
|
||||
#: includes/class-table-addons-for-elementor-widget.php:126
|
||||
#: includes/class-table-addons-for-elementor-widget.php:147
|
||||
#: includes/class-table-addons-for-elementor-widget.php:249
|
||||
#: includes/class-table-addons-for-elementor-widget.php:271
|
||||
#: includes/class-table-addons-for-elementor-widget.php:283
|
||||
#: includes/class-table-addons-for-elementor-widget.php:308
|
||||
#: includes/class-table-addons-for-elementor-widget.php:590
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:117
|
||||
#: includes/class-table-addons-for-elementor-widget.php:127
|
||||
#: includes/class-table-addons-for-elementor-widget.php:148
|
||||
#: includes/class-table-addons-for-elementor-widget.php:250
|
||||
#: includes/class-table-addons-for-elementor-widget.php:272
|
||||
#: includes/class-table-addons-for-elementor-widget.php:284
|
||||
#: includes/class-table-addons-for-elementor-widget.php:309
|
||||
#: includes/class-table-addons-for-elementor-widget.php:591
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:121
|
||||
#: includes/class-table-addons-for-elementor-widget.php:278
|
||||
msgid "colSpan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:131
|
||||
#: includes/class-table-addons-for-elementor-widget.php:290
|
||||
msgid "colSpan Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:137
|
||||
#: includes/class-table-addons-for-elementor-widget.php:138
|
||||
#: includes/class-table-addons-for-elementor-widget.php:296
|
||||
#: includes/class-table-addons-for-elementor-widget.php:297
|
||||
#: includes/class-table-addons-for-elementor-widget.php:321
|
||||
#: includes/class-table-addons-for-elementor-widget.php:322
|
||||
msgid "1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:142
|
||||
msgid "Custom Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:152
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:178
|
||||
#: includes/class-table-addons-for-elementor-widget.php:328
|
||||
#: includes/class-table-addons-for-elementor-widget.php:458
|
||||
#: includes/class-table-addons-for-elementor-widget.php:528
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:185
|
||||
#: includes/class-table-addons-for-elementor-widget.php:335
|
||||
#: includes/class-table-addons-for-elementor-widget.php:462
|
||||
#: includes/class-table-addons-for-elementor-widget.php:532
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:189
|
||||
#: includes/class-table-addons-for-elementor-widget.php:339
|
||||
#: includes/class-table-addons-for-elementor-widget.php:466
|
||||
#: includes/class-table-addons-for-elementor-widget.php:536
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:193
|
||||
#: includes/class-table-addons-for-elementor-widget.php:343
|
||||
#: includes/class-table-addons-for-elementor-widget.php:470
|
||||
#: includes/class-table-addons-for-elementor-widget.php:540
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:197
|
||||
#: includes/class-table-addons-for-elementor-widget.php:347
|
||||
#: includes/class-table-addons-for-elementor-widget.php:474
|
||||
#: includes/class-table-addons-for-elementor-widget.php:544
|
||||
msgid "Justified"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:208
|
||||
#: includes/class-table-addons-for-elementor-widget.php:361
|
||||
msgid "Decoration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:214
|
||||
#: includes/class-table-addons-for-elementor-widget.php:367
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:215
|
||||
#: includes/class-table-addons-for-elementor-widget.php:368
|
||||
msgid "Underline"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:216
|
||||
#: includes/class-table-addons-for-elementor-widget.php:369
|
||||
msgid "Overline"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:217
|
||||
#: includes/class-table-addons-for-elementor-widget.php:370
|
||||
msgid "Line Through"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:218
|
||||
#: includes/class-table-addons-for-elementor-widget.php:371
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:235
|
||||
msgid "Table Body"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:247
|
||||
msgid "New Row"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:259
|
||||
#: includes/class-table-addons-for-elementor-widget.php:260
|
||||
#: includes/class-table-addons-for-elementor-widget.php:404
|
||||
#: includes/class-table-addons-for-elementor-widget.php:407
|
||||
msgid "Table Data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:303
|
||||
msgid "rowSpan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:315
|
||||
msgid "rowSpan Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:399
|
||||
msgid "Table Body Cell"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:419
|
||||
msgid "General Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:427
|
||||
msgid "Inner Cell Padding"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:440
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:450
|
||||
msgid "Table Header Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:487
|
||||
#: includes/class-table-addons-for-elementor-widget.php:557
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:507
|
||||
#: includes/class-table-addons-for-elementor-widget.php:577
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:520
|
||||
msgid "Table Body Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:588
|
||||
msgid "Striped Background"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-table-addons-for-elementor-widget.php:597
|
||||
msgid "Secondary Background Color"
|
||||
msgstr ""
|
||||
@@ -1,99 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: VAMASHIP SHIPPING 1.0.0\n"
|
||||
"POT-Creation-Date: 2019-05-10 13:16+0530\n"
|
||||
"PO-Revision-Date: 2019-05-10 13:16+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: vamaship <care@vamaship.com>\n"
|
||||
"Language: English\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
|
||||
"Plural-Forms: Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/vamaship_shipping_option.php:29
|
||||
msgid "Vamaship Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:30
|
||||
msgid "This Shipping Method Use for Vamaship Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:38
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:40
|
||||
msgid "Enable this shipping."
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:44
|
||||
msgid "Vamaship Api Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:46
|
||||
msgid "API key get from vamaship"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:49
|
||||
msgid "Vamaship Domestic Air URL "
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:51
|
||||
#: includes/vamaship_shipping_option.php:56
|
||||
#: includes/vamaship_shipping_option.php:61
|
||||
msgid "Please enter the api request URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:54
|
||||
msgid "Vamaship Surface Request URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:59
|
||||
msgid "Vamaship Air Internatoinal Request URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:64
|
||||
msgid "GST NO "
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:66
|
||||
msgid "Please enter your GST number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:69
|
||||
msgid "Seller Phone No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/vamaship_shipping_option.php:71
|
||||
msgid "Please enter Seller Phone No , it is required"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:54
|
||||
msgid "Track Your Order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:72
|
||||
msgid "Generate VS Domestic Air Shipments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:73
|
||||
msgid "Generate VS Surface B2C Shipments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:74
|
||||
msgid "Generate VS Surface B2B Shipments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:75
|
||||
msgid "Generate VS Air Internatoinal Shipments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-vamaship_shipping.php:126
|
||||
msgid "Generate Shipment"
|
||||
msgstr ""
|
||||
@@ -1,5 +0,0 @@
|
||||
/**1.0.0.1 - 2019.05.22**/
|
||||
-Fixed: Custom email template
|
||||
|
||||
/**1.0.0 - 2019.05.10**/
|
||||
- First release
|
||||
@@ -1 +0,0 @@
|
||||
Version 1.0.0
|
||||
@@ -1,3 +0,0 @@
|
||||
/**v1.0.1 - 2019.05.17**/
|
||||
- Fixed: Translate
|
||||
- Updated: Skip if tracking does not change when importing
|
||||
@@ -1,7 +0,0 @@
|
||||
== 1.1.0 - 08/05/2019 ==
|
||||
Add: Receipt PDF template
|
||||
Add: Option to choose the type of document (invoice or receipt) in the checkout
|
||||
Tweak: Order/invoice list table layout
|
||||
|
||||
== 1.0.0 - 03/05/2019 ==
|
||||
Initial release
|
||||
@@ -1,35 +0,0 @@
|
||||
# Copyright (C) 2019 Themesocket
|
||||
# This file is distributed under the same license as the WP Disabler plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Disabler 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-disabler\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-06-06T11:11:36+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wp-disbler\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP Disabler"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "http://themesocket.com/wpdisabler"
|
||||
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 "Themesocket"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://themesocket.com"
|
||||
msgstr ""
|
||||
@@ -1,141 +0,0 @@
|
||||
# Copyright (C) 2019 WEN Solutions
|
||||
# This file is distributed under the same license as the WP Travel Blocks New package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Travel Blocks New 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-05-28 11:07:07+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: WEN Solutions <info@wensolutions.com>\n"
|
||||
"Language-Team: \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"
|
||||
"X-Poedit-SearchPath-0: ../../wp-travel-blocks\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: inc/src/featured-trip/block.php:18
|
||||
msgid "Featured Trip"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/featured-trip/block.php:108
|
||||
msgid "Featured Trips not found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/featured-trip/block.php:160 inc/src/sales-trip/block.php:164
|
||||
#: inc/src/trip-location/block.php:214 inc/src/trip-type/block.php:214
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/init.php:72
|
||||
msgid "WP Travel"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/sales-trip/block.php:14
|
||||
msgid "Offer Trip"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/sales-trip/block.php:102
|
||||
msgid "Offered Trips not found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:16
|
||||
msgid "Trips Filter"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:89
|
||||
msgid "Keyword:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:90
|
||||
msgid "Ex: Trekking"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:96
|
||||
msgid "Fact:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:97
|
||||
msgid "Ex: guide"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:103
|
||||
msgid "Trip Type:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:107 inc/src/travel-filter/block.php:127
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:123
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:144
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:148
|
||||
msgid "Price low to high"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:149
|
||||
msgid "Price high to low"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:155
|
||||
msgid "Price Range"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:168
|
||||
msgid "Trip Duration"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:170
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:177
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/travel-filter/block.php:197
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/trip-location/block.php:14
|
||||
msgid "Travel by Location"
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/trip-location/block.php:120 inc/src/trip-type/block.php:120
|
||||
msgid "Trips not found."
|
||||
msgstr ""
|
||||
|
||||
#: inc/src/trip-type/block.php:14
|
||||
msgid "Trips By Type"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WP Travel Blocks New"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://wptravel.io/pro"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "The Gutenberg Blocks of WP Travel."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WEN Solutions"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://wptravel.io"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,10 @@
|
||||
],
|
||||
"confirmed_by": {
|
||||
|
||||
}
|
||||
},
|
||||
"vulnerabilities": [
|
||||
|
||||
]
|
||||
},
|
||||
"http://ex.lo/?attachment_id=5": {
|
||||
"found_by": "Attachment Brute Forcing",
|
||||
@@ -18,7 +21,10 @@
|
||||
],
|
||||
"confirmed_by": {
|
||||
|
||||
}
|
||||
},
|
||||
"vulnerabilities": [
|
||||
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -21,7 +21,10 @@
|
||||
],
|
||||
"confirmed_by": {
|
||||
|
||||
}
|
||||
},
|
||||
"vulnerabilities": [
|
||||
|
||||
]
|
||||
}
|
||||
},
|
||||
"http://ex.lo/tt2.php": {
|
||||
@@ -45,7 +48,10 @@
|
||||
],
|
||||
"confirmed_by": {
|
||||
|
||||
}
|
||||
},
|
||||
"vulnerabilities": [
|
||||
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -56,7 +56,10 @@
|
||||
],
|
||||
"confirmed_by": {
|
||||
|
||||
}
|
||||
},
|
||||
"vulnerabilities": [
|
||||
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,7 +39,10 @@
|
||||
],
|
||||
"confirmed_by": {
|
||||
|
||||
}
|
||||
},
|
||||
"vulnerabilities": [
|
||||
|
||||
]
|
||||
},
|
||||
"parents": [
|
||||
|
||||
|
||||
@@ -29,9 +29,9 @@ Gem::Specification.new do |s|
|
||||
s.add_development_dependency 'rake', '~> 12.3'
|
||||
s.add_development_dependency 'rspec', '~> 3.8.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.71.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.68.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.1.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.16.1'
|
||||
s.add_development_dependency 'stackprof', '~> 0.2.12'
|
||||
s.add_development_dependency 'webmock', '~> 3.6.0'
|
||||
s.add_development_dependency 'webmock', '~> 3.5.1'
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user