Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
73a1974f85 | ||
|
|
dec73c21b6 | ||
|
|
46a00cc864 | ||
|
|
62455be165 | ||
|
|
17ef5ef918 | ||
|
|
922b6fffd0 | ||
|
|
b47bf006d0 | ||
|
|
d60269f4bc | ||
|
|
1ce057a78e | ||
|
|
a0fe04b990 | ||
|
|
31c9172e19 | ||
|
|
7f23cbef71 | ||
|
|
4884defaed | ||
|
|
3039218c40 | ||
|
|
8bbc2f32ae | ||
|
|
4ca46ab3ba | ||
|
|
7442c72d01 | ||
|
|
01cd8350bc | ||
|
|
8b5ea589db | ||
|
|
3555ca1d1e | ||
|
|
ae034a47ed | ||
|
|
ec3862c930 | ||
|
|
c63804d1c5 | ||
|
|
c5e6752f75 | ||
|
|
e4f3e9d11c | ||
|
|
f3713536b9 | ||
|
|
fb751c0a51 | ||
|
|
9d3464055a | ||
|
|
0fea814f5d | ||
|
|
ae70a6df9d | ||
|
|
4afc756ccd | ||
|
|
adc5841261 | ||
|
|
804a8c34c6 |
24
README.md
24
README.md
@@ -35,6 +35,17 @@ bundle install && rake install
|
||||
|
||||
Pull the repo with ```docker pull wpscanteam/wpscan```
|
||||
|
||||
Enumerating usernames
|
||||
```
|
||||
docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u
|
||||
```
|
||||
|
||||
Enumerating a range of usernames
|
||||
```
|
||||
docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u1-100
|
||||
```
|
||||
** replace u1-100 with a range of your choice.
|
||||
|
||||
# Usage
|
||||
|
||||
```wpscan --url blog.tld``` This will scan the blog using default options with a good compromise between speed and accuracy. For example, the plugins will be checked passively but their version with a mixed detection mode (passively + aggressively). Potential config backup files will also be checked, along with other interesting findings. If a more stealthy approach is required, then ```wpscan --stealthy --url blog.tld``` can be used.
|
||||
@@ -69,6 +80,19 @@ url: 'http://target.tld'
|
||||
|
||||
Running ```wpscan``` in the current directory (pwd), is the same as ```wpscan -v --proxy socks5://127.0.0.1:9090 --url http://target.tld```
|
||||
|
||||
|
||||
Enumerating usernames
|
||||
```
|
||||
wpscan --url https://target.tld/ --enumerate u
|
||||
```
|
||||
|
||||
Enumerating a range of usernames
|
||||
```
|
||||
wpscan --url https://target.tld/ --enumerate u1-100
|
||||
```
|
||||
** replace u1-100 with a range of your choice.
|
||||
|
||||
|
||||
# PROJECT HOME
|
||||
|
||||
[https://wpscan.org](https://wpscan.org)
|
||||
|
||||
@@ -15,20 +15,20 @@ module WPScan
|
||||
OptMultiChoices.new(
|
||||
['-e', '--enumerate [OPTS]', 'Enumeration Process'],
|
||||
choices: {
|
||||
vp: OptBoolean.new(['--vulnerable-plugins']),
|
||||
ap: OptBoolean.new(['--all-plugins']),
|
||||
p: OptBoolean.new(['--plugins']),
|
||||
vt: OptBoolean.new(['--vulnerable-themes']),
|
||||
at: OptBoolean.new(['--all-themes']),
|
||||
t: OptBoolean.new(['--themes']),
|
||||
tt: OptBoolean.new(['--timthumbs']),
|
||||
cb: OptBoolean.new(['--config-backups']),
|
||||
vp: OptBoolean.new(['--vulnerable-plugins']),
|
||||
ap: OptBoolean.new(['--all-plugins']),
|
||||
p: OptBoolean.new(['--plugins']),
|
||||
vt: OptBoolean.new(['--vulnerable-themes']),
|
||||
at: OptBoolean.new(['--all-themes']),
|
||||
t: OptBoolean.new(['--themes']),
|
||||
tt: OptBoolean.new(['--timthumbs']),
|
||||
cb: OptBoolean.new(['--config-backups']),
|
||||
dbe: OptBoolean.new(['--db-exports']),
|
||||
u: OptIntegerRange.new(['--users', 'User IDs range. e.g: u1-5'], value_if_empty: '1-10'),
|
||||
m: OptIntegerRange.new(['--medias',
|
||||
'Media IDs range. e.g m1-15',
|
||||
'Note: Permalink setting must be set to "Plain" for those to be detected'],
|
||||
value_if_empty: '1-100')
|
||||
u: OptIntegerRange.new(['--users', 'User IDs range. e.g: u1-5'], value_if_empty: '1-10'),
|
||||
m: OptIntegerRange.new(['--medias',
|
||||
'Media IDs range. e.g m1-15',
|
||||
'Note: Permalink setting must be set to "Plain" for those to be detected'],
|
||||
value_if_empty: '1-100')
|
||||
},
|
||||
value_if_empty: 'vp,vt,tt,cb,dbe,u,m',
|
||||
incompatible: [%i[vp ap p], %i[vt at t]],
|
||||
|
||||
@@ -11,7 +11,7 @@ module WPScan
|
||||
|
||||
return unless [200, 403].include?(res.code) && !target.homepage_or_404?(res)
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::BackupDB.new(
|
||||
url,
|
||||
confidence: 70,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -9,9 +9,10 @@ module WPScan
|
||||
|
||||
return unless target.debug_log?(path)
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::DebugLog.new(
|
||||
target.url(path),
|
||||
confidence: 100, found_by: DIRECT_ACCESS
|
||||
confidence: 100, found_by: DIRECT_ACCESS,
|
||||
references: { url: 'https://codex.wordpress.org/Debugging_in_WordPress' }
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
|
||||
return unless res.body =~ /DUPLICATOR INSTALL-LOG/
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::DuplicatorInstallerLog.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
|
||||
return unless res.code == 200 && !target.homepage_or_404?(res)
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::EmergencyPwdResetScript.new(
|
||||
url,
|
||||
confidence: res.body =~ /password/i ? 100 : 40,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -10,11 +10,12 @@ module WPScan
|
||||
|
||||
return if fpd_entries.empty?
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::FullPathDisclosure.new(
|
||||
target.url(path),
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
interesting_entries: fpd_entries
|
||||
interesting_entries: fpd_entries,
|
||||
references: { url: 'https://www.owasp.org/index.php/Full_Path_Disclosure' }
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
|
||||
url = target.url('wp-content/mu-plugins/')
|
||||
|
||||
return WPScan::InterestingFinding.new(
|
||||
return WPScan::MuPlugins.new(
|
||||
url,
|
||||
confidence: 70,
|
||||
found_by: 'URLs In Homepage (Passive Detection)',
|
||||
@@ -35,7 +35,7 @@ module WPScan
|
||||
|
||||
target.mu_plugins = true
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::MuPlugins.new(
|
||||
url,
|
||||
confidence: 80,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -15,7 +15,7 @@ module WPScan
|
||||
|
||||
target.multisite = true
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::Multisite.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
res = Browser.get(url)
|
||||
|
||||
if res.code == 200 && res.body =~ /wordpress/i
|
||||
return WPScan::InterestingFinding.new(url, confidence: 100, found_by: DIRECT_ACCESS)
|
||||
return WPScan::Readme.new(url, confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
nil
|
||||
|
||||
@@ -18,7 +18,7 @@ module WPScan
|
||||
|
||||
target.registration_enabled = true
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::Registration.new(
|
||||
res.effective_url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -11,7 +11,7 @@ module WPScan
|
||||
|
||||
return unless res.code == 200 && res.headers['Content-Type'] =~ %r{\Aapplication/zip}i
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::TmmDbMigrate.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -11,7 +11,7 @@ module WPScan
|
||||
|
||||
url = target.url(path)
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::UploadDirectoryListing.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -3,7 +3,7 @@ module WPScan
|
||||
module InterestingFindings
|
||||
# UploadSQLDump finder
|
||||
class UploadSQLDump < CMSScanner::Finders::Finder
|
||||
SQL_PATTERN = /(?:(?:(?:DROP|CREATE) TABLE)|INSERT INTO)/
|
||||
SQL_PATTERN = /(?:(?:(?:DROP|CREATE) TABLE)|INSERT INTO)/.freeze
|
||||
|
||||
# @return [ InterestingFinding ]
|
||||
def aggressive(_opts = {})
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
|
||||
return unless res.code == 200 && res.body =~ SQL_PATTERN
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::UploadSQLDump.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS
|
||||
|
||||
@@ -3,9 +3,9 @@ module WPScan
|
||||
module MainTheme
|
||||
# From the WooFramework meta generators
|
||||
class WooFrameworkMetaGenerator < CMSScanner::Finders::Finder
|
||||
THEME_PATTERN = %r{<meta name="generator" content="([^\s"]+)\s?([^"]+)?"\s+/?>}
|
||||
FRAMEWORK_PATTERN = %r{<meta name="generator" content="WooFramework\s?([^"]+)?"\s+/?>}
|
||||
PATTERN = /#{THEME_PATTERN}\s+#{FRAMEWORK_PATTERN}/i
|
||||
THEME_PATTERN = %r{<meta name="generator" content="([^\s"]+)\s?([^"]+)?"\s+/?>}.freeze
|
||||
FRAMEWORK_PATTERN = %r{<meta name="generator" content="WooFramework\s?([^"]+)?"\s+/?>}.freeze
|
||||
PATTERN = /#{THEME_PATTERN}\s+#{FRAMEWORK_PATTERN}/i.freeze
|
||||
|
||||
def passive(opts = {})
|
||||
return unless target.homepage_res.body =~ PATTERN
|
||||
|
||||
@@ -4,6 +4,7 @@ require_relative 'users/oembed_api'
|
||||
require_relative 'users/rss_generator'
|
||||
require_relative 'users/author_id_brute_forcing'
|
||||
require_relative 'users/login_error_messages'
|
||||
require_relative 'users/yoast_seo_author_sitemap.rb'
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
@@ -19,6 +20,7 @@ module WPScan
|
||||
Users::WpJsonApi.new(target) <<
|
||||
Users::OembedApi.new(target) <<
|
||||
Users::RSSGenerator.new(target) <<
|
||||
Users::YoastSeoAuthorSitemap.new(target) <<
|
||||
Users::AuthorIdBruteForcing.new(target) <<
|
||||
Users::LoginErrorMessages.new(target)
|
||||
end
|
||||
|
||||
@@ -14,29 +14,35 @@ module WPScan
|
||||
|
||||
# @param [ Hash ] opts
|
||||
#
|
||||
# TODO: make this code pretty :x
|
||||
#
|
||||
# @return [ Array<User> ]
|
||||
def aggressive(_opts = {})
|
||||
found = []
|
||||
found_by_msg = 'Oembed API - %s (Aggressive Detection)'
|
||||
|
||||
oembed_data = JSON.parse(Browser.get(api_url).body)
|
||||
details = user_details_from_oembed_data(oembed_data)
|
||||
|
||||
return [] unless details
|
||||
|
||||
[CMSScanner::User.new(details[0],
|
||||
found_by: format(found_by_msg, details[1]),
|
||||
confidence: details[2],
|
||||
interesting_entries: [api_url])]
|
||||
rescue JSON::ParserError
|
||||
[]
|
||||
end
|
||||
|
||||
def user_details_from_oembed_data(oembed_data)
|
||||
return unless oembed_data
|
||||
|
||||
if oembed_data['author_url'] =~ %r{/author/([^/]+)/?\z}
|
||||
details = [Regexp.last_match[1], 'Author URL', 90]
|
||||
elsif oembed_data['author_name'] && !oembed_data['author_name'].empty?
|
||||
details = [oembed_data['author_name'].delete(' '), 'Author Name', 70]
|
||||
details = [oembed_data['author_name'], 'Author Name', 70]
|
||||
end
|
||||
|
||||
return unless details
|
||||
details
|
||||
end
|
||||
|
||||
found << CMSScanner::User.new(details[0],
|
||||
found_by: format(found_by_msg, details[1]),
|
||||
confidence: details[2],
|
||||
interesting_entries: [api_url])
|
||||
rescue JSON::ParserError
|
||||
found
|
||||
def found_by_msg
|
||||
'Oembed API - %s (Aggressive Detection)'
|
||||
end
|
||||
|
||||
# @return [ String ] The URL of the API listing the Users
|
||||
|
||||
34
app/finders/users/yoast_seo_author_sitemap.rb
Normal file
34
app/finders/users/yoast_seo_author_sitemap.rb
Normal file
@@ -0,0 +1,34 @@
|
||||
module WPScan
|
||||
module Finders
|
||||
module Users
|
||||
# The YOAST SEO plugin has an author-sitemap.xml which can leak usernames
|
||||
# See https://github.com/wpscanteam/wpscan/issues/1228
|
||||
class YoastSeoAuthorSitemap < CMSScanner::Finders::Finder
|
||||
# @param [ Hash ] opts
|
||||
#
|
||||
# @return [ Array<User> ]
|
||||
def aggressive(_opts = {})
|
||||
found = []
|
||||
|
||||
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
|
||||
username = user_tag.text.to_s[%r{/author/([^\/]+)/}, 1]
|
||||
|
||||
next unless username && !username.strip.empty?
|
||||
|
||||
found << CMSScanner::User.new(username,
|
||||
found_by: found_by,
|
||||
confidence: 100,
|
||||
interesting_entries: [sitemap_url])
|
||||
end
|
||||
|
||||
found
|
||||
end
|
||||
|
||||
# @return [ String ] The URL of the author-sitemap
|
||||
def sitemap_url
|
||||
@sitemap_url ||= target.url('author-sitemap.xml')
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -3,4 +3,43 @@ module WPScan
|
||||
class InterestingFinding < CMSScanner::InterestingFinding
|
||||
include References
|
||||
end
|
||||
|
||||
#
|
||||
# Empty classes for the #type to be correctly displayed (as taken from the self.class from the parent)
|
||||
#
|
||||
class BackupDB < InterestingFinding
|
||||
end
|
||||
|
||||
class DebugLog < InterestingFinding
|
||||
end
|
||||
|
||||
class DuplicatorInstallerLog < InterestingFinding
|
||||
end
|
||||
|
||||
class EmergencyPwdResetScript < InterestingFinding
|
||||
end
|
||||
|
||||
class FullPathDisclosure < InterestingFinding
|
||||
end
|
||||
|
||||
class MuPlugins < InterestingFinding
|
||||
end
|
||||
|
||||
class Multisite < InterestingFinding
|
||||
end
|
||||
|
||||
class Readme < InterestingFinding
|
||||
end
|
||||
|
||||
class Registration < InterestingFinding
|
||||
end
|
||||
|
||||
class TmmDbMigrate < InterestingFinding
|
||||
end
|
||||
|
||||
class UploadDirectoryListing < InterestingFinding
|
||||
end
|
||||
|
||||
class UploadSQLDump < InterestingFinding
|
||||
end
|
||||
end
|
||||
|
||||
@@ -53,7 +53,12 @@ module WPScan
|
||||
|
||||
# @return [ String ]
|
||||
def release_date
|
||||
@release_date ||= db_data['release_date']
|
||||
@release_date ||= db_data['release_date'] || 'Unknown'
|
||||
end
|
||||
|
||||
# @return [ String ]
|
||||
def status
|
||||
@status ||= db_data['status'] || 'Unknown'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<% if @version -%>
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified (Released on <%= @version.release_date %>).
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified (<%= @version.status.capitalize %>, released on <%= @version.release_date %>).
|
||||
<%= render('@finding', item: @version) -%>
|
||||
<% else -%>
|
||||
<%= notice_icon %> The WordPress version could not be detected.
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"version": {
|
||||
"number": <%= @version.number.to_json %>,
|
||||
"release_date": <%= @version.release_date.to_json %>,
|
||||
"status": <%= @version.status.to_json %>,
|
||||
<%= render('@finding', item: @version) -%>
|
||||
},
|
||||
<% else -%>
|
||||
|
||||
@@ -16,9 +16,7 @@ require 'securerandom'
|
||||
require 'wpscan/helper'
|
||||
require 'wpscan/db'
|
||||
require 'wpscan/version'
|
||||
require 'wpscan/errors/wordpress'
|
||||
require 'wpscan/errors/http'
|
||||
require 'wpscan/errors/update'
|
||||
require 'wpscan/errors'
|
||||
require 'wpscan/browser'
|
||||
require 'wpscan/target'
|
||||
require 'wpscan/finders'
|
||||
|
||||
@@ -60,12 +60,11 @@ module WPScan
|
||||
end
|
||||
|
||||
# @return [ Hash ] The params for Typhoeus::Request
|
||||
# @note Those params can't be overriden by CLI options
|
||||
def request_params
|
||||
{
|
||||
ssl_verifyhost: 2,
|
||||
ssl_verifypeer: true,
|
||||
timeout: 300,
|
||||
connecttimeout: 120,
|
||||
timeout: 600,
|
||||
connecttimeout: 300,
|
||||
accept_encoding: 'gzip, deflate',
|
||||
cache_ttl: 0
|
||||
}
|
||||
|
||||
8
lib/wpscan/errors.rb
Normal file
8
lib/wpscan/errors.rb
Normal file
@@ -0,0 +1,8 @@
|
||||
module WPScan
|
||||
class Error < StandardError
|
||||
end
|
||||
end
|
||||
|
||||
require_relative 'errors/http'
|
||||
require_relative 'errors/update'
|
||||
require_relative 'errors/wordpress'
|
||||
@@ -1,6 +1,6 @@
|
||||
module WPScan
|
||||
# HTTP Error
|
||||
class HTTPError < StandardError
|
||||
class HTTPError < Error
|
||||
attr_reader :response
|
||||
|
||||
# @param [ Typhoeus::Response ] res
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
module WPScan
|
||||
# Error raised when there is a missing DB file and --no-update supplied
|
||||
class MissingDatabaseFile < StandardError
|
||||
class MissingDatabaseFile < Error
|
||||
def to_s
|
||||
'Update required, you can not run a scan if a database file is missing.'
|
||||
end
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
module WPScan
|
||||
# WordPress hosted (*.wordpress.com)
|
||||
class WordPressHostedError < StandardError
|
||||
class WordPressHostedError < Error
|
||||
def to_s
|
||||
'Scanning *.wordpress.com hosted blogs is not supported.'
|
||||
end
|
||||
end
|
||||
|
||||
# Not WordPress Error
|
||||
class NotWordPressError < StandardError
|
||||
class NotWordPressError < Error
|
||||
def to_s
|
||||
'The remote website is up, but does not seem to be running WordPress.'
|
||||
end
|
||||
end
|
||||
|
||||
# Invalid Wp Version (used in the WpVersion#new)
|
||||
class InvalidWordPressVersion < StandardError
|
||||
class InvalidWordPressVersion < Error
|
||||
def to_s
|
||||
'The WordPress version is invalid'
|
||||
end
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
module WordPress
|
||||
include CMSScanner::Target::Platform::PHP
|
||||
|
||||
WORDPRESS_PATTERN = %r{/(?:(?:wp-content/(?:themes|(?:mu\-)?plugins|uploads))|wp-includes)/}i
|
||||
WORDPRESS_PATTERN = %r{/(?:(?:wp-content/(?:themes|(?:mu\-)?plugins|uploads))|wp-includes)/}i.freeze
|
||||
|
||||
# These methods are used in the associated interesting_findings finders
|
||||
# to keep the boolean state of the finding rather than re-check the whole thing again
|
||||
@@ -41,7 +41,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def wordpress_hosted?
|
||||
uri.host =~ /wordpress.com$/i ? true : false
|
||||
uri.host =~ /\.wordpress\.com$/i ? true : false
|
||||
end
|
||||
|
||||
# @param [ String ] username
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.3.2'.freeze
|
||||
VERSION = '3.4.1'.freeze
|
||||
end
|
||||
|
||||
@@ -37,7 +37,7 @@ describe WPScan::Finders::InterestingFindings::BackupDB do
|
||||
after do
|
||||
found = finder.aggressive
|
||||
|
||||
expect(found).to eql WPScan::InterestingFinding.new(
|
||||
expect(found).to eql WPScan::BackupDB.new(
|
||||
dir_url,
|
||||
confidence: 70,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -23,7 +23,7 @@ describe WPScan::Finders::InterestingFindings::DebugLog do
|
||||
let(:body) { File.read(File.join(fixtures, 'debug.log')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
expect(finder.aggressive).to eql WPScan::InterestingFinding.new(
|
||||
expect(finder.aggressive).to eql WPScan::DebugLog.new(
|
||||
log_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -24,7 +24,7 @@ describe WPScan::Finders::InterestingFindings::DuplicatorInstallerLog do
|
||||
let(:body) { File.read(File.join(fixtures, filename)) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
expect(finder.aggressive).to eql WPScan::InterestingFinding.new(
|
||||
expect(finder.aggressive).to eql WPScan::DuplicatorInstallerLog.new(
|
||||
log_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -25,7 +25,7 @@ describe WPScan::Finders::InterestingFindings::FullPathDisclosure do
|
||||
it 'returns the InterestingFinding' do
|
||||
found = finder.aggressive
|
||||
|
||||
expect(found).to eql WPScan::InterestingFinding.new(
|
||||
expect(found).to eql WPScan::FullPathDisclosure.new(
|
||||
file_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -27,7 +27,7 @@ describe WPScan::Finders::InterestingFindings::Readme do
|
||||
before { stub_request(:get, target.url(file)).to_return(body: readme) }
|
||||
|
||||
it 'returns the expected InterestingFinding' do
|
||||
expected = WPScan::InterestingFinding.new(
|
||||
expected = WPScan::Readme.new(
|
||||
target.url(file),
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -38,7 +38,7 @@ describe WPScan::Finders::InterestingFindings::UploadSQLDump do
|
||||
let(:fixture) { 'dump.sql' }
|
||||
|
||||
it 'returns the interesting findings' do
|
||||
@expected = WPScan::InterestingFinding.new(
|
||||
@expected = WPScan::UploadSQLDump.new(
|
||||
finder.dump_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -7,6 +7,59 @@ describe WPScan::Finders::Users::OembedApi do
|
||||
let(:fixtures) { File.join(FINDERS_FIXTURES, 'users', 'oembed_api') }
|
||||
|
||||
describe '#aggressive' do
|
||||
xit
|
||||
before do
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
stub_request(:get, finder.api_url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when not a JSON response' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when a JSON response' do
|
||||
context 'when 404' do
|
||||
let(:body) { File.read(File.join(fixtures, '404.json')) }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when 200' do
|
||||
context 'when author_url present' do
|
||||
let(:body) { File.read(File.join(fixtures, '200_author_url.json')) }
|
||||
|
||||
it 'returns the expected array of users' do
|
||||
users = finder.aggressive
|
||||
|
||||
expect(users.size).to eql 1
|
||||
|
||||
user = users.first
|
||||
|
||||
expect(user.username).to eql 'admin'
|
||||
expect(user.confidence).to eql 90
|
||||
expect(user.found_by).to eql 'Oembed API - Author URL (Aggressive Detection)'
|
||||
expect(user.interesting_entries).to eql ['http://wp.lab/wp-json/oembed/1.0/embed?url=http://wp.lab/&format=json']
|
||||
end
|
||||
end
|
||||
|
||||
context 'when author_url not present but author_name' do
|
||||
let(:body) { File.read(File.join(fixtures, '200_author_name.json')) }
|
||||
|
||||
it 'returns the expected array of users' do
|
||||
users = finder.aggressive
|
||||
|
||||
expect(users.size).to eql 1
|
||||
|
||||
user = users.first
|
||||
|
||||
expect(user.username).to eql 'admin sa'
|
||||
expect(user.confidence).to eql 70
|
||||
expect(user.found_by).to eql 'Oembed API - Author Name (Aggressive Detection)'
|
||||
expect(user.interesting_entries).to eql ['http://wp.lab/wp-json/oembed/1.0/embed?url=http://wp.lab/&format=json']
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -8,7 +8,6 @@ describe WPScan::Finders::Users::WpJsonApi do
|
||||
|
||||
describe '#aggressive' do
|
||||
before do
|
||||
# allow(target).to receive(:content_dir).and_return('wp-content')
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
stub_request(:get, finder.api_url).to_return(body: body)
|
||||
end
|
||||
|
||||
48
spec/app/finders/users/yoast_seo_author_sitemap_spec.rb
Normal file
48
spec/app/finders/users/yoast_seo_author_sitemap_spec.rb
Normal file
@@ -0,0 +1,48 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Users::YoastSeoAuthorSitemap do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
let(:url) { 'http://wp.lab/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('users', 'yoast_seo_author_sitemap') }
|
||||
|
||||
describe '#aggressive' do
|
||||
before do
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
|
||||
stub_request(:get, finder.sitemap_url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when not an XML response' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when an XML response' do
|
||||
context 'when no usernames disclosed' do
|
||||
let(:body) { File.read(fixtures.join('no_usernames.xml')) }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when usernames disclosed' do
|
||||
let(:body) { File.read(fixtures.join('usernames.xml')) }
|
||||
|
||||
it 'returns the expected array of users' do
|
||||
users = finder.aggressive
|
||||
|
||||
expect(users.size).to eql 2
|
||||
|
||||
expect(users.first.username).to eql 'editor'
|
||||
expect(users.first.confidence).to eql 100
|
||||
expect(users.first.interesting_entries).to eql ['http://wp.lab/author-sitemap.xml']
|
||||
|
||||
expect(users.last.username).to eql 'admin'
|
||||
expect(users.last.confidence).to eql 100
|
||||
expect(users.last.interesting_entries).to eql ['http://wp.lab/author-sitemap.xml']
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -8,7 +8,8 @@ describe WPScan::Finders::Users::Base do
|
||||
describe '#finders' do
|
||||
it 'contains the expected finders' do
|
||||
expect(user.finders.map { |f| f.class.to_s.demodulize })
|
||||
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator AuthorIdBruteForcing LoginErrorMessages]
|
||||
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator YoastSeoAuthorSitemap
|
||||
AuthorIdBruteForcing LoginErrorMessages]
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -91,5 +91,23 @@ describe WPScan::WpVersion do
|
||||
subject(:version) { described_class.new('3.8.1') }
|
||||
|
||||
its(:release_date) { should eql '2014-01-23' }
|
||||
|
||||
context 'when the version is not in the DB' do
|
||||
subject(:version) { described_class.new('3.8.2') }
|
||||
|
||||
its(:release_date) { should eql 'Unknown' }
|
||||
end
|
||||
end
|
||||
|
||||
describe '#status' do
|
||||
subject(:version) { described_class.new('3.8.1') }
|
||||
|
||||
its(:status) { should eql 'outdated' }
|
||||
|
||||
context 'when the version is not in the DB' do
|
||||
subject(:version) { described_class.new('3.8.2') }
|
||||
|
||||
its(:release_date) { should eql 'Unknown' }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
828
spec/fixtures/db/dynamic_finders.yml
vendored
828
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
5
spec/fixtures/db/wordpresses.json
vendored
5
spec/fixtures/db/wordpresses.json
vendored
@@ -1,9 +1,11 @@
|
||||
{
|
||||
"4.0": {
|
||||
"release_date" : "2014-09-04"
|
||||
"release_date" : "2014-09-04",
|
||||
"status": "latest"
|
||||
},
|
||||
"3.8.1": {
|
||||
"release_date" : "2014-01-23",
|
||||
"status": "outdated",
|
||||
"vulnerabilities" : [
|
||||
{
|
||||
"created_at" : "2014-08-01T10:58:19.000Z",
|
||||
@@ -30,6 +32,7 @@
|
||||
},
|
||||
"3.8": {
|
||||
"release_date" : "2013-12-12",
|
||||
"status": "insecure",
|
||||
"vulnerabilities" : [
|
||||
{
|
||||
"references": {
|
||||
|
||||
1037
spec/fixtures/dynamic_finders/expected.yml
vendored
1037
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
341
spec/fixtures/dynamic_finders/plugin_version/404-to-301/translation_file/languages/404-to-301.pot
vendored
Normal file
341
spec/fixtures/dynamic_finders/plugin_version/404-to-301/translation_file/languages/404-to-301.pot
vendored
Normal file
@@ -0,0 +1,341 @@
|
||||
# Copyright (C) 2018 Joel James
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 404 to 301 3.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://duckdev.com/products/404-to-301/\n"
|
||||
"POT-Creation-Date: 2018-08-24 08:32:46+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Joel James <me@joelsays.com>\n"
|
||||
"Language-Team: Joel James <me@joelsays.com>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/admin/class-jj4t3-admin.php:127
|
||||
msgid "Custom Redirect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-admin.php:151
|
||||
#: includes/admin/class-jj4t3-admin.php:212
|
||||
#: includes/admin/class-jj4t3-log-listing.php:47
|
||||
msgid "404 Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-admin.php:151
|
||||
msgid "404 Errors"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-admin.php:157
|
||||
msgid "404 to 301 Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-admin.php:157
|
||||
msgid "404 Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-admin.php:186
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "404 to 301"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-admin.php:339 includes/admin/views/admin.php:27
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-admin.php:340
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:46
|
||||
msgid "404 Error Log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:328
|
||||
#: includes/functions/jj4t3-general-functions.php:317
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:329
|
||||
#: includes/functions/jj4t3-general-functions.php:318
|
||||
#: includes/public/class-jj4t3-404-email.php:193
|
||||
msgid "404 Path"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:330
|
||||
#: includes/functions/jj4t3-general-functions.php:319
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:331
|
||||
#: includes/functions/jj4t3-general-functions.php:320
|
||||
#: includes/public/class-jj4t3-404-email.php:198
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:332
|
||||
#: includes/functions/jj4t3-general-functions.php:321
|
||||
msgid "User Agent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:333
|
||||
msgid "Customization"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:475
|
||||
msgid "Are you sure you want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:477
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:624
|
||||
#: includes/admin/views/custom-redirect.php:17
|
||||
#: includes/admin/views/custom-redirect.php:25
|
||||
#: includes/admin/views/custom-redirect.php:33
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:626
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:696
|
||||
msgid "Delete Selected"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:697
|
||||
msgid "Delete All"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:698
|
||||
msgid "Delete All (Keep redirects)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:735
|
||||
msgid "Group by"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-jj4t3-log-listing.php:740
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/admin.php:21
|
||||
msgid "by <a href=\"%s\">Joel James</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:11
|
||||
msgid "Redirecting from"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:15
|
||||
#: includes/functions/jj4t3-general-functions.php:322
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:18
|
||||
#: includes/admin/views/custom-redirect.php:26
|
||||
#: includes/admin/views/custom-redirect.php:34
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:19
|
||||
#: includes/admin/views/custom-redirect.php:27
|
||||
#: includes/admin/views/custom-redirect.php:35
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:23
|
||||
msgid "Error logging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:31
|
||||
msgid "Email alert"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:39
|
||||
#: includes/admin/views/settings.php:30
|
||||
msgid "Redirect to"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:42
|
||||
msgid ""
|
||||
"Enter the url if you want to set custom redirect for above 404 path. Enter "
|
||||
"the full url including http://. Leave empty if you want to follow deafult "
|
||||
"settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:51
|
||||
#: includes/admin/views/settings.php:17
|
||||
msgid "Redirect type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:58
|
||||
msgid "Select redirect type to override default one."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/custom-redirect.php:65
|
||||
msgid "Save Redirect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:24
|
||||
msgid "Learn more"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:24
|
||||
msgid "about these redirect types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:33 includes/admin/views/settings.php:37
|
||||
msgid "Existing Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:34 includes/admin/views/settings.php:38
|
||||
#: includes/admin/views/settings.php:52
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:35 includes/admin/views/settings.php:39
|
||||
msgid "No Redirect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:37
|
||||
msgid "Select any WordPress page as a 404 page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:38
|
||||
msgid "Redirect 404 requests to a specific URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:39
|
||||
msgid "To disable redirect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:40
|
||||
msgid ""
|
||||
"You can override this by setting individual custom redirects from error "
|
||||
"logs list."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:44
|
||||
msgid "Select the page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:47
|
||||
msgid "The default 404 page will be replaced by the page you choose in this list."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:48
|
||||
msgid ""
|
||||
"You can <a href=\"%s\" target=\"_blank\">create a custom 404</a> page and "
|
||||
"assign that page here."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:55
|
||||
msgid "Enter any url (including http://)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:59
|
||||
msgid "Log 404 Errors"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:62
|
||||
msgid "Enable/Disable Logging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:66
|
||||
msgid "Email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:69
|
||||
msgid ""
|
||||
"If you check this, an email will be sent on every 404 log on the admin "
|
||||
"email account."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:73
|
||||
msgid "Email address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:77
|
||||
msgid "Change the recipient email address for error log notifications."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:81
|
||||
msgid "Exclude paths"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:84
|
||||
msgid "If you want to exclude few paths from error logs, enter here. One per line."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/settings.php:89
|
||||
msgid "Save settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/jj4t3-general-functions.php:283
|
||||
msgid "301 Redirect (SEO)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/jj4t3-general-functions.php:284
|
||||
msgid "302 Redirect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions/jj4t3-general-functions.php:285
|
||||
msgid "307 Redirect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-jj4t3-404-email.php:141
|
||||
msgid "Snap! One more 404 on "
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-jj4t3-404-email.php:189
|
||||
msgid "Bummer! You have one more 404"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-jj4t3-404-email.php:203
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-jj4t3-404-email.php:208
|
||||
msgid "Referral Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-jj4t3-404-email.php:213
|
||||
msgid "Alert sent by the %s404 to 301%s plugin for WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://duckdev.com/products/404-to-301/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Automatically redirect all <strong>404 errors</strong> to any page using "
|
||||
"<strong>301 redirect for SEO</strong>. You can <strong>redirect and "
|
||||
"log</strong> every 404 errors. No more 404 errors in Webmaster tool."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Joel James"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://duckdev.com/"
|
||||
msgstr ""
|
||||
372
spec/fixtures/dynamic_finders/plugin_version/4nton-extensions/javascript_file/assets/js/script.js
vendored
Normal file
372
spec/fixtures/dynamic_finders/plugin_version/4nton-extensions/javascript_file/assets/js/script.js
vendored
Normal file
@@ -0,0 +1,372 @@
|
||||
/* Version: 1.2.1 */
|
||||
jQuery(document).ready(function($){
|
||||
var to=(function(){var timers={};return function(callback,ms,x_id){if(!x_id){x_id='';}if(timers[x_id]){clearTimeout(timers[x_id]);}timers[x_id]=setTimeout(callback,ms);};})(),id,xstyle,xtop,slr=300,show_popup=false,allottedtime,expiration,ifautofit = 0,rd_bxslider,ads_scrolltop,ae,aeii,ae_popup_title,ae_multiple,ae_loading = false,ae_upload_type,ae_media_type,ae_submit_text,ae_key;
|
||||
String.prototype.number_format = (function(d){
|
||||
var n = this,c = isNaN(d = Math.abs(d)) ? 2 : d,s = n < 0 ? "-" : "",i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "", j = (j = i.length) > 3 ? j % 3 : 0;
|
||||
return s + (j ? i.substr(0, j) + ',' : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + ',') + (c ? '.' + Math.abs(n - i).toFixed(c).slice(2) : "");
|
||||
});
|
||||
|
||||
var xa, xthis,xattach_id = 0,
|
||||
xb = $( '.ae-ua-upload .ae-upload' ),
|
||||
xc = $( '.ae-ua-upload .ae-new' ),
|
||||
xd = $( '.ae-ua-upload .ae-crop-wrap' ),
|
||||
xe = $( '.ae-ua-upload .ae-img-wrap' ),
|
||||
xawidth = parseInt( xb.attr( 'data-width' ) ),
|
||||
xawidth = ( xawidth ? xawidth : 300 ),
|
||||
xaheight = parseInt( xb.attr( 'data-height' ) ),
|
||||
xaheight = ( xaheight ? xaheight : 300 ),
|
||||
xboundaryw = xawidth + 200,
|
||||
xboundaryh = xaheight + 100;
|
||||
if( window.innerWidth <= xboundaryw ){
|
||||
xboundaryw = 300,
|
||||
xboundaryh = 200;
|
||||
xcroppie();
|
||||
}else{
|
||||
xcroppie();
|
||||
}
|
||||
function xcroppie(){
|
||||
xc.on( 'click', function() {
|
||||
xb.trigger( 'click' );
|
||||
});
|
||||
$( '.ae-ua-upload .edit-image' ).on( 'click', function() {
|
||||
if( ! xb.val() ){
|
||||
xb.trigger( 'click' );
|
||||
xc.hide();
|
||||
}else{
|
||||
xc.show();
|
||||
xd.fadeIn( function(){});
|
||||
}
|
||||
});
|
||||
$( '.ae-ua-upload .ae-cancel' ).on( 'click', function () {
|
||||
xd.fadeOut();
|
||||
});
|
||||
xb.on( 'change', function () {
|
||||
xthis = this;
|
||||
if( ! xa ){
|
||||
xa = $( '.ae-ua-upload .ae-crop' ).croppie({
|
||||
enableExif: true,
|
||||
viewport: {
|
||||
width: xawidth,
|
||||
height: xaheight,
|
||||
type: 'square'
|
||||
},
|
||||
boundary: {
|
||||
width: xboundaryw,
|
||||
height: xboundaryh
|
||||
}
|
||||
});
|
||||
}
|
||||
if( xa ){
|
||||
xd.fadeIn(function(){
|
||||
var xreader = new FileReader();
|
||||
xreader.onload = (function (e) {
|
||||
xa.croppie( 'bind', {
|
||||
url: e.target.result
|
||||
}).then(function(){});
|
||||
});
|
||||
if( xthis.files.length ){
|
||||
xreader.readAsDataURL( xthis.files[0] );
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
$( '.ae-ua-upload .ae-save' ).on( 'click', function () {
|
||||
xa.croppie( 'result', {
|
||||
type: 'base64',
|
||||
size: 'original'
|
||||
}).then(function ( resp ){
|
||||
if( xthis.files.length ){
|
||||
var xfiledata = xthis.files[0];
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url : ae_addon.ajaxurl,
|
||||
data : {
|
||||
action : 'user_avatar_upload',
|
||||
base64 : resp,
|
||||
file : xb.val(),
|
||||
filename : xfiledata.name,
|
||||
filetype : xfiledata.type,
|
||||
attach_id : xattach_id,
|
||||
key : xb.data( 'key' ),
|
||||
},
|
||||
beforeSend: function( response ) {
|
||||
if( ! xd.find( '#save-loading' ).length ){
|
||||
xd.find( '.cr-boundary' ).append( '<img id="save-loading" src="' + ae_addon.spinner2x + '" />' );
|
||||
}
|
||||
},
|
||||
success: function( response ){
|
||||
if(response){
|
||||
var data = JSON.parse(response);
|
||||
xattach_id = data.attach_id;
|
||||
if( data.attach_id ){
|
||||
xe.find( 'img.image' ).attr( 'src', data.attach_url ).parent( '.ae-img-wrap' ).addClass( 'ae-img-active' );
|
||||
xd.find( '#save-loading' ).remove();
|
||||
xd.fadeOut();
|
||||
}else{
|
||||
xe.find( 'img.image' ).parent( '.ae-img-wrap' ).removeClass( 'ae-img-active' );
|
||||
xd.fadeOut();
|
||||
xd.find( '#save-loading' ).remove();
|
||||
alert( 'ERROR #1: something went wrong !!!' );
|
||||
}
|
||||
}else{
|
||||
xe.find( 'img.image' ).parent( '.ae-img-wrap' ).removeClass( 'ae-img-active' );
|
||||
xd.fadeOut();
|
||||
xd.find( '#save-loading' ).remove();
|
||||
alert( 'ERROR #2: something went wrong !!!' );
|
||||
}
|
||||
},
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
var a, _this,attach_id = 0,
|
||||
b = $( '.ae-upload .ae-upload' ),
|
||||
c = $( '.ae-upload .ae-new' ),
|
||||
d = $( '.ae-upload .ae-crop-wrap' ),
|
||||
e = $( '.ae-upload .ae-img-wrap' ),
|
||||
awidth = parseInt( b.attr( 'data-width' ) ),
|
||||
awidth = ( awidth ? awidth : 300 ),
|
||||
aheight = parseInt( b.attr( 'data-height' ) ),
|
||||
aheight = ( aheight ? aheight : 300 ),
|
||||
boundaryw = awidth + 200,
|
||||
boundaryh = aheight + 100;
|
||||
if( window.innerWidth <= boundaryw ){
|
||||
boundaryw = 300,
|
||||
boundaryh = 200;
|
||||
croppie();
|
||||
}else{
|
||||
croppie();
|
||||
}
|
||||
function croppie(){
|
||||
c.on( 'click', function() {
|
||||
b.trigger( 'click' );
|
||||
});
|
||||
$( '.ae-upload .edit-image' ).on( 'click', function() {
|
||||
if( ! b.val() ){
|
||||
b.trigger( 'click' );
|
||||
c.hide();
|
||||
}else{
|
||||
c.show();
|
||||
d.fadeIn( function(){});
|
||||
}
|
||||
});
|
||||
$( '.ae-upload .ae-cancel' ).on( 'click', function () {
|
||||
d.fadeOut();
|
||||
});
|
||||
b.on( 'change', function () {
|
||||
_this = this;
|
||||
if( ! a ){
|
||||
a = $( '.ae-upload .ae-crop' ).croppie({
|
||||
enableExif: true,
|
||||
viewport: {
|
||||
width: awidth,
|
||||
height: aheight,
|
||||
type: 'square'
|
||||
},
|
||||
boundary: {
|
||||
width: boundaryw,
|
||||
height: boundaryh
|
||||
}
|
||||
});
|
||||
}
|
||||
if( a ){
|
||||
d.fadeIn(function(){
|
||||
var reader = new FileReader();
|
||||
reader.onload = (function (e) {
|
||||
a.croppie( 'bind', {
|
||||
url: e.target.result
|
||||
}).then(function(){
|
||||
/*console.log( 'jQuery bind complete' );*/
|
||||
});
|
||||
});
|
||||
if( _this.files.length ){
|
||||
reader.readAsDataURL( _this.files[0] );
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
$( '.ae-upload .ae-save' ).on( 'click', function () {
|
||||
a.croppie( 'result', {
|
||||
type: 'base64',
|
||||
size: 'original'
|
||||
}).then(function ( resp ){
|
||||
if( _this.files.length ){
|
||||
var filedata = _this.files[0];
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url : ae_addon.ajaxurl,
|
||||
data : {
|
||||
action : 'single_image_crop',
|
||||
base64 : resp,
|
||||
file : b.val(),
|
||||
filename : filedata.name,
|
||||
filetype : filedata.type,
|
||||
attach_id : attach_id,
|
||||
key : $(b.attr( 'data-id' )).attr( 'id' ),
|
||||
},
|
||||
beforeSend: function( response ) {
|
||||
if( ! d.find( '#save-loading' ).length ){
|
||||
d.find( '.cr-boundary' ).append( '<img id="save-loading" src="' + ae_addon.spinner2x + '" />' );
|
||||
}
|
||||
},
|
||||
success: function( response ){
|
||||
if(response){
|
||||
var data = JSON.parse(response);
|
||||
attach_id = data.attach_id;
|
||||
if( data.attach_id && $(b.attr( 'data-id' )).length ){
|
||||
e.find( 'img.image' ).attr( 'src', data.attach_url ).parent( '.ae-img-wrap' ).addClass( 'ae-img-active' );
|
||||
$(b.attr( 'data-id' )).val( data.attach_url );
|
||||
d.find( '#save-loading' ).remove();
|
||||
d.fadeOut();
|
||||
}else{
|
||||
e.find( 'img.image' ).parent( '.ae-img-wrap' ).removeClass( 'ae-img-active' );
|
||||
d.fadeOut();
|
||||
d.find( '#save-loading' ).remove();
|
||||
alert( 'ERROR #3: something went wrong !!!' );
|
||||
}
|
||||
}else{
|
||||
e.find( 'img.image' ).parent( '.ae-img-wrap' ).removeClass( 'ae-img-active' );
|
||||
d.fadeOut();
|
||||
d.find( '#save-loading' ).remove();
|
||||
alert( 'ERROR #4: something went wrong !!!' );
|
||||
}
|
||||
},
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
if($('#apmediaupload').length){
|
||||
$(document).delegate('#apmediaupload','click',function(){
|
||||
if(ae_loading){return;}
|
||||
ae_filed_id = $(this).attr('field_id');
|
||||
ae_popup_title = String($(this).attr('popup_title'));
|
||||
ae_multiple = $(this).attr('multiple');
|
||||
ae_upload_type = $(this).attr('upload_type');
|
||||
ae_media_type = $(this).attr('media_type');
|
||||
ae_submit_text = $(this).attr('submit_text');
|
||||
ae_key = $(this).attr('key');
|
||||
if(ae_multiple == 'true'){
|
||||
ae_multiple = true;
|
||||
}else if(ae_multiple == 'add'){
|
||||
ae_multiple = 'add';
|
||||
}else{
|
||||
ae_multiple = false;
|
||||
}
|
||||
if(ae_media_type == 'image'){
|
||||
ae = wp.media.frames.file_frame = wp.media({
|
||||
multiple: ae_multiple,
|
||||
title: ae_popup_title,
|
||||
type: ae_media_type,
|
||||
library:{type: ae_media_type},
|
||||
button:{text : ae_submit_text},
|
||||
});
|
||||
ae.on('select', function(){
|
||||
attachment = ae.state().get('selection').toJSON();
|
||||
var ids = [];
|
||||
var images = [];
|
||||
for (i = 0; i < attachment.length; i++){
|
||||
ids[i] = attachment[i]['id'];
|
||||
images[i] = attachment[i]['url'];
|
||||
}
|
||||
if(! ids){return;}
|
||||
if(ae_upload_type == 'single'){
|
||||
ids = ids[0];
|
||||
}
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url : ae.ajaxurl,
|
||||
data :{
|
||||
action : 'ae_ajax',
|
||||
ids : ids,
|
||||
multiple : ae_multiple,
|
||||
type : ae_upload_type,
|
||||
media_type : ae_media_type,
|
||||
},
|
||||
beforeSend: function(response){
|
||||
ae_loading = true;
|
||||
if(ae_upload_type == 'single'){
|
||||
$('.agfmu-' + ae_filed_id.replace('#','').replace(' ','')).css({
|
||||
'background-image' : "url('" + ae.homeurl + "/wp-includes/images/spinner-2x.gif')",
|
||||
'background-position' : 'center center',
|
||||
'background-repeat' : 'no-repeat',
|
||||
'background-size' : 'auto',
|
||||
});
|
||||
}
|
||||
},
|
||||
success: function(response){
|
||||
if(response && ae_upload_type == 'single'){
|
||||
$(ae_filed_id).val(response);
|
||||
}
|
||||
if(response && ae_upload_type == 'gallery'){
|
||||
var data = JSON.parse(response);
|
||||
$(ae_filed_id).val(data.ids);
|
||||
}
|
||||
if(response && ae_upload_type == 'single'){
|
||||
$('.agfmu-' + ae_filed_id.replace('#','').replace(' ','')).css({
|
||||
'background-image' : 'url('+images[0]+')',
|
||||
'background-size' : 'auto',
|
||||
});
|
||||
}
|
||||
if(response && ae_upload_type == 'gallery'){
|
||||
var data = JSON.parse(response);
|
||||
$('#gallery-' + ae_filed_id.replace('#', '').replace(' ', '')).html(data.preview);
|
||||
}
|
||||
setTimeout(function(){
|
||||
ae_loading = false;
|
||||
}, 300);
|
||||
},
|
||||
});
|
||||
});
|
||||
ae.on('open', function(){
|
||||
var selection = ae.state().get('selection');
|
||||
ids = $('input' + ae_filed_id).val();
|
||||
if(ids){
|
||||
ids = ids.split(",");
|
||||
if(ids){
|
||||
ids.forEach(function(id){
|
||||
attachments = wp.media.attachment(id);
|
||||
attachments.fetch();
|
||||
selection.add(attachments ? [ attachments ] : []);
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
ae.open();
|
||||
}
|
||||
});
|
||||
}
|
||||
$( window ).on( 'resize', function(){
|
||||
to(function(){
|
||||
if( window.innerWidth <= boundaryw ){
|
||||
a.destroy();
|
||||
boundaryw = 300,
|
||||
boundaryh = 200;
|
||||
croppie();
|
||||
}
|
||||
},200);
|
||||
});
|
||||
function ajax_search(id){
|
||||
name = $(id).attr('name');
|
||||
if(! $(id).val()){$('.rd-ajax .sr').html('').hide(); return;}
|
||||
$('.rd-ajax .sr').html('<span class="loading"> </span>');
|
||||
to(function(){
|
||||
$.ajax({
|
||||
url : ae.ajaxurl,
|
||||
type : 'post',
|
||||
data :{
|
||||
action : 'location_ajax',
|
||||
value : $(id).val(),
|
||||
name : name
|
||||
},
|
||||
success : function(data){
|
||||
$('.rd-ajax .sr').html(data).show();
|
||||
}
|
||||
});
|
||||
}, 200);
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"name": "andrejpavlovic/acf-conditional-logic-advanced",
|
||||
"description": "Adds an Advanced Conditional Logic field setting to ACF that can show/hide individual fields based on post template, format, and/or category.",
|
||||
"version": "1.1.3",
|
||||
"type": "wordpress-plugin",
|
||||
"license": "GPL-2.0"
|
||||
}
|
||||
@@ -0,0 +1,167 @@
|
||||
/*Default Plugin Styles*/
|
||||
/*plugin version 4.0.3.3*/
|
||||
a[target="amazonwin"] {margin: 0 !important;}
|
||||
a[rel^="appiplightbox"] { display: inline-block; font-size: .75rem; text-align: center; max-width: 100%; }
|
||||
.instock { color: #008000; font-size: .85em; }
|
||||
.outofstock { color: #800000; font-size: .85em; }
|
||||
.amazon-image-wrapper { padding: 0 1%; text-align: center;float: left; margin: 0 2% 0 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box; box-sizing: border-box; max-width: 25%; width: 100%; }
|
||||
.amazon-image-wrapper a { border-bottom: none; display: block; font-size: 12px; text-align: center; }
|
||||
.amazon-image-wrapper br {display: none;}
|
||||
.asin-title {text-align: left; font-size: inherit;}
|
||||
.appip-label {color: #666; font-size: inherit;font-weight: bold;text-transform: uppercase;}
|
||||
.appip-multi-divider {margin: 10px 0;}
|
||||
.amazon-asin-title {margin: 0 0 5px 0; }
|
||||
.amazon-author { color: #666; }
|
||||
.amazon-buying {text-align: left; box-sizing: border-box; float: left; max-width: 73%; width: 100%; }
|
||||
.amazon-dates { padding: 0 !important; text-align: left; height: auto;}
|
||||
.amazon-dates br {display: none;}
|
||||
.amazon-dates .amazon-preorder { color: #d16601; font-weight: bold; text-align: left; }
|
||||
.amazon-dates .amazon-release-date { color: #666; font-size: 10px; text-align: left; }
|
||||
.amazon-director { color: #666; }
|
||||
.amazon-director-label { color: #999; }
|
||||
.amazon-ESRB { color: #666; font-size : 12px;}
|
||||
.amazon-feature { color: #666; font-size : inherit;}
|
||||
.amazon-manufacturer { color: #666; }
|
||||
.amazon-new { color: #800000; font-weight: bold; text-align: left; }
|
||||
.amazon-new-label { color: #666; text-align: left;}
|
||||
.amazon-platform { color: #666; font-size : 12px;}
|
||||
.amazon-post-text { padding: 0 !important; text-align: left; }
|
||||
.amazon-price-label { color: #666; text-align: left; }
|
||||
.amazon-price { color: #800000; font-weight: bold; text-align: left; }
|
||||
.amazon-rating { color: #666; }
|
||||
.amazon-rating-label { color: #999; }
|
||||
.amazon-starring { color: #666; }
|
||||
.amazon-starring-label { color: #999; }
|
||||
.amazon-system { color: #666; font-size : 12px;}
|
||||
.amazon-tiny {text-align: center;font-size: 10px;}
|
||||
.amazon-used { color: #666; text-align: left; }
|
||||
.amazon-used-label { color: #666; text-align: left; }
|
||||
.amazon-list-price { text-align: left; text-decoration: line-through; }
|
||||
.amazon-list-price-label { color: #666; text-align: left; }
|
||||
.amazon-list-price-label, .amazon-new-label, .amazon-used-label { font-weight: bold; min-width: 7em;width: auto;}
|
||||
.amazon-product-table { border-collapse: collapse; border: 0 none !important; width: 100%; clear: both; margin-bottom: 10px;}
|
||||
.amazon-product-table td{ border: 0 none ; padding: 0; }
|
||||
.amazon-product-table:after {clear: both;}
|
||||
.amazon-product-table a { border-bottom: 0 none; text-decoration: none; }
|
||||
.amazon-product-table > tbody > tr > td {padding: .5rem !important;}
|
||||
.amazon-product-table hr {display:inline-block;max-width:100%; width: 100%; border-top: 1px solid #e2e5e7;height: 0px; margin: 6px 0;}
|
||||
.amazon-product-table .amazon-buying h2.amazon-asin-title { border-bottom: 0 none; font-size: 1rem; line-height: 1.25em; margin: 0; }
|
||||
.amazon-product-table .amazon-list-variants {border-top: 1px solid #CCC;border-bottom: 1px solid #ccc;padding: 2%;margin-top:2%;}
|
||||
.amazon-product-price { border-collapse: collapse; border: 0 none; padding: 0 !important; }
|
||||
.amazon-product-price { -moz-border-radius: 0; -webkit-border-radius: 0; border-collapse: collapse; border-radius: 0; border: 0 none; margin: 0; max-width: 100%; width: auto; }
|
||||
.amazon-product-price { float: left; margin: 0; width: 100%; }
|
||||
.amazon-product-price a img.amazon-image { background-color: transparent; border: 0 none; }
|
||||
.amazon-product-price td { border: 0 none !important; padding: .25em 0; }
|
||||
.amazon-product-price td { padding: 1%; width: auto; }
|
||||
.amazon-product-price tr:first-child td {width:7em;}
|
||||
.amazon-price-button{margin-top:2%;display:block;}
|
||||
.amazon-price-button > a{display:block;margin-top:8px;margin-bottom:5px;width:165px;}
|
||||
.amazon-price-button > a img.amazon-price-button-img{border:0 none;margin:0px;background:transparent;}
|
||||
.amazon-additional-images-text { display: block; font-size: x-small; font-weight: bold; }
|
||||
.amazon-element-imagesets { border: 1px solid #ccc; display: inline-block; margin: 5px; overflow: hidden; padding: 10px; }
|
||||
.amazon-element-imagesets br {display: none;}
|
||||
.amazon-element-imagesets a { float: left; margin: 3px; }
|
||||
.amazon-element-imagesets a img {border: 1px solid #fff;}
|
||||
.amazon-additional-images-wrapper { border: 1px solid #ccc; box-sizing: border-box; display: inline-block; margin: 1%; overflow: hidden; padding: 2%; }
|
||||
.amazon-additional-images-wrapper a { float: left; margin: 3px; }
|
||||
.amazon-additional-images-wrapper a img {border: 1px solid #fff;width:25px;}
|
||||
.amazon-additional-images-wrapper br {display: none;}
|
||||
.amazon_variations_wrapper{}
|
||||
.amazon_varients{}
|
||||
.amazon-varient-type-link {display: inline-block;font-weight: bold;}
|
||||
.amazon-varient-type-price {display: inline-block;color: #EA0202;font-weight: bold;}
|
||||
.amazon-variant-price-text{color:initial;}
|
||||
.amazon-variant-price-text {font-weight: normal;}
|
||||
.amazon-elements-wrapper,
|
||||
.amazon-element-wrapper{clear: both;}
|
||||
img.amazon-varient-image {max-width: 50px;margin: 1%;padding: 1px;background-color: #999;}
|
||||
img.amazon-varient-image:hover {background-color: #3A9AD9;}
|
||||
/*
|
||||
a.amazon__price--button--style,
|
||||
a.amazon__price--button--style:visited {background-color: #444;padding: 10px 20px;margin: 5px 0;display: inline-block;text-decoration: none;color: #fff;-moz-transition: all .5s ease;-webkit-transition: all .5s ease;transition: all .5s ease;}
|
||||
a.amazon__price--button--style:hover {background-color: #2196F3;text-decoration: none;color: #fff;}
|
||||
a.amazon__price--button--style:focus,
|
||||
a.amazon__price--button--style:active{outline: 0;-moz-box-shadow:0 0 5px #2196F3;-webkit-box-shadow:0 0 5px #2196F3;box-shadow: 0 0 5px #2196F3;}
|
||||
a.amazon__price--button--style{ background-color: #2196F3;text-decoration: none;color: #fff;}
|
||||
*/
|
||||
body[class*=amp-mode] .amazon-image-wrapper a amp-img img{height:auto;position:relative;}
|
||||
body[class*=amp-mode] .amazon-image-wrapper a amp-img>*{padding:0;}
|
||||
body[class*=amp-mode] table{width:100%;background:0 0}
|
||||
body[class*=amp-mode] .amazon-buying{padding:4px}
|
||||
body[class*=amp-mode] .amazon-image-wrapper{margin:0;background:0 0;padding:4px}
|
||||
body[class*=amp-mode] .amazon-buying hr{border-style:solid;border-width:0 0 1px;border-color:#ccc}
|
||||
body[class*=amp-mode] h2.amazon-asin-title{max-width:100%;font-size:1.3em;line-height:1.35;background:0 0}
|
||||
body[class*=amp-mode] .amazon-product-pricing-wrap{max-width:100%}
|
||||
body[class*=amp-mode] .amazon-product-pricing-wrap table tr td{border:0;background:0 0;margin:0;padding:0 2px;display:inline-block;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}
|
||||
body[class*=amp-mode] .amazon-product-pricing-wrap table tr{border:0;background:0 0;margin:0;padding:2px;text-align:left}
|
||||
body[class*=amp-mode] .amazon-image-wrapper amp-img{width:160px;margin:0 auto;max-width:100%}
|
||||
body[class*=amp-mode] .amazon-image-wrapper>a{display:block;text-align:center}
|
||||
body[class*=amp-mode] .amazon-image-wrapper>br{display:none}
|
||||
body[class*=amp-mode] .amazon-product-pricing-wrap table tr td:last-child:first-child,
|
||||
body[class*=amp-mode] .amazon-product-pricing-wrap tbody,
|
||||
body[class*=amp-mode] .amazon-product-pricing-wrap tr{width:100%;display:block}
|
||||
body[class*=amp-mode] .amazon-price-button amp-img{margin:0 auto}
|
||||
body[class*=amp-mode] p.amazon-asin-title{margin-bottom:0;font-size:1.25em;line-height:1.35}
|
||||
body[class*=amp-mode] .amazon-product-pricing-wrap table{background:0 0}
|
||||
body[class*=amp-mode] .amazon-image-wrapper .amazon-additional-images-wrapper amp-img{width:50px;display:inline-block;margin:0 2px}
|
||||
body[class*=amp-mode] span.amazon-additional-images-text{display:block}
|
||||
body[class*=amp-mode] .amazon-additional-images-wrapper{line-height:1.25;text-align:center}
|
||||
body[class*=amp-mode] .amazon-additional-images-wrapper br{display:none}
|
||||
.appip-clear { clear: both; }
|
||||
.appip-debug .appip-errors { display: block !important; color: #FEFEFE; background: #cd0000; padding: 1%; font-weight: bold; font-size: 16px; }
|
||||
|
||||
/* New Flat Button Styles 4.0.3.3*/
|
||||
.button-rounded{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
|
||||
/* default */
|
||||
.amazon__price--button--style,
|
||||
.amazon__price--button--style:visited {background-color: #444;padding: 10px 20px;margin: 5px 0;display: inline-block;text-decoration: none;color: #fff;-moz-transition: all .5s ease;-webkit-transition: all .5s ease;transition: all .5s ease;}
|
||||
.amazon__price--button--style:hover {cursor:pointer;background-color: #666;text-decoration: none;color: #fff;}
|
||||
.amazon__price--button--style:focus {color: #fff;background-color: #595959;outline: 0;-moz-box-shadow: 0 0 5px #9c9c9c;-webkit-box-shadow: 0 0 5px #9c9c9c;box-shadow: 0 0 5px #9c9c9c;text-decoration: none;}
|
||||
.amazon__price--button--style:active {color: #fff;background-color: #595959;outline: 0;text-decoration: none;-moz-box-shadow:0px 3px 9px rgba(0, 0, 0, 0.43) inset;-webkit-box-shadow:0px 3px 9px rgba(0, 0, 0, 0.43) inset;box-shadow:0px 3px 9px rgba(0, 0, 0, 0.43) inset;}
|
||||
/* blue */
|
||||
.amazon__btn--blue,
|
||||
.amazon__btn--blue:visited{color: #fff;background-color: #0085ba;}
|
||||
.amazon__btn--blue:hover {color: #fff;background-color: #008ec2;}
|
||||
.amazon__btn--blue:focus {color: #fff;background-color: #0073aa;-moz-box-shadow: 0 0 5px #2196F3;-webkit-box-shadow: 0 0 5px #2196F3;box-shadow: 0 0 5px #2196F3;}
|
||||
.amazon__btn--blue:active{color: #fff;background-color: #0073aa;}
|
||||
/* red */
|
||||
.amazon__btn--red,
|
||||
.amazon__btn--red:visited{color: #fff;background-color: #e10505;}
|
||||
.amazon__btn--red:hover {color: #fff;background-color: #f00;}
|
||||
.amazon__btn--red:focus {color: #fff;background-color: #a70707;-moz-box-shadow: 0 0 5px #ff338e;-webkit-box-shadow: 0 0 5px #ff338e;box-shadow: 0 0 5px #ff338e;}
|
||||
.amazon__btn--red:active{color: #fff;background-color: #a70707;}
|
||||
/* green */
|
||||
.amazon__btn--green,
|
||||
.amazon__btn--green:visited{color: #fff;background-color: #4aa74e;}
|
||||
.amazon__btn--green:hover {color: #fff;background-color: #2f8d33;}
|
||||
.amazon__btn--green:focus {color: #fff;background-color: #17851c;-moz-box-shadow: 0 0 5px #8BC34A;-webkit-box-shadow: 0 0 5px #8BC34A;box-shadow: 0 0 5px #8BC34A;}
|
||||
.amazon__btn--green:active{color: #fff;background-color: #17851c;}
|
||||
|
||||
@media screen and (min-width:550px){
|
||||
body[class*=amp-mode] .amazon-image-wrapper{float:left;width:28%}
|
||||
body[class*=amp-mode] .amazon-buying{float:left;width:70%}
|
||||
body[class*=amp-mode] .amazon-price-button amp-img{margin:5px 0 0}
|
||||
body[class*=amp-mode] p.amazon-asin-title{margin-bottom:12px}
|
||||
}
|
||||
@media only screen and (max-width : 1200px) {}
|
||||
@media only screen and (max-width : 992px) {}
|
||||
@media only screen and (max-width : 768px) {}
|
||||
@media only screen and (max-width : 550px) {
|
||||
.amazon-image-wrapper { padding: 0; text-align: center; float: none; margin: 0 auto 2%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; max-width: 75%; width: 100%; }
|
||||
.amazon-buying { box-sizing: border-box; float: none; max-width: 100%; width: 100%; }
|
||||
.amazon-product-price,table.amazon-product-price { float: none; margin: 0; max-width: 100%; width: 100%; }
|
||||
.amazon-product-pricing-wrap { display: block; clear: both; }
|
||||
.amazon-dates { text-align: center; }
|
||||
.amazon-dates a { margin: 0 auto !important; width: 50% !important; }
|
||||
.amazon-dates a img { margin: 5% auto 0 !important; width: 95% !important; }
|
||||
span.amazon-tiny {margin-top: 2px;background: #ccc;padding:1%;display: block;font-size: 1.25em;color: #000;text-transform: uppercase;border: 1px solid #999;line-height: 1.25em;}
|
||||
span.amazon-tiny:active {background: #EDEDED;}
|
||||
.amazon-product-table .amazon-buying h2.amazon-asin-title {margin-top: 3%;display: block;line-height: 1.5em;}
|
||||
.amazon-additional-images-wrapper { max-width: 100%; width: 100%; margin: 1% 0; text-align: center; }
|
||||
.amazon-additional-images-wrapper a { float: none; display: inline-block; width: 18%; margin: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
|
||||
.amazon-additional-images-wrapper a img { width: 75%; }
|
||||
td.amazon-list-price-label, td.amazon-new-label, td.amazon-used-label, td.amazon-used-price, td.amazon-new, td.amazon-list-price { display: inline-block; }
|
||||
a.amazon__price--button--style {max-width: 90%;margin: 5px auto;}
|
||||
}
|
||||
@media only screen and (max-width : 320px) {}
|
||||
/* Custom Styles*/
|
||||
@@ -0,0 +1,215 @@
|
||||
# Copyright (C) 2018 B2BinPay Payments for WooCommerce
|
||||
# This file is distributed under the same license as the B2BinPay Payments for WooCommerce package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: B2BinPay Payments for WooCommerce 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/b2binpay-payments-for-woocommerce\n"
|
||||
"POT-Creation-Date: 2018-12-03 12:51:30+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:211
|
||||
msgid "Enable B2BinPay"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:212
|
||||
msgid "Enable CryptoCurrency payments via B2BinPay"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:218
|
||||
msgid "B2BinPay logo"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:220
|
||||
msgid "Show B2BinPay logo aside payment method title"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:225
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:227
|
||||
msgid "The payment method title which a customer sees at the checkout of your store."
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:228
|
||||
msgid "CryptoCurrency"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:231
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:233
|
||||
msgid "The payment method description which a user sees at the checkout of your store."
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:234
|
||||
msgid "Pay with Bitcoin, Bitcoin Cash, Litecoin, Ethereum & more."
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:237
|
||||
msgid "Test (Sandbox)"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:239
|
||||
msgid "Enable Test Mode (Sandbox)"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:242
|
||||
msgid "To test on Sandbox, turn Test Mode \"On\""
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:243
|
||||
msgid "Warning: Sandbox and main gateway has their own pairs of key and secret!"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:246
|
||||
msgid "Auth Key"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:248
|
||||
msgid "B2BinPay API Auth Key"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:252
|
||||
msgid "Auth Secret"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:254
|
||||
msgid "B2BinPay API Auth Secret"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:261
|
||||
msgid "Markup (%)"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:263
|
||||
msgid "Markup percentage for each payment"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:267
|
||||
msgid "Order lifetime (seconds)"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:269
|
||||
msgid "Lifetime for your orders in seconds"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: link to B2BinPay
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:288
|
||||
msgid "Accept Bitcoin, Bitcoin Cash, Litecoin, Ethereum & more through %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: open link tag %2$s: close link tag
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:296
|
||||
msgid "Check out the list of %1$sAvailable CryptoCurrencies%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:446
|
||||
msgid "Payment error: "
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: amount %2$s: currency %3$s: bill id
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:464
|
||||
msgid "B2BinPay created new invoice for %1$s %2$s. Bill ID: %3$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: bill id
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:526
|
||||
msgid "B2BinPay payment complete! Bill ID: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: amount %2$s: currency %3$s: amount %4$s: currency %5$s:
|
||||
#. bill id
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:548
|
||||
msgid "B2BinPay received payment. Current amount: %1$s %2$s. Requested amount: %3$s %4$s. Bill ID: %5$s"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:585
|
||||
msgid "B2BinPay payment error! Bill ID: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:586
|
||||
msgid "B2BinPay payment expired! Bill ID: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:587
|
||||
msgid "B2BinPay payment freeze! Bill ID: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:588
|
||||
msgid "B2BinPay payment closed! Bill ID: %s"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:602
|
||||
msgid "B2BinPay wallets:"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:609
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:610
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:611
|
||||
msgid "Currency alpha"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:612
|
||||
msgid "Currency ISO"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:636
|
||||
msgid "+ Add wallet"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:638
|
||||
msgid "Remove selected wallet(s)"
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:683
|
||||
msgid "B2BinPay error: You need to enter your wallet id(s)."
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:723
|
||||
msgid "B2BinPay error: Incorrect wallet id."
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:757
|
||||
msgid "B2BinPay error: Wrong key/secret pair."
|
||||
msgstr ""
|
||||
|
||||
#: class-wc-gateway-b2binpay.php:787
|
||||
msgid "Order Statuses"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "B2BinPay Payments for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/b2binpay-payments-for-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Accept Bitcoin, Bitcoin Cash, Litecoin, Ethereum and other CryptoCurrencies via B2BinPay."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "B2BinPay"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.b2binpay.com"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,225 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Booking.com Product Helper 1.0.0\n"
|
||||
"POT-Creation-Date: 2018-11-07 16:06+0100\n"
|
||||
"PO-Revision-Date: 2018-11-27 13:54+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Booking.com\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;e;esc_html__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
# The link in Plugins section
|
||||
#: bookingcom-product-helper.php:104
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:181
|
||||
#, php-format
|
||||
msgid "Booking.com Product Helper with id %s successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
# /* translators: %s: Booking.com logo text */
|
||||
#: bookingcom-product-helper.php:202
|
||||
#, php-format
|
||||
msgid "%s Product Helper"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:218 bookingcom-product-helper.php:229
|
||||
msgid "New product shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:257
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:265
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
# /* translators: %s: Shortcode ID */
|
||||
#: bookingcom-product-helper.php:298
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Shortcode %s successfully copied to your clipboard. Now, just paste it into "
|
||||
"your webpage or post."
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:306
|
||||
msgid "Copy to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:321
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:328
|
||||
msgid ""
|
||||
"Are you sure you want to delete this shortcode? Once deleted, you cannot "
|
||||
"recreate it."
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:332
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:355
|
||||
msgid "Your product list is empty."
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:395
|
||||
msgid "Booking.com widget embedded code can't be empty"
|
||||
msgstr ""
|
||||
|
||||
# /* translators: %s: Shortcode ID */
|
||||
#: bookingcom-product-helper.php:414
|
||||
#, php-format
|
||||
msgid "Your Booking.com product shortcode %s was successfully updated."
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:433 bookingcom-product-helper.php:674
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
# /* translators: %s: Shortcode ID */
|
||||
#: bookingcom-product-helper.php:445
|
||||
#, php-format
|
||||
msgid "Edit %s product shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:468 bookingcom-product-helper.php:707
|
||||
msgid "Product shortname"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:476 bookingcom-product-helper.php:715
|
||||
msgid ""
|
||||
"Enter a unique name that you can use to identify your shortcode. Only use "
|
||||
"letters A-Z and numbers 0-9, no symbols."
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:496 bookingcom-product-helper.php:738
|
||||
msgid "Product code"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:504 bookingcom-product-helper.php:746
|
||||
msgid ""
|
||||
"Paste the full embed code you generated after creating the product on "
|
||||
"Booking.com Affiliate Partner Centre."
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:526 bookingcom-product-helper.php:769
|
||||
msgid "Short description (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:534 bookingcom-product-helper.php:777
|
||||
msgid ""
|
||||
"If you want you can add a description of the product you're adding. This "
|
||||
"will only be visible to the admin and will not show when you add the "
|
||||
"shortcode to your WordPress page or post. 100 characters max."
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:559
|
||||
msgid "Update product shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:568 bookingcom-product-helper.php:808
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
# /* translators: %s: Shortcode ID */
|
||||
#: bookingcom-product-helper.php:622
|
||||
#, php-format
|
||||
msgid "An error occurred. The shortname %s already exists."
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:633
|
||||
msgid ""
|
||||
"Something went wrong. Your Booking.com product shortcode has not been "
|
||||
"created."
|
||||
msgstr ""
|
||||
|
||||
# /* translators: %s: Shortcode ID */
|
||||
#: bookingcom-product-helper.php:655
|
||||
#, php-format
|
||||
msgid "Your Booking.com product shortcode %s was successfully created."
|
||||
msgstr ""
|
||||
|
||||
# /* translators: %s: Shortcode ID */
|
||||
#: bookingcom-product-helper.php:685
|
||||
#, php-format
|
||||
msgid "Create %s product shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: bookingcom-product-helper.php:799
|
||||
msgid "Create product shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: views/info.php:6
|
||||
msgid "How to use the Booking.com Product Helper"
|
||||
msgstr ""
|
||||
|
||||
#: views/info.php:30
|
||||
msgid "STEP 1"
|
||||
msgstr ""
|
||||
|
||||
#: views/info.php:37
|
||||
msgid "Get your product embed code"
|
||||
msgstr ""
|
||||
|
||||
# // translators: %1$s: Link on affiliate partner centre; %2$s: Link on sign up form in Partner affiliate centre.
|
||||
#: views/info.php:48
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Copy the embed code of the product you want to add (eg Map Widget, Search "
|
||||
"Box, etc) from the Booking.com %1$s. If you are not an affiliate partner "
|
||||
"yet, %2$s to sign up for the Affiliate Partner Programme."
|
||||
msgstr ""
|
||||
"Copy the embed code of the product you want to add (eg Map Widget, Search "
|
||||
"Box, etc) from the Booking.com %1$s. If you are not an affiliate partner "
|
||||
"yet, click here to sign up for the %2$s."
|
||||
|
||||
#: views/info.php:60
|
||||
msgid "Visit Affiliate Partner Centre"
|
||||
msgstr ""
|
||||
|
||||
#: views/info.php:72
|
||||
msgid "STEP 2"
|
||||
msgstr ""
|
||||
|
||||
#: views/info.php:79
|
||||
msgid "Create a shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: views/info.php:87
|
||||
msgid ""
|
||||
"Click on the \"new product shortcode\" button, give it a name and paste the "
|
||||
"embed code into the \"product code\" field. Click on \"create product "
|
||||
"shortcode\" to create the shortcode."
|
||||
msgstr ""
|
||||
|
||||
#: views/info.php:98
|
||||
msgid "STEP 3"
|
||||
msgstr ""
|
||||
|
||||
#: views/info.php:105
|
||||
msgid "Add your shortcode"
|
||||
msgstr ""
|
||||
|
||||
# // translators: %s: Code example.
|
||||
#: views/info.php:116
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Copy the shortcode you generated eg %s and add it to the desired part of "
|
||||
"your WordPress website (page, post or sidebar)."
|
||||
msgstr ""
|
||||
|
||||
#: views/info.php:128
|
||||
msgid "Start Earning!"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,338 @@
|
||||
# Copyright (C) 2018 Clean and Simple Contact Form
|
||||
# This file is distributed under the same license as the Clean and Simple Contact Form package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Clean and Simple Contact Form 4.7.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/clean-and-simple-"
|
||||
"contact-form-by-meg-nicholas\n"
|
||||
"POT-Creation-Date: 2018-07-05 13:14:58+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: class.cscf.php:157
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:71
|
||||
msgid "Sorry the email addresses do not match."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:77 views/contact-form.view.php:63
|
||||
msgid "Please give your email address."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:83
|
||||
msgid "Please confirm your email address."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:89 views/contact-form.view.php:34
|
||||
msgid "Please give your name."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:94
|
||||
msgid "Please enter a message."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:99 views/contact-form.view.php:64
|
||||
#: views/contact-form.view.php:93
|
||||
msgid "Please enter a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:105 views/contact-form.view.php:170
|
||||
msgid "Please give your consent."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:114
|
||||
msgid "Please solve the recaptcha to continue."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:147
|
||||
msgid "From: "
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:148
|
||||
msgid "Email: "
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:149
|
||||
msgid "Page URL: "
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:150 views/contact-form.view.php:114
|
||||
msgid "Message:"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:151
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:151
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_contact.php:178
|
||||
msgid "Here is a copy of your message :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_pluginsettings.php:44
|
||||
msgid "Message Sent"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_pluginsettings.php:52
|
||||
msgid "Thank you for your message, we will be in touch very shortly."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_pluginsettings.php:60
|
||||
msgid ""
|
||||
"Please enter your contact details and a short message below and I will try "
|
||||
"to answer your query as soon as possible."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_pluginsettings.php:94
|
||||
msgid " - Web Enquiry"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_pluginsettings.php:142
|
||||
msgid "I consent to my contact details being stored"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:30
|
||||
msgid "Contact Form Settings"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:30
|
||||
msgid "Contact Form"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:41
|
||||
msgid "Clean and Simple Contact Form Settings"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:47
|
||||
msgid "Donate $10, $20 or $50!"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:50
|
||||
msgid ""
|
||||
"If you like this plugin, please donate to support development and "
|
||||
"maintenance of:"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:52
|
||||
msgid "Clean and Simple Contact Form!"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:67
|
||||
msgid "You are using version"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:69
|
||||
msgid "If you find this plugin useful please consider"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:72
|
||||
msgid "leaving a review"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:74
|
||||
msgid "Thank you!"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:79
|
||||
msgid ""
|
||||
"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
|
||||
"the shortcode [cscf-contact-form] instead."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:81
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:85
|
||||
msgid "Please Note: To add the contact form to your page please add the text"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:86
|
||||
msgid "to your post or page."
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:106
|
||||
msgid "ReCAPTCHA Settings"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:114
|
||||
msgid "Use reCAPTCHA :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:120
|
||||
msgid "reCAPTCHA Theme :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:126
|
||||
msgid "reCAPTCHA Public Key :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:132
|
||||
msgid "reCAPTCHA Private Key :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:138
|
||||
msgid "Message Settings"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:142
|
||||
msgid "Recipient Emails :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:148
|
||||
msgid "Confirm Email Address :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:154
|
||||
msgid "Allow users to email themselves a copy :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:160 class.cscf_settings.php:166
|
||||
msgid "*New*"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:160
|
||||
msgid "Add a consent checkbox :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:166
|
||||
msgid "Consent message :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:172
|
||||
msgid "Override 'From' Address :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:178
|
||||
msgid "'From' Email Address :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:184
|
||||
msgid "Email Subject :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:190
|
||||
msgid "Message :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:196
|
||||
msgid "Message Sent Heading :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:202
|
||||
msgid "Message Sent Content :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:208
|
||||
msgid "Styling and Validation"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:212
|
||||
msgid ""
|
||||
"Use the plugin default stylesheet (un-tick to use your theme style sheet "
|
||||
"instead) :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:218
|
||||
msgid "Use client side validation (AJAX) :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:290
|
||||
msgid "Enter your reCAPTCHA settings below :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:291
|
||||
msgid "To use reCAPTCHA you must get an API key from"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:297
|
||||
msgid "Enter your message settings below :"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:409
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: class.cscf_settings.php:411
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:25
|
||||
msgid "Name:"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:37
|
||||
msgid "Your Name"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:54
|
||||
msgid "Email Address:"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:67
|
||||
msgid "Your Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:83
|
||||
msgid "Confirm Email Address:"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:92 views/contact-form.view.php:94
|
||||
msgid "Please enter the same email address again."
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:97
|
||||
msgid "Confirm Your Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:121
|
||||
msgid "Please give a message."
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:123
|
||||
msgid "Your Message"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:139
|
||||
msgid "Send me a copy:"
|
||||
msgstr ""
|
||||
|
||||
#: views/contact-form.view.php:228
|
||||
msgid "Send Message"
|
||||
msgstr ""
|
||||
|
||||
#: views/message-not-sent.view.php:1
|
||||
msgid "Sorry, there has been a problem and your message was not sent."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Clean and Simple Contact Form"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
|
||||
"markup."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Meghan Nicholas"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.megnicholas.co.uk"
|
||||
msgstr ""
|
||||
@@ -953,4 +953,11 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
<!-- Schema And Structured Data For WP v1.0 - -->
|
||||
|
||||
|
||||
<!-- all-in-one-favicon -->
|
||||
<!-- All in one Favicon 4.7 -->
|
||||
|
||||
|
||||
<!-- fancybox-for-wordpress -->
|
||||
<!-- Fancybox for WordPress v3.1.5 -->
|
||||
|
||||
|
||||
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/deep-free-plus/composer_file/package.json
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/deep-free-plus/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "deep",
|
||||
"version": "1.0.0",
|
||||
"description": "Deep is a premium, fully responsive, Retina-Ready WordPress theme with a minimal, clean design that allows visitors to focus on content. An ideal WordPress theme for novice users and designers is the one that provides all website elements (header, page and footer) in front-end editor by visual mode and also brings ability to edit the settings in real time. Now designers dream come true and by Deep theme you can design your website just like Photoshop application. This is a unique feature of the Deep theme, you can do entire edit operation (header, pages, footer) in back-end and also front-end environment. The choice is yours.",
|
||||
"author": "Webnus",
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-preset-env": "^1.7.0",
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-babel": "^8.0.0",
|
||||
"gulp-clean": "^0.4.0",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-cssmin": "^0.2.0",
|
||||
"gulp-imagemin": "^4.1.0",
|
||||
"gulp-sequence": "^1.0.0",
|
||||
"gulp-sourcemaps": "^2.6.4",
|
||||
"gulp-uglify": "^3.0.1",
|
||||
"pump": "^3.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.1.2"
|
||||
}
|
||||
}
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/dolibarr-rest-api/composer_file/package.json
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/dolibarr-rest-api/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "wordpress-plugin-template",
|
||||
"title": "WordPress Plugin Template",
|
||||
"version": "1.0.0",
|
||||
"homepage": "https://github.com/hlashbrooke/WordPress-Plugin-Template",
|
||||
"main": "Gruntfile.js",
|
||||
"devDependencies": {
|
||||
"grunt": "~1.0.1",
|
||||
"grunt-contrib-uglify": "~3.2.1",
|
||||
"grunt-contrib-less": "~1.4.1",
|
||||
"grunt-contrib-cssmin": "~2.2.1",
|
||||
"grunt-contrib-watch": "~1.0.0"
|
||||
}
|
||||
}
|
||||
55
spec/fixtures/dynamic_finders/plugin_version/edd-blocks/composer_file/package.json
vendored
Normal file
55
spec/fixtures/dynamic_finders/plugin_version/edd-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"name": "edd-blocks",
|
||||
"version": "1.0.1",
|
||||
"scripts": {
|
||||
"dev": "webpack --mode development --watch",
|
||||
"build": "webpack --mode production"
|
||||
},
|
||||
"main": "src/index.js",
|
||||
"browserslist": "last 2 versions",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.2.0",
|
||||
"@babel/preset-env": "^7.2.0",
|
||||
"@wordpress/autop": "^2.0.2",
|
||||
"autoprefixer": "^9.4.2",
|
||||
"autoprefixer-loader": "^2.0.0",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-eslint": "^8.2.6",
|
||||
"babel-loader": "^7.1.5",
|
||||
"babel-plugin-lodash": "^3.3.3",
|
||||
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
||||
"babel-plugin-transform-react-jsx": "^6.24.1",
|
||||
"babel-plugin-transform-regenerator": "^6.26.0",
|
||||
"babel-plugin-transform-runtime": "^6.23.0",
|
||||
"babel-preset-env": "^1.7.0",
|
||||
"babel-preset-stage-3": "^6.24.1",
|
||||
"browser-sync": "^2.24.6",
|
||||
"browser-sync-webpack-plugin": "^1.2.0",
|
||||
"classnames": "^2.2.5",
|
||||
"cross-env": "^5.1.6",
|
||||
"css-loader": "^0.28.11",
|
||||
"eslint": "^4.19.1",
|
||||
"eslint-config-airbnb": "^17.1.0",
|
||||
"eslint-config-prettier": "^2.10.0",
|
||||
"eslint-config-wordpress": "^2.0.0",
|
||||
"eslint-plugin-import": "^2.14.0",
|
||||
"eslint-plugin-jsx-a11y": "^6.1.2",
|
||||
"eslint-plugin-prettier": "^2.7.0",
|
||||
"eslint-plugin-react": "^7.11.1",
|
||||
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
||||
"lodash": "4.17.11",
|
||||
"node-sass": "^4.10.0",
|
||||
"postcss-loader": "^2.1.6",
|
||||
"raw-loader": "^0.5.1",
|
||||
"sass-loader": "^6.0.7",
|
||||
"style-loader": "^0.19.1",
|
||||
"webpack": "^4.27.1",
|
||||
"webpack-cli": "^3.1.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"babel-polyfill": "^6.26.0",
|
||||
"querystringify": "1.0.0",
|
||||
"react": "^16.6.3",
|
||||
"react-dom": "^16.6.3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,164 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Enhanced Woocommerce Flash Sale 1.0.0\n"
|
||||
"POT-Creation-Date: 2018-10-09 17:07+0530\n"
|
||||
"PO-Revision-Date: 2018-10-09 17:07+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: _e;__\n"
|
||||
"X-Poedit-Basepath: /opt/lampp/htdocs/wordpress/wp-content/plugins/enhanced-"
|
||||
"woocommerce-flash-sale/\n"
|
||||
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: enhanced-woocommerce-flash-sale.php:75
|
||||
msgid "Go To Settings"
|
||||
msgstr ""
|
||||
|
||||
#: enhanced-woocommerce-flash-sale.php:114
|
||||
msgid ""
|
||||
"WooCommerce is not activated. Please install WooCommerce first, to use the "
|
||||
"Woo Flash Sale plugin !!!"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-enhanced-woocommerce-flash-sale-public.php:469
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-woocommerce-flash-sale-admin.php:120
|
||||
msgid "Flash Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:34
|
||||
msgid "Flash Sale Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:39
|
||||
msgid "Settings Saved!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:49
|
||||
msgid "TimerSettings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:55
|
||||
msgid "Enable Timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:61
|
||||
msgid "By clicking timer will be enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:69
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:74
|
||||
msgid "Select background color of the counter "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:80
|
||||
msgid "Font Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:85
|
||||
msgid "Select text color of the timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:91
|
||||
msgid "Border "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:95
|
||||
msgid "Border for the Timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:96
|
||||
msgid "Write border of the timer example 2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:103
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:108
|
||||
msgid "Select border color for the Timer "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:115
|
||||
msgid "Start Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:120
|
||||
msgid "Select the Start date for the timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:127
|
||||
msgid "End Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:132
|
||||
msgid "Select the End date for the timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:139
|
||||
msgid "TimerStyle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:144
|
||||
msgid "Round"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:145
|
||||
msgid "RoundFill"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:146
|
||||
msgid "Squre"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:147
|
||||
msgid "SqureFill"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:151
|
||||
msgid "Select the timer style which will show on product detail page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:160
|
||||
msgid "Sale Text Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:166
|
||||
msgid "Sale Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:171
|
||||
msgid "Write your own text which will display on the product shop page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:177
|
||||
msgid "Text color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:184
|
||||
msgid "Select text color for the the sale text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:190
|
||||
msgid "Sale Text Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:196
|
||||
msgid "Select the font size for the the sale text "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:204
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,146 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: FLC forma.lms connector 2.0\n"
|
||||
"POT-Creation-Date: 2018-11-30 15:01+0100\n"
|
||||
"PO-Revision-Date: 2018-11-30 15:01+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Joint Technologies: http://www.joint-tech.it\n"
|
||||
"Language: it_IT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: gettext;dgettext:2;dcgettext:2;ngettext:1,2;"
|
||||
"dngettext:2,3;dcngettext:2,3;__;___:1;___:1,2c;__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c;_e;_ex:1,2c;_n;_n:1,2;_n_noop;_n_noop:1,2;"
|
||||
"_nc:1,2;_nx;_nx:1,2,4c;_nx:4c,1,2;_nx_noop;_nx_noop:1,2,3c;"
|
||||
"_nx_noop:4c,1,2;_x;_x:1,2c;esc_attr_;esc_attr__;esc_attr_e;esc_attr_x;"
|
||||
"esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x;esc_html_x:1,2c;"
|
||||
"n___:1,2;n___:1,2,4c;translate\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPathExcluded-0: vendor\n"
|
||||
|
||||
#: includes/classes/class.addonspage.php:19
|
||||
msgid "Installed"
|
||||
msgstr "Installate"
|
||||
|
||||
#: includes/classes/class.addonspage.php:30
|
||||
#: includes/classes/class.addonspage.php:37
|
||||
msgid "Add-on"
|
||||
msgstr "Estensione"
|
||||
|
||||
#: includes/classes/class.addonspage.php:31
|
||||
#: includes/classes/class.addonspage.php:38
|
||||
msgid "Code"
|
||||
msgstr "Codice"
|
||||
|
||||
#: includes/classes/class.addonspage.php:32
|
||||
#: includes/classes/class.addonspage.php:39
|
||||
msgid "Status"
|
||||
msgstr "Stato"
|
||||
|
||||
#: includes/classes/class.addonspage.php:53
|
||||
msgid "No add-on installed."
|
||||
msgstr "Nessuna estensione installata."
|
||||
|
||||
#: includes/classes/class.addonspage.php:63 includes/plugin.php:125
|
||||
msgid "Add-ons"
|
||||
msgstr "Estensioni"
|
||||
|
||||
#: includes/classes/class.settingspage.php:23
|
||||
msgid "Version"
|
||||
msgstr "Versione"
|
||||
|
||||
#: includes/classes/class.settingspage.php:31
|
||||
#: includes/classes/class.settingspage.php:177
|
||||
msgid "Address"
|
||||
msgstr "Indirizzo"
|
||||
|
||||
#: includes/classes/class.settingspage.php:42
|
||||
msgid "API"
|
||||
msgstr "API"
|
||||
|
||||
#: includes/classes/class.settingspage.php:49
|
||||
#: includes/classes/class.settingspage.php:180
|
||||
#: includes/entities/entity.sso.php:45
|
||||
msgid "Key"
|
||||
msgstr "Chiave"
|
||||
|
||||
#: includes/classes/class.settingspage.php:57
|
||||
#: includes/classes/class.settingspage.php:183
|
||||
msgid "Secret"
|
||||
msgstr "Codice segreto"
|
||||
|
||||
#: includes/classes/class.settingspage.php:86
|
||||
msgid "General"
|
||||
msgstr "Generali"
|
||||
|
||||
#: includes/classes/class.settingspage.php:111 includes/plugin.php:124
|
||||
msgid "Settings"
|
||||
msgstr "Impostazioni"
|
||||
|
||||
#: includes/classes/class.settingspage.php:134
|
||||
msgid "1.3"
|
||||
msgstr "1.3"
|
||||
|
||||
#: includes/classes/class.settingspage.php:135
|
||||
msgid "1.4"
|
||||
msgstr "1.4"
|
||||
|
||||
#: includes/classes/class.settingspage.php:136
|
||||
msgid "2.0 or greater"
|
||||
msgstr "2.0 o maggiore"
|
||||
|
||||
#: includes/classes/class.settingspage.php:185
|
||||
msgid "Missing required fields:"
|
||||
msgstr "Campi obbligatori mancanti:"
|
||||
|
||||
#: includes/classes/class.settingspage.php:190
|
||||
msgid ""
|
||||
"The system is unable to communicate with forma.lms. Please check your "
|
||||
"configuration."
|
||||
msgstr ""
|
||||
"Il sistema non è in grado di comunicare con forma.lms. Si prega di "
|
||||
"controllare la configurazione."
|
||||
|
||||
#: includes/entities/abstract.entity.php:34
|
||||
msgid "Enabled"
|
||||
msgstr "Abilitato"
|
||||
|
||||
#: includes/entities/abstract.entity.php:53
|
||||
msgid "Entity"
|
||||
msgstr "Entità"
|
||||
|
||||
#: includes/entities/entity.sso.php:64
|
||||
msgid "SSO"
|
||||
msgstr "SSO"
|
||||
|
||||
#: includes/entities/entity.user.php:62
|
||||
msgid "Users"
|
||||
msgstr "Utenti"
|
||||
|
||||
#: includes/plugin.php:119 includes/plugin.php:120 includes/plugin.php:121
|
||||
#, php-format
|
||||
msgid "%s notice"
|
||||
msgstr "%s avviso"
|
||||
|
||||
#: includes/plugin.php:119 includes/plugin.php:120 includes/plugin.php:121
|
||||
#, php-format
|
||||
msgid "%s notices"
|
||||
msgstr "%s avvisi"
|
||||
|
||||
#: includes/plugin.php:123 includes/plugin.php:124 includes/plugin.php:125
|
||||
msgid "FLC"
|
||||
msgstr "FLC"
|
||||
|
||||
#: includes/plugin.php:124
|
||||
#, php-format
|
||||
msgid "%s - settings"
|
||||
msgstr "%s - impostazioni"
|
||||
|
||||
#: includes/plugin.php:125
|
||||
#, php-format
|
||||
msgid "%s - add-ons"
|
||||
msgstr "%s - estensioni"
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "gosign-advanced-separator-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.11.1",
|
||||
"classnames": "^2.2.6",
|
||||
"react-material-ui-icon-picker": "0.0.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "posts-masonry-block-gosign-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/components": "^2.0.1",
|
||||
"@wordpress/compose": "^2.0.4",
|
||||
"@wordpress/html-entities": "^2.0.1",
|
||||
"cgb-scripts": "1.11.0",
|
||||
"classnames": "^2.2.6",
|
||||
"imagesloaded": "^4.1.4",
|
||||
"isotope-layout": "^3.0.6",
|
||||
"lodash": "^4.17.11",
|
||||
"lodash.uniqueid": "^4.0.1",
|
||||
"masonry-layout": "^4.2.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "gosign-simple-teaser-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.11.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gvphotobox 1.0\n"
|
||||
"POT-Creation-Date: 2018-11-29 00:29+0500\n"
|
||||
"PO-Revision-Date: 2018-11-29 00:34+0500\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vladimir Giryavyy Team\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.7\n"
|
||||
"X-Poedit-Basepath: ..\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-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr__;esc_attr_e;esc_html__;"
|
||||
"esc_html_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin.php:6
|
||||
msgid "Gvphotobox Settings"
|
||||
msgstr "Настройки gvphotobox"
|
||||
|
||||
#: admin.php:20
|
||||
msgid "Border color"
|
||||
msgstr "Цвет рамки"
|
||||
|
||||
#: admin.php:25
|
||||
msgid "Border width"
|
||||
msgstr "Ширина рамки"
|
||||
|
||||
#: admin.php:30
|
||||
msgid "Color of buttons"
|
||||
msgstr "Цвет кнопок"
|
||||
|
||||
#: admin.php:35
|
||||
msgid "Color of stickers"
|
||||
msgstr "Цвет наклеек"
|
||||
|
||||
#: admin.php:40
|
||||
msgid "Border radius"
|
||||
msgstr "Радиус границы"
|
||||
|
||||
#: admin.php:45
|
||||
msgid "Autoplay delay"
|
||||
msgstr "Задержка автозапуска"
|
||||
|
||||
#: admin.php:51
|
||||
msgid "Clear"
|
||||
msgstr "Очистить"
|
||||
|
||||
#: admin.php:53
|
||||
msgid "Save Changes"
|
||||
msgstr "Сохранить изменения"
|
||||
|
||||
#: admin.php:55
|
||||
msgid "Reset to initial settings"
|
||||
msgstr "Сбросить настройки на начальные"
|
||||
|
||||
#: admin.php:59
|
||||
msgid "Donation to the author"
|
||||
msgstr "Поблагодарить автора"
|
||||
|
||||
#: admin.php:138
|
||||
msgid "Unexpected error!"
|
||||
msgstr "Непредвиденная ошибка!"
|
||||
|
||||
#: admin.php:190
|
||||
msgid "The command is completed"
|
||||
msgstr "Команда выполнена"
|
||||
|
||||
#: admin.php:195
|
||||
msgid "The data has not changed"
|
||||
msgstr "Данные не изменились"
|
||||
|
||||
#~ msgid "Exactly reset the settings to initial?"
|
||||
#~ msgstr "Точно сбрасываем настройки на начальные?"
|
||||
|
||||
#~ msgid "Button color"
|
||||
#~ msgstr "Цвет кнопок"
|
||||
|
||||
#~ msgid "Sticker colors"
|
||||
#~ msgstr "Цвета наклеек"
|
||||
|
||||
#~ msgid "Label color"
|
||||
#~ msgstr "Цвет надписей"
|
||||
|
||||
#~ msgid "Photobox"
|
||||
#~ msgstr "Фоторамка"
|
||||
317
spec/fixtures/dynamic_finders/plugin_version/hurrytimer/translation_file/languages/hurrytimer.pot
vendored
Normal file
317
spec/fixtures/dynamic_finders/plugin_version/hurrytimer/translation_file/languages/hurrytimer.pot
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
# Copyright (C) 2018 Nabil Lemsieh
|
||||
# This file is distributed under the same license as the HurryTimer plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: HurryTimer 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/hurrytimer\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: 2018-11-07T17:59:53+00:00\n"
|
||||
"PO-Revision-Date: 2018-11-07T17:59:53+00:00\n"
|
||||
"X-Generator: WP-CLI 2.0.1\n"
|
||||
"X-Domain: hurrytimer\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "HurryTimer"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/hurrytimer"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A simple yet powerful scarcity countdown timer for WordPress & WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Nabil Lemsieh"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://nabillemsieh.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:48
|
||||
#: admin/class-hurrytimer-admin.php:181
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:66
|
||||
msgid "Countdown timer updated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:69
|
||||
msgid "Countdown timer updated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:71
|
||||
msgid "Countdown timer published"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:72
|
||||
msgid "Countdown timer saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:73
|
||||
msgid "Countdown timer submitted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:74
|
||||
msgid "Countdown timer scheduled for: <strong>%1$s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:74
|
||||
msgid "M j, Y @ G:i"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:75
|
||||
msgid "Countdown timer draft updated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:97
|
||||
msgid "Enter countdown timer headline (optional)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:152
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-metaboxes.php:161
|
||||
#: admin/class-hurrytimer-admin.php:158
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:3
|
||||
#: admin/templates/countdown-styling-metabox.php:3
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:6
|
||||
msgid "Styling"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:11
|
||||
#: admin/class-hurrytimer-admin.php:157
|
||||
msgid "Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:14
|
||||
#: admin/class-hurrytimer-admin.php:135
|
||||
msgid "Evergreen"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:18
|
||||
msgid "Regular"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:23
|
||||
msgid "Ends After"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:26
|
||||
msgid "Day(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:29
|
||||
msgid "Hour(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:32
|
||||
msgid "Minute(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:34
|
||||
msgid "The countdown ends after <span>%s</span> days, <span>%s</span> hours, and <span>%s</span> seconds for each new visitor."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:38
|
||||
msgid "End Date & Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:42
|
||||
msgid "The countdown ends on <span>%s</span> for all visitors."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:48
|
||||
msgid "After End Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:52
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:55
|
||||
msgid "Hide countdown timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:58
|
||||
msgid "Redirect to..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:64
|
||||
msgid "Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:72
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:77
|
||||
msgid "Show above countdown timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:80
|
||||
msgid "Show below countdown timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:83
|
||||
msgid "Hide headline"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:89
|
||||
msgid "Display labels"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:93
|
||||
msgid "Check this box to display labels: days, hrs, mins, and secs"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:105
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:109
|
||||
msgid "Enable countdown timer on product page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:115
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:120
|
||||
#: admin/templates/countdown-settings-metabox.php:144
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:125
|
||||
msgid "Specific products..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:129
|
||||
msgid "All products, except..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:133
|
||||
msgid "Specific categories..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:137
|
||||
msgid "All categories, except..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:157
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:160
|
||||
msgid "Above title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:161
|
||||
msgid "Below title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:162
|
||||
msgid "Below Review rating"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:163
|
||||
msgid "Below price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:164
|
||||
msgid "Below \"Add to cart\" button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:167
|
||||
msgid "Position on product page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:174
|
||||
msgid "WooCommerce plugin isn't installed."
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:180
|
||||
#: admin/templates/countdown-styling-metabox.php:8
|
||||
msgid "Digits color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:187
|
||||
#: admin/templates/countdown-styling-metabox.php:15
|
||||
msgid "Digits size (px)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:193
|
||||
#: admin/templates/countdown-styling-metabox.php:21
|
||||
msgid "Labels size (px)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:198
|
||||
#: admin/templates/countdown-styling-metabox.php:26
|
||||
msgid "Headline color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-settings-metabox.php:204
|
||||
#: admin/templates/countdown-styling-metabox.php:32
|
||||
msgid "Headline size (px)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/post-publish-metabox.php:2
|
||||
msgid "Status:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/post-publish-metabox.php:4
|
||||
#: admin/class-hurrytimer-admin.php:132
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/post-publish-metabox.php:5
|
||||
msgid "Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/post-publish-metabox.php:7
|
||||
#: admin/class-hurrytimer-admin.php:132
|
||||
msgid "Inactive"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/post-publish-metabox.php:8
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/countdown-shortcode-metabox.php:1
|
||||
msgid "Copy this shortcode and paste it into your post, page, or text widget content:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-admin.php:83
|
||||
msgid "Countdown timer deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-admin.php:89
|
||||
msgid "Countdown timer activated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-admin.php:135
|
||||
msgid "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-admin.php:156
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-hurrytimer-admin.php:209
|
||||
#: admin/class-hurrytimer-admin.php:210
|
||||
msgid "Add New Timer"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,95 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Newsletter Manager 1.4\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/newsletter-"
|
||||
"manager\n"
|
||||
"POT-Creation-Date: 2018-06-21 15:16+0530\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-06-21 15:34+0530\n"
|
||||
"Language-Team: \n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
"Last-Translator: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Language: en_US\n"
|
||||
|
||||
#: shortcodes/confirm.php:6
|
||||
msgid ""
|
||||
"There was an error while confirming your subscription. Try after some time."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/confirm.php:14
|
||||
msgid "Thank you for confirming your subscription."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/confirm.php:18 shortcodes/thanks.php:13
|
||||
msgid "Your subscription is already active."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/htmlcode.php:10 shortcodes/htmlcode.php:32 widget.php:28
|
||||
#: widget.php:48
|
||||
msgid "Please check whether the email is correct."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/htmlcode.php:64 widget.php:110
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/htmlcode.php:70 shortcodes/htmlcode.php:148 widget.php:117
|
||||
#: widget.php:205
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/htmlcode.php:97 widget.php:146
|
||||
msgid "Set reCaptcha Site key & Secret key"
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/htmlcode.php:112 widget.php:165
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/htmlcode.php:119 shortcodes/htmlcode.php:135 widget.php:176
|
||||
#: widget.php:193
|
||||
msgid "Unsubscribe Your Email"
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/htmlcode.php:156 widget.php:213
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/htmlcode.php:161 widget.php:216
|
||||
msgid ""
|
||||
"We shall send a confirmation email to the address provided,Please follow the "
|
||||
"link in the email."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/thanks.php:4
|
||||
msgid "Thank you for subscribing to our list."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/thanks.php:9
|
||||
msgid ""
|
||||
"Your subscription is pending now. Please follow the confirmation link in "
|
||||
"your mailbox."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/thanks.php:18
|
||||
msgid "Your subscription is active now."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/thanks.php:24
|
||||
msgid "There was an error during subscription"
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/unsubscribe.php:8
|
||||
msgid "Your email was successfully unsubscribed."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/unsubscribe.php:12
|
||||
msgid "Your email is already unsubscribed."
|
||||
msgstr ""
|
||||
|
||||
#: shortcodes/unsubscribe.php:19
|
||||
msgid "Unsubscription unsuccessful, try again!!!"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "ninja-blocks-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.11.0",
|
||||
"classnames": "^2.2.6",
|
||||
"moment": "^2.22.2",
|
||||
"nuka-carousel": "^4.4.2",
|
||||
"re-resizable": "^4.9.1",
|
||||
"react-twentytwenty": "^1.2.1",
|
||||
"react-slick": "^0.23.2"
|
||||
}
|
||||
}
|
||||
45
spec/fixtures/dynamic_finders/plugin_version/nodeinfo/translation_file/languages/nodeinfo.pot
vendored
Normal file
45
spec/fixtures/dynamic_finders/plugin_version/nodeinfo/translation_file/languages/nodeinfo.pot
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
# Copyright (C) 2018 Matthias Pfefferle
|
||||
# This file is distributed under the MIT.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: NodeInfo 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/wordpress-nodeinfo\n"
|
||||
"POT-Creation-Date: 2018-11-28 09:25:16+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/class-nodeinfo-endpoint.php:29
|
||||
msgid "The version of the NodeInfo scheme"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-nodeinfo-endpoint.php:50
|
||||
msgid "The version of the NodeInfo2 scheme"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "NodeInfo"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/pfefferle/wordpress-nodeinfo/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"NodeInfo is an effort to create a standardized way of exposing metadata "
|
||||
"about a server running one of the distributed social networks."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Matthias Pfefferle"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://notiz.blog/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,85 @@
|
||||
# Copyright (C) 2018 Facebook Pixel
|
||||
# This file is distributed under the same license as the Facebook Pixel package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Facebook Pixel 1.7.17\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
||||
"pixel\n"
|
||||
"POT-Creation-Date: 2018-10-24 21:22:55+00:00\n"
|
||||
"PO-Revision-Date: 2018-10-24 14:25-0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ja_JP\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2\n"
|
||||
|
||||
#: core/FacebookWordpressSettingsPage.php:35
|
||||
msgid "You do not have sufficient permissions to access this page"
|
||||
msgstr "このページにアクセスするための十分な権限がありません"
|
||||
|
||||
#: core/FacebookWordpressSettingsPage.php:98
|
||||
msgid ""
|
||||
"Please note that we are now also supporting upper funnel pixel events for "
|
||||
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
||||
msgstr ""
|
||||
|
||||
#: core/FacebookWordpressSettingsPage.php:102
|
||||
msgid "The unique identifier for your Facebook pixel."
|
||||
msgstr "Facebookのピクセルの一意の識別子。"
|
||||
|
||||
#: core/FacebookWordpressSettingsPage.php:123
|
||||
msgid ""
|
||||
"For businesses that operate in the European Union, you may need to take "
|
||||
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
||||
"Guide for Sites and Apps</a> for suggestions on complying with EU privacy "
|
||||
"requirements."
|
||||
msgstr ""
|
||||
"欧州連合(EU)で事業を行っているビジネスの場合は、追加措置が必要となる場合があ"
|
||||
"ります。EUのプライバシー要件の遵守に関する推奨事項については、<a href=\"%s\" "
|
||||
"target=\"_blank\">サイトおよびアプリのCookieの同意に関するガイド</a>をお読み"
|
||||
"ください。"
|
||||
|
||||
#: core/FacebookWordpressSettingsPage.php:148
|
||||
msgid "Enabling Advanced Matching improves audience building."
|
||||
msgstr "詳細マッチングを有効にすると、オーディエンスの構築が向上します。"
|
||||
|
||||
#: core/FacebookWordpressSettingsPage.php:178
|
||||
msgid ""
|
||||
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
||||
"to configure the plugin."
|
||||
msgstr ""
|
||||
"FacebookピクセルプラグインにはピクセルIDが必要です。プラグインを設定するに"
|
||||
"は、<a href=\"%s\">こちら</a>をクリックしてください。"
|
||||
|
||||
#: core/FacebookWordpressSettingsPage.php:197
|
||||
msgid "Dismiss this notice."
|
||||
msgstr "この通知を破棄します。"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Facebook Pixel"
|
||||
msgstr "Facebookピクセル"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.facebook.com/business/help/881403525362441"
|
||||
msgstr "https://www.facebook.com/business/help/881403525362441"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"The Facebook pixel is an analytics tool that helps you measure the "
|
||||
"effectiveness of your advertising. You can use the Facebook pixel to "
|
||||
"understand the actions people are taking on your website and reach audiences "
|
||||
"you care about."
|
||||
msgstr ""
|
||||
"Facebookピクセルは、広告の効果を測定できる分析ツールです。Facebookピクセルを"
|
||||
"利用すると、ウェブサイト利用者のアクションを把握したり、狙いどおりのターゲッ"
|
||||
"ト層にリーチしたりできます。"
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.facebook.com/"
|
||||
msgstr "https://www.facebook.com/"
|
||||
@@ -103,6 +103,10 @@
|
||||
<link rel='stylesheet' id='double-opt-in-for-download-plugin-styles-css' href='http://wp.lab/wp-content/plugins/double-opt-in-for-download/public/assets/css/style.css?ver=2.1.6' type='text/css' media='all' />
|
||||
|
||||
|
||||
<!-- abcsubmit -->
|
||||
<link rel="stylesheet" id="admin_abcsubmit_css-css" href="http://wp.lab/wp-content/plugins/abcsubmit//assets/css/admin.css?ver=1.1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- academic-bloggers-toolkit -->
|
||||
<link rel="stylesheet" id="abt-css-css" href="http://wp.lab/wp-content/plugins/academic-bloggers-toolkit/css/frontend.css?ver=4.11.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/academic-bloggers-toolkit/js/frontend.js?ver=4.11.3"></script>
|
||||
@@ -204,6 +208,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/acquaint-owl-carousel/public/js/acquaint-owl-carousel-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- activities -->
|
||||
<link rel="stylesheet" id="activities-public-css-css" href="http://wp.lab/wp-content/plugins/activities/public/css/activities-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/activities/public/js/activities-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- acurax-social-media-widget -->
|
||||
<link rel="stylesheet" id="acx_smw_widget_style-css" href="http://wp.lab/wp-content/plugins/acurax-social-media-widget/css/style.css?v=3.2.5&ver=4.8.3" type="text/css" media="all">
|
||||
|
||||
@@ -333,6 +342,11 @@
|
||||
<link rel="stylesheet" id="advanced-custom-widget-css" href="http://wp.lab/wp-content/plugins/advanced-custom-widget/assets/css/advanced-custom-widget-admin.min.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- advanced-floating-sliding-panel -->
|
||||
<link rel="stylesheet" id="advanced-floating-sliding-panel-css" href="http://wp.lab/wp-content/plugins/advanced-floating-sliding-panel/public/css/advanced-floating-sliding-panel-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="advanced-floating-sliding-panel-fontawesome-css" href="http://wp.lab/wp-content/plugins/advanced-floating-sliding-panel/public/css/font-awesome.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- advanced-footnotes -->
|
||||
<link rel="stylesheet" id="advanced_footnotes_css-css" href="http://wp.lab/wp-content/plugins/advanced-footnotes/assets/css/advanced-footnotes.css?ver=0.114" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-footnotes/assets/js/advanced-footnotes.js?ver=0.114"></script>
|
||||
@@ -352,6 +366,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-plugin-view/js/klick-apv-ui.min.js?ver=0.0.1"></script>
|
||||
|
||||
|
||||
<!-- advanced-portfolio -->
|
||||
<link rel="stylesheet" id="advp-style-css" href="http://wp.lab/wp-content/plugins/advanced-portfolio/public/assets/css/style.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="advp-responsive-css" href="http://wp.lab/wp-content/plugins/advanced-portfolio/public/assets/css/responsive.css?ver=1.0.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="advp-custom-css" href="http://wp.lab/wp-content/plugins/advanced-portfolio/public/assets/css/custom.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-portfolio/public/assets/js/isotope.min.js?ver=1.0.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-portfolio/public/assets/js/scripts.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- advanced-spoiler -->
|
||||
<link rel="stylesheet" id="adv-spoiler-css" href="http://wp.lab/wp-content/plugins/advanced-spoiler/css/advanced-spoiler.css?ver=2.02" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-spoiler/js/jquery-spoiler.js?ver=2.02"></script>
|
||||
@@ -657,6 +679,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/apex-notification-bar-lite/js/frontend/frontend.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- apostle-social-wall -->
|
||||
<link rel="stylesheet" id="apostle-social-wall-css" href="http://wp.lab/wp-content/plugins/apostle-social-wall/public/css/apostle-social-wall-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/apostle-social-wall/public/js/apostle-social-wall-public.js?ver=1.0.0"></script>
|
||||
<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>
|
||||
|
||||
|
||||
<!-- 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">
|
||||
@@ -922,6 +950,10 @@
|
||||
<link rel="stylesheet" id="amrn_css_style-css" href="http://wp.lab/wp-content/plugins/awesome-mobile-responsive-navigation/css/amrn-style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- awesome-post-views-counter -->
|
||||
<link rel="stylesheet" id="post-views-counter-frontend-css" href="http://wp.lab/wp-content/plugins/awesome-post-views-counter/css/frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- awesome-scrollbar -->
|
||||
<link rel="stylesheet" id="hf-mains-css" href="http://wp.lab/wp-content/plugins/awesome-scrollbar/css/hf-main.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -1209,6 +1241,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/binbucks/js/shrinker.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- birdseed -->
|
||||
<link rel="stylesheet" id="birdseed-css" href="http://wp.lab/wp-content/plugins/birdseed/public/css/birdseed-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/birdseed/public/js/birdseed-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- birthday-discount-vouchers -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/birthday-discount-vouchers/assets/js/bday-picker.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/birthday-discount-vouchers/assets/js/picker.js?ver=1.0.0"></script>
|
||||
@@ -1299,6 +1336,12 @@
|
||||
<link rel="stylesheet" id="blope-frontend-style-css-css" href="http://wp.lab/wp-content/plugins/bloks-stripe-donation/assets/css/styles.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- blossom-recipe-maker -->
|
||||
<link rel="stylesheet" id="blossom-recipe-maker-css" href="http://wp.lab/wp-content/plugins/blossom-recipe-maker/public/css/blossom-recipe-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blossom-recipe-maker/public/js/blossom-recipe-public.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blossom-recipe-maker/public/js/blossom-adjust-ingredients.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- blossomthemes-toolkit -->
|
||||
<link rel="stylesheet" id="blossomthemes-toolkit-css" href="http://wp.lab/wp-content/plugins/blossomthemes-toolkit/public/css/blossomthemes-toolkit-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/blossomthemes-toolkit/public/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -2214,6 +2257,11 @@
|
||||
<link rel="stylesheet" id="ct-css-css" href="http://wp.lab/wp-content/plugins/clients/public/css/ct.css?ver=1.1.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- clio-grow-form -->
|
||||
<link rel="stylesheet" id="Grow_Form-frontend-css" href="http://wp.lab/wp-content/plugins/clio-grow-form/assets/css/frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/clio-grow-form/assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- closify-maestro-image-uploader-gallery-builder -->
|
||||
<link rel="stylesheet" id="closify-default-css" href="http://wp.lab/wp-content/plugins/closify-maestro-image-uploader-gallery-builder/assets/css/style.css?ver=1.9.2.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="arfaly-default-css" href="http://wp.lab/wp-content/plugins/closify-maestro-image-uploader-gallery-builder/assets/css/arfaly.css?ver=1.9.2.3" type="text/css" media="all">
|
||||
@@ -2530,6 +2578,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cool-quick-sidebar/quick-cool-sidebar.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cool-responsive-mega-menu -->
|
||||
<link rel="stylesheet" id="cool-megamenu-css" href="http://wp.lab/wp-content/plugins/cool-responsive-mega-menu/assets/css/crmm.css?ver=1.1.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cool-responsive-mega-menu/assets/js/crmm.js?ver=1.1.3"></script>
|
||||
|
||||
|
||||
<!-- copy-the-code -->
|
||||
<link rel="stylesheet" id="copy-the-code-css" href="http://wp.lab/wp-content/plugins/copy-the-code/assets/css/copy-the-code.css?ver=1.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/copy-the-code/assets/js/copy-the-code.js?ver=1.1.0"></script>
|
||||
@@ -2596,6 +2649,17 @@
|
||||
<link rel="stylesheet" id="cresta-whatsapp-chat-front-style-css" href="http://wp.lab/wp-content/plugins/cresta-whatsapp-chat/css/cresta-whatsapp-chat-front-css.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- cronycle-content -->
|
||||
<link rel="stylesheet" id="cronycle-content-css" href="http://wp.lab/wp-content/plugins/cronycle-content/public/css/cronycle-content-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="cronycle-contentslick-css" href="http://wp.lab/wp-content/plugins/cronycle-content/public/slick/slick.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="cronycle-contentslick-theme-css" href="http://wp.lab/wp-content/plugins/cronycle-content/public/slick/slick-theme.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="cronycle-contentslick-custom-css" href="http://wp.lab/wp-content/plugins/cronycle-content/public/css/slick-carousel.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cronycle-content/public/js/moment.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cronycle-content/public/js/cronycle-content-public.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cronycle-content/public/slick/slick.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cronycle-content/public/js/slick-carousel.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- crs-post-title-shortener -->
|
||||
<link rel="stylesheet" id="crs-post-title-shortener-css" href="http://wp.lab/wp-content/plugins/crs-post-title-shortener/public/css/crs-post-title-shortener-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/crs-post-title-shortener/public/js/crs-post-title-shortener-public.js?ver=1.0.0"></script>
|
||||
@@ -2629,6 +2693,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cryptoniq-lite/assets/js/cryptoniq.engine.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- custom-color-palette -->
|
||||
<link rel="stylesheet" id="themezee-custom-color-palette-css" href="http://wp.lab/wp-content/plugins/custom-color-palette/assets/css/custom-color-palette.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- custom-contact-forms -->
|
||||
<link rel="stylesheet" id="ccf-form-css" href="http://wp.lab/wp-content/plugins/custom-contact-forms/assets/build/css/form.min.css?ver=7.8.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-contact-forms/assets/build/js/form.min.js?ver=7.8.5"></script>
|
||||
@@ -2649,6 +2717,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-twitter-feeds/js/ctf-scripts.js?ver=1.2.7"></script>
|
||||
|
||||
|
||||
<!-- custom-wp-rest-api -->
|
||||
<link rel="stylesheet" id="customwprest-css" href="http://wp.lab/wp-content/plugins/custom-wp-rest-api/public/css/customwprest-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-wp-rest-api/public/js/customwprest-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- customer-chat-for-facebook -->
|
||||
<link rel="stylesheet" id="customer-chat-for-facebook-css" href="http://wp.lab/wp-content/plugins/customer-chat-for-facebook/public/css/customer-chat-for-facebook-public.css?ver=1.0.3.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/customer-chat-for-facebook/public/js/customer-chat-for-facebook-public.js?ver=1.0.3.1"></script>
|
||||
@@ -2688,6 +2761,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/debug-bar-constants/js/jquery.ui.totop.min.js?ver=2.0.0"></script>
|
||||
|
||||
|
||||
<!-- deep-free-plus -->
|
||||
<link rel="stylesheet" id="whb-frontend-styles-css" href="http://wp.lab/wp-content/plugins/deep-free-plus/assets/dist/css/frontend/header-builder/header-builder.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/deep-free-plus/admin/header-builder/assets/src/frontend/whb-jquery-plugins.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/deep-free-plus/admin/header-builder/assets/src/frontend/whb-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- deeper-comments -->
|
||||
<link rel="stylesheet" id="deeper-icon-css" href="http://wp.lab/wp-content/plugins/deeper-comments/views/css/package/iconfonts.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="deeper-comment-css" href="http://wp.lab/wp-content/plugins/deeper-comments/views/css/deeper.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -2817,6 +2896,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easing-slider/assets/js/public.min.js?ver=3.0.8"></script>
|
||||
|
||||
|
||||
<!-- easy-accordion-for-faq -->
|
||||
<link rel="stylesheet" id="accordion-faq-css" href="http://wp.lab/wp-content/plugins/easy-accordion-for-faq/eaf-assets/css/eaf-costum.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="accordion-fa-css" href="http://wp.lab/wp-content/plugins/easy-accordion-for-faq/eaf-assets/css/font-awesome.min.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-accordion-for-faq/eaf-assets/js/eaf-costum.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-accordion-for-faq/eaf-assets/js/eaf-admin.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- easy-custom-auto-excerpt -->
|
||||
<link rel="stylesheet" id="ecae-frontend-css" href="http://wp.lab/wp-content/plugins/easy-custom-auto-excerpt/assets/style-frontend.css?ver=2.4.6" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ecae-buttonskin-none-css" href="http://wp.lab/wp-content/plugins/easy-custom-auto-excerpt/buttons/ecae-buttonskin-none.css?ver=2.4.6" type="text/css" media="all">
|
||||
@@ -3284,6 +3370,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/event-registration-pro-calendar/public/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- events-made-easy -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/events-made-easy/js/jquery-select2/select2-4.0.4/dist/js/select2.min.js?ver=2.0.68"></script>
|
||||
<script type="text/javascript" defer src="http://wp.lab/wp-content/plugins/events-made-easy/js/eme.js?ver=2.0.68"></script>
|
||||
|
||||
|
||||
<!-- everest-comment-rating-lite -->
|
||||
<link rel="stylesheet" id="ECR-frontend-style-css" href="http://wp.lab/wp-content/plugins/everest-comment-rating-lite/css/ecr-frontend.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/everest-comment-rating-lite/js/ecr-frontend.js?ver=1.0.2"></script>
|
||||
@@ -3701,6 +3792,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fluid-responsive-slideshow/js/imagesloaded.min.js?ver=2.3.1"></script>
|
||||
|
||||
|
||||
<!-- flytedesk-digital -->
|
||||
<link rel="stylesheet" id="flytedesk-digital-css" href="http://wp.lab/wp-content/plugins/flytedesk-digital/public/css/flytedesk-digital-public.css?ver=20181101" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flytedesk-digital/public/js/flytedesk-digital-public.js?ver=20181101"></script>
|
||||
|
||||
|
||||
<!-- fobi-chatbot -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fobi-chatbot/public/js/embed.min.js?ver=0.1.0"></script>
|
||||
|
||||
@@ -3794,6 +3890,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/form-analytics/public/js/form-analytics-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- form-generation -->
|
||||
<link rel="stylesheet" id="lg-fontawesome-css" href="http://wp.lab/wp-content/plugins/form-generation/assets/vendors/fontawesome/css/fontawesome-all.min.css?ver=1.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- form-maker -->
|
||||
<link rel="stylesheet" id="fm-jquery-ui-css" href="http://wp.lab/wp-content/plugins/form-maker/css/jquery-ui.custom.css?ver=1.12.6" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="fm-frontend-css" href="http://wp.lab/wp-content/plugins/form-maker/css/form_maker_frontend.css?ver=1.12.6" type="text/css" media="all">
|
||||
@@ -3880,6 +3980,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/fusion/includes/js/fusion-core.js?ver=1.3.0"></script>
|
||||
|
||||
|
||||
<!-- futurio-extra -->
|
||||
<link rel="stylesheet" id="futurio-extra-css" href="http://wp.lab/wp-content/plugins/futurio-extra/css/style.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/futurio-extra/js/futurio-extra.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- ga-germanized -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ga-germanized/assets/js/gag-tracker.js?ver=1.0.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ga-germanized/assets/js/gaoptout.js?ver=1.0.2"></script>
|
||||
@@ -4195,6 +4300,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/google-drive-wp-media/js/script.js?ver=2.4.4"></script>
|
||||
|
||||
|
||||
<!-- google-language-translator -->
|
||||
<link rel="stylesheet" id="google-language-translator-css" href="http://wp.lab/wp-content/plugins/google-language-translator/css/style.css?ver=5.0.48" type="text/css" media="">
|
||||
<link rel="stylesheet" id="glt-toolbar-styles-css" href="http://wp.lab/wp-content/plugins/google-language-translator/css/toolbar.css?ver=5.0.48" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/google-language-translator/js/scripts.js?ver=5.0.48"></script>
|
||||
|
||||
|
||||
<!-- google-maps-builder -->
|
||||
<link rel="stylesheet" id="google-maps-builder-plugin-styles-css" href="http://wp.lab/wp-content/plugins/google-maps-builder/vendor/wordimpress/maps-builder-core/assets/css/google-maps-builder.min.css?ver=2.1.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="google-maps-builder-map-icons-css" href="http://wp.lab/wp-content/plugins/google-maps-builder/vendor/wordimpress/maps-builder-core/includes/libraries/map-icons/css/map-icons.css?ver=2.1.2" type="text/css" media="all">
|
||||
@@ -4612,6 +4723,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hover-product-details/js/webappdesign_hover_product_details.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- ht-event -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ht-event/assets/js/htevent-widgets-active.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- html-forms -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/html-forms/assets/js/public.min.js?ver=1.0.6"></script>
|
||||
|
||||
@@ -4790,6 +4905,14 @@
|
||||
<link rel="stylesheet" id="DD_IMIN_WIDGET_CSS-css" href="http://wp.lab/wp-content/plugins/imincom-affiliate-plugin-for-wordpress/css/imin-widget.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- immobilien-leadgenerator -->
|
||||
<link rel="stylesheet" id="prt-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/prt-modern.css?ver=1.6.8.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="nouislider-css-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/nouislider.min.css?ver=1.6.8.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="owl-carousel-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/owl.carousel.min.css?ver=1.6.8.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="owl-carousel-theme-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/owl.theme.default.css?ver=1.6.8.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="hover-css-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/hover-min.css?ver=1.6.8.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- improved-let-it-snow -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/improved-let-it-snow/script/snowstorm-min.js?ver=3.5"></script>
|
||||
|
||||
@@ -5287,6 +5410,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kk-blog-card/index.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- klaro-consent-manager -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/klaro-consent-manager/js/klaro-config.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/klaro-consent-manager/js/klaro.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- kletterpartner-suche -->
|
||||
<link rel="stylesheet" id="kpsFrontendCss-css" href="http://wp.lab/wp-content/plugins/kletterpartner-suche/frontend/css/kps-frontend.css?ver=0.3" type="text/css" media="all">
|
||||
|
||||
@@ -5334,6 +5462,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kvl-localization/js/options.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- laboratory-menu-rest-endpoints -->
|
||||
<link rel="stylesheet" id="laboratory-menu-api-css" href="http://wp.lab/wp-content/plugins/laboratory-menu-rest-endpoints/src/css/laboratory-menu-api-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/laboratory-menu-rest-endpoints/src/js/laboratory-menu-api-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- lana-breadcrumb -->
|
||||
<link rel="stylesheet" id="lana-breadcrumb-css" href="http://wp.lab/wp-content/plugins/lana-breadcrumb//assets/css/lana-breadcrumb.css?ver=1.0.5" type="text/css" media="all">
|
||||
|
||||
@@ -5396,6 +5529,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lazy-load-for-videos/assets/js/lazyload-all.js?ver=2.3.1"></script>
|
||||
|
||||
|
||||
<!-- lazy-load-optimizer -->
|
||||
<script type="text/javascript" async="async" src="http://wp.lab/wp-content/plugins/lazy-load-optimizer/assets/frontend/js/lazysizes.min.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- lazy-widget-loader -->
|
||||
<link rel="stylesheet" id="lazy-widget-loader-css" href="http://wp.lab/wp-content/plugins/lazy-widget-loader/css/lwl.css?ver=1.2.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lazy-widget-loader/js/lazy-widget-loader.js?ver=1.2.8"></script>
|
||||
@@ -5484,6 +5621,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/librevideojs-html5-player/librevideojs/js/cliplibrejs.dev.js?ver=1.2.3"></script>
|
||||
|
||||
|
||||
<!-- light-bakso -->
|
||||
<link rel="stylesheet" id="lightbakso-css" href="http://wp.lab/wp-content/plugins/light-bakso/public/css/lightbakso-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/light-bakso/public/js/lightbakso-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- light-comment-form -->
|
||||
<link rel="stylesheet" id="light-comment-form-css" href="http://wp.lab/wp-content/plugins/light-comment-form/light-comment-form.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/light-comment-form/light-comment-form.js?ver=1.0"></script>
|
||||
@@ -5800,6 +5942,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/luckywp-cookie-notice-gdpr/front/assets/main.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- luckywp-table-of-contents -->
|
||||
<link rel="stylesheet" id="lwptoc-main-css" href="http://wp.lab/wp-content/plugins/luckywp-table-of-contents/front/assets/main.min.css?ver=1.0.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/luckywp-table-of-contents/front/assets/main.min.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- lvl99-omny-embed -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lvl99-omny-embed/js/lvl99-omny-embed.js?ver=0.1.0"></script>
|
||||
|
||||
@@ -5935,6 +6082,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mam-image-and-video-accordion/js/mam-accourdion.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- mana-gateway -->
|
||||
<link rel="stylesheet" id="mana-gateway-css" href="http://wp.lab/wp-content/plugins/mana-gateway/inc/frontend/css/mana-gateway-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mana-gateway/inc/frontend/js/mana-gateway-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- mango-contact-form -->
|
||||
<link rel="stylesheet" id="mango-contact-form-plugin-css" href="http://wp.lab/wp-content/plugins/mango-contact-form/public/css/mango-contact-form-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mango-contact-form/public/js/mango-contact-form-public.js?ver=1.0.0"></script>
|
||||
@@ -6307,6 +6459,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/modern-footnotes/modern-footnotes.min.js?ver=1.1.2"></script>
|
||||
|
||||
|
||||
<!-- modern-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/modern-portfolio/js/script.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/modern-portfolio/js/fetchmore.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- modern-slider -->
|
||||
<link rel="stylesheet" id="modern-slider-css" href="http://wp.lab/wp-content/plugins/modern-slider/assets/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/modern-slider/assets/js/modernSlider.js?ver=1.0.0"></script>
|
||||
@@ -6728,6 +6885,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nitek-carousel-cool-transitions/public/js/nitek-carousel-public.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- nnsmarttooltip -->
|
||||
<link rel="stylesheet" id="NnSmartTooltip-css" href="http://wp.lab/wp-content/plugins/nnsmarttooltip/plugin-assets/public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nnsmarttooltip/plugin-assets/public.bundle.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- no-copy -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/no-copy/no-copy.js?ver=1.1.4"></script>
|
||||
|
||||
@@ -6763,6 +6925,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/notifyme/js/notifyme.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- novarum-json-importer -->
|
||||
<link rel="stylesheet" id="novarumimporter-css" href="http://wp.lab/wp-content/plugins/novarum-json-importer/public/css/novarumimporter-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/novarum-json-importer/public/js/novarumimporter-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- novelist -->
|
||||
<link rel="stylesheet" id="novelist-css" href="http://wp.lab/wp-content/plugins/novelist/templates/novelist-front-end.min.css?ver=1.1.5" type="text/css" media="all">
|
||||
|
||||
@@ -7306,6 +7473,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/placester/placester-search/js/listings.js?ver=1.4.3"></script>
|
||||
|
||||
|
||||
<!-- planaday-api -->
|
||||
<link rel="stylesheet" id="planaday_fa-css" href="http://wp.lab/wp-content/plugins/planaday-api/css/planaday-fa.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="planaday_calendar_style-css" href="http://wp.lab/wp-content/plugins/planaday-api/css/fullcalendar.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="planaday_style-css" href="http://wp.lab/wp-content/plugins/planaday-api/css/planaday-style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/planaday-api/js/moment.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/planaday-api/js/fullcalendar.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- plestar-directory-listing -->
|
||||
<link rel="stylesheet" id="pdl-widgets-css" href="http://wp.lab/wp-content/plugins/plestar-directory-listing/assets/css/widgets.min.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -7508,6 +7683,10 @@
|
||||
<link rel="stylesheet" id="post_hit_counter-widget-css" href="http://wp.lab/wp-content/plugins/post-hit-counter/assets/css/widget.css?ver=1.3.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- post-likedislike -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/post-likedislike/assests/js/ajax.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- post-likerator -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/post-likerator/javascript/post-likerator.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -7660,6 +7839,18 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-events/assets/js/frontend/press-events.min.js?ver=1.0.6"></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>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/demo.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/test.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- primer-by-chloedigital -->
|
||||
<link rel="stylesheet" id="primer-by-chloedigital-css" href="http://wp.lab/wp-content/plugins/primer-by-chloedigital/public/css/primer-by-chloedigital-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/primer-by-chloedigital/public/js/primer-by-chloedigital-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- printedly -->
|
||||
<link rel="stylesheet" id="printedly-css" href="http://wp.lab/wp-content/plugins/printedly/public/css/printedly-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/printedly/public/js/printedly-public.js?ver=1.0.0"></script>
|
||||
@@ -7898,6 +8089,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quotes-llama/quotes-llama.js?ver=0.7"></script>
|
||||
|
||||
|
||||
<!-- quran-live -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quran-live//template/js/quranlive_load.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quran-live//template/js/screenfull.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- qwiz-online-quizzes-and-flashcards -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/qwiz-online-quizzes-and-flashcards/qwiz.js?ver=3.26"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/qwiz-online-quizzes-and-flashcards/qwizcards.js?ver=3.26"></script>
|
||||
@@ -8103,6 +8299,11 @@
|
||||
<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="">
|
||||
|
||||
|
||||
<!-- relations-lite -->
|
||||
<link rel="stylesheet" id="relations-public-style-css" href="http://wp.lab/wp-content/plugins/relations-lite/assets/public/css/relations.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/relations-lite/assets/public/js/relations.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- relic-sales-motivator-woocommerce-lite -->
|
||||
<link rel="stylesheet" id="sales-motivator-woocommerce-lite-css" href="http://wp.lab/wp-content/plugins/relic-sales-motivator-woocommerce-lite/public/css/sales-motivator-woocommerce-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/relic-sales-motivator-woocommerce-lite/public/js/notify.min.js?ver=1.0.0"></script>
|
||||
@@ -8118,6 +8319,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/reportcomments/reportcomments.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- reputate -->
|
||||
<link rel="stylesheet" id="reputate_wordpress-css" href="http://wp.lab/wp-content/plugins/reputate/public/css/reputate_wordpress-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/reputate/public/js/reputate_wordpress-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- rescue-children-banner -->
|
||||
<link rel="stylesheet" id="rcb_style_front_end-css" href="http://wp.lab/wp-content/plugins/rescue-children-banner/css/front-end.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rescue-children-banner/javascript/front-end.js?ver=1.0"></script>
|
||||
@@ -8274,6 +8480,11 @@
|
||||
<link rel="stylesheet" id="reviewengine-frontend-css" href="http://wp.lab/wp-content/plugins/review-engine/assets/css/ree-frontend.css?ver=1.0.41" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- review-pro -->
|
||||
<link rel="stylesheet" id="review-pro-css" href="http://wp.lab/wp-content/plugins/review-pro/public/css/review-pro-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/review-pro/public/js/review-pro-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- reviewpress -->
|
||||
<link rel="stylesheet" id="review_styles-css" href="http://wp.lab/wp-content/plugins/reviewpress/assets/css/front.css?ver=1.0.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/reviewpress/assets/js/front-main.js?ver=1.0.5"></script>
|
||||
@@ -8492,6 +8703,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sassy-social-share/public/js/sassy-social-share-public.js?ver=3.1.5"></script>
|
||||
|
||||
|
||||
<!-- save-page-to-pdf -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/save-page-to-pdf/api2pdf.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- schemaninja -->
|
||||
<link rel="stylesheet" id="schema-ninja-style-css" href="http://wp.lab/wp-content/plugins/schemaninja/style.css?ver=2.2.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="fontawesome-css" href="http://wp.lab/wp-content/plugins/schemaninja/assets/font-awesome/css/font-awesome.min.css?ver=2.2.1" type="text/css" media="all">
|
||||
@@ -8578,6 +8793,11 @@
|
||||
<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>
|
||||
|
||||
|
||||
<!-- secure-copy-content-protection -->
|
||||
<link rel="stylesheet" id="secure-copy-content-protection-css" href="http://wp.lab/wp-content/plugins/secure-copy-content-protection/public/css/secure-copy-content-protection-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/secure-copy-content-protection/public/js/secure-copy-content-protection-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- secure-downloads -->
|
||||
<link rel="stylesheet" id="opsd-client-pages-css" href="http://wp.lab/wp-content/plugins/secure-downloads/css/client.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="opsd-admin-popover-css" href="http://wp.lab/wp-content/plugins/secure-downloads/css/popover.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -8649,6 +8869,26 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-check/js/base.js?ver=3.1"></script>
|
||||
|
||||
|
||||
<!-- seo-content-randomizer -->
|
||||
<link rel="stylesheet" id="issscr-css" href="http://wp.lab/wp-content/plugins/seo-content-randomizer/public/css/issscr-public.css?ver=3.3.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-content-randomizer/public/js/issscr-public.js?ver=3.3.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-content-randomizer/public/plugins/flexslider/jquery.flexslider-min.js?ver=3.3.1"></script>
|
||||
|
||||
|
||||
<!-- seo-dynamic-pages -->
|
||||
<link rel="stylesheet" id="seo-dynamic-pages-css" href="http://wp.lab/wp-content/plugins/seo-dynamic-pages/public/css/seo-dynamic-pages-public.css?ver=1.0.16" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/seo-dynamic-pages/public/css/bootstrap-grid.min.css?ver=1.0.16" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bootstrap-helpers-css" href="http://wp.lab/wp-content/plugins/seo-dynamic-pages/public/css/bootstrap-helpers.css?ver=1.0.16" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="seo-dynamic-pages-custom-css" href="http://wp.lab/wp-content/plugins/seo-dynamic-pages/public/css/seo-dynamic-pages-public-custom.css?ver=1.0.16" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-dynamic-pages/public/js/seo-dynamic-pages-public.js?ver=1.0.16"></script>
|
||||
|
||||
|
||||
<!-- seo-landing-page-generator -->
|
||||
<link rel="stylesheet" id="issslpg-css" href="http://wp.lab/wp-content/plugins/seo-landing-page-generator/public/css/issslpg-public.css?ver=1.5.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-landing-page-generator/public/js/issslpg-public.js?ver=1.5.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-landing-page-generator/public/plugins/flexslider/jquery.flexslider-min.js?ver=1.5.0"></script>
|
||||
|
||||
|
||||
<!-- seo-searchterms-admin -->
|
||||
<link rel="stylesheet" id="searchterms-admin-plugin-styles-css" href="http://wp.lab/wp-content/plugins/seo-searchterms-admin/css/public.css?ver=0.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-searchterms-admin/js/public.js?ver=0.1.0"></script>
|
||||
@@ -8714,6 +8954,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shared-whiteboard/helper.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- sharethis-reviews -->
|
||||
<link rel="stylesheet" id="share-this-reviews-review-css" href="http://wp.lab/wp-content/plugins/sharethis-reviews/css/sharethisreviews.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sharethis-reviews/js/review.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sharewhere -->
|
||||
<link rel="stylesheet" id="wpls-magnific-popup-css" href="http://wp.lab/wp-content/plugins/sharewhere/includes/assets/lib/magnific-popup/magnific-popup.css?ver=1.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpls-main-css" href="http://wp.lab/wp-content/plugins/sharewhere/includes/assets/main/css/wpls.min.css?ver=1.2" type="text/css" media="all">
|
||||
@@ -8751,6 +8996,20 @@
|
||||
<link rel="stylesheet" id="shop-page-wp-base-styles-css" href="http://wp.lab/wp-content/plugins/shop-page-wp/assets/css/shop-page-wp-base-styles.css?ver=1.0.8" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- shopcode-menu-horizontal-woocommerce -->
|
||||
<link rel="stylesheet" id="ohw_main_style-css" href="http://wp.lab/wp-content/plugins/shopcode-menu-horizontal-woocommerce/assets/css/main.css?ver=1.0" type="text/css" media="">
|
||||
|
||||
|
||||
<!-- shopcode-owl-carousel-woocommerce-widget -->
|
||||
<link rel="stylesheet" id="ocww_owl_main_style-css" href="http://wp.lab/wp-content/plugins/shopcode-owl-carousel-woocommerce-widget/assets/css/main.css?ver=1.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shopcode-owl-carousel-woocommerce-widget/assets/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- shopcode-popup-profile-builder -->
|
||||
<link rel="stylesheet" id="ppb_owl_main_style-css" href="http://wp.lab/wp-content/plugins/shopcode-popup-profile-builder/assets/css/main.css?ver=1.0" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shopcode-popup-profile-builder/assets/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- shortcodes-finder -->
|
||||
<link rel="stylesheet" id="shortcodes-finder-css" href="http://wp.lab/wp-content/plugins/shortcodes-finder/public/css/shortcodes-finder-public.css?ver=1.1.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/shortcodes-finder/public/js/shortcodes-finder-public.js?ver=1.1.3"></script>
|
||||
@@ -8874,6 +9133,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-contact-form-revisited-plugin/assets/js/simple-contact-form-revisited-plugin.js?ver=2.0.9"></script>
|
||||
|
||||
|
||||
<!-- simple-cookie-control -->
|
||||
<link rel="stylesheet" id="cookieconsent-css" href="http://wp.lab/wp-content/plugins/simple-cookie-control/public/css/cookieconsent.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-cookie-control/public/js/cookieconsent.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-cookie-control/public/js/simple-cookie-control-public.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- simple-cookie-notification-bar -->
|
||||
<link rel="stylesheet" id="scnb-cookiebar-css-css" href="http://wp.lab/wp-content/plugins/simple-cookie-notification-bar/assets/css/style.min.css?ver=1.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-cookie-notification-bar/assets/js/script.js?ver=1.5"></script>
|
||||
@@ -8941,6 +9206,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-mapbox-data/public/js/simple-mapbox-data-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- simple-nested-menu -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-nested-menu/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- simple-owl-carousel -->
|
||||
<link rel="stylesheet" id="simple-owl-carousel-css" href="http://wp.lab/wp-content/plugins/simple-owl-carousel/public/css/simple-owl-carousel-public.css?ver=1.0.3" type="text/css" media="all">
|
||||
|
||||
@@ -9184,6 +9453,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/smart-faq/js/smartfaq.min.js?ver=1.4"></script>
|
||||
|
||||
|
||||
<!-- smart-image-resize -->
|
||||
<link rel="stylesheet" id="plugpix-smart-image-resize-css" href="http://wp.lab/wp-content/plugins/smart-image-resize/public/css/plugpix-smart-image-resize-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/smart-image-resize/public/js/plugpix-smart-image-resize-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- smart-logo-showcase-lite -->
|
||||
<link rel="stylesheet" id="smls-fontawesome-style-css" href="http://wp.lab/wp-content/plugins/smart-logo-showcase-lite/css/font-awesome.min.css?ver=1.0.5" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="smls-owl-style-css" href="http://wp.lab/wp-content/plugins/smart-logo-showcase-lite/css/owl.carousel.css?ver=1.0.5" type="text/css" media="all">
|
||||
@@ -9692,6 +9966,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/super-socializer/js/front/sharing/sharing.js?ver=7.9.5"></script>
|
||||
|
||||
|
||||
<!-- super-web-share -->
|
||||
<link rel="stylesheet" id="super-web-share-css" href="http://wp.lab/wp-content/plugins/super-web-share/public/css/super-web-share-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/super-web-share/public/js/super-web-share-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- superior-faq -->
|
||||
<link rel="stylesheet" id="superior-faq-css" href="http://wp.lab/wp-content/plugins/superior-faq/css/superior-faq.css?ver=1.0.2" type="text/css" media="all">
|
||||
|
||||
@@ -9992,6 +10271,11 @@
|
||||
<link rel="stylesheet" id="wptpsa_fontend_style-css" href="http://wp.lab/wp-content/plugins/themepaste-secure-admin/css/wptpsa-frontend.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- themeregion-companion -->
|
||||
<link rel="stylesheet" id="themeregion-companion-css" href="http://wp.lab/wp-content/plugins/themeregion-companion/public/css/themeregion-companion-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themeregion-companion/public/js/themeregion-companion-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- themify-builder-lite -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themify-builder-lite/themify/js/main.min.js?ver=2.0.9"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/themify-builder-lite/themify/js/main.js?ver=2.0.9"></script>
|
||||
@@ -10130,6 +10414,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/topup-plus/js/top_up-min.js?ver=2.5.3.2"></script>
|
||||
|
||||
|
||||
<!-- total-gdpr-compliance-lite -->
|
||||
<link rel="stylesheet" id="tgdprc-frontend_assets_styles-css" href="http://wp.lab/wp-content/plugins/total-gdpr-compliance-lite/assets/css/frontend-style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="tgdprc_mCustomScroller_styles-css" href="http://wp.lab/wp-content/plugins/total-gdpr-compliance-lite/assets/css/jquery.mCustomScrollbar.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/total-gdpr-compliance-lite/assets/js/frontend-script.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/total-gdpr-compliance-lite/assets/js/jquery.mCustomScrollbar.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- total-team-lite -->
|
||||
<link rel="stylesheet" id="totalteam-frontend-style-css" href="http://wp.lab/wp-content/plugins/total-team-lite/assets/css/front-end.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="totalteam-slider-frontend-style-css" href="http://wp.lab/wp-content/plugins/total-team-lite/assets/css/jquery-ui.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -10198,6 +10489,16 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tripadvisor-stream/js/tripadvisorstream.0.2.js?ver=0.1"></script>
|
||||
|
||||
|
||||
<!-- truendo -->
|
||||
<link rel="stylesheet" id="truendo_wordpress-css" href="http://wp.lab/wp-content/plugins/truendo/public/css/truendo-public.css?ver=1.0.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/truendo/public/js/truendo-public.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- trusted-order-notifications -->
|
||||
<link rel="stylesheet" id="vnf-style-css" href="http://wp.lab/wp-content/plugins/trusted-order-notifications/assets/css/vnfaster-order.min.css?ver=2.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/trusted-order-notifications/assets/js/vnfaster-order.min.js?ver=2.0.0"></script>
|
||||
|
||||
|
||||
<!-- try-on-for-woocommerce -->
|
||||
<link rel="stylesheet" id="eyewear_virtual_try_on_wordpress-css" href="http://wp.lab/wp-content/plugins/try-on-for-woocommerce/public/css/eyewear_virtual_try_on_wordpress-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="eyewear_virtual_try_on_wordpressjquery-css" href="http://wp.lab/wp-content/plugins/try-on-for-woocommerce/public/css/jquery-ui.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -10333,6 +10634,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-gdpr-consent/public/js/ultimate-gdpr-consent-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- ultimate-instagram-feed -->
|
||||
<link rel="stylesheet" id="ultimate-instagram-feed-css" href="http://wp.lab/wp-content/plugins/ultimate-instagram-feed/public/css/ultimate-instagram-feed-public.css?ver=1.3.5" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimate-instagram-feed/public/js/ultimate-instagram-feed-public.js?ver=1.3.5"></script>
|
||||
|
||||
|
||||
<!-- ultimate-live-cricket-lite -->
|
||||
<link rel="stylesheet" id="wss-live-score-bootstrap-style-css" href="http://wp.lab/wp-content/plugins/ultimate-live-cricket-lite/lib/bootstrap4/css/bootstrap.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wss-live-score-main-style-css" href="http://wp.lab/wp-content/plugins/ultimate-live-cricket-lite/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -10400,6 +10706,19 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultimeter/public/js/ultimeter-public.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- ultra-coupons-cashbacks -->
|
||||
<link rel="stylesheet" id="jquery_datatable_style-css" href="http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/css/jquery.dataTables.min.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="upc-style-css" href="http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/clipboard.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/jquery.countdown.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/jquery.dataTables.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ultra-coupons-cashbacks/assets/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- um-events-lite-for-ultimate-member -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/um-events-lite-for-ultimate-member/assets/js/um-events.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- um-plug -->
|
||||
<link rel="stylesheet" id="twentyfifteen-print-css" href="http://wp.lab/wp-content/plugins/um-plug/prop/print.css?ver=1.2.0" type="text/css" media="print">
|
||||
<link rel="stylesheet" id="twentyfifteen-medium-css" href="http://wp.lab/wp-content/plugins/um-plug/prop/medium.css?ver=1.2.0" type="text/css" media="screen and (max-width: 800px)">
|
||||
@@ -10521,6 +10840,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/user-registration/assets/js/frontend/password-strength-meter.min.js?ver=1.1.6"></script>
|
||||
|
||||
|
||||
<!-- user-submitted-posts -->
|
||||
<link rel="stylesheet" id="usp_style-css" href="http://wp.lab/wp-content/plugins/user-submitted-posts/resources/usp.css?ver=20181117" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/user-submitted-posts/resources/jquery.cookie.js?ver=20181117"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/user-submitted-posts/resources/jquery.parsley.min.js?ver=20181117"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/user-submitted-posts/resources/jquery.usp.core.js?ver=20181117"></script>
|
||||
|
||||
|
||||
<!-- userdocs -->
|
||||
<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">
|
||||
|
||||
@@ -10692,6 +11018,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/voice-search/js/voice-search.min%20.js?ver=1.2.1"></script>
|
||||
|
||||
|
||||
<!-- voting-for-a-photo -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/voting-for-a-photo/assets/frontend/js/voting-for-photo.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- vowels-contact-form-with-drag-and-drop -->
|
||||
<link rel="stylesheet" id="vowels-css" href="http://wp.lab/wp-content/plugins/vowels-contact-form-with-drag-and-drop/css/styles.css?ver=1.0.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vowels-contact-form-with-drag-and-drop/js/vowels.js?ver=1.0.4"></script>
|
||||
@@ -10794,6 +11124,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-rich-reviews-lite/assets/js/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wc-shipping-insurance -->
|
||||
<link rel="stylesheet" id="shipping_insurance_policy-css" href="http://wp.lab/wp-content/plugins/wc-shipping-insurance/assets/css/shipping-insurance.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wc-shortcodes -->
|
||||
<link rel="stylesheet" id="wc-shortcodes-style-css" href="http://wp.lab/wp-content/plugins/wc-shortcodes/public/assets/css/style.css?ver=3.42" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-shortcodes/public/assets/js/rsvp.js?ver=3.42"></script>
|
||||
@@ -11017,6 +11351,10 @@
|
||||
<link rel="stylesheet" id="widget-for-eventbrite-api-css" href="http://wp.lab/wp-content/plugins/widget-for-eventbrite-api/frontend/css/frontend.css?ver=1.5" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- widget-github-profile -->
|
||||
<link rel="stylesheet" id="gh-profile-widget-style-css" href="http://wp.lab/wp-content/plugins/widget-github-profile/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- widget-in-content -->
|
||||
<link rel="stylesheet" id="widget-in-content-css" href="http://wp.lab/wp-content/plugins/widget-in-content/widget-in-content.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -11175,6 +11513,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-delivery-scheduler/public/js/woocommerce-delivery-scheduler-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- woo-earn-sharing -->
|
||||
<link rel="stylesheet" id="woo-earn-sharing-css" href="http://wp.lab/wp-content/plugins/woo-earn-sharing/public/css/woo-earn-sharing-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- woo-easy-view -->
|
||||
<link rel="stylesheet" id="wes-simplegrid-css" href="http://wp.lab/wp-content/plugins/woo-easy-view/public/css/simplegrid.min.css?ver=1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="woocommerce easy view-css" href="http://wp.lab/wp-content/plugins/woo-easy-view/public/css/r_wev_search-public.css?ver=1.0" type="text/css" media="all">
|
||||
@@ -11257,6 +11599,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-responsive-product-category/assets/woo-metismenu.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- woo-seo-content-randomizer-addon -->
|
||||
<link rel="stylesheet" id="isswscr-css" href="http://wp.lab/wp-content/plugins/woo-seo-content-randomizer-addon/public/css/isswscr-public.css?ver=1.1.0" type="text/css" media="all">
|
||||
<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-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>
|
||||
@@ -11339,6 +11686,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woolentor-addons/assets/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- woorousell -->
|
||||
<link rel="stylesheet" id="woorousell-css" href="http://wp.lab/wp-content/plugins/woorousell/assets/css/core.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- woosaleskit-bar -->
|
||||
<link rel="stylesheet" id="wsk-font-awesome-css" href="http://wp.lab/wp-content/plugins/woosaleskit-bar/assets/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="woosaleskit_bar-css" href="http://wp.lab/wp-content/plugins/woosaleskit-bar/public/css/woosaleskit_bar-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -11366,6 +11717,22 @@
|
||||
<link rel="stylesheet" href="http://wp.lab/wp-content/plugins/wordpress-23-related-posts-plugin/static/themes/vertical-m.css?version=3.6.4">
|
||||
|
||||
|
||||
<!-- wordpress-ecommerce -->
|
||||
<link rel="stylesheet" id="colorbox-css" href="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/css/colorbox.css?ver=3.2.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="jquery-ui-css" href="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/css/jquery-ui.min.css?ver=3.2.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="mp-select2-css" href="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/select2/select2.css?ver=3.2.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="mp-base-css" href="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/css/marketpress.css?ver=3.2.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="mp-theme-css" href="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/themes/default.css?ver=3.2.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/js/ajaxq.min.js?ver=3.2.8"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/js/jquery.colorbox-min.js?ver=3.2.8"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/js/jquery.validate.min.js?ver=3.2.8"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/js/mp-cart.js?ver=3.2.8"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/js/hoverintent.min.js?ver=3.2.8"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/select2/select2.min.js?ver=3.2.8"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/js/frontend.js?ver=3.2.8"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wordpress-ecommerce/ui/js/mp-equal-height.js?ver=3.2.8"></script>
|
||||
|
||||
|
||||
<!-- wordpress-popular-posts -->
|
||||
<link rel="stylesheet" id="wordpress-popular-posts-css-css" href="http://wp.lab/wp-content/plugins/wordpress-popular-posts/public/css/wpp.css?ver=4.0.13" type="text/css" media="all">
|
||||
|
||||
@@ -11457,6 +11824,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-advertize-it/javascript/wp-advertize-it.js?ver=1.2.1"></script>
|
||||
|
||||
|
||||
<!-- wp-affiliate-disclosure -->
|
||||
<link rel="stylesheet" id="wp-affiliate-disclosure-css" href="http://wp.lab/wp-content/plugins/wp-affiliate-disclosure/assets/css/core.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-airbnb-review-slider -->
|
||||
<link rel="stylesheet" id="wpairbnb_w3-css" href="http://wp.lab/wp-content/plugins/wp-airbnb-review-slider/public/css/wpairbnb_w3.css?ver=1.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="unslider-css" href="http://wp.lab/wp-content/plugins/wp-airbnb-review-slider/public/css/wprs_unslider.css?ver=1.2" type="text/css" media="all">
|
||||
@@ -11611,6 +11982,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-cfg-leaderboard/js/jsgrid/jsgrid.min.js?ver=1.3.1"></script>
|
||||
|
||||
|
||||
<!-- wp-change-logo -->
|
||||
<link rel="stylesheet" id="wp-change-logo-css" href="http://wp.lab/wp-content/plugins/wp-change-logo/public/css/wp-change-logo-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-change-logo/public/js/wp-change-logo-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-charts-and-graphs -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-charts-and-graphs/assets/js/pantherius_wp_charts.js?ver=1.0.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-charts-and-graphs/assets/js/pantherius_wp_charts_init.js?ver=1.0.4"></script>
|
||||
@@ -11668,6 +12044,11 @@
|
||||
<link rel="stylesheet" id="wp-cf-validation-css" href="http://wp.lab/wp-content/plugins/wp-comments-form-validation/assets/css/public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-contact-form7-email-spam-blocker -->
|
||||
<link rel="stylesheet" id="contact-form-7-email-spam-blocker-css" href="http://wp.lab/wp-content/plugins/wp-contact-form7-email-spam-blocker/public/css/contact-form-7-email-spam-blocker-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-contact-form7-email-spam-blocker/public/js/contact-form-7-email-spam-blocker-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-cookie-law-info -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-cookie-law-info/assets/js/jquery.wcl.min.js?ver=1.0"></script>
|
||||
|
||||
@@ -11798,6 +12179,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-editor-comments-plus/dist/assets/wpEditorCommentsPlus.js?ver=1.1.4"></script>
|
||||
|
||||
|
||||
<!-- wp-education -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-education/assets/js/popper.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-education/assets/js/jquery.counterup.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-education/assets/js/jquery.countdown.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-education/assets/js/maps.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-education/assets/js/maps-address.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-ehesive -->
|
||||
<link rel="stylesheet" id="wp-ehesive-css" href="http://wp.lab/wp-content/plugins/wp-ehesive/public/css/wp-ehesive-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-ehesive/public/js/wp-ehesive-public.js?ver=1.0.0"></script>
|
||||
@@ -12063,6 +12452,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-image-zoooom/assets/js/image_zoom-init.js?ver=1.21"></script>
|
||||
|
||||
|
||||
<!-- wp-imageviewer -->
|
||||
<link rel="stylesheet" id="wp-imageviewer-css" href="http://wp.lab/wp-content/plugins/wp-imageviewer/imageviewer/imageviewer.css?ver=1.0.1" type="text/css" media="screen">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-imageviewer/imageviewer/imageviewer.js?ver=1.0.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-imageviewer/wp-imageviewer-init.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- wp-insurance -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-insurance/assets/js/popper.min.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -12095,6 +12490,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-jw-player/js/swfobject.js?ver=1.7"></script>
|
||||
|
||||
|
||||
<!-- wp-kiosk-slides -->
|
||||
<link rel="stylesheet" id="kiosk-slides-css" href="http://wp.lab/wp-content/plugins/wp-kiosk-slides/public/css/kiosk-slides-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-kiosk-slides/public/js/kiosk-slides-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- wp-last-seen -->
|
||||
<link rel="stylesheet" id="WP_LastSeen-css" href="http://wp.lab/wp-content/plugins/wp-last-seen/static/css/front-last-seen.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-last-seen/static/js/front-last-seen.js?ver=1.0.2"></script>
|
||||
@@ -12251,6 +12651,11 @@
|
||||
<link rel="stylesheet" id="wpmmanagerLite-icomoon-style-css" href="http://wp.lab/wp-content/plugins/wp-media-manager-lite/css/icomoon/icomoon.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-media-stories -->
|
||||
<link rel="stylesheet" id="media_story-plugin-styles-css" href="http://wp.lab/wp-content/plugins/wp-media-stories/assets/css/media-stories.min.css?ver=0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-media-stories/assets/js/media-stories.js?ver=0.1"></script>
|
||||
|
||||
|
||||
<!-- wp-megamenu -->
|
||||
<link rel="stylesheet" id="wpmm_css-css" href="http://wp.lab/wp-content/plugins/wp-megamenu/assets/css/wpmm.css?ver=1.1.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-megamenu/assets/js/wpmm.js?ver=1.1.2"></script>
|
||||
@@ -12381,6 +12786,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-player/assets/js/wp-player.js?ver=2.6.1"></script>
|
||||
|
||||
|
||||
<!-- wp-politic -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-politic/assets/js/popper.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-polls -->
|
||||
<link rel="stylesheet" id="wp-polls-css" href="http://wp.lab/wp-content/plugins/wp-polls/polls-css.css?ver=2.73.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-polls/polls-js.js?ver=2.73.8"></script>
|
||||
@@ -12400,6 +12809,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-post-likes/js/wp-post-likes.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-post-nav -->
|
||||
<link rel="stylesheet" id="wp-post-nav-css" href="http://wp.lab/wp-content/plugins/wp-post-nav/public/css/wp-post-nav-public.php?ver=0.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-postratings -->
|
||||
<link rel="stylesheet" id="wp-postratings-css" href="http://wp.lab/wp-content/plugins/wp-postratings/css/postratings-css.css?ver=1.85" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-postratings/js/postratings-js.js?ver=1.85"></script>
|
||||
@@ -12522,6 +12935,8 @@
|
||||
<!-- wp-responsive-table -->
|
||||
<link rel="stylesheet" id="wp-responsive-table-css" href="http://wp.lab/wp-content/plugins/wp-responsive-table/public/css/wp-responsive-table-styles.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-responsive-table/public/js/wp-responsive-table-public.js?ver=1.0.2"></script>
|
||||
<link rel="stylesheet" id="wprt-styles-css" href="http://wp.lab/wp-content/plugins/wp-responsive-table/assets/frontend/css/wprt-styles.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-responsive-table/assets/frontend/js/wprt-script.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- wp-rest-theme-mod-endpoint -->
|
||||
@@ -12937,6 +13352,20 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-yelp-review-slider/public/js/wprs-unslider-min.js?ver=2.8"></script>
|
||||
|
||||
|
||||
<!-- wp-youtube-embed -->
|
||||
<link rel="stylesheet" id="cws-youtube-pro-css" href="http://wp.lab/wp-content/plugins/wp-youtube-embed/public/css/cws-youtube-pro-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="cws_ytp_slick_carousel_css-css" href="http://wp.lab/wp-content/plugins/wp-youtube-embed/shortcodes/pro/lib/slick/slick.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="cws_ytp_slick_carousel_css_theme-css" href="http://wp.lab/wp-content/plugins/wp-youtube-embed/shortcodes/pro/lib/slick/slick-theme.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-zillow-review-slider -->
|
||||
<link rel="stylesheet" id="wpzillow_w3-css" href="http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/css/wpzillow_w3.css?ver=1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="unslider-css" href="http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/css/wprs_unslider.css?ver=1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="unslider-dots-css" href="http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/css/wprs_unslider-dots.css?ver=1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/js/wprev-public.js?ver=1.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-zillow-review-slider/public/js/wprs-unslider-min.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- wp2newsletter -->
|
||||
<link rel="stylesheet" id="wpnewsletter-campaign-css" href="http://wp.lab/wp-content/plugins/wp2newsletter/public/css/wpnewsletter-campaign-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp2newsletter/public/js/wpnewsletter-campaign-public.js?ver=1.0.0"></script>
|
||||
@@ -13000,6 +13429,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpcasa/assets/js/wpsight-listings-search.js?ver=1.0.6.1"></script>
|
||||
|
||||
|
||||
<!-- wpcl-beaver-extender -->
|
||||
<link rel="stylesheet" id="wpcl_beaver_extender_public-css" href="http://wp.lab/wp-content/plugins/wpcl-beaver-extender/assets/css/public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpcl-beaver-extender/src/scripts/public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpcomplete -->
|
||||
<link rel="stylesheet" id="wpcomplete-css" href="http://wp.lab/wp-content/plugins/wpcomplete/public/css/wpcomplete-public.css?ver=1.4.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpcomplete/public/js/wpcomplete-public.js?ver=1.4.4"></script>
|
||||
@@ -13010,6 +13444,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpcountdown/static/js/countdown.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- wpdrift-io-worker -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpdrift-io-worker/public/js/wpdrift-worker-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpfomo -->
|
||||
<link rel="stylesheet" id="wpfomo-css" href="http://wp.lab/wp-content/plugins/wpfomo/public/css/wpfomo-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpfomo/public/js/wpfomo-public.js?ver=1.0.0"></script>
|
||||
@@ -13245,6 +13683,11 @@
|
||||
<link rel="stylesheet" id="xllentech-calendar-styles-css" href="http://wp.lab/wp-content/plugins/xllentech-english-islamic-calendar/assets/style.css?ver=2.4.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- xllentech-salat-timings -->
|
||||
<link rel="stylesheet" id="xllentech-salat-timings/xllentech-salat-timings.php-css" href="http://wp.lab/wp-content/plugins/xllentech-salat-timings/public/css/xllentech-salat-timings-public.css?ver=1.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/xllentech-salat-timings/public/js/xllentech-salat-timings-public.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- xo-event-calendar -->
|
||||
<link rel="stylesheet" id="xo-event-calendar-css" href="http://wp.lab/wp-content/plugins/xo-event-calendar/css/xo-event-calendar.css?ver=1.1.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/xo-event-calendar/js/ajax.js?ver=1.1.6"></script>
|
||||
@@ -13325,6 +13768,22 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/youcruit-job-listings/public/js/youCruitPositions-public.min.js?ver=1.2.20"></script>
|
||||
|
||||
|
||||
<!-- your-idea-counts -->
|
||||
<link rel="stylesheet" id="yic-style-css" href="http://wp.lab/wp-content/plugins/your-idea-counts/css/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="yic-font-awesome-min-css" href="http://wp.lab/wp-content/plugins/your-idea-counts/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="yic-autocomplete-css" href="http://wp.lab/wp-content/plugins/your-idea-counts/css/yic_autocomplete.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="yic-sumoselect-css" href="http://wp.lab/wp-content/plugins/your-idea-counts/css/sumoselect.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="yic-jquery-flexdatalist-css" href="http://wp.lab/wp-content/plugins/your-idea-counts/css/multi-select-tag-css/jquery.flexdatalist.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="yic-content-inline-min-css" href="http://wp.lab/wp-content/plugins/your-idea-counts/css/wp-editor-css/content.inline.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="yic-content-min-css" href="http://wp.lab/wp-content/plugins/your-idea-counts/css/wp-editor-css/content.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="yic-skin-ie7-min-css" href="http://wp.lab/wp-content/plugins/your-idea-counts/css/wp-editor-css/skin.ie7.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="yic-skin-min-css" href="http://wp.lab/wp-content/plugins/your-idea-counts/css/wp-editor-css/skin.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="yic-admin-toolbar-bar-icons-css" href="http://wp.lab/wp-content/plugins/your-idea-counts/css/admin-toolbar-bar-icons.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/your-idea-counts/js/jquery.sumoselect.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/your-idea-counts/js/multi-select-tag-js/jquery.flexdatalist.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/your-idea-counts/js/function.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- youtube-channel -->
|
||||
<link rel="stylesheet" id="magnific-popup-au-css" href="http://wp.lab/wp-content/plugins/youtube-channel/assets/lib/magnific-popup/magnific-popup.min.css?ver=3.0.11.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="youtube-channel-css" href="http://wp.lab/wp-content/plugins/youtube-channel/assets/css/youtube-channel.css?ver=3.0.11.3" type="text/css" media="all">
|
||||
@@ -13341,6 +13800,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/youtube-not-found/assets/js/frontend.js?ver=2.1"></script>
|
||||
|
||||
|
||||
<!-- yt-no-cookie-embed -->
|
||||
<link rel="stylesheet" id="yt-no-cookie-embed-css" href="http://wp.lab/wp-content/plugins/yt-no-cookie-embed/public/css/yt-no-cookie-embed-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/yt-no-cookie-embed/public/js/yt-no-cookie-embed-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ytshare -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ytshare/ytshare_script.js?ver=1.1"></script>
|
||||
|
||||
|
||||
@@ -0,0 +1,294 @@
|
||||
# REST XML-RPC Data Checker translation template.
|
||||
# Copyright (C) 2018
|
||||
# This file is distributed under the same license as the REST XML-RPC Data Checker package.
|
||||
# Enrico Sorcinelli, 2018.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: REST XML-RPC Data Checker 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/rest-xmlrpc-data-"
|
||||
"checker\n"
|
||||
"POT-Creation-Date: 2018-11-11 19:25+0100\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: FName LName <FName.LName>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-admin.php:107
|
||||
#: php/adminpages/settings.php:58 php/adminpages/credits.php:20
|
||||
#: php/adminpages/user-fields.php:9
|
||||
msgid "REST XML-RPC Data Checker"
|
||||
msgstr ""
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-admin.php:165
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-admin.php:390
|
||||
#: php/adminpages/settings.php:117
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:69
|
||||
msgid "REST"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:70
|
||||
msgid "XML-RPC"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:71
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:80
|
||||
msgid "REST prefix"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:86
|
||||
msgid "Allow to change REST prefix route."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:92 php/adminpages/user-fields.php:12
|
||||
msgid "REST API"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:98
|
||||
msgid "Disable REST API interface for unlogged users"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:103
|
||||
msgid "Disable JSONP support in REST API interface"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:105
|
||||
msgid ""
|
||||
"Note this will deny all JSONP requests regardless of authentication and "
|
||||
"trust checks below."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:111
|
||||
msgid "Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:122
|
||||
msgid "Use Basic Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:124
|
||||
msgid ""
|
||||
"This allows you to restrict REST requests only for selected users. They have "
|
||||
"to supply username/password in the Basic Authentication header."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:126 php/adminpages/settings.php:193
|
||||
msgid ""
|
||||
"Your WordPress installation don't appear to run under a secure connection."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:128
|
||||
msgid ""
|
||||
"This plugin requires sending your username and password with every request, "
|
||||
"and should only be used over SSL-secured connections or for local "
|
||||
"development and testing."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:130
|
||||
msgid ""
|
||||
"Without SSL you are strongly encouraged to to turn off authentication in "
|
||||
"production environments."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:138 php/adminpages/settings.php:217
|
||||
msgid "Trusted netkwors"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:142 php/adminpages/settings.php:221
|
||||
msgid "Apply trusted networks criteria"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:145 php/adminpages/settings.php:224
|
||||
msgid ""
|
||||
"With this option active, only requests coming form a specific IPs or "
|
||||
"newtorks are allowed."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:146 php/adminpages/settings.php:163
|
||||
msgid ""
|
||||
"This will applied only if REST API interface has been disabled for unlogged "
|
||||
"users."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:148 php/adminpages/settings.php:225
|
||||
msgid "Add one trusted IP or network per line"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:151
|
||||
msgid "For example: 10.10.0.1/32 , 10.10.10/25 ."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:155
|
||||
msgid "Allowed routes"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:159
|
||||
msgid "Apply allowed routes criteria"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:162
|
||||
msgid "With this option active, you can selectively allow REST routes."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:184 php/adminpages/user-fields.php:24
|
||||
msgid "XML-RPC API"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:189
|
||||
msgid "Disable XML-RPC API interface"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:191
|
||||
msgid ""
|
||||
"This will deny all XML-RPC requests regardless of authentication and trust "
|
||||
"checks below."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:195
|
||||
msgid ""
|
||||
"The XML-RPC interface requires sending your username and password with every "
|
||||
"request, and should only be used over SSL-secured connections or for local "
|
||||
"development and testing."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:197
|
||||
msgid ""
|
||||
"Without SSL you are strongly encouraged to disable XML-RPC interface in "
|
||||
"production environments."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:203
|
||||
msgid "Trusted users"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:207
|
||||
msgid "Apply trusted users criteria"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:210
|
||||
msgid "With this option active, only selected users can access to XML-RPC API."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:211
|
||||
msgid "Select users for which enable XML-RPC"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:228
|
||||
msgid "For example: 10.10.0.1/32 or 10.10.10/25 ."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:232
|
||||
msgid "Allowed methods"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:236
|
||||
msgid "Apply trusted methods criteria"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:239
|
||||
msgid "With this option active, you can selectively allow XML-RPC methods."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:259
|
||||
msgid "Plugin settings"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/settings.php:263
|
||||
msgid "Completely remove options on plugin removal."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/credits.php:13
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/credits.php:14
|
||||
msgid "What's new in"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/credits.php:15
|
||||
#, php-format
|
||||
msgid "version %s"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/credits.php:16
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/credits.php:18
|
||||
msgid "Feel free to ask for help"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/credits.php:20
|
||||
msgid "by"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/users-list.php:12
|
||||
msgid ""
|
||||
"You don't have enough privileges to manage XML-RPC permissions for users."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/user-fields.php:16
|
||||
msgid "Enable REST interface"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/user-fields.php:19
|
||||
msgid ""
|
||||
"This setting will take effect only if the REST interface has been disabled "
|
||||
"for unlogged users."
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/user-fields.php:28
|
||||
msgid "Enable XML-RPC interface"
|
||||
msgstr ""
|
||||
|
||||
#: php/adminpages/user-fields.php:31
|
||||
msgid ""
|
||||
"This setting will take effect only if the XML-RPC interface hasn't been "
|
||||
"disabled."
|
||||
msgstr ""
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-users-wp-list-table.php:60
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-users-wp-list-table.php:61
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-users-wp-list-table.php:62
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-users-wp-list-table.php:141
|
||||
msgid "No items found."
|
||||
msgstr ""
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-rest.php:95
|
||||
msgid "Authenticated users only can access to the REST API."
|
||||
msgstr ""
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-rest.php:104
|
||||
#: php/class-rest-xmlrpc-data-checker-rest.php:117
|
||||
msgid "Incorrect username or password."
|
||||
msgstr ""
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-rest.php:135
|
||||
msgid "Forbidden REST API request."
|
||||
msgstr ""
|
||||
|
||||
#: php/class-rest-xmlrpc-data-checker-rest.php:154
|
||||
msgid "No route was found matching the URL and request method."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,375 @@
|
||||
# Copyright (C) 2018 SumaPress
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simple Cookie Control 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"http://wordpress.org/support/plugin/simple-cookie-control\n"
|
||||
"POT-Creation-Date: 2018-10-29 15:45:29+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-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.4.9\n"
|
||||
|
||||
#: admin/class-simple-cookie-control-admin.php:79
|
||||
msgid "Go to customizer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:64
|
||||
msgid "Main Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:69
|
||||
msgid "Main Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:74
|
||||
msgid "Main Link Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:81
|
||||
msgid "Button Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:86
|
||||
msgid "Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:91
|
||||
msgid "Button Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:98
|
||||
msgid "Decline Button Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:103
|
||||
msgid "Decline Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:108
|
||||
msgid "Decline Button Border Color"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Simple Cookie Control"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:164
|
||||
msgid "Customize Manager for custom cookie banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:190
|
||||
msgid "Styles of the banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:213
|
||||
msgid "Set the position of the cookie banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:218
|
||||
msgid "Banner bottom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:219
|
||||
msgid "Bottom - Floating left"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:220
|
||||
msgid "Bottom - Floating right"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:221
|
||||
msgid "Banner top"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:222
|
||||
msgid "Top - Floating left"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:223
|
||||
msgid "Top - Floating right"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:244
|
||||
msgid "Set the style of the cookie banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:249
|
||||
msgid "Block"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:250
|
||||
msgid "Classic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:251
|
||||
msgid "Edgeless"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:271
|
||||
msgid "Check to change colors here or uncheck to defined them in CSS."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:319
|
||||
msgid "Contents of the banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:342
|
||||
msgid "Main Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:365
|
||||
msgid "Link text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:384
|
||||
msgid "Link href (internal or external)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:407
|
||||
msgid "Main Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:426
|
||||
msgid "Secondary Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:449
|
||||
msgid "The content of the secondary banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:450
|
||||
msgid ""
|
||||
"Put only text or even html like: \"<span class=\"dashicons "
|
||||
"dashicons-image-filter\"></span>\" or an img tag."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:468
|
||||
msgid "Show or not the secondary banner after the primary one is hidden"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:469
|
||||
msgid ""
|
||||
"The secondary banner allow users see again the main banner to change their "
|
||||
"previous decision."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:491
|
||||
msgid "Analytics & Cookie control"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:514
|
||||
msgid "Activate or not the implementation of basic internal Analytics."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:532
|
||||
msgid "Cookie name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:533
|
||||
msgid "Name of the cookie that keeps track of users choice."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:551
|
||||
msgid "Days to expiry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:552
|
||||
msgid "The cookies expire date, specified in days."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:570
|
||||
msgid "Reload or not the web after the user make a choice."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:592
|
||||
msgid "Google Tag Manager ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:593
|
||||
msgid "Set your ID of Google Tag Manager."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:611
|
||||
msgid "Activate or not the implementation of Google Tag Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:616
|
||||
msgid "Do not activate it never"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:617
|
||||
msgid "Conditional on the acceptance of cookies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:618
|
||||
msgid "Always activated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:638
|
||||
msgid "Advanced control"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:661
|
||||
msgid "Add or not extra control to prevents the execution of third party scripts."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:684
|
||||
msgid "<scripts> to try to block"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:685
|
||||
msgid ""
|
||||
"Set comma separated list of words, absolute or relative urls, or only JS "
|
||||
"file names to allow this plugin to search them into the src of the "
|
||||
"<scripts> you want to block. Please be carefoul with this!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:708
|
||||
msgid "Blacklist to block (also about JS inline with external calls into the code)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:709
|
||||
msgid ""
|
||||
"Set comma separated list of regexes to test URLs against. Example: "
|
||||
"/black-domain-name-1/, /black-domain-name-2/ "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:728
|
||||
msgid ""
|
||||
"Whitelist not to block (also about JS inline with external calls into the "
|
||||
"code)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:729
|
||||
msgid ""
|
||||
"Set comma separated list of regexes to test URLs against. Example: "
|
||||
"/white-domain-name-1/, /white-domain-name-2/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-internal-analytics.php:19
|
||||
msgid "Total: %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-internal-analytics.php:28
|
||||
msgid "Data from:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-internal-analytics.php:30
|
||||
msgid "Accepted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-internal-analytics.php:32
|
||||
msgid "Rejected"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-internal-analytics.php:38
|
||||
msgid "Reset data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:19
|
||||
msgid ""
|
||||
"With this plugin you can show/hide conditional content depending on the "
|
||||
"acceptance of cookies with:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:21
|
||||
msgid "A specific block of gutenberg."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:22
|
||||
msgid "Some shortocodes described below."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:23
|
||||
msgid "Others advanced options that you can configure in this section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:26
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:28
|
||||
msgid "your content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:27
|
||||
msgid "Shortcode to show the content only when cookies have been accepted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:29
|
||||
msgid ""
|
||||
"Shortcode to show the content only when cookies have not been yet accepted "
|
||||
"(or even are rejected)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:31
|
||||
msgid ""
|
||||
"Shortcode to show IFRAME only when the user has accepted cookies or in "
|
||||
"another case this one show an IMAGE."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:33
|
||||
msgid "Attributes for [SCC_ALLOW], [SCC_DENY], [SCC_IFRAME] "
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:34
|
||||
msgid ""
|
||||
"message to show like a button to allow user to accept cookies of these "
|
||||
"shortcodes restring content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:35
|
||||
msgid ""
|
||||
"define a cookie if you want allow partial acceptance even though the main "
|
||||
"banner's cookies have been rejected"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:36
|
||||
msgid ""
|
||||
"define 'true'(default) or 'false' to show or not a secundary banner as "
|
||||
"button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:39
|
||||
msgid "Extra attributes only for [SCC_IFRAME] "
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:40
|
||||
msgid "url of the image to show when the user has NOT accepted cookies yet"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:41
|
||||
msgid "unique name to identify the previous image with CSS or JS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:42
|
||||
msgid "url /embed/ of the iframe to show when the user has accepted cookies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:43
|
||||
msgid "width in pixels for the iframe"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:44
|
||||
msgid "height in pixels for the iframe"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:47
|
||||
msgid "Try to force automatically the blocking of scripts?"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SumaPress"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Inform users that your site uses cookies and blocks them until the visitor "
|
||||
"accepts."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://sumapress.com"
|
||||
msgstr ""
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/simple-history/composer_file/composer.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/simple-history/composer_file/composer.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "bonny/wordpress-simple-history",
|
||||
"type": "wordpress-plugin",
|
||||
"description": "View recent changes made within WordPress, directly on your dashboard or on a separate page.",
|
||||
"keywords": [
|
||||
"WordPress",
|
||||
"log",
|
||||
"history"
|
||||
],
|
||||
"homepage": "http://simple-history.com/",
|
||||
"minimum-stability": "dev",
|
||||
"require-dev": {},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
},
|
||||
"version": "2.28.1",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Pär Thernström",
|
||||
"email": "par.thernstrom@gmail.com",
|
||||
"homepage": "https://eskapism.se/",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"dist": {
|
||||
"url": "https://downloads.wordpress.org/plugin/simple-history.zip",
|
||||
"type": "zip"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,185 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WB Newsletter 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-10-08 13:27+0330\n"
|
||||
"PO-Revision-Date: 2018-10-08 13:28+0330\n"
|
||||
"Last-Translator: Morteza Geransayeh <man4toman@gmail.com>\n"
|
||||
"Language-Team: WPB\n"
|
||||
"Language: fa_IR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.1.1\n"
|
||||
"X-Poedit-KeywordsList: _e;__\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPath-1: languages\n"
|
||||
|
||||
#: includes/newsletter_list.php:12 includes/newsletter_list.php:13
|
||||
msgid "Newsletter"
|
||||
msgstr "خبرنامه"
|
||||
|
||||
#: includes/newsletter_list.php:67
|
||||
msgid "No items avaliable."
|
||||
msgstr "موردی پیدا نشد."
|
||||
|
||||
#: includes/newsletter_list.php:135
|
||||
msgid "Name"
|
||||
msgstr "نام"
|
||||
|
||||
#: includes/newsletter_list.php:138
|
||||
msgid "Phone"
|
||||
msgstr "شماره موبایل"
|
||||
|
||||
#: includes/newsletter_list.php:141
|
||||
msgid "Email"
|
||||
msgstr "آدرس ایمیل"
|
||||
|
||||
#: includes/newsletter_list.php:143
|
||||
msgid "Register Date"
|
||||
msgstr "تاریخ عضویت"
|
||||
|
||||
#: includes/newsletter_list.php:205 simple-newsletter.php:85
|
||||
#: simple-newsletter.php:113
|
||||
msgid "You do not have the necessary access to change the data."
|
||||
msgstr "شما دسترسی لازم برای تغییر داده ها را ندارید."
|
||||
|
||||
#: includes/newsletter_list.php:283 includes/newsletter_list.php:284
|
||||
#: includes/newsletter_list.php:310
|
||||
msgid "Email Newsletter"
|
||||
msgstr "خبرنامه ایمیلی"
|
||||
|
||||
#: includes/newsletter_list.php:293 includes/newsletter_list.php:294
|
||||
msgid "Setting"
|
||||
msgstr "تنظیمات"
|
||||
|
||||
#: includes/newsletter_list.php:303 includes/newsletter_list.php:336
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr "شما دسترسی لازم برای مشاهده این صفحه را ندارید."
|
||||
|
||||
#: includes/newsletter_list.php:312
|
||||
msgid "Export Email List"
|
||||
msgstr "خروجی از لیست"
|
||||
|
||||
#: includes/newsletter_list.php:342
|
||||
msgid "Newsletter Settings"
|
||||
msgstr "تنظیمات خبرنامه"
|
||||
|
||||
#: includes/newsletter_list.php:346
|
||||
msgid "Email: "
|
||||
msgstr "ایمیل: "
|
||||
|
||||
#: includes/newsletter_list.php:347 includes/newsletter_list.php:352
|
||||
#: includes/newsletter_list.php:357
|
||||
msgid "Yes"
|
||||
msgstr "بله"
|
||||
|
||||
#: includes/newsletter_list.php:348 includes/newsletter_list.php:353
|
||||
#: includes/newsletter_list.php:358
|
||||
msgid "no"
|
||||
msgstr "خیر"
|
||||
|
||||
#: includes/newsletter_list.php:351
|
||||
msgid "Name: "
|
||||
msgstr "نام: "
|
||||
|
||||
#: includes/newsletter_list.php:356
|
||||
msgid "Phone: "
|
||||
msgstr "شماره موبایل: "
|
||||
|
||||
#: includes/newsletter_list.php:361
|
||||
msgid "Save"
|
||||
msgstr "ذخیره کردن"
|
||||
|
||||
#: languages/common-strings.php:2
|
||||
#, fuzzy
|
||||
#| msgid "Email Newsletter"
|
||||
msgid "Simple newsletter"
|
||||
msgstr "خبرنامه ایمیلی"
|
||||
|
||||
#: languages/common-strings.php:3
|
||||
#, fuzzy
|
||||
#| msgid "Subscribe to Newsletter"
|
||||
msgid "Simple custom newsletter."
|
||||
msgstr "اشتراک در خبرنامه"
|
||||
|
||||
#: languages/common-strings.php:4
|
||||
#, fuzzy
|
||||
msgid "Sekineh Ebrahimzadeh"
|
||||
msgstr "سکینه ابراهیم زاده"
|
||||
|
||||
#: simple-newsletter.php:91
|
||||
msgid "Settings saved successfully"
|
||||
msgstr "تنظیمات با موفقیت ذخیره شد"
|
||||
|
||||
#: simple-newsletter.php:121
|
||||
msgid "Please enter the email address"
|
||||
msgstr "لطفا آدرس ایمیل را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:124
|
||||
msgid "Invalid email address"
|
||||
msgstr "لطفا آدرس ایمیل معتبری وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:131
|
||||
msgid "Please enter the name"
|
||||
msgstr "لطفا نام خود را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:138
|
||||
msgid "Please enter the phone number"
|
||||
msgstr "لطفا شماره موبایل خود را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:141
|
||||
msgid "Invalid phone number"
|
||||
msgstr "لطفا شماره موبایل معتبری وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:161
|
||||
msgid "You are already a member"
|
||||
msgstr "شما قبلا عضو شدید."
|
||||
|
||||
#: simple-newsletter.php:176
|
||||
msgid "Your information has been successfully recorded."
|
||||
msgstr "اطلاعات شما با موفقیت ثبت شده است."
|
||||
|
||||
#: simple-newsletter.php:198
|
||||
msgid "Enter your name"
|
||||
msgstr "لطفا نام خود را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:201
|
||||
msgid "Enter your email address*"
|
||||
msgstr "آدرس ایمیل خود را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:204
|
||||
msgid "Enter your phone number"
|
||||
msgstr "لطفا شماره موبایل خود را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:206
|
||||
msgid "Subscribe to Newsletter"
|
||||
msgstr "اشتراک در خبرنامه"
|
||||
|
||||
#~ msgid "Please enter valid email/phone"
|
||||
#~ msgstr "ورودی ها معتبر نیستند"
|
||||
|
||||
#~ msgid "Thanks for join our newsletter"
|
||||
#~ msgstr "شما با موفقیت عضو شدید"
|
||||
|
||||
#~ msgid "Phone Number*"
|
||||
#~ msgstr "شماره موبایل خود را وارد کنید ..."
|
||||
|
||||
#~ msgid "Regme »"
|
||||
#~ msgstr "عضویت"
|
||||
|
||||
#~ msgid "Your Name*"
|
||||
#~ msgstr "نام"
|
||||
|
||||
#~ msgid "Your Family*"
|
||||
#~ msgstr "نام خانوادگی"
|
||||
|
||||
#~ msgid "Please enter your last name"
|
||||
#~ msgstr "لطفا نام خانوادگی خود را وارد کنید"
|
||||
|
||||
#~ msgid "Last Name*"
|
||||
#~ msgstr "نام خانوادگی*"
|
||||
|
||||
#~ msgid "Last name"
|
||||
#~ msgstr "نام خانوادگی"
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,122 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ultimate WooCommerce Offers Zone 1.0.0\n"
|
||||
"POT-Creation-Date: 2018-10-09 18:39+0530\n"
|
||||
"PO-Revision-Date: 2018-10-09 18:39+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: _e;__\n"
|
||||
"X-Poedit-Basepath: /opt/lampp/htdocs/wordpress/wp-content/plugins/ultimate-"
|
||||
"woocommerce-offers-zone/\n"
|
||||
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: ultimate-woocommerce-offers-zone.php:84
|
||||
msgid "Go To Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ultimate-woocommerce-offers-zone.php:129
|
||||
msgid ""
|
||||
"WooCommerce is not activated. Please install WooCommerce first, to use the "
|
||||
"Woocommerce Offers Zone plugin !!!"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-ultimate-woocommerce-offers-zone-public.php:153
|
||||
msgid "No products found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ultimate-woocommerce-offers-zone-admin.php:110
|
||||
msgid "Ultimate Woocommerce Offers Zone Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:14
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:48
|
||||
msgid "Ultimate Woocommerce Offers Zone "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:17
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:18
|
||||
msgid "By clicking enable button working will be enable."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:23
|
||||
msgid "Design"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:29
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:30
|
||||
msgid "Slide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:33
|
||||
msgid "Select the design for product listing on offer page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:39
|
||||
msgid "Heading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:42
|
||||
msgid "Enter the heading of the product."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:47
|
||||
msgid "No Of Products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:50
|
||||
msgid "Enter the no of product for listing on offer page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:55
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:58
|
||||
msgid "Shortcode for listing products on shop page ."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:64
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:54
|
||||
msgid "Settings Saved!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:64
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:66
|
||||
msgid "Offers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:71
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:74
|
||||
msgid "enhanced-woocommerce-flash-sale"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:97
|
||||
msgid "please purchase this plugin and then activate this plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-offer.php:34
|
||||
msgid "View Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-offer.php:37
|
||||
msgid "Add To Cart"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,240 @@
|
||||
# Copyright (C) 2018 SuitePlugins
|
||||
# This file is distributed under the GPLv2 or later..
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: UM Events Lite for Ultimate Member 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/um-events\n"
|
||||
"POT-Creation-Date: 2018-10-25 01:29:33+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/class-um-events-admin.php:80 um-events.php:113 um-events.php:126
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:104
|
||||
#: includes/class-um-events-admin.php:194
|
||||
msgid "Show Event Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:105
|
||||
#: includes/class-um-events-admin.php:198
|
||||
msgid "Show event featured image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:111
|
||||
#: includes/class-um-events-admin.php:203
|
||||
msgid "Allow Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:112
|
||||
#: includes/class-um-events-admin.php:207
|
||||
msgid "Allow event description in form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:118
|
||||
msgid "Allow Ticket URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:119
|
||||
msgid "Allow ticket URL in form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:125
|
||||
msgid "Restrict frontend file upload"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:126
|
||||
msgid "Restrict users from adding events from their profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:142 includes/um-events-posttypes.php:17
|
||||
#: templates/events-list-tab.php:28 templates/events-list.php:31
|
||||
#: um-events.php:148
|
||||
msgid "No events found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:150
|
||||
#: includes/class-um-events-admin.php:151
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:163
|
||||
msgid "UM Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:19
|
||||
msgid "Event name missing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:22
|
||||
msgid "Event start date missing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:25
|
||||
msgid "Event start time missing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:65 um-events.php:181
|
||||
msgid "Create Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:67 um-events.php:183
|
||||
msgid "Update Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:80 templates/events-list-tab-form.php:6
|
||||
msgid "Event Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:89 templates/events-list-tab-form.php:15
|
||||
msgid "Add Event Photo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:95 includes/um-events-posttypes.php:78
|
||||
#: templates/events-list-tab-form.php:22
|
||||
msgid "Start Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:99 includes/um-events-posttypes.php:82
|
||||
#: templates/events-list-tab-form.php:26
|
||||
msgid "+ End Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:103 includes/um-events-posttypes.php:86
|
||||
#: templates/events-list-tab-form.php:30
|
||||
msgid "End Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:107 includes/um-events-posttypes.php:90
|
||||
#: templates/events-list-tab-form.php:34
|
||||
msgid "- End Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:111 includes/um-events-posttypes.php:94
|
||||
#: templates/events-list-tab-form.php:42
|
||||
msgid "Event Locaton"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:118 includes/um-events-posttypes.php:101
|
||||
#: templates/event-view.php:42 templates/events-list-tab-form.php:49
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:124 templates/events-list-tab-form.php:56
|
||||
msgid "Submit Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:10
|
||||
msgid "Add New Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:11
|
||||
msgid "New Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:12
|
||||
msgid "Edit Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:13
|
||||
msgid "View Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:14
|
||||
msgid "All Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:15
|
||||
msgid "Search Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:16
|
||||
msgid "Parent Events:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:18
|
||||
msgid "No events found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:23
|
||||
msgid "Events."
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:50 templates/events-list-tab-form.php:40
|
||||
msgid "Event Details"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-header.php:4
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-header.php:5
|
||||
msgid "Past"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-header.php:10
|
||||
msgid "+ Add Event"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-list-details.php:14 templates/event-view.php:36
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-list-details.php:20
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-list-details.php:23
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/events-list.php:2
|
||||
msgid "Add Event"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "UM Events Lite for Ultimate Member"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://suiteplugins.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Manage events from Ultimate Member Profile"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SuitePlugins"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:5
|
||||
msgctxt "post type general name"
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:6
|
||||
msgctxt "post type singular name"
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:7
|
||||
msgctxt "admin menu"
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:8
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:9
|
||||
msgctxt "event"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,166 @@
|
||||
# Copyright (C) 2018 SuitePlugins
|
||||
# This file is distributed under the GPLv2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: UM Story Lite 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/um-story-lite\n"
|
||||
"POT-Creation-Date: 2018-11-11 19:25:05+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/class-core.php:57
|
||||
msgid "Add New Story"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:58
|
||||
msgid "New Story"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:59
|
||||
msgid "Edit Story"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:60
|
||||
msgid "View Story"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:61
|
||||
msgid "All Stories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:62
|
||||
msgid "Search stories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:63
|
||||
msgid "Parent stories:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:64
|
||||
msgid "No stories found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:65
|
||||
msgid "No stories found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:70
|
||||
msgid "Description."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-template.php:74
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-template.php:100
|
||||
msgid "Entry Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-template.php:131
|
||||
msgid "Main Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-template.php:166
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-template.php:168
|
||||
msgid "My Entries"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-template.php:169
|
||||
msgid "Entries"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-template.php:170
|
||||
msgid "New Entry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-template.php:256 includes/class-template.php:260
|
||||
msgid "Access denied to this entry"
|
||||
msgstr ""
|
||||
|
||||
#: includes/helper-functions.php:85
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/helper-functions.php:100
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: templates/story/form.php:16
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: templates/story/form.php:19
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: templates/story/list.php:18 templates/story/story-entry.php:28
|
||||
msgid "load more stories"
|
||||
msgstr ""
|
||||
|
||||
#: templates/story/list.php:27
|
||||
msgid "You have not created any stories."
|
||||
msgstr ""
|
||||
|
||||
#: templates/story/list.php:27
|
||||
msgid "This user has not added any stories."
|
||||
msgstr ""
|
||||
|
||||
#: um-story-lite.php:308
|
||||
msgid ""
|
||||
"UM Story Lite is missing requirements and has been <a "
|
||||
"href=\"%s\">deactivated</a>. Please make sure all requirements are "
|
||||
"available."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "UM Story Lite"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://suiteplugins.com/um-story"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Ultimate Member frontend articles."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SuitePlugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://suiteplugins.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:52
|
||||
msgctxt "post type general name"
|
||||
msgid "Stories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:53
|
||||
msgctxt "post type singular name"
|
||||
msgid "Story"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:54
|
||||
msgctxt "admin menu"
|
||||
msgid "Stories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:55
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Story"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-core.php:56
|
||||
msgctxt "story"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,192 @@
|
||||
# Copyright (C) 2018 IDPay payment gateway for Woocommerce
|
||||
# This file is distributed under the same license as the IDPay payment gateway for Woocommerce package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: IDPay payment gateway for Woocommerce 1.0.4\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-idpay-"
|
||||
"gateway\n"
|
||||
"POT-Creation-Date: 2018-12-01 12:58:04+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:44
|
||||
msgid "IDPay"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:45
|
||||
#: includes/class-wc-gateway-idpay.php:126
|
||||
msgid "Redirects customers to IDPay to process their payments."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:110
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:117
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:119
|
||||
msgid ""
|
||||
"This gateway title will be shown when a customer is going to to checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:120
|
||||
msgid "IDPay payment gateway"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:123
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:125
|
||||
msgid ""
|
||||
"This gateway description will be shown when a customer is going to to "
|
||||
"checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:129
|
||||
msgid "Webservice Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:134
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:136
|
||||
msgid ""
|
||||
"You can create an API Key by going to https://idpay.ir/dashboard/web-services"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:140
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:141
|
||||
msgid "Enable sandbox mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:142
|
||||
msgid "If you check this option, the gateway works in test (sandbox) mode."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:147
|
||||
msgid "Payment message configuration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:149
|
||||
msgid ""
|
||||
"Configure the messages which are displayed when a customer is brought back "
|
||||
"to the site from the gateway."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:152
|
||||
msgid "Success message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:154
|
||||
msgid ""
|
||||
"Enter the message you want to display to the customer after a successful "
|
||||
"payment. You can also choose these placeholders {track_id}, {order_id} for "
|
||||
"showing the order id and the tracking id respectively."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:155
|
||||
msgid "Your payment has been successfully completed. Track id: {track_id}"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:158
|
||||
msgid "Failure message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:160
|
||||
msgid ""
|
||||
"Enter the message you want to display to the customer after a failure "
|
||||
"occurred in a payment. You can also choose these placeholders {track_id}, "
|
||||
"{order_id} for showing the order id and the tracking id respectively."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:161
|
||||
msgid ""
|
||||
"Your payment has failed. Please try again or contact the site administrator "
|
||||
"in case of a problem."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:198
|
||||
msgid "Oder number #"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:202
|
||||
msgid "selected currency is not supported"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:235
|
||||
msgid "An error occurred while creating the transaction."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:237
|
||||
#: includes/class-wc-gateway-idpay.php:330
|
||||
msgid "error status: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:242
|
||||
#: includes/class-wc-gateway-idpay.php:335
|
||||
msgid "error code: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:244
|
||||
#: includes/class-wc-gateway-idpay.php:337
|
||||
msgid "error message: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:257
|
||||
msgid "transaction id: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:328
|
||||
msgid "An error occurred while verifying the transaction."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:358
|
||||
msgid "IDPay tracking id: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:362
|
||||
msgid "Transaction payment status: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:366
|
||||
msgid "Payer card number: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:375
|
||||
msgid ""
|
||||
"Error in transaction status or inconsistency with payment gateway information"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:406
|
||||
msgid "There is no order number referenced."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-gateway-idpay.php:408
|
||||
msgid ""
|
||||
"Please try again or contact the site administrator in case of a problem."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "IDPay payment gateway for Woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"<a href=\"https://idpay.ir\">IDPay</a> secure payment gateway for "
|
||||
"Woocommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://idpay.ir"
|
||||
msgstr ""
|
||||
43
spec/fixtures/dynamic_finders/plugin_version/woo-mega-search/composer_file/package.json
vendored
Normal file
43
spec/fixtures/dynamic_finders/plugin_version/woo-mega-search/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"name": "rox-woocommerce-search",
|
||||
"version": "1.0.0",
|
||||
"description": "WooCommerce Search",
|
||||
"main": "echo \"Error: no test specified\" && exit 1",
|
||||
"URL": "",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"compile-js": "gulp compile:js",
|
||||
"compile-css": "gulp compile:scss",
|
||||
"build": "gulp build",
|
||||
"watch": "gulp watch"
|
||||
},
|
||||
"keywords": [
|
||||
"WordPress",
|
||||
"WooCommerce",
|
||||
"Search"
|
||||
],
|
||||
"author": "Kudratullah <mhamudul.hk@gmail.com>",
|
||||
"license": "MIT",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.0.0",
|
||||
"@babel/preset-env": "^7.0.0",
|
||||
"autoprefixer": "^9.1.5",
|
||||
"gulp": "^4.0.0",
|
||||
"gulp-autoprefixer": "^6.0.0",
|
||||
"gulp-babel": "^8.0.0",
|
||||
"gulp-compass": "^2.1.0",
|
||||
"gulp-eslint": "^5.0.0",
|
||||
"gulp-group-css-media-queries": "^1.2.2",
|
||||
"gulp-image": "^4.3.0",
|
||||
"gulp-minify-css": "^1.2.4",
|
||||
"gulp-notify": "^3.2.0",
|
||||
"gulp-plumber": "^1.2.0",
|
||||
"gulp-postcss": "^8.0.0",
|
||||
"gulp-rename": "^1.4.0",
|
||||
"gulp-sass": "^4.0.1",
|
||||
"gulp-sass-lint": "^1.4.0",
|
||||
"gulp-sourcemaps": "^2.6.4",
|
||||
"gulp-uglify": "^3.0.1"
|
||||
}
|
||||
}
|
||||
22
spec/fixtures/dynamic_finders/plugin_version/woorousell/composer_file/package.json
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/woorousell/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "woorousell",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"start": "cross-env webpack --watch",
|
||||
"build": "cross-env NODE_ENV=production webpack"
|
||||
},
|
||||
"devDependencies": {
|
||||
"browser-sync": "^2.18.13",
|
||||
"browser-sync-webpack-plugin": "^1.2.0",
|
||||
"cross-env": "^5.1.1",
|
||||
"css-loader": "^0.28.7",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"node-sass": "^4.7.2",
|
||||
"postcss-loader": "^2.0.9",
|
||||
"raw-loader": "^0.5.1",
|
||||
"sass-loader": "^6.0.6",
|
||||
"style-loader": "^0.19.1",
|
||||
"susy": "^2.2.12",
|
||||
"webpack": "^3.10.0"
|
||||
}
|
||||
}
|
||||
9469
spec/fixtures/dynamic_finders/plugin_version/wordpress-ecommerce/translation_file/languages/mp.pot
vendored
Normal file
9469
spec/fixtures/dynamic_finders/plugin_version/wordpress-ecommerce/translation_file/languages/mp.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,98 @@
|
||||
# Copyright (C) 2018 Ryan S. Born
|
||||
# This file is distributed under the same license as the WP HTML5 Outliner plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP HTML5 Outliner 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dist\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: 2018-11-25T04:20:44+00:00\n"
|
||||
"PO-Revision-Date: 2018-11-25T04:20:44+00:00\n"
|
||||
"X-Generator: WP-CLI 2.0.1\n"
|
||||
"X-Domain: wph5o\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WP HTML5 Outliner"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/ryansborn/WP_HTML5_Outliner"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Adds an HTML 5 outline plus a heading-level outline to the WordPress Toolbar."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ryan S. Born"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://github.com/ryansborn"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s represents an HTML tag name, e.g., 'body'.
|
||||
#: classes/Outline_Formatter.php:219
|
||||
msgid "[%s element with no heading]"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s represents an HTML tag name, e.g., 'body'.
|
||||
#: classes/Outline_Formatter.php:226
|
||||
msgid "[%s element with empty heading]"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Source_Loader.php:68
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Source_Loader.php:91
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Source_Loader.php:100
|
||||
msgid "Fatal Error"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Source_Loader.php:107
|
||||
msgid "Entity"
|
||||
msgstr ""
|
||||
|
||||
#. translators: PHP error. The particular error message, represented by %1$s, is not offered for translation since it is not generated by this plugin. %2$s represents a file name and defaults to 'Entity'. %3$s represents a line number, e.g., 199. %4$s represents a file path.
|
||||
#: classes/Source_Loader.php:118
|
||||
msgid "%1$s in %2$s, line: %3$s in %4$s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/WP_HTML5_Outliner.php:70
|
||||
msgid "Page buffer failed"
|
||||
msgstr ""
|
||||
|
||||
#: classes/WP_HTML5_Outliner.php:126
|
||||
msgid "No outline was created."
|
||||
msgstr ""
|
||||
|
||||
#: classes/WP_HTML5_Outliner.php:166
|
||||
msgid "Open in new window"
|
||||
msgstr ""
|
||||
|
||||
#: classes/WP_HTML5_Outliner.php:167
|
||||
msgid "Select Outline Type"
|
||||
msgstr ""
|
||||
|
||||
#: classes/WP_HTML5_Outliner.php:168
|
||||
msgid "Structural (HTML5)"
|
||||
msgstr ""
|
||||
|
||||
#: classes/WP_HTML5_Outliner.php:169
|
||||
msgid "Heading-level"
|
||||
msgstr ""
|
||||
|
||||
#: classes/WP_HTML5_Outliner.php:170
|
||||
msgid "Structural (HTML5) Outline"
|
||||
msgstr ""
|
||||
|
||||
#: classes/WP_HTML5_Outliner.php:172
|
||||
msgid "Heading-level Outline"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,348 @@
|
||||
# Copyright (C) 2018 Christian Zöller
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Mail Logging 1.8.5\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-mail-logging\n"
|
||||
"POT-Creation-Date: 2018-09-13 13:01:17+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-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"
|
||||
"Language: en_GB\n"
|
||||
|
||||
#: src/WPML_Email_Log_List.php:67
|
||||
msgid "No email found."
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:79
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:80
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:191
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:81
|
||||
msgid "Receiver"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:82
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:83 src/WPML_OptionsManager.php:497
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:84
|
||||
msgid "Headers"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:85
|
||||
msgid "Attachments"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:86
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:87
|
||||
msgid "Plugin Version"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:98
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:266 src/WPML_Email_Log_List.php:300
|
||||
msgid "Attachment %s is not present"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_Email_Log_List.php:494
|
||||
msgid "Fallback to raw format because html is not convertible to json."
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_LifeCycle.php:205
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:321 src/WPML_OptionsManager.php:322
|
||||
msgid "WP Mail Log"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:333 src/WPML_OptionsManager.php:334
|
||||
#: src/WPML_OptionsManager.php:345
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:422
|
||||
msgid "About Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:431
|
||||
msgid "More information"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:432
|
||||
msgid "Plugin Homepage/support"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:433
|
||||
msgid "Plugin author's blog"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:440
|
||||
msgid "Entries per page"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:462
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:471
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:515
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:529
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:554
|
||||
msgid "true"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:556
|
||||
msgid "false"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:559
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:561
|
||||
msgid "Editor"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:563
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:565
|
||||
msgid "Contributor"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:567
|
||||
msgid "Subscriber"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_OptionsManager.php:569
|
||||
msgid "Anyone"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_PrivacyController.php:43
|
||||
msgid ""
|
||||
"When you use this site several actions (e.g. commenting) trigger the "
|
||||
"dispatch of emails. They contain information about you associated with your "
|
||||
"email address. Which data are part of these emails depends on the action "
|
||||
"performed. These emails are stored and accessible to the site management as "
|
||||
"log."
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_PrivacyController.php:101
|
||||
msgid "Mails"
|
||||
msgstr ""
|
||||
|
||||
#: src/WPML_PrivacyController.php:137
|
||||
msgid "A mail with the id %d was unable to be removed at this time."
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:191
|
||||
msgid "No items found."
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:315
|
||||
msgid "Bulk Actions"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:325
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:409
|
||||
msgid "Show all dates"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:422
|
||||
#. translators: 1: month name, 2: 4-digit year
|
||||
msgid "%1$s %2$d"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:438
|
||||
msgid "List View"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:439
|
||||
msgid "Excerpt View"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:465
|
||||
msgid "%s pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:533 src/inc/class-wp-list-table.php:948
|
||||
msgid "1 item"
|
||||
msgid_plural "%s items"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:551
|
||||
msgid "Go to the first page"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:558
|
||||
msgid "Go to the previous page"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:567
|
||||
msgid "Current page"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:577
|
||||
msgid "Go to the next page"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:584
|
||||
msgid "Go to the last page"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:720
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:92
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:101
|
||||
msgid "Cleanup"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:102
|
||||
msgid "Delete all data on deactivation? (emails and settings)?"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:112
|
||||
msgid "Can See Submission data"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:113
|
||||
msgid "Select the minimum role."
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:118
|
||||
msgid "WordPress Date Time Format"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:119
|
||||
msgid "Use format from WordPress settings (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:121
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:146
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:162
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:184
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:122
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:147
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:163
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:185
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:133
|
||||
msgid "Default Format for Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:134
|
||||
msgid "Select your preferred display format."
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:139
|
||||
msgid "Display Host"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:140
|
||||
msgid "Display host column in list."
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:152
|
||||
msgid "Log Rotation"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:153
|
||||
msgid "Save space by deleting logs regularly."
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:159
|
||||
msgid "Cleanup by Amount"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:160
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:182
|
||||
msgid "Setup a automated cleanup routine!"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:169
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:170
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:192
|
||||
msgid "When should mails are deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:171
|
||||
msgid "Cleanup when the stored mails exceed..."
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:181
|
||||
msgid "Cleanup by Time"
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/redux/WPML_Redux_Framework_config.php:193
|
||||
msgid "Delete mails older than days..."
|
||||
msgstr ""
|
||||
|
||||
#: wp-mail-logging.php:48
|
||||
msgid ""
|
||||
"Error: plugin \"WP Mail Logging\" requires a newer version of PHP to be "
|
||||
"running."
|
||||
msgstr ""
|
||||
|
||||
#: wp-mail-logging.php:49
|
||||
msgid "Minimal version of PHP required: "
|
||||
msgstr ""
|
||||
|
||||
#: wp-mail-logging.php:50
|
||||
msgid "Your server's PHP version: "
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Logs each email sent by WordPress."
|
||||
msgstr ""
|
||||
|
||||
#: src/inc/class-wp-list-table.php:573
|
||||
msgctxt "paging"
|
||||
msgid "%1$s of %2$s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,391 @@
|
||||
# Copyright (C) 2018 WP Media Stories
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Media Stories 0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-media-stories\n"
|
||||
"POT-Creation-Date: 2018-11-27 05:55:02+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: admin/templates/metabox.php:5 release/0.1/admin/templates/metabox.php:5
|
||||
#: release/svn/admin/templates/metabox.php:5
|
||||
msgid "<span class=\"wpms-item-count-counter\">%d</span> item"
|
||||
msgid_plural "<span class=\"wpms-item-count-counter\">%d</span> items"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: admin/templates/metabox.php:9
|
||||
msgid "Add the following shortcode to posts to embed gallery"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/metabox.php:11 release/0.1/admin/templates/metabox.php:9
|
||||
#: release/svn/admin/templates/metabox.php:9
|
||||
msgid "Add Media"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/metabox.php:41 admin/templates/metabox.php:79
|
||||
#: release/0.1/admin/templates/metabox.php:39
|
||||
#: release/0.1/admin/templates/metabox.php:77
|
||||
#: release/svn/admin/templates/metabox.php:39
|
||||
#: release/svn/admin/templates/metabox.php:77
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:71
|
||||
msgid "Search Genres"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:72
|
||||
msgid "All Genres"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:73
|
||||
msgid "Parent Genre"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:74
|
||||
msgid "Parent Genre:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:75
|
||||
msgid "Edit Genre"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:76
|
||||
msgid "Update Genre"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:77
|
||||
msgid "Add New Genre"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:78
|
||||
msgid "New Genre Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:79
|
||||
msgid "Genre"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:97
|
||||
msgid "Search Writers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:98
|
||||
msgid "Popular Writers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:99
|
||||
msgid "All Writers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:102
|
||||
msgid "Edit Writer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:103
|
||||
msgid "Update Writer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:104
|
||||
msgid "Add New Writer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:105
|
||||
msgid "New Writer Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:106
|
||||
msgid "Separate writers with commas"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:107
|
||||
msgid "Add or remove writers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:108
|
||||
msgid "Choose from the most used writers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:109
|
||||
msgid "No writers found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:110
|
||||
msgid "Writers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:133 release/0.1/includes/class-admin.php:67
|
||||
#: release/svn/includes/class-admin.php:67
|
||||
msgid "Add New Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:134 release/0.1/includes/class-admin.php:68
|
||||
#: release/svn/includes/class-admin.php:68
|
||||
msgid "New Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:135 release/0.1/includes/class-admin.php:69
|
||||
#: release/svn/includes/class-admin.php:69
|
||||
msgid "Edit Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:136 release/0.1/includes/class-admin.php:70
|
||||
#: release/svn/includes/class-admin.php:70
|
||||
msgid "View Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:137 release/0.1/includes/class-admin.php:71
|
||||
#: release/svn/includes/class-admin.php:71
|
||||
msgid "All Galleries"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:138 release/0.1/includes/class-admin.php:72
|
||||
#: release/svn/includes/class-admin.php:72
|
||||
msgid "Search Galleries"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:139 release/0.1/includes/class-admin.php:73
|
||||
#: release/svn/includes/class-admin.php:73
|
||||
msgid "Parent Galleries:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:140 release/0.1/includes/class-admin.php:74
|
||||
#: release/svn/includes/class-admin.php:74
|
||||
msgid "No galleries found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:141 release/0.1/includes/class-admin.php:75
|
||||
#: release/svn/includes/class-admin.php:75
|
||||
msgid "No galleries found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:146
|
||||
msgid "Media Stories."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:166
|
||||
msgid "Search Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:167
|
||||
msgid "All Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:168
|
||||
msgid "Parent Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:169
|
||||
msgid "Parent Category:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:170
|
||||
msgid "Edit Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:171
|
||||
msgid "Update Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:172
|
||||
msgid "Add New Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:173
|
||||
msgid "New Category Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:174
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:191
|
||||
msgid "Search Tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:192
|
||||
msgid "Popular Tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:193
|
||||
msgid "All Tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:196
|
||||
msgid "Edit Tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:197
|
||||
msgid "Update Tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:198
|
||||
msgid "Add New Tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:199
|
||||
msgid "New Tag Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:200
|
||||
msgid "Separate tags with commas"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:201
|
||||
msgid "Add or remove tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:202
|
||||
msgid "Choose from the most used tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:203
|
||||
msgid "No tags found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:204
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:223 includes/class-admin.php:224
|
||||
#: includes/class-admin.php:237 release/0.1/includes/class-admin.php:101
|
||||
#: release/0.1/includes/class-admin.php:102
|
||||
#: release/svn/includes/class-admin.php:101
|
||||
#: release/svn/includes/class-admin.php:102
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:236 release/0.1/includes/class-admin.php:114
|
||||
#: release/svn/includes/class-admin.php:114
|
||||
msgid "Media"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:281
|
||||
msgid "Hide Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:284
|
||||
msgid "Hide Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:287
|
||||
msgid "Hide Counter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:290
|
||||
msgid "Thumbnail Size"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:292
|
||||
msgid "Full (Default)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-shortcodes.php:431
|
||||
msgid "No galleries found"
|
||||
msgstr ""
|
||||
|
||||
#: release/0.1/includes/class-admin.php:80
|
||||
#: release/svn/includes/class-admin.php:80
|
||||
msgid "Description."
|
||||
msgstr ""
|
||||
|
||||
#: release/0.1/wp-media-stories.php:301 release/svn/wp-media-stories.php:301
|
||||
#: wp-media-stories.php:307
|
||||
msgid ""
|
||||
"WP Media Stories is missing requirements and has been <a "
|
||||
"href=\"%s\">deactivated</a>. Please make sure all requirements are "
|
||||
"available."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WP Media Stories"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpmediastories.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "WordPress Media Gallery plugin"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpmediastories.com/about"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:69
|
||||
msgctxt "taxonomy general name"
|
||||
msgid "Genres"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:95
|
||||
msgctxt "taxonomy general name"
|
||||
msgid "Writers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:164
|
||||
msgctxt "taxonomy general name"
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:189
|
||||
msgctxt "taxonomy general name"
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:70
|
||||
msgctxt "taxonomy singular name"
|
||||
msgid "Genre"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:96
|
||||
msgctxt "taxonomy singular name"
|
||||
msgid "Writer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:165
|
||||
msgctxt "taxonomy singular name"
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:190
|
||||
msgctxt "taxonomy singular name"
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:128 release/0.1/includes/class-admin.php:62
|
||||
#: release/svn/includes/class-admin.php:62
|
||||
msgctxt "post type general name"
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:129 release/0.1/includes/class-admin.php:63
|
||||
#: release/svn/includes/class-admin.php:63
|
||||
msgctxt "post type singular name"
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:130 release/0.1/includes/class-admin.php:64
|
||||
#: release/svn/includes/class-admin.php:64
|
||||
msgctxt "admin menu"
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:131 release/0.1/includes/class-admin.php:65
|
||||
#: release/svn/includes/class-admin.php:65
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:132 release/0.1/includes/class-admin.php:66
|
||||
#: release/svn/includes/class-admin.php:66
|
||||
msgctxt "gallery"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/wp-post-rating/composer_file/package.json
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/wp-post-rating/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "wp-post-rating",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-less": "^4.0.1",
|
||||
"gulp-rename": "^1.4.0",
|
||||
"gulp-uglify": "^3.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"gulp-autoprefixer": "^5.0.0",
|
||||
"gulp-clean-css": "^3.10.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,431 @@
|
||||
# Copyright (C) 2018 WordPress Responsive Thumbnail Carousel Slider
|
||||
# This file is distributed under the same license as the WordPress Responsive Thumbnail Carousel Slider package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WordPress Responsive Thumbnail Carousel Slider 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-responsive-"
|
||||
"thumbnail-slider\n"
|
||||
"POT-Creation-Date: 2018-05-28 03:28:46+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:53
|
||||
msgid ""
|
||||
"Responsive Thumbnail Slider is active but does not have write permission on"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:53
|
||||
msgid " directory.Please allow write permission."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:61
|
||||
msgid ""
|
||||
"Responsive Thumbnail Slider is active but plugin does not have permission to "
|
||||
"create directory"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:61
|
||||
msgid ""
|
||||
".Please create post-slider-carousel directory inside upload directory and "
|
||||
"allow write permission."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:104
|
||||
msgid "Responsive Thumbnail Slider"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:105
|
||||
msgid "Slider Setting"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:106
|
||||
msgid "Manage Images"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:107
|
||||
msgid "Preview Slider"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:233
|
||||
msgid "Settings saved successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:246
|
||||
#: wp-responsive-images-thumbnail-slider.php:754
|
||||
msgid "Follow @FreeAdsPost"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:249
|
||||
msgid "Donate"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:250
|
||||
#: wp-responsive-images-thumbnail-slider.php:758
|
||||
msgid "help us for free plugin"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:275
|
||||
#: wp-responsive-images-thumbnail-slider.php:795
|
||||
#: wp-responsive-images-thumbnail-slider.php:1276
|
||||
msgid "UPGRADE TO PRO VERSION"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:276
|
||||
msgid "Slider Settings"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:283
|
||||
msgid "Link images with url ?"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:288
|
||||
msgid "Add link to image ?"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:298
|
||||
msgid "Auto Scroll ?"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:304
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:304
|
||||
msgid "Scroll By Left & Right Arrow"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:304
|
||||
msgid "Scroll Auto With Arrow"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:314
|
||||
msgid "Speed"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:330
|
||||
msgid "Pause"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:341
|
||||
msgid "The amount of time (in ms) between each auto transition"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:346
|
||||
#: wp-responsive-images-thumbnail-slider.php:351
|
||||
msgid "Circular Slider ?"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:362
|
||||
msgid "Slider Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:378
|
||||
msgid "Max Visible"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:384
|
||||
msgid "This will decide your slider width automatically"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:389
|
||||
msgid "Specify the number of items visible at all times within the slider."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:395
|
||||
msgid "Min Visible"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:401
|
||||
msgid "This will decide your slider width in responsive layout"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:406
|
||||
msgid "The responsive layout decide by slider itself using min visible."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:412
|
||||
msgid "Scroll"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:423
|
||||
msgid ""
|
||||
"You can specify the number of items to scroll when you click the next or "
|
||||
"prev buttons."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:428
|
||||
#: wp-responsive-images-thumbnail-slider.php:433
|
||||
msgid "Pause On Mouse Over ?"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:444
|
||||
msgid "Image Height"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:460
|
||||
msgid "Image Width"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:476
|
||||
msgid "Image Margin"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:482
|
||||
msgid "Gap between two images"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:492
|
||||
#: wp-responsive-images-thumbnail-slider.php:1437
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:492
|
||||
#: wp-responsive-images-thumbnail-slider.php:1437
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:576
|
||||
#: wp-responsive-images-thumbnail-slider.php:1492
|
||||
msgid "Access All Themes In One Price"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:585
|
||||
msgid "WordPress SEO Breeze Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:594
|
||||
msgid "Speed Test For Your WP"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:797
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:797
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:803
|
||||
#: wp-responsive-images-thumbnail-slider.php:1000
|
||||
msgid "Bulk Actions"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:804
|
||||
#: wp-responsive-images-thumbnail-slider.php:972
|
||||
#: wp-responsive-images-thumbnail-slider.php:1001
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:806
|
||||
#: wp-responsive-images-thumbnail-slider.php:1004
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:865
|
||||
msgid "Current slider setting - Total visible images "
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:866
|
||||
msgid "Please add atleast "
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:866
|
||||
msgid " images"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:874
|
||||
#: wp-responsive-images-thumbnail-slider.php:876
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:877
|
||||
msgid "Reset Search"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:906
|
||||
#: wp-responsive-images-thumbnail-slider.php:909
|
||||
#: wp-responsive-images-thumbnail-slider.php:911
|
||||
#: wp-responsive-images-thumbnail-slider.php:966
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:916
|
||||
#: wp-responsive-images-thumbnail-slider.php:919
|
||||
#: wp-responsive-images-thumbnail-slider.php:921
|
||||
#: wp-responsive-images-thumbnail-slider.php:970
|
||||
msgid "Published On"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:965
|
||||
msgid "Select Record"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:967
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:971
|
||||
msgid "Edit Record"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:971
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:972
|
||||
msgid "Delete Record"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:981
|
||||
msgid "No Record"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:981
|
||||
msgid "No Images Found"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1011
|
||||
msgid "Are you sure you want to delete this image ?"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1021
|
||||
msgid "To print this slider into WordPress Post/Page use below Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1024
|
||||
#: wp-responsive-images-thumbnail-slider.php:1924
|
||||
msgid ""
|
||||
"To print this slider into WordPress theme/template PHP files use below php "
|
||||
"code"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1031
|
||||
msgid "Recommended WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1039
|
||||
msgid ""
|
||||
"Backup, Copy, Clone, Move or Restore your WordPress website with Backup "
|
||||
"Breeze, Support Dropbox, Amazon S3, Google Drive, FTP"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1041
|
||||
msgid ""
|
||||
"Backup, Copy, Clone, Move or Restore your WordPress website with Backup "
|
||||
"Breeze"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1134
|
||||
msgid "Image updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1144
|
||||
msgid "Error while updating image."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1267
|
||||
msgid "Update Image"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1277
|
||||
msgid "Add Image"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1286
|
||||
msgid "Upload Image"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1289
|
||||
msgid "Current Image "
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1296
|
||||
msgid "Click here to upload image"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1316
|
||||
msgid "WP Media Uploader"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1322
|
||||
msgid "Set Image"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1375
|
||||
msgid "Invalid image selection."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1411
|
||||
msgid "Image Title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1417
|
||||
msgid "Used in image alt for seo"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1421
|
||||
msgid "Image Url"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1421
|
||||
msgid "On click redirect to this url."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1427
|
||||
msgid "On image click users will redirect to this url."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1476
|
||||
msgid "Please select file"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1501
|
||||
msgid "Best WordPress Themes"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1561
|
||||
msgid "Image deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1571
|
||||
#: wp-responsive-images-thumbnail-slider.php:1629
|
||||
msgid "Error while deleting image."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1618
|
||||
msgid "Selected images deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1667
|
||||
msgid "Slider Preview"
|
||||
msgstr ""
|
||||
|
||||
#: wp-responsive-images-thumbnail-slider.php:1921
|
||||
msgid "To print this slider into WordPress Post/Page use below Short code"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WordPress Responsive Thumbnail Carousel Slider"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# wp-responsive-thumbnail-slider.pot (WordPress Responsive Thumbnail Carousel Slider 1.0.3) #-#-#-#-#
|
||||
#. Plugin URI of the plugin/theme
|
||||
#. #-#-#-#-# wp-responsive-thumbnail-slider.pot (WordPress Responsive Thumbnail Carousel Slider 1.0.3) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
msgid ""
|
||||
"http://www.i13websolution.com/wordpress-responsive-thumbnail-slider-pro.html"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"This is beautiful responsive thumbnail image slider plugin for WordPress.Add "
|
||||
"any number of images from admin panel."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "I Thirteen Web Solution"
|
||||
msgstr ""
|
||||
2529
spec/fixtures/dynamic_finders/plugin_version/wp-rocket/translation_file/languages/rocket.pot
vendored
Normal file
2529
spec/fixtures/dynamic_finders/plugin_version/wp-rocket/translation_file/languages/rocket.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1476
spec/fixtures/dynamic_finders/plugin_version/wp-smushit/translation_file/languages/wp-smushit.pot
vendored
Normal file
1476
spec/fixtures/dynamic_finders/plugin_version/wp-smushit/translation_file/languages/wp-smushit.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,64 @@
|
||||
# Copyright (C) 2018 WEN Solutions
|
||||
# This file is distributed under the same license as the WP Travel MapQuest package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP Travel MapQuest 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-03 11:33:28+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-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-mapquest\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: inc/class-wp-travel-mapquest.php:133
|
||||
msgid "MapQuest Settings"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wp-travel-mapquest.php:137
|
||||
msgid "MapQuest API Key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-wp-travel-mapquest.php:146
|
||||
msgid "Map Zoom Level"
|
||||
msgstr ""
|
||||
|
||||
#: inc/location-tab.php:7
|
||||
msgid "Destination"
|
||||
msgstr ""
|
||||
|
||||
#: inc/location-tab.php:11
|
||||
msgid "Edit All Locations"
|
||||
msgstr ""
|
||||
|
||||
#: inc/location-tab.php:24
|
||||
msgid "Start Searching..."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WP Travel MapQuest"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://www.wensolutions.com/plugins/ws-theme-addons"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Provides Additional Features and functionalities for WP Travel."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WEN Solutions"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://wensolutions.com"
|
||||
msgstr ""
|
||||
24
spec/fixtures/dynamic_finders/plugin_version/wpcl-beaver-extender/composer_file/package.json
vendored
Normal file
24
spec/fixtures/dynamic_finders/plugin_version/wpcl-beaver-extender/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "wp_query_engine",
|
||||
"description": "WP Query Engine",
|
||||
"license": "GPL-2.0",
|
||||
"version": "1.0.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/WPCodeLabs/WP-Query-Engine"
|
||||
},
|
||||
"devDependencies": {
|
||||
"grunt" : "latest",
|
||||
"grunt-postcss" : "latest",
|
||||
"grunt-contrib-compass" : "latest",
|
||||
"grunt-contrib-jshint" : "latest",
|
||||
"grunt-contrib-uglify" : "latest",
|
||||
"grunt-contrib-watch" : "latest",
|
||||
"grunt-contrib-clean" : "latest",
|
||||
"grunt-openport" : "latest",
|
||||
"grunt-newer" : "latest",
|
||||
"pixrem" : "latest",
|
||||
"autoprefixer" : "latest",
|
||||
"cssnano" : "latest"
|
||||
}
|
||||
}
|
||||
40
spec/fixtures/dynamic_finders/plugin_version/wpdrift-io-worker/composer_file/package.json
vendored
Normal file
40
spec/fixtures/dynamic_finders/plugin_version/wpdrift-io-worker/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "wpdrift-worker",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"hoek": "^5.0.3",
|
||||
"url-parse": "^1.4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"cross-env": "^5.2.0",
|
||||
"laravel-mix": "^2.1.11",
|
||||
"grunt": "^1.0.2",
|
||||
"grunt-checkbranch": "^1.0.4",
|
||||
"grunt-checkrepo": "^0.1.0",
|
||||
"grunt-checktextdomain": "~1.0.0",
|
||||
"grunt-contrib-clean": "^1.1.0",
|
||||
"grunt-contrib-concat": "1.0.1",
|
||||
"grunt-contrib-copy": "^1.0.0",
|
||||
"grunt-gitinfo": "^0.1.8",
|
||||
"grunt-wp-deploy": "^1.2.1",
|
||||
"grunt-wp-i18n": "~0.5.4",
|
||||
"grunt-wp-readme-to-markdown": "^2.0.0",
|
||||
"grunt-zip": "^0.17.1"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/wpdrift/WPdrift-IO.git"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/wpdrift/WPdrift-IO/issues"
|
||||
},
|
||||
"homepage": "https://github.com/wpdrift/WPdrift-IO#readme"
|
||||
}
|
||||
@@ -0,0 +1,182 @@
|
||||
# Copyright (C) 2018 WPdrift
|
||||
# This file is distributed under the same license as the WPdrift IO - Worker package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPdrift IO - Worker 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/wpdrift/WPdrift-IO/issues\n"
|
||||
"POT-Creation-Date: 2018-09-27 10:52:17+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.5.4\n"
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:66
|
||||
msgid ""
|
||||
"WPdrift IO - Worker requires that WordPress 4.4 or greater be used. Update "
|
||||
"to the latest WordPress version."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:68
|
||||
msgid "Update Now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:115
|
||||
msgid "Add New BoClientok"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:116
|
||||
msgid "New Client"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:117
|
||||
msgid "Edit Client"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:118
|
||||
msgid "View Client"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:119
|
||||
msgid "All Clients"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:120
|
||||
msgid "Search Clients"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:121
|
||||
msgid "Parent Clients:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:122
|
||||
msgid "No clients found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:123
|
||||
msgid "No clients found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:128
|
||||
msgid "Description."
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:95
|
||||
msgid "Session destroyed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/class-wpdrift-clients-controller.php:68
|
||||
#: includes/rest-api/class-wpdrift-dashboard-controller.php:417
|
||||
#: includes/rest-api/class-wpdrift-events-controller.php:87
|
||||
#: includes/rest-api/class-wpdrift-example.controller.php:60
|
||||
#: includes/rest-api/class-wpdrift-hits-controller.php:77
|
||||
#: includes/rest-api/class-wpdrift-site-controller.php:111
|
||||
#: includes/rest-api/class-wpdrift-statistics-controller.php:48
|
||||
#: includes/rest-api/class-wpdrift-users-controller.php:49
|
||||
msgid "You cannot view the resource."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/class-wpdrift-clients-controller.php:155
|
||||
msgid "Error when creating client."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/class-wpdrift-events-controller.php:201
|
||||
msgid "ago"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/class-wpdrift-users-controller.php:281
|
||||
msgid "Minute"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/class-wpdrift-users-controller.php:285
|
||||
msgid "Hour"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/class-wpdrift-users-controller.php:289
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/class-wpdrift-users-controller.php:293
|
||||
msgid "Week"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/class-wpdrift-users-controller.php:297
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/class-wpdrift-users-controller.php:301
|
||||
msgid "Year"
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/hooks.php:10
|
||||
msgid "Limit response to users registered after a given ISO8601 compliant date."
|
||||
msgstr ""
|
||||
|
||||
#: includes/rest-api/hooks.php:16
|
||||
msgid "Limit response to users registered before a given ISO8601 compliant date."
|
||||
msgstr ""
|
||||
|
||||
#: oauth/class-wpdrift-worker-oauth.php:49
|
||||
msgid "temporarily unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: oauth/class-wpdrift-worker-oauth.php:57
|
||||
msgid "plugin core is not authenticate"
|
||||
msgstr ""
|
||||
|
||||
#: oauth/class-wpdrift-worker-oauth.php:379
|
||||
msgid "unknown request"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-wpdrift-worker-public.php:223
|
||||
#: public/class-wpdrift-worker-public.php:288
|
||||
#: public/class-wpdrift-worker-public.php:301
|
||||
msgid "Others"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WPdrift IO - Worker"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://wpdrift.io/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Analytics, automation, tools, and much more for WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WPdrift"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://wpdrift.com/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:110
|
||||
msgctxt "post type general name"
|
||||
msgid "Client"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:111
|
||||
msgctxt "post type singular name"
|
||||
msgid "Client"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:112
|
||||
msgctxt "admin menu"
|
||||
msgid "Clients"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:113
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Client"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wpdrift-worker-admin.php:114
|
||||
msgctxt "Client"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,962 @@
|
||||
# Copyright (C) 2018 YITH WooCommerce Wishlist
|
||||
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: YITH WooCommerce Wishlist 2.2.5\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
||||
"POT-Creation-Date: 2018-10-24 17:52:58+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:159
|
||||
#: includes/class.yith-wcwl-admin-init.php:1478
|
||||
#: includes/class.yith-wcwl-admin-init.php:1479
|
||||
#: includes/class.yith-wcwl-install.php:245
|
||||
msgid "Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:161
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:162
|
||||
#: includes/class.yith-wcwl-admin-init.php:243
|
||||
msgid "Colors"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:163
|
||||
msgid "Premium Version"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1018
|
||||
msgid "Upgrade to the PREMIUM VERSION"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1022
|
||||
msgid "Discover the Advanced Features"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1023
|
||||
msgid ""
|
||||
"Upgrade to the PREMIUM VERSION of YITH WOOCOMMERCE WISHLIST to benefit from "
|
||||
"all features!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1029
|
||||
msgid "Get Support and Pro Features"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1030
|
||||
msgid ""
|
||||
"By purchasing the premium version of the plugin, you will take advantage of "
|
||||
"the advanced features of the product and you will get one year of free "
|
||||
"updates and support through our platform available 24h/24."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1040
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1047
|
||||
msgid "Enable YITH Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1048
|
||||
msgid ""
|
||||
"Enable all plugin features. <strong>Be sure to select at least one option in "
|
||||
"the Wishlist page menu in this settings page.</strong> Also, please read the "
|
||||
"plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1054
|
||||
msgid "Default wishlist title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1056
|
||||
#: includes/class.yith-wcwl-admin-init.php:1057
|
||||
#: includes/class.yith-wcwl-admin-init.php:1293
|
||||
msgid "My wishlist on %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1062
|
||||
msgid "Wishlist Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1063
|
||||
msgid "Page contents: [yith_wcwl_wishlist]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1072
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1073
|
||||
msgid ""
|
||||
"You can add the button in variable products only after the \"Add to Cart\" "
|
||||
"button or using the shortcode [yith_wcwl_add_to_wishlist]."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1079
|
||||
msgid "After \"Add to cart\""
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1080
|
||||
msgid "After thumbnails"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1081
|
||||
msgid "After summary"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1082
|
||||
msgid "Use shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1087
|
||||
msgid "Redirect to cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1088
|
||||
msgid ""
|
||||
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
||||
"page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1094
|
||||
msgid "Remove if added to the cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1095
|
||||
msgid "Remove the product from the wishlist if it has been added to the cart."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1101
|
||||
msgid "\"Add to Wishlist\" text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1103
|
||||
msgid "Add to Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1108
|
||||
msgid "\"Browse wishlist\" text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1110
|
||||
#: includes/class.yith-wcwl-ui.php:82 includes/class.yith-wcwl-ui.php:83
|
||||
msgid "Browse Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1115
|
||||
msgid "\"Product already in wishlist\" text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1117
|
||||
#: includes/class.yith-wcwl-ui.php:83
|
||||
msgid "The product is already in the wishlist!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1122
|
||||
msgid "\"Product added\" text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1124
|
||||
#: includes/class.yith-wcwl-ui.php:82
|
||||
msgid "Product added!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1129
|
||||
msgid "\"Add to Cart\" text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1131
|
||||
msgid "Add to Cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1136
|
||||
msgid "Show Unit price"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1137
|
||||
msgid "Show unit price for each product in wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1144
|
||||
msgid "Show \"Add to Cart\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1145
|
||||
msgid "Show \"Add to Cart\" button for each product in wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1152
|
||||
msgid "Show Stock status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1153
|
||||
msgid ""
|
||||
"Show \"In stock\" or \"Out of stock\" label for each product in wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1160
|
||||
msgid "Show Date of addition"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1161
|
||||
msgid "Show the date when users have added a product to the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1168
|
||||
msgid "Add second remove button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1169
|
||||
msgid "Add a second remove button in the last column, with extended label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1184
|
||||
msgid "Styles"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1191
|
||||
msgid "Use buttons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1192
|
||||
msgid "Use buttons instead of simple anchors."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1198
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1205
|
||||
msgid "Use theme style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1206
|
||||
msgid "Use the theme style."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1212
|
||||
msgid "Rounded buttons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1213
|
||||
msgid "Make button corners rounded"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1219
|
||||
msgid "\"Add to Wishlist\" icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1220
|
||||
msgid "Add an icon to the \"Add to Wishlist\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1230
|
||||
msgid "\"Add to Cart\" icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1231
|
||||
msgid "Add an icon to the \"Add to Cart\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1249
|
||||
msgid "Social Networks & Share"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1256
|
||||
msgid "Share on Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1257
|
||||
msgid "Show \"Share on Facebook\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1263
|
||||
msgid "Tweet on Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1264
|
||||
msgid "Show \"Tweet on Twitter\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1270
|
||||
msgid "Pin on Pinterest"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1271
|
||||
msgid "Show \"Pin on Pinterest\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1277
|
||||
msgid "Share on Google+"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1278
|
||||
msgid "Show \"Share on Google+\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1284
|
||||
msgid "Share by Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1285
|
||||
msgid "Show \"Share by Email\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1291
|
||||
msgid "Social title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1298
|
||||
msgid "Social text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1299
|
||||
msgid ""
|
||||
"It will be used by Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
||||
"strong> where you want to show the URL of your wishlist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1306
|
||||
msgid "Social image URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1307
|
||||
msgid "It will be used by Pinterest."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1321
|
||||
msgid ""
|
||||
"If you want to take advantage of this feature, you could consider to "
|
||||
"purchase the %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1326
|
||||
msgid "YITH WooCommerce Frequently Bought Together Integration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1333
|
||||
msgid "Enable slider in wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1334
|
||||
msgid ""
|
||||
"Choose to enable product slider in wishlist page with linked products (<a "
|
||||
"href=\"%s\" class=\"thickbox\">Example</a>). %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1370
|
||||
msgid "\"Add to wishlist\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1373
|
||||
#: includes/class.yith-wcwl-admin-init.php:1391
|
||||
#: includes/class.yith-wcwl-admin-init.php:1409
|
||||
#: includes/class.yith-wcwl-admin-init.php:1427
|
||||
#: includes/class.yith-wcwl-admin-init.php:1445
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1374
|
||||
#: includes/class.yith-wcwl-admin-init.php:1392
|
||||
#: includes/class.yith-wcwl-admin-init.php:1410
|
||||
#: includes/class.yith-wcwl-admin-init.php:1428
|
||||
#: includes/class.yith-wcwl-admin-init.php:1446
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1375
|
||||
#: includes/class.yith-wcwl-admin-init.php:1393
|
||||
#: includes/class.yith-wcwl-admin-init.php:1411
|
||||
#: includes/class.yith-wcwl-admin-init.php:1429
|
||||
#: includes/class.yith-wcwl-admin-init.php:1447
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1382
|
||||
#: includes/class.yith-wcwl-admin-init.php:1400
|
||||
#: includes/class.yith-wcwl-admin-init.php:1418
|
||||
#: includes/class.yith-wcwl-admin-init.php:1436
|
||||
msgid "Background (hover)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1383
|
||||
#: includes/class.yith-wcwl-admin-init.php:1401
|
||||
#: includes/class.yith-wcwl-admin-init.php:1419
|
||||
#: includes/class.yith-wcwl-admin-init.php:1437
|
||||
msgid "Text (hover)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1384
|
||||
#: includes/class.yith-wcwl-admin-init.php:1402
|
||||
#: includes/class.yith-wcwl-admin-init.php:1420
|
||||
#: includes/class.yith-wcwl-admin-init.php:1438
|
||||
msgid "Border (hover)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1388
|
||||
msgid "\"Add to Cart\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1406
|
||||
msgid "\"Style 1\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1424
|
||||
msgid "\"Style 2\" button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1442
|
||||
msgid "Wishlist table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1451
|
||||
msgid "Headers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1454
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1544
|
||||
msgid "Wishlist Activated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1545
|
||||
msgid ""
|
||||
"In the YIT Plugin tab you can find the Wishlist options. With this menu, you "
|
||||
"can access to all the settings of our plugins that you have activated. "
|
||||
"Wishlist is available in an outstanding PREMIUM version with many new "
|
||||
"options, <a href=\"%s\">discover it now</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1556
|
||||
msgid "Wishlist Updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-admin-init.php:1557
|
||||
msgid ""
|
||||
"From now on, you can find all the options of Wishlist under YIT Plugin -> "
|
||||
"Wishlist instead of WooCommerce -> Settings -> Wishlist, as in the previous "
|
||||
"version. When one of our plugins is updated, a new voice will be added to "
|
||||
"this menu. Wishlist has been updated with new available options, <a href=\"%s"
|
||||
"\">discover the PREMIUM version.</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-init.php:403
|
||||
msgid ""
|
||||
"We are sorry, but this feature is available only if cookies are enabled on "
|
||||
"your browser."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-init.php:404
|
||||
msgid "Product correctly added to cart"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-install.php:244
|
||||
msgctxt "page_slug"
|
||||
msgid "wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:50
|
||||
msgid "While you visit our site, we’ll track:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:52
|
||||
msgid ""
|
||||
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
||||
"users your favourite products, and to create targeted email campaigns."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:53
|
||||
msgid ""
|
||||
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
||||
"make them visible to the store’s staff"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:55
|
||||
msgid ""
|
||||
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
||||
"browsing our site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:58
|
||||
msgid ""
|
||||
"Members of our team have access to the information you provide us. For "
|
||||
"example, both Administrators and Shop Managers can access:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:60
|
||||
msgid ""
|
||||
"Wishlist details, such as products added, date of addition, name and privacy "
|
||||
"settings of your wishlists"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:62
|
||||
msgid ""
|
||||
"Our team members have access to this information to offer you better deals "
|
||||
"for the products you love."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:82
|
||||
#: includes/class.yith-wcwl-privacy.php:98
|
||||
msgid "Customer Wishlists"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:133
|
||||
msgid "Wishlists"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %s Order number.
|
||||
#: includes/class.yith-wcwl-privacy.php:195
|
||||
msgid "Removed wishlist %s."
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %s Order number.
|
||||
#: includes/class.yith-wcwl-privacy.php:199
|
||||
msgid "Wishlist %s has been retained."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:210
|
||||
msgid "Removed default user's wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:228
|
||||
msgid "Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:229
|
||||
msgid "Wishlist url"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:230
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:231
|
||||
msgctxt "date wishlist was created"
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:232
|
||||
msgid "Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:233
|
||||
msgid "Items Added"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:283 templates/wishlist-view.php:212
|
||||
msgid "Shared"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:286 templates/wishlist-view.php:215
|
||||
msgid "Private"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-privacy.php:289 templates/wishlist-view.php:218
|
||||
msgid "Public"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-shortcode.php:259
|
||||
#: includes/class.yith-wcwl-ui.php:164
|
||||
msgid "Share on:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-ui.php:118 includes/class.yith-wcwl-ui.php:200
|
||||
msgid "Select options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-ui.php:168 templates/share.php:20
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-ui.php:171 templates/share.php:26
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl-ui.php:180
|
||||
msgid "email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl.php:201
|
||||
msgid "An error occurred while adding products to the wishlist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl.php:293
|
||||
msgid "An error occurred while adding products to wishlist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl.php:310
|
||||
msgid "The \"Remove\" option now does not require any parameter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl.php:359
|
||||
msgid "An error occurred while removing products from the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl.php:809
|
||||
msgid "You need to log in before creating a new wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl.php:1610
|
||||
msgid "Product successfully removed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl.php:1614
|
||||
msgid "Error. Unable to remove the product from the wishlist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl.php:1618 templates/wishlist-view.php:242
|
||||
msgid "No products were added to the wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class.yith-wcwl.php:1660
|
||||
msgid "An error as occurred."
|
||||
msgstr ""
|
||||
|
||||
#: init.php:130
|
||||
msgid ""
|
||||
"YITH WooCommerce Wishlist is enabled but not effective. It requires "
|
||||
"WooCommerce in order to work."
|
||||
msgstr ""
|
||||
|
||||
#: init.php:140
|
||||
msgid "You can't activate the free version of"
|
||||
msgstr ""
|
||||
|
||||
#: init.php:140
|
||||
msgid "while you are using the premium one."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:185
|
||||
#: templates/admin/wishlist-panel-premium.php:383
|
||||
msgid ""
|
||||
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
||||
"%2$s to benefit from all features!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:187
|
||||
#: templates/admin/wishlist-panel-premium.php:385
|
||||
msgid "%1$sUPGRADE%2$s%3$s to the premium version%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:193
|
||||
msgid "Premium Features"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:196
|
||||
#: templates/admin/wishlist-panel-premium.php:201
|
||||
msgid "Multiple Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:203
|
||||
msgid ""
|
||||
"%1$sDoes it ever happened to you to have too many wishes for a single wish "
|
||||
"list?%2$s%3$s The possibility to manage one's wishes is a fundamental "
|
||||
"feature in a modern e-commerce store and it also lets users' degree of "
|
||||
"satisfaction increase.%3$sThe option \"multiple wishlist\" of %1$sYITH "
|
||||
"Wishlist%2$s makes this feature and many others on your online store "
|
||||
"available, and thanks to this plugin your customers will be able to create, "
|
||||
"manage and share their own wish lists."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:212
|
||||
#: templates/admin/wishlist-panel-premium.php:222
|
||||
msgid "Wishlist Private"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:214
|
||||
msgid ""
|
||||
"By enabling the option wishlist, users will also have the possibility to "
|
||||
"%1$smanage the visibility%2$s of their wish lists according to one of the "
|
||||
"following options:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:216
|
||||
msgid "%1$spublic:%2$s all users can look for your wish list and see it;"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:217
|
||||
msgid ""
|
||||
"%1$sshared:%2$s only users possessing a direct link to the wish list page "
|
||||
"can display it;"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:218
|
||||
msgid "%1$sprivate:%2$s only the wish list creator can see it."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:229
|
||||
#: templates/admin/wishlist-panel-premium.php:234
|
||||
msgid "Estimate Cost"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:236
|
||||
msgid ""
|
||||
"%1$sDo you want to add the possibility to ask for estimates of costs into "
|
||||
"your catalogue?%3$s Do you want to manage customised packets for faithful "
|
||||
"customers in your store?%2$s%3$sThanks to the feature \"estimate cost\" of "
|
||||
"%1$sYITH WooCommerce Wishlist%2$s, each registered user will be able to ask "
|
||||
"for an estimate of their own products in the wishlist and add a text in the "
|
||||
"popup window that will open just after clicking. Then, they can confirm the "
|
||||
"text and send an email with all necessary information directly to the "
|
||||
"address that you have previously set."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:245
|
||||
#: templates/admin/wishlist-panel-premium.php:250
|
||||
msgid "Admin Panel"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:247
|
||||
msgid ""
|
||||
"Thanks to the useful Admin panel, accessible directly among the WooCommerce "
|
||||
"submenu pages, you will have total control on users' wishlists. In addition "
|
||||
"to that, evaluating the degree of appreciation for your products has never "
|
||||
"been so easy, now that %1$syou can see a useful report,%2$s available "
|
||||
"directly in the product page, which registers the occurrences of the product "
|
||||
"in customers' wish lists."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:257
|
||||
#: templates/admin/wishlist-panel-premium.php:262
|
||||
msgid "Search Wishlists"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:264
|
||||
msgid ""
|
||||
"How many times have you been looking for the perfect gift for a important "
|
||||
"event but you had no idea of what to buy? %1$s'Search wishlists'%2$s allows "
|
||||
"your e-shop users to access public wishlists of anyone, by simply knowing "
|
||||
"their name or email. This way you can grant %1$shigher visibility%2$s to "
|
||||
"your products and even encourage users to purchase."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:273
|
||||
msgid "'ADD TO CART' CHECKBOX"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:275
|
||||
msgid ""
|
||||
"Your shop offers always a wide selection of products and wishlists of your "
|
||||
"users get more and more crowded everyday. Give them the possibility to "
|
||||
"select %1$ssome or all products%2$s in the wishlist and add them to cart "
|
||||
"just with one click."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:278
|
||||
msgid "'ADD TO CART'"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:285
|
||||
msgid "DISABLE WISHLIST"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:290
|
||||
msgid "DISABLE WISHLIST FOR UNLOGGED USERS"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:292
|
||||
msgid ""
|
||||
"Favour users that have registered to your shop and disable plugin "
|
||||
"functionalities for all users that have not. By disabling this option, each "
|
||||
"time they try to add a product to the wishlist, they will be %1$sredirected"
|
||||
"%2$s to \"My Account\" page and a message will invite them to log in."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:301
|
||||
msgid "MESSAGE TO UNLOGGED USERS"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:303
|
||||
msgid ""
|
||||
"Invite users that are visiting your shop to login if they want to fully "
|
||||
"benefit from Wishlist functionalities. Show a %1$scustomised message%2$s and "
|
||||
"redirect them to \"My Account\" page for registration."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:306
|
||||
msgid "UNLOGGED USERS"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:313
|
||||
#: templates/admin/wishlist-panel-premium.php:318
|
||||
msgid "POPULAR TABLE"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:320
|
||||
msgid ""
|
||||
"Some products draw customer's attention more than others and they do not "
|
||||
"hesitate to add products to their wishlist. Table %1$s'Popular'%2$s allows "
|
||||
"you, as shop administrator, to track products that appear most frequently in "
|
||||
"their wishlists."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:329
|
||||
msgid "FUNCTIONALITIES IN ONE CLICK"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:331
|
||||
msgid ""
|
||||
"Users have the possibility to search for a wishlist, create a new one or "
|
||||
"display those already created. Add these %1$sfunctionalities%2$s through the "
|
||||
"dedicated widgets or show them immediately after \"Wishlist\" table."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:334
|
||||
msgid "FUNCTIONALITIES"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:341
|
||||
#: templates/admin/wishlist-panel-premium.php:346
|
||||
msgid "PROMOTIONAL EMAIL"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:348
|
||||
msgid ""
|
||||
"If you want to give the right input to your users to persuade them to "
|
||||
"%1$spurchase the products%2$s they have in their wishlists, you need to use "
|
||||
"this feature! %1$sSend them an email%2$s: customize its whole content from "
|
||||
"the option panel and add a coupon they can use in your shop, so that they "
|
||||
"will know you are offering a unique offer!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:357
|
||||
msgid "FROM A WISHLIST TO ANOTHER"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:359
|
||||
msgid ""
|
||||
"Who said that a product has to remain forever in the same wishlist? With the "
|
||||
"option %1$s\"Show \"Move to another wishlist\" dropdown menu\"%2$s, with "
|
||||
"just one click users will be free to move a product from a wishlist to "
|
||||
"another one, managing as they want their lists."
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:362
|
||||
msgid "FROM A WISHLIST"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:369
|
||||
msgid "DATE"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:374
|
||||
msgid "DATE OF ADDITION TO A WISHLIST"
|
||||
msgstr ""
|
||||
|
||||
#: templates/admin/wishlist-panel-premium.php:376
|
||||
msgid ""
|
||||
"Activating the %1$s\"Show date of addition\"%2$s option, users can see the "
|
||||
"date in which they have added a particular product to their list: a new way "
|
||||
"to keep you users informed about their operations."
|
||||
msgstr ""
|
||||
|
||||
#: templates/share.php:32
|
||||
msgid "Pinterest"
|
||||
msgstr ""
|
||||
|
||||
#: templates/share.php:38
|
||||
msgid "Google+"
|
||||
msgstr ""
|
||||
|
||||
#: templates/share.php:44
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:32
|
||||
msgid "Edit title"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:41
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:45
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:82
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:89
|
||||
msgid "Unit Price"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:102
|
||||
msgid "Stock Status"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:152 templates/wishlist-view.php:232
|
||||
msgid "Remove this product"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:172
|
||||
msgid "Free!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:179
|
||||
msgid "Out of Stock"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:179
|
||||
msgid "In Stock"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:188
|
||||
msgid "Added on : %s"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:200
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:232
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:259
|
||||
msgid "Add the selected products to the cart"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:267 templates/wishlist-view.php:313
|
||||
msgid "Ask for an estimate"
|
||||
msgstr ""
|
||||
|
||||
#: templates/wishlist-view.php:303
|
||||
msgid "Your email"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "YITH WooCommerce Wishlist"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
||||
"possibility to create, fill, manage and share their wishlists allowing you "
|
||||
"to analyze their interests and needs to improve your marketing strategies. "
|
||||
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
||||
"your e-commerce on <strong>YITH</strong></a>"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "YITH"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://yithemes.com/"
|
||||
msgstr ""
|
||||
11
spec/fixtures/finders/users/oembed_api/200_author_name.json
vendored
Normal file
11
spec/fixtures/finders/users/oembed_api/200_author_name.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"type" : "rich",
|
||||
"version" : "1.0",
|
||||
"provider_url" : "https://wp.lab",
|
||||
"provider_name" : "WP Lab",
|
||||
"width" : 600,
|
||||
"author_name" : "admin sa",
|
||||
"height" : 338,
|
||||
"html" : "aaa",
|
||||
"title" : "HOME"
|
||||
}
|
||||
12
spec/fixtures/finders/users/oembed_api/200_author_url.json
vendored
Normal file
12
spec/fixtures/finders/users/oembed_api/200_author_url.json
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"type" : "rich",
|
||||
"version" : "1.0",
|
||||
"provider_url" : "https://wp.lab",
|
||||
"provider_name" : "WP Lab",
|
||||
"author_url" : "https://wp.lab/author/admin/",
|
||||
"width" : 600,
|
||||
"author_name" : "admin",
|
||||
"height" : 338,
|
||||
"html" : "aaa",
|
||||
"title" : "HOME"
|
||||
}
|
||||
1
spec/fixtures/finders/users/oembed_api/404.json
vendored
Normal file
1
spec/fixtures/finders/users/oembed_api/404.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"code":"oembed_invalid_url","message":"Not Found","data":{"status":404}}
|
||||
4
spec/fixtures/finders/users/yoast_seo_author_sitemap/no_usernames.xml
vendored
Normal file
4
spec/fixtures/finders/users/yoast_seo_author_sitemap/no_usernames.xml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//wp.lab/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
|
||||
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
</urlset>
|
||||
<!-- XML Sitemap generated by Yoast SEO -->
|
||||
20
spec/fixtures/finders/users/yoast_seo_author_sitemap/usernames.xml
vendored
Normal file
20
spec/fixtures/finders/users/yoast_seo_author_sitemap/usernames.xml
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//wp.lab/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
|
||||
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>http://wp.lab/author/editor/</loc>
|
||||
<lastmod>2018-10-22T19:56:51+00:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://wp.lab/author/admin/</loc>
|
||||
<lastmod>2018-10-22T19:54:23+00:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://wp.lab/author//</loc>
|
||||
<lastmod>2018-10-22T19:54:23+00:00</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://wp.lab/author/ /</loc>
|
||||
<lastmod>2018-10-22T19:54:23+00:00</lastmod>
|
||||
</url>
|
||||
</urlset>
|
||||
<!-- XML Sitemap generated by Yoast SEO -->
|
||||
@@ -1,4 +1,4 @@
|
||||
[+] WordPress version 4.0 identified (Released on 2014-09-04).
|
||||
[+] WordPress version 4.0 identified (Latest, released on 2014-09-04).
|
||||
| Detected By: rspec
|
||||
| Confirmed By:
|
||||
| Confirmed 1
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"version": {
|
||||
"number": "4.0",
|
||||
"release_date": "2014-09-04",
|
||||
"status": "latest",
|
||||
"found_by": "rspec",
|
||||
"confidence": 0,
|
||||
"interesting_entries": [
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user