Compare commits

...

39 Commits

Author SHA1 Message Date
erwanlr
c63804d1c5 Bumps version 2018-11-02 19:51:57 +00:00
erwanlr
c5e6752f75 Fixes #1232 2018-11-02 19:33:38 +00:00
erwanlr
e4f3e9d11c Fixes spec 2018-11-02 17:52:43 +00:00
erwanlr
f3713536b9 Adds missing spec files 2018-11-02 16:36:10 +00:00
erwanlr
fb751c0a51 Fixes #1228 2018-11-02 13:40:46 +00:00
erwanlr
9d3464055a Updates deps 2018-11-02 08:36:22 +00:00
erwanlr
0fea814f5d Fixes #1237 2018-11-02 08:33:21 +00:00
Ryan Dewhurst
ae70a6df9d Merge pull request #1233 from FenrirSec/fix_wordpress_hosted
Fixed pattern matching on target.wordpress_hosted
2018-10-29 13:46:50 +01:00
lp1
4afc756ccd Added spec for the new regex 2018-10-29 12:11:28 +01:00
lp1
adc5841261 Fixed too restrictive pattern matching on target.wordpress_hosted attribute 2018-10-25 18:09:04 +02:00
erwanlr
41cca5fb8a Bumps version 2018-10-20 13:43:20 +01:00
erwanlr
498da1a06b Merge branch 'advanced_help' 2018-10-20 13:41:17 +01:00
erwanlr
48dab90313 Displays the release date of the detected WP version 2018-10-20 12:37:46 +01:00
erwanlr
d1ff642957 Adds DFs 2018-10-20 11:56:47 +01:00
Erwan
2b5613d84a Update .travis.yml 2018-10-19 21:15:03 +01:00
Ryan Dewhurst
09d28fae26 Update Ruby 2018-10-19 09:47:02 +02:00
Ryan Dewhurst
7517e247d9 Update readme ruby version 2018-10-19 09:45:39 +02:00
erwanlr
998951e629 Re-enables rspec on build 2018-10-18 16:15:36 +01:00
erwanlr
d89fcbb68a Ref #1225 - Adds notes related to Medias enumeration 2018-10-18 16:15:04 +01:00
erwanlr
d3e0ff1e66 Adds simple and full help options 2018-10-18 16:01:28 +01:00
erwanlr
57942e1826 Adds DFs 2018-10-07 15:58:56 +01:00
Christian Mehlmauer
5657735b55 reduce image size 2018-10-04 16:28:21 +02:00
Christian Mehlmauer
791fce2424 smaller image 2018-10-03 07:36:06 +02:00
Christian Mehlmauer
c34fa45875 ruby 2018-10-03 07:17:44 +02:00
Christian Mehlmauer
e0fd79f800 fix docker build 2018-10-02 17:12:39 +02:00
Christian Mehlmauer
f9d9cda4a4 Merge pull request #1218 from mostafahussein/dockerfile-enhancements
Use LABEL and Make use of multi-stage build
2018-10-02 17:10:49 +02:00
Mostafa Hussein
d6f44b2f42 Remove unnecessary commands 2018-10-02 15:55:35 +02:00
Mostafa Hussein
bd90da7ed2 Remove runtime dependencies from build stage 2018-10-02 14:43:38 +02:00
Mostafa Hussein
3a1a976e35 Update Maintainers 2018-10-02 13:29:10 +02:00
Mostafa Hussein
db1309af83 Use LABEL and Make use of multistage build
Maintainer keyword should be replaced with LABEL, and Also using multistage build decreases the image from 139MB to 117MB

Signed-off-by: Mostafa Hussein <mostafa.hussein91@gmail.com>
2018-10-02 08:45:35 +02:00
Christian Mehlmauer
0e47441a36 dockerignore 2018-10-01 22:03:13 +02:00
Ryan Dewhurst
375bea9a8b Update README.md 2018-10-01 20:06:41 +02:00
erwanlr
3a42772879 Adds missing spec files 2018-09-30 13:57:46 +01:00
erwanlr
e9956593dc Adds DFs 2018-09-30 13:16:58 +01:00
erwanlr
fda6000c4c Merge branch 'master' of github.com:wpscanteam/wpscan 2018-09-30 11:23:26 +01:00
erwanlr
99b4eb969d Adds License and Readme files to gem 2018-09-30 11:20:28 +01:00
Christian Mehlmauer
dadd55ba32 another reference 2018-09-30 11:18:29 +02:00
Christian Mehlmauer
b40e06b2ea remove v3 references 2018-09-30 11:17:20 +02:00
Christian Mehlmauer
3f20edc41f gitignore 2018-09-30 11:15:48 +02:00
95 changed files with 10833 additions and 104 deletions

View File

@@ -8,6 +8,7 @@ spec/
.*
**/*.md
*.md
!README.md
Dockerfile
**/*.orig
*.orig

9
.gitignore vendored
View File

@@ -12,3 +12,12 @@ Gemfile.lock
_yardoc
doc/
.wpscan/
.ash_history
.DS_Store
.DS_Store?
.idea/
# Old files from v2
cache/
data/

View File

@@ -1 +1 @@
2.5.0
2.5.3

View File

@@ -10,12 +10,16 @@ rvm:
- 2.3.5
- 2.3.6
- 2.3.7
- 2.3.8
- 2.4.1
- 2.4.2
- 2.4.3
- 2.4.4
- 2.4.5
- 2.5.0
- 2.5.1
- 2.5.2
- 2.5.3
- ruby-head
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"

View File

@@ -1,27 +1,38 @@
FROM ruby:2.5-alpine
MAINTAINER WPScan Team <team@wpscan.org>
FROM ruby:2.5.1-alpine AS builder
LABEL maintainer="WPScan Team <team@wpscan.org>"
ARG BUNDLER_ARGS="--jobs=8 --without test development"
RUN adduser -h /wpscan -g WPScan -D wpscan
RUN echo "gem: --no-ri --no-rdoc" > /etc/gemrc
COPY . /wpscan
RUN chown -R wpscan:wpscan /wpscan
# runtime dependencies
RUN apk add --no-cache libcurl procps sqlite-libs && \
# build dependencies
apk add --no-cache --virtual build-deps git libcurl ruby-dev libffi-dev make gcc musl-dev zlib-dev procps sqlite-dev && \
bundle install --system --gemfile=/wpscan/Gemfile $BUNDLER_ARGS && \
apk del --no-cache build-deps
RUN apk add --no-cache git libcurl ruby-dev libffi-dev make gcc musl-dev zlib-dev procps sqlite-dev && \
bundle install --system --clean --no-cache --gemfile=/wpscan/Gemfile $BUNDLER_ARGS && \
# temp fix for https://github.com/bundler/bundler/issues/6680
rm -rf /usr/local/bundle/cache
WORKDIR /wpscan
RUN rake install --trace
# needed so non superusers can read gems
RUN chmod -R a+r /usr/local/bundle
FROM ruby:2.5-alpine
LABEL maintainer="WPScan Team <team@wpscan.org>"
RUN adduser -h /wpscan -g WPScan -D wpscan
COPY --from=builder /usr/local/bundle /usr/local/bundle
RUN chown -R wpscan:wpscan /wpscan
# runtime dependencies
RUN apk add --no-cache libcurl procps sqlite-libs
USER wpscan
RUN /usr/local/bundle/bin/wpscan --update --verbose
ENTRYPOINT ["/usr/local/bundle/bin/wpscan"]
CMD ["--help"]

View File

@@ -1,4 +1,4 @@
![alt text](https://raw.githubusercontent.com/wpscanteam/wpscan/gh-pages/wpscan_logo_407x80.png "WPScan - WordPress Security Scanner")
![alt text](https://raw.githubusercontent.com/wpscanteam/wpscan/gh-pages/images/wpscan_logo.png "WPScan - WordPress Security Scanner")
[![Gem Version](https://badge.fury.io/rb/wpscan.svg)](https://badge.fury.io/rb/wpscan)
[![Build Status](https://travis-ci.org/wpscanteam/wpscan.svg?branch=master)](https://travis-ci.org/wpscanteam/wpscan)
@@ -9,7 +9,7 @@
## Prerequisites:
- Ruby >= 2.2.2 - Recommended: 2.3.3
- Ruby >= 2.3 - Recommended: latest
- Curl >= 7.21 - Recommended: latest - FYI the 7.29 has a segfault
- RubyGems - Recommended: latest

View File

@@ -5,15 +5,15 @@ module WPScan
# @return [ Array<OptParseValidator::Opt> ]
def cli_options
[OptURL.new(['--url URL', 'The URL of the blog to scan'],
required_unless: %i[update help version], default_protocol: 'http')] +
required_unless: %i[update help hh version], default_protocol: 'http')] +
super.drop(1) + # delete the --url from CMSScanner
[
OptChoice.new(['--server SERVER', 'Force the supplied server module to be loaded'],
choices: %w[apache iis nginx],
normalize: %i[downcase to_sym]),
normalize: %i[downcase to_sym],
advanced: true),
OptBoolean.new(['--force', 'Do not check if the target is running WordPress']),
OptBoolean.new(['--[no-]update', 'Wether or not to update the Database'],
required_unless: %i[url help version])
OptBoolean.new(['--[no-]update', 'Whether or not to update the Database'])
]
end

View File

@@ -13,19 +13,22 @@ module WPScan
def cli_enum_choices
[
OptMultiChoices.new(
['--enumerate [OPTS]', '-e', 'Enumeration Process'],
['-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'], 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]],
@@ -45,7 +48,7 @@ module WPScan
# @return [ Array<OptParseValidator::OptBase> ]
def cli_plugins_opts
[
OptSmartList.new(['--plugins-list LIST', 'List of plugins to enumerate']),
OptSmartList.new(['--plugins-list LIST', 'List of plugins to enumerate'], advanced: true),
OptChoice.new(
['--plugins-detection MODE',
'Use the supplied mode to enumerate Plugins, instead of the global (--detection-mode) mode.'],
@@ -54,7 +57,8 @@ module WPScan
OptBoolean.new(
['--plugins-version-all',
'Check all the plugins version locations according to the choosen mode (--detection-mode, ' \
'--plugins-detection and --plugins-version-detection)']
'--plugins-detection and --plugins-version-detection)'],
advanced: true
),
OptChoice.new(
['--plugins-version-detection MODE',
@@ -68,22 +72,23 @@ module WPScan
# @return [ Array<OptParseValidator::OptBase> ]
def cli_themes_opts
[
OptSmartList.new(['--themes-list LIST', 'List of themes to enumerate']),
OptSmartList.new(['--themes-list LIST', 'List of themes to enumerate'], advanced: true),
OptChoice.new(
['--themes-detection MODE',
'Use the supplied mode to enumerate Themes, instead of the global (--detection-mode) mode.'],
choices: %w[mixed passive aggressive], normalize: :to_sym
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
),
OptBoolean.new(
['--themes-version-all',
'Check all the themes version locations according to the choosen mode (--detection-mode, ' \
'--themes-detection and --themes-version-detection)']
'--themes-detection and --themes-version-detection)'],
advanced: true
),
OptChoice.new(
['--themes-version-detection MODE',
'Use the supplied mode to check themes versions instead of the --detection-mode ' \
'or --themes-detection modes.'],
choices: %w[mixed passive aggressive], normalize: :to_sym
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
)
]
end
@@ -93,12 +98,12 @@ module WPScan
[
OptFilePath.new(
['--timthumbs-list FILE-PATH', 'List of timthumbs\' location to use'],
exists: true, default: File.join(DB_DIR, 'timthumbs-v3.txt')
exists: true, default: File.join(DB_DIR, 'timthumbs-v3.txt'), advanced: true
),
OptChoice.new(
['--timthumbs-detection MODE',
'Use the supplied mode to enumerate Timthumbs, instead of the global (--detection-mode) mode.'],
choices: %w[mixed passive aggressive], normalize: :to_sym
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
)
]
end
@@ -108,12 +113,12 @@ module WPScan
[
OptFilePath.new(
['--config-backups-list FILE-PATH', 'List of config backups\' filenames to use'],
exists: true, default: File.join(DB_DIR, 'config_backups.txt')
exists: true, default: File.join(DB_DIR, 'config_backups.txt'), advanced: true
),
OptChoice.new(
['--config-backups-detection MODE',
'Use the supplied mode to enumerate Config Backups, instead of the global (--detection-mode) mode.'],
choices: %w[mixed passive aggressive], normalize: :to_sym
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
)
]
end
@@ -123,12 +128,12 @@ module WPScan
[
OptFilePath.new(
['--db-exports-list FILE-PATH', 'List of DB exports\' paths to use'],
exists: true, default: File.join(DB_DIR, 'db_exports.txt')
exists: true, default: File.join(DB_DIR, 'db_exports.txt'), advanced: true
),
OptChoice.new(
['--db-exports-detection MODE',
'Use the supplied mode to enumerate DB Exports, instead of the global (--detection-mode) mode.'],
choices: %w[mixed passive aggressive], normalize: :to_sym
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
)
]
end
@@ -139,7 +144,7 @@ module WPScan
OptChoice.new(
['--medias-detection MODE',
'Use the supplied mode to enumerate Medias, instead of the global (--detection-mode) mode.'],
choices: %w[mixed passive aggressive], normalize: :to_sym
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
)
]
end
@@ -149,12 +154,13 @@ module WPScan
[
OptSmartList.new(
['--users-list LIST',
'List of users to check during the users enumeration from the Login Error Messages']
'List of users to check during the users enumeration from the Login Error Messages'],
advanced: true
),
OptChoice.new(
['--users-detection MODE',
'Use the supplied mode to enumerate Users, instead of the global (--detection-mode) mode.'],
choices: %w[mixed passive aggressive], normalize: :to_sym
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
)
]
end

View File

@@ -146,7 +146,10 @@ module WPScan
def enum_medias
opts = default_opts('medias').merge(range: parsed_options[:enumerate][:medias])
output('@info', msg: 'Enumerating Medias') if user_interaction?
if user_interaction?
output('@info', msg: 'Enumerating Medias (Permalink setting must be set to "Plain" for those to be detected)')
end
output('medias', medias: target.medias(opts))
end

View File

@@ -7,8 +7,7 @@ module WPScan
OptChoice.new(
['--main-theme-detection MODE',
'Use the supplied mode for the Main theme detection, instead of the global (--detection-mode) mode.'],
choices: %w[mixed passive aggressive],
normalize: :to_sym
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
)
]
end

View File

@@ -4,13 +4,12 @@ module WPScan
class WpVersion < CMSScanner::Controller::Base
def cli_options
[
OptBoolean.new(['--wp-version-all', 'Check all the version locations']),
OptBoolean.new(['--wp-version-all', 'Check all the version locations'], advanced: true),
OptChoice.new(
['--wp-version-detection MODE',
'Use the supplied mode for the WordPress version detection, ' \
'instead of the global (--detection-mode) mode.'],
choices: %w[mixed passive aggressive],
normalize: :to_sym
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
)
]
end

View File

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

View File

@@ -9,7 +9,7 @@ module WPScan
return unless target.debug_log?(path)
WPScan::InterestingFinding.new(
WPScan::DebugLog.new(
target.url(path),
confidence: 100, found_by: DIRECT_ACCESS
)

View File

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

View File

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

View File

@@ -10,7 +10,7 @@ module WPScan
return if fpd_entries.empty?
WPScan::InterestingFinding.new(
WPScan::FullPathDisclosure.new(
target.url(path),
confidence: 100,
found_by: DIRECT_ACCESS,

View File

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

View File

@@ -15,7 +15,7 @@ module WPScan
target.multisite = true
WPScan::InterestingFinding.new(
WPScan::Multisite.new(
url,
confidence: 100,
found_by: DIRECT_ACCESS,

View File

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

View File

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

View File

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

View File

@@ -11,7 +11,7 @@ module WPScan
url = target.url(path)
WPScan::InterestingFinding.new(
WPScan::UploadDirectoryListing.new(
url,
confidence: 100,
found_by: DIRECT_ACCESS,

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
module WPScan
module Finders
module Medias
# Medias Finder
# Medias Finder, see https://github.com/wpscanteam/wpscan/issues/172
class AttachmentBruteForcing < CMSScanner::Finders::Finder
include CMSScanner::Finders::Finder::Enumerator

View File

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

View 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

View File

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

View File

@@ -50,5 +50,10 @@ module WPScan
@vulnerabilities
end
# @return [ String ]
def release_date
@release_date ||= db_data['release_date']
end
end
end

View File

@@ -1,5 +1,5 @@
<% if @version -%>
<%= info_icon %> WordPress version <%= @version.number %> identified.
<%= info_icon %> WordPress version <%= @version.number %> identified (Released on <%= @version.release_date %>).
<%= render('@finding', item: @version) -%>
<% else -%>
<%= notice_icon %> The WordPress version could not be detected.

View File

@@ -1,6 +1,7 @@
<% if @version -%>
"version": {
"number": <%= @version.number.to_json %>,
"release_date": <%= @version.release_date.to_json %>,
<%= render('@finding', item: @version) -%>
},
<% else -%>

View File

@@ -9,6 +9,6 @@ done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
cd $DIR/../
docker build -q -t wpscanv3:git .
docker run -it --rm wpscanv3:git "$@"
docker build -q -t wpscan:git .
docker run -it --rm wpscan:git "$@"

View File

@@ -10,7 +10,7 @@ DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
cd $DIR/../
if [[ -n "$WPSCAN_BUILD" ]]; then
docker build -q -t wpscanv3:git .
docker build -q -t wpscan:git .
fi
docker run -it --rm -v $DIR/../:/wpscan wpscanv3:git "$@"
docker run -it --rm -v $DIR/../:/wpscan wpscan:git "$@"

View File

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

View File

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

View File

@@ -1,4 +1,4 @@
# Version
module WPScan
VERSION = '3.3.1'.freeze
VERSION = '3.3.3'.freeze
end

View File

@@ -22,7 +22,7 @@ describe WPScan::Controller::Core do
# Ensures the :url is the first one and is correctly setup
expect(cli_options.first.to_sym).to eql :url
expect(cli_options.first.required_unless).to match_array %i[update help version]
expect(cli_options.first.required_unless).to match_array %i[update help hh version]
end
end

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View 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

View File

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

View File

@@ -86,4 +86,10 @@ describe WPScan::WpVersion do
end
end
end
describe '#release_date' do
subject(:version) { described_class.new('3.8.1') }
its(:release_date) { should eql '2014-01-23' }
end
end

View File

@@ -491,6 +491,12 @@ plugins:
path: css/parallax.css
pattern: !ruby/regexp /\*\* [^\s]+ \- V(?<v>\d+\.[\.\d]+)/i
version: true
adbutler:
QueryParameter:
files:
- js/adbutler_hb_init.js
- js/adbutler_hb_final.js
version: true
add-amazon-block:
ComposerFile:
class: ConfigParser
@@ -999,6 +1005,11 @@ plugins:
path: language/ajaxify-filters-en_US.po
pattern: !ruby/regexp /Project\-Id\-Version:\ Ajaxify filters (?<v>\d+\.[\.\d]+)/i
version: true
ak-menu-icons-lite:
QueryParameter:
files:
- css/font-awesome.min.css
version: true
aklamator-popup:
QueryParameter:
files:
@@ -1220,6 +1231,12 @@ plugins:
files:
- css/style.css
version: true
animation-block:
ComposerFile:
class: ConfigParser
path: package.json
key: version
version: true
ank-simplified-ga:
Comment:
xpath: //comment()[contains(., "GA Tracking")]
@@ -1368,6 +1385,12 @@ plugins:
- public/css/appypie-web-to-app-public.css
- public/js/appypie-web-to-app-public.js
version: true
apx-link-status:
TranslationFile:
class: BodyPattern
path: languages/apx-link-status.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: APx Link Status (?<v>\d+\.[\.\d]+)/i'
version: true
arabic-webfonts:
Comment:
xpath: //comment()[contains(., "arabic-webfonts")]
@@ -1475,6 +1498,11 @@ plugins:
- css/font-awesome/css/font-awesome.min.css
- js/amo.js
version: true
art-decoration-shortcode:
QueryParameter:
files:
- assets/css/style-front.min.css
version: true
art-picture-gallery:
QueryParameter:
files:
@@ -1972,6 +2000,12 @@ plugins:
path: languages/plugin-name.pot
pattern: !ruby/regexp /Project\-Id\-Version:\ TODO (?<v>\d+\.[\.\d]+)/i
version: true
backstage:
TranslationFile:
class: BodyPattern
path: languages/backstage.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: Backstage (?<v>\d+\.[\.\d]+)/i'
version: true
backupbuddy:
HistoryLog:
class: BodyPattern
@@ -2856,6 +2890,12 @@ plugins:
path: languages/bowe-codes.pot
pattern: !ruby/regexp /Project\-Id\-Version:\ Bowe Codes (?<v>\d+\.[\.\d]+)/i
version: true
boxtal-connect:
TranslationFile:
class: BodyPattern
path: Boxtal/BoxtalConnectWoocommerce/translation/boxtal-connect-fr_FR.po
pattern: !ruby/regexp '/"Project\-Id\-Version: Boxtal connect (?<v>\d+\.[\.\d]+)/i'
version: true
bp-activity-share:
QueryParameter:
files:
@@ -3611,6 +3651,12 @@ plugins:
- include/js/custom-list.js
- include/js/custom-owlCarousel-detail.js
version: true
catch-breadcrumb:
QueryParameter:
files:
- public/css/catch-breadcrumb-public.css
- public/js/catch-breadcrumb-public.js
version: true
catch-infinite-scroll:
QueryParameter:
files:
@@ -4949,6 +4995,12 @@ plugins:
path: package.json
key: version
version: true
cosmic-carousel:
QueryParameter:
files:
- public/css/cosmic-public.css
- public/js/cosmic-public.js
version: true
coupon-reveal-button:
QueryParameter:
files:
@@ -5054,6 +5106,12 @@ plugins:
- assets/css/cryptocoins.css
- assets/js/jquery.stockticker.min.js
version: true
cryptocurrency-price-widget:
TranslationFile:
class: BodyPattern
path: languages/crcpw-cryptocurrency-price-widget.pot
pattern: !ruby/regexp '/Id\-Version: Cryptocurrency Price Widget (?<v>\d+\.[\.\d]+)/i'
version: true
cryptocurrency-widgets-pack:
QueryParameter:
files:
@@ -5560,6 +5618,17 @@ plugins:
xpath: //meta[@name="generator"]/@content
pattern: !ruby/regexp /WordPress Download Manager (?<v>\d+\.[\.\d]+)/i
version: true
download-media-file:
TranslationFile:
class: BodyPattern
path: languages/download-media-file.pot
pattern: !ruby/regexp '/Project\-Id\-Version: Download Media File (?<v>\d+\.[\.\d]+)/i'
version: true
ComposerFile:
class: ConfigParser
path: package.json
key: version
version: true
download-monitor:
TranslationFile:
class: BodyPattern
@@ -6611,6 +6680,13 @@ plugins:
path: languages/eu-opt-in-compliance-for-mailchimp.pot
pattern: !ruby/regexp /ion:\ eu\-opt\-in\-compliance\-for\-mailchimp (?<v>\d+\.[\.\d]+)/i
version: true
event-calendar-by-hg:
QueryParameter:
files:
- assets/css/front.min.css
- assets/js/front.min.js
version: true
pattern: !ruby/regexp /v\=(?<v>\d+\.[\.\d]+)/
event-calendar-wd:
QueryParameter:
files:
@@ -6846,6 +6922,12 @@ plugins:
- assets/js/frontend.js
- assets/js/jAlert-v3.js
version: true
expivi:
TranslationFile:
class: BodyPattern
path: languages/expivi.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: Expivi (?<v>\d+\.[\.\d]+)/i'
version: true
explanatory-dictionary:
QueryParameter:
files:
@@ -6886,6 +6968,12 @@ plugins:
path: languages/extensive-vc.pot
pattern: !ruby/regexp /"Project\-Id\-Version:\ Extensive VC (?<v>\d+\.[\.\d]+)/i
version: true
extra-blocks:
TranslationFile:
class: BodyPattern
path: languages/extra-blocks.po
pattern: !ruby/regexp '/"Project\-Id\-Version: Extra Blocks (?<v>\d+\.[\.\d]+)/i'
version: true
extra-privacy-for-elementor:
QueryParameter:
files:
@@ -7612,6 +7700,12 @@ plugins:
files:
- css/foxyshop.css
version: true
front-editor-for-woocommerce:
ComposerFile:
class: ConfigParser
path: package.json
key: version
version: true
front-end-pm:
TranslationFile:
class: BodyPattern
@@ -7734,6 +7828,12 @@ plugins:
- template/masonry.js
- template/main.js
version: true
gallerya:
ComposerFile:
class: ConfigParser
path: package.json
key: version
version: true
game-showcase:
QueryParameter:
files:
@@ -8771,6 +8871,12 @@ plugins:
files:
- guardian_headlines.css
version: true
guten-editor-blocks:
TranslationFile:
class: BodyPattern
path: languages/guten-editor-blocks.pot
pattern: !ruby/regexp /"v(?<v>\d+\.[\.\d]+)/i
version: true
gutenbee:
ComposerFile:
class: ConfigParser
@@ -8796,6 +8902,16 @@ plugins:
- assets/css/font-awesome.css
- assets/css/animate.min.css
version: true
halloween-woocommerce:
QueryParameter:
files:
- styles.css
- assets/js/cookie.js
- main.js
- assets/js/jquery.vibrate.js
- assets/js/vibrationoptions.js
- assets/js/random-image.js
version: true
hammy:
QueryParameter:
files:
@@ -8925,6 +9041,12 @@ plugins:
files:
- assets/css/hero-social-style.css
version: true
hidden-contents:
TranslationFile:
class: BodyPattern
path: languages/hidden-contents-fa_IR.po
pattern: !ruby/regexp '/"Project\-Id\-Version: Hide Content (?<v>\d+\.[\.\d]+)/i'
version: true
hidden-login:
QueryParameter:
files:
@@ -8981,6 +9103,22 @@ plugins:
- _inc/hints.js
pattern: !ruby/regexp /(?<v>[\d\.]+[a-z])/i
version: true
hivepress:
QueryParameter:
files:
- assets/css/fontawesome/fontawesome.min.css
- assets/css/fontawesome/solid.min.css
- assets/css/fancybox.min.css
- assets/css/slick.min.css
- assets/css/grid.min.css
- assets/css/frontend.min.css
- assets/js/jquery.iframe-transport.min.js
- assets/js/jquery.fileupload.min.js
- assets/js/jquery.fancybox.min.js
- assets/js/slick.min.js
- assets/js/jquery.sticky-sidebar.min.js
- assets/js/frontend.min.js
version: true
hjyl-comment-spam:
TranslationFile:
class: BodyPattern
@@ -9111,6 +9249,12 @@ plugins:
- assets/css/magnific-popup.css
- assets/js/video.js
version: true
http-to-https:
TranslationFile:
class: BodyPattern
path: languages/http-to-https.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: HTTP to HTTPS (?<v>\d+\.[\.\d]+)/i'
version: true
hubwoo-deal-per-order-lite:
TranslationFile:
class: BodyPattern
@@ -9229,6 +9373,13 @@ plugins:
path: languages/ico-lw.pot
pattern: !ruby/regexp /"Project\-Id\-Version:\ ICO List Widget (?<v>\d+\.[\.\d]+)/i
version: true
iconpress-lite:
QueryParameter:
files:
- assets/css/iconpress.css
- assets/css/panel.css
- assets/js/iconpress.min.js
version: true
ics-button:
JavascriptVar:
class: BodyPattern
@@ -9277,6 +9428,18 @@ plugins:
class: Xpath
xpath: //meta[@name="IE9 Pinned Site"]/@content
version: true
ifthengive:
QueryParameter:
files:
- public/css/datatables/jquery.dataTables.css
- public/css/datatables/dataTables.responsive.css
- includes/css/alertify/alertify.css
- public/css/ifthengive-public.css
- includes/css/alertify/alertify.min.js
- public/js/ifthengive-public.js
- public/js/datatables/jquery.dataTables.min.js
- public/js/datatables/dataTables.responsive.js
version: true
ifttt-instagram-gallery:
QueryParameter:
files:
@@ -10212,6 +10375,7 @@ plugins:
- css/wpkqcg-pkg.css
- assets/qrcode.js
- js/wpkqcg-pkg.js
- assets/qrcode-v2.js
version: true
kb-support:
QueryParameter:
@@ -10642,6 +10806,23 @@ plugins:
path: lang/lead-to-clio.pot
pattern: !ruby/regexp /"Project\-Id\-Version:\ lead_to_clio (?<v>\d+\.[\.\d]+)/i
version: true
leader:
QueryParameter:
files:
- public/css/leader-public.css
- public/js/leader-public.js
version: true
leadgeneration:
QueryParameter:
files:
- assets/vendors/fontawesome/css/fontawesome-all.min.css
version: true
leadkit-pro:
QueryParameter:
files:
- public/css/leadkitpro-public.css
- public/js/leadkitpro-public.js
version: true
leaflet-map:
QueryParameter:
files:
@@ -10847,6 +11028,7 @@ plugins:
- includes/assets/limelight-traffic-attribution.min.js
- includes/assets/main.js
- classes/assets/limelight-traffic-attribution.min.js
- assets/js/limelight-traffic-attribution.min.js
version: true
JavascriptVar:
xpath: //script[not(@src) and contains(., "limelightTracker")]
@@ -10980,6 +11162,12 @@ plugins:
path: languages/livepress.pot
pattern: !ruby/regexp /"Project\-Id\-Version:\ livepress (?<v>\d+\.[\.\d]+)/i
version: true
livestream-notice:
QueryParameter:
files:
- livestream-notice.css
- livestream-notice.js
version: true
loanthru-calculator:
QueryParameter:
files:
@@ -11067,6 +11255,13 @@ plugins:
files:
- public/js/ajax-methods.min.js
- public/css/display.css
- public/css/display.min.css
version: true
login-and-logout-redirect:
QueryParameter:
files:
- public/css/login-and-logout-redirect-public.css
- public/js/login-and-logout-redirect-public.js
version: true
login-customizer:
ChangeLog:
@@ -11271,6 +11466,12 @@ plugins:
files:
- assets/css/frontend/main.css
version: true
luckywp-cookie-notice-gdpr:
QueryParameter:
files:
- front/assets/main.min.css
- front/assets/main.min.js
version: true
lukas-tripster:
TranslationFile:
class: BodyPattern
@@ -11412,6 +11613,12 @@ plugins:
- css/magic-slider.css
- bxslider/jquery.bxslider.min.js
version: true
mailcamp:
QueryParameter:
files:
- public/css/mailcamp-public.css
- public/js/mailcamp-public.js
version: true
mailchimp-for-wp:
ChangeLog:
class: BodyPattern
@@ -11582,6 +11789,12 @@ plugins:
xpath: //meta[@name="generator"]/@content
version: true
pattern: !ruby/regexp /Margarita v(?<v>\d+\.[\.\d]+) \- https:\/\/emdplugins\.com/i
marketplace-taxes:
TranslationFile:
class: BodyPattern
path: languages/marketplace-taxes.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: Marketplace Taxes (?<v>\d+\.[\.\d]+)/i'
version: true
masburti-flickr-gallery:
TranslationFile:
class: BodyPattern
@@ -11615,6 +11828,12 @@ plugins:
files:
- assets/rating/rating.js
version: true
mastalab-comments:
QueryParameter:
files:
- public/css/mastalab_comments-public.css
- public/js/mastalab_comments-public.js
version: true
master-modal-login-lite:
Comment:
xpath: //comment()[contains(., "MasterModalLoginLite")]
@@ -11861,6 +12080,12 @@ plugins:
files:
- css/extra.min.css
version: true
menu-item-duplicator:
TranslationFile:
class: BodyPattern
path: languages/menu-item-duplicator.pot
pattern: !ruby/regexp '/roject\-Id\-Version: Menu Item Duplicator (?<v>\d+\.[\.\d]+)/i'
version: true
menu-manager:
QueryParameter:
files:
@@ -12659,6 +12884,12 @@ plugins:
- naver-map.css
- naver-map.js
version: true
nbsp-french:
TranslationFile:
class: BodyPattern
path: languages/nbsp-french.pot
pattern: !ruby/regexp /s Non\-Breaking Space for French Content (?<v>\d+\.[\.\d]+)/i
version: true
nearby-locations:
QueryParameter:
files:
@@ -12714,6 +12945,12 @@ plugins:
path: languages/nepali-calendar.pot
pattern: !ruby/regexp /"Project\-Id\-Version:\ Nepali Calendar (?<v>\d+\.[\.\d]+)/i
version: true
neptune-business:
QueryParameter:
files:
- public/css/neptune-busines-public.css
- public/js/neptune-busines-public.js
version: true
neptune-style-element:
Comment:
pattern: !ruby/regexp /uses the Neptune Style Element plugin v(?<v>\d+\.[\.\d]+)/i
@@ -13201,6 +13438,12 @@ plugins:
xpath: //meta[@name="omniads"]/@content
version: true
pattern: !ruby/regexp /omniads\/(?<v>\d+\.[\.\d]+)/i
onc-master:
QueryParameter:
files:
- public/css/onc_master-public.css
- public/js/onc_master-public.js
version: true
one-click-demo-import:
TranslationFile:
class: BodyPattern
@@ -13427,6 +13670,14 @@ plugins:
Comment:
pattern: !ruby/regexp /OSM plugin V(?<v>\d+\.[\.\d]+)/i
version: true
osmapper:
QueryParameter:
files:
- assets/css/ba_map_renderer.css
- assets/css/ba_map_styles.css
- assets/js/leaflet.js
- assets/js/ba_map_renderer.js
version: true
oss-upload:
TranslationFile:
class: BodyPattern
@@ -13504,6 +13755,24 @@ plugins:
path: package.json
key: version
version: true
page-builder-by-azexo:
QueryParameter:
files:
- css/swiper.css
- css/animate.css
- css/magnific-popup.css
- css/frontend.css
- js/isotope.pkgd.js
- js/jquery.waypoints.js
- js/jquery.countdown.js
- js/jquery.maskedinput.js
- js/swiper.js
- js/jquery.magnific-popup.js
- js/scrollReveal.js
- js/parallax.js
- js/rellax.js
- js/frontend.js
version: true
page-builder-sandwich:
QueryParameter:
files:
@@ -14240,6 +14509,11 @@ plugins:
path: languages/portfolio-toolkit.pot
pattern: !ruby/regexp /"Project\-Id\-Version:\ Portfolio Toolkit (?<v>\d+\.[\.\d]+)/i
version: true
poshtiban:
QueryParameter:
files:
- assets/js/poshtiban-public.js
version: true
post-and-page-builder:
QueryParameter:
files:
@@ -14277,6 +14551,11 @@ plugins:
files:
- styles/default-styles.css
version: true
post-deadlines:
QueryParameter:
files:
- assets/script.js
version: true
post-display:
QueryParameter:
files:
@@ -14633,6 +14912,12 @@ plugins:
path: composer.json
key: version
version: true
pressbooks-openstax-import:
ComposerFile:
class: ConfigParser
path: composer.json
key: version
version: true
pressbooks-textbook:
ComposerFile:
class: ConfigParser
@@ -15503,6 +15788,12 @@ plugins:
- public/css/reframer-public.min.css
- public/js/reframer-public.min.js
version: true
registration-for-woocommerce:
TranslationFile:
class: BodyPattern
path: languages/registration-for-woocommerce.pot
pattern: !ruby/regexp '/d\-Version: Registration For WooCommerce (?<v>\d+\.[\.\d]+)/i'
version: true
registrations-for-the-events-calendar:
QueryParameter:
files:
@@ -15670,6 +15961,12 @@ plugins:
- css/responsiveimgslider.css
- js/jquery.slides.min.js
version: true
responsive-horizontal-vertical-and-accordion-tabs:
TranslationFile:
class: BodyPattern
path: languages/wp-best-responsive-tabs.pot
pattern: !ruby/regexp /horizontal vertical and accordion Tabs (?<v>\d+\.[\.\d]+)/i
version: true
responsive-jquery-slider:
TranslationFile:
class: BodyPattern
@@ -16031,6 +16328,12 @@ plugins:
- assets/js/owl.carousel.min.js
- assets/js/rolo.js
version: true
rontar-blog-retargeting:
TranslationFile:
class: BodyPattern
path: languages/rontar-blog-retargeting.pot
pattern: !ruby/regexp '/ect\-Id\-Version: Rontar Blog Retargeting (?<v>\d+\.[\.\d]+)/i'
version: true
roost-for-bloggers:
Comment:
xpath: //comment()[contains(., "goroost.com")]
@@ -16459,6 +16762,12 @@ plugins:
path: languages/algolia.pot
pattern: !ruby/regexp /Algolia [^\s]+ Instant & Relevant results (?<v>\d+\.[\.\d]+)/i
version: true
search-cloud-one:
QueryParameter:
files:
- public/css/sc1-search-public.css
- public/js/sc1-search-public.js
version: true
search-everything:
JavascriptVar:
pattern: !ruby/regexp /window\._se_plugin_version = '(?<v>\d+\.[\.\d]+)';/i
@@ -17261,6 +17570,12 @@ plugins:
- public/css/exxica-simple-sharing-public.css
- public/js/exxica-simple-sharing-public.js
version: true
simple-shortcode-block:
TranslationFile:
class: BodyPattern
path: languages/simple-shortcode-block.pot
pattern: !ruby/regexp '/ject\-Id\-Version: Simple Shortcode Block (?<v>\d+\.[\.\d]+)/i'
version: true
simple-sidebar-manager:
TranslationFile:
class: BodyPattern
@@ -17482,6 +17797,12 @@ plugins:
path: languages/sitewit-engagement-analytics.pot
pattern: !ruby/regexp '/ect\-Id\-Version: Search Engine Marketing (?<v>\d+\.[\.\d]+)/i'
version: true
siwecos:
TranslationFile:
class: BodyPattern
path: languages/siwecos-de_DE.po
pattern: !ruby/regexp '/\# Version: (?<v>\d+\.[\.\d]+)/i'
version: true
sj-cornerstone-addon:
QueryParameter:
files:
@@ -17663,6 +17984,7 @@ plugins:
files:
- smart-overlay.js
- assets/smart-overlay.js
- assets/smart-overlay.css
version: true
smart-post-like:
QueryParameter:
@@ -18011,6 +18333,12 @@ plugins:
path: languages/son-of-gifv.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: Son of GIFV (?<v>\d+\.[\.\d]+)/i'
version: true
sophia-twitter-auto-post:
TranslationFile:
class: BodyPattern
path: languages/sophia-post-to-twitter.pot
pattern: !ruby/regexp '/ct\-Id\-Version: Sophia Twitter Auto Post (?<v>\d+\.[\.\d]+)/i'
version: true
source-affix:
QueryParameter:
files:
@@ -19586,6 +19914,11 @@ plugins:
files:
- js/ttt-devices.js
version: true
ttv-easy-embed-player:
QueryParameter:
files:
- public/js/twitch-player-public.js
version: true
tumblr-crosspostr:
TranslationFile:
class: BodyPattern
@@ -20309,6 +20642,12 @@ plugins:
files:
- css/very-simple-slider.css
version: true
vessel:
QueryParameter:
files:
- css/vessel.css
- js/vessel.js
version: true
viavi-wp-timeline:
TranslationFile:
class: BodyPattern
@@ -20462,6 +20801,13 @@ plugins:
path: languages/voice-search.pot
pattern: !ruby/regexp /"Project\-Id\-Version:\ Voice Search (?<v>\d+\.[\.\d]+)/i
version: true
vowels-contact-form-with-drag-and-drop:
QueryParameter:
files:
- css/styles.css
- js/vowels.js
- js/jquery.vowels.js
version: true
voxpress:
Comment:
xpath: //comment()[contains(., "voxpress")]
@@ -20587,6 +20933,12 @@ plugins:
files:
- frontend/js/min/wbounce.min.js
version: true
wc-18app:
TranslationFile:
class: BodyPattern
path: languages/it_IT.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: WC 18app (?<v>\d+\.[\.\d]+)/i'
version: true
wc-affiliate-new-window:
QueryParameter:
files:
@@ -20644,6 +20996,12 @@ plugins:
- public/css/wc-guest-checkout-single-product-public.css
- public/js/wc-guest-checkout-single-product-public.js
version: true
wc-min-max-quantities:
TranslationFile:
class: BodyPattern
path: i18n/languages/wc-min-max-quantities.pot
pattern: !ruby/regexp '/oject\-Id\-Version: WC Min Max Quantities (?<v>\d+\.[\.\d]+)/i'
version: true
wc-moldovaagroindbank:
TranslationFile:
class: BodyPattern
@@ -21285,6 +21643,11 @@ plugins:
path: package.json
key: version
version: true
woo-ajax-loginregister:
QueryParameter:
files:
- css/style.css
version: true
woo-align-buttons:
QueryParameter:
files:
@@ -21305,6 +21668,12 @@ plugins:
path: cs-framework/languages/bn_BD.po
pattern: !ruby/regexp '/"Project\-Id\-Version: Codestar Framework (?<v>\d+\.[\.\d]+)/i'
version: true
woo-apuspayments:
TranslationFile:
class: BodyPattern
path: languages/woocommerce-apuspayments.pot
pattern: !ruby/regexp '/ct\-Id\-Version: WooCommerce ApusPayments (?<v>\d+\.[\.\d]+)/i'
version: true
woo-authorize-net:
QueryParameter:
files:
@@ -21387,6 +21756,12 @@ plugins:
- public/css/r_wev_search-public.css
- public/js/r_wev_search-public.js
version: true
woo-estimated-shipping-date:
TranslationFile:
class: BodyPattern
path: languages/wcesd.pot
pattern: !ruby/regexp '/on: WooCommerce Estimated Shipping Date (?<v>\d+\.[\.\d]+)/i'
version: true
woo-extra-cart-fee:
QueryParameter:
files:
@@ -21405,6 +21780,12 @@ plugins:
path: languages/ced-fruugo-en_US.po
pattern: !ruby/regexp '/ject\-Id\-Version: Woo Fruugo Integration (?<v>\d+\.[\.\d]+)/i'
version: true
woo-gateway-payger:
TranslationFile:
class: BodyPattern
path: languages/PT_pt.po
pattern: !ruby/regexp /\-payger\.pot \(Woocommerce Gateway Payger (?<v>\d+\.[\.\d]+)/i
version: true
woo-gift-cards-lite:
TranslationFile:
class: BodyPattern
@@ -22177,6 +22558,12 @@ plugins:
path: langs/wordpresscom-stats-smiley-remover-fr_FR.po
pattern: !ruby/regexp '/on: WordPress\.com Stats Smiley Remover v(?<v>\d+\.[\.\d]+)/i'
version: true
workshop-butler:
QueryParameter:
files:
- public/css/styles.1.0.2.min.css
- public/css/fontawesome-all.min.css
version: true
world-cup-predictor:
TranslationFile:
class: BodyPattern
@@ -22531,6 +22918,12 @@ plugins:
- css/style.css
- js/jsgrid/jsgrid.min.js
version: true
wp-charts-and-graphs:
QueryParameter:
files:
- assets/js/pantherius_wp_charts.js
- assets/js/pantherius_wp_charts_init.js
version: true
wp-child-theme-generator:
TranslationFile:
class: BodyPattern
@@ -22962,6 +23355,18 @@ plugins:
xpath: //comment()[contains(., "Facebook Like Send")]
pattern: !ruby/regexp /Facebook Like Send & Open Graph Meta v(?<v>\d+\.[\.\d]+)/i
version: true
wp-facebook-review-showcase-lite:
QueryParameter:
files:
- assets/frontend/css/frontend-style.css
- assets/frontend/css/font-awesome/font-awesome.min.css
- assets/frontend/css/elegant-icons/elegant-icons.css
- assets/frontend/css/flat-star-icon/flaticon.css
- assets/frontend/css/jquery.bxslider.css
- assets/frontend/js/jquery.bxslider.js
- assets/frontend/js/wow.js
- assets/frontend/js/frontend-script.js
version: true
wp-facebook-reviews:
QueryParameter:
files:
@@ -23047,6 +23452,11 @@ plugins:
- public/js/wfwc-uploadfile.min.js
- public/js/wfwc-public.js
version: true
wp-film-studio:
QueryParameter:
files:
- assets/js/popper.min.js
version: true
wp-flexible-map:
QueryParameter:
files:
@@ -23072,6 +23482,12 @@ plugins:
files:
- font-awesome/css/font-awesome.min.css
version: true
wp-force-logout:
TranslationFile:
class: BodyPattern
path: languages/wp-force-logout.pot
pattern: !ruby/regexp '/"Project\-Id\-Version: WPForce Logout (?<v>\d+\.[\.\d]+)/i'
version: true
wp-foundation-shortcodes:
QueryParameter:
files:
@@ -23288,6 +23704,11 @@ plugins:
path: languages/kuaza_pic_up_lang-tr_TR.po
pattern: !ruby/regexp /sgid "<strong>Plugin version:<\/strong> v(?<v>\d+\.[\.\d]+)/i
version: true
wp-insurance:
QueryParameter:
files:
- assets/js/popper.min.js
version: true
wp-inventory-manager:
QueryParameter:
files:
@@ -24795,6 +25216,11 @@ plugins:
- public/css/wp30-by-who-public.css
- public/js/wp30-by-who-public.js
version: true
wpac-like-system:
QueryParameter:
files:
- assets/js/ajax.js
version: true
wpadverts:
TranslationFile:
class: BodyPattern
@@ -25024,6 +25450,11 @@ plugins:
- public/css/wpmerchant-public.css
- public/js/wpmerchant-public.js
version: true
wpmk-faq:
QueryParameter:
files:
- assets/js/wpmk-script.js
version: true
wpmk-portfolio:
QueryParameter:
files:
@@ -25345,6 +25776,12 @@ plugins:
- public/css/wt-advanced-woocommerce-report-public.css
- public/js/wt-advanced-woocommerce-report-public.js
version: true
wt-pocket-navigator:
QueryParameter:
files:
- public/css/wtpn-pocket-nav-public.css
- public/js/wtpn-pocket-nav-public.js
version: true
wt-smart-coupons-for-woocommerce:
QueryParameter:
files:

View File

@@ -1,5 +1,9 @@
{
"4.0": {
"release_date" : "2014-09-04"
},
"3.8.1": {
"release_date" : "2014-01-23",
"vulnerabilities" : [
{
"created_at" : "2014-08-01T10:58:19.000Z",
@@ -25,6 +29,7 @@
]
},
"3.8": {
"release_date" : "2013-12-12",
"vulnerabilities" : [
{
"references": {

View File

@@ -572,6 +572,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/adamrob-parallax-scroll/css/parallax.css,
Match: ''** 22MAR2016 - V2.0'''
adbutler:
QueryParameter:
number: '1.18'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/adbutler/js/adbutler_hb_init.js?ver=1.18
- http://wp.lab/wp-content/plugins/adbutler/js/adbutler_hb_final.js?ver=1.18
confidence: 20
add-amazon-block:
ComposerFile:
number: 0.2.1
@@ -1210,6 +1218,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/ajaxify-filters/language/ajaxify-filters-en_US.po,
Match: ''Project-Id-Version: Ajaxify filters 1.0.4'''
ak-menu-icons-lite:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/ak-menu-icons-lite/css/font-awesome.min.css?ver=1.0.0
confidence: 10
aklamator-popup:
QueryParameter:
number: 1.0
@@ -1502,6 +1517,12 @@ plugins:
confidence: 10
interesting_entries:
- http://wp.lab/wp-content/plugins/animated-headline/css/style.css?ver=3.5
animation-block:
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/animation-block/package.json, Match: ''1.0.0'''
ank-simplified-ga:
Comment:
number: 1.4.2
@@ -1688,6 +1709,13 @@ plugins:
- http://wp.lab/wp-content/plugins/appypie-web-to-app/public/css/appypie-web-to-app-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/appypie-web-to-app/public/js/appypie-web-to-app-public.js?ver=1.0.0
confidence: 20
apx-link-status:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/apx-link-status/languages/apx-link-status.pot,
Match: ''"Project-Id-Version: APx Link Status 1.0.0'''
arabic-webfonts:
Comment:
number: 1.4.4
@@ -1821,6 +1849,13 @@ plugins:
- http://wp.lab/wp-content/plugins/arrange-multisite-order/css/style.css?ver=1.0
- http://wp.lab/wp-content/plugins/arrange-multisite-order/css/font-awesome/css/font-awesome.min.css?ver=1.0
- http://wp.lab/wp-content/plugins/arrange-multisite-order/js/amo.js?ver=1.0
art-decoration-shortcode:
QueryParameter:
number: 1.5.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/art-decoration-shortcode/assets/css/style-front.min.css?ver=1.5.2
confidence: 10
art-picture-gallery:
QueryParameter:
number: '1.0'
@@ -2454,6 +2489,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/background-music-player-lite/languages/plugin-name.pot,
Match: ''Project-Id-Version: TODO 1.0.0'''
backstage:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/backstage/languages/backstage.pot, Match:
''"Project-Id-Version: Backstage 1.0.0'''
backupbuddy:
HistoryLog:
number: 7.0.5.0
@@ -3564,6 +3606,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/bowe-codes/languages/bowe-codes.pot, Match:
''Project-Id-Version: Bowe Codes 2.1'''
boxtal-connect:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/boxtal-connect/Boxtal/BoxtalConnectWoocommerce/translation/boxtal-connect-fr_FR.po,
Match: ''"Project-Id-Version: Boxtal connect 1.0.0'''
bp-activity-share:
QueryParameter:
number: 1.5.0
@@ -4489,6 +4538,14 @@ plugins:
- http://wp.lab/wp-content/plugins/case-study/include/js/wow.js?ver=1.0
- http://wp.lab/wp-content/plugins/case-study/include/js/custom-list.js?ver=1.0
- http://wp.lab/wp-content/plugins/case-study/include/js/custom-owlCarousel-detail.js?ver=1.0
catch-breadcrumb:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/catch-breadcrumb/public/css/catch-breadcrumb-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/catch-breadcrumb/public/js/catch-breadcrumb-public.js?ver=1.0.0
confidence: 20
catch-infinite-scroll:
QueryParameter:
number: 1.0.0
@@ -6175,6 +6232,14 @@ plugins:
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cornerstone/package.json, Match: ''0.7.5'''
cosmic-carousel:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/cosmic-carousel/public/css/cosmic-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/cosmic-carousel/public/js/cosmic-public.js?ver=1.0.0
confidence: 20
coupon-reveal-button:
QueryParameter:
number: 1.0.0
@@ -6308,6 +6373,13 @@ plugins:
- http://wp.lab/wp-content/plugins/crypto-ticker/assets/css/cryptocoins.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/crypto-ticker/assets/js/jquery.stockticker.min.js?ver=1.0.0
confidence: 30
cryptocurrency-price-widget:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/cryptocurrency-price-widget/languages/crcpw-cryptocurrency-price-widget.pot,
Match: ''Id-Version: Cryptocurrency Price Widget 1.0.0'''
cryptocurrency-widgets-pack:
QueryParameter:
number: 1.0.0
@@ -6917,6 +6989,19 @@ plugins:
found_by: Meta Generator (Passive Detection)
interesting_entries:
- 'http://wp.lab/, Match: ''WordPress Download Manager 2.9.59'''
download-media-file:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/download-media-file/languages/download-media-file.pot,
Match: ''Project-Id-Version: Download Media File 1.0.0'''
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/download-media-file/package.json, Match:
''1.0.0'''
download-monitor:
TranslationFile:
number: 4.0.0
@@ -8227,6 +8312,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/eu-opt-in-compliance-for-mailchimp/languages/eu-opt-in-compliance-for-mailchimp.pot,
Match: ''ion: eu-opt-in-compliance-for-mailchimp 1.1.2'''
event-calendar-by-hg:
QueryParameter:
number: 1.0.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/event-calendar-by-hg/assets/css/front.min.css?v=1.0.2&ver=4.9.1
- http://wp.lab/wp-content/plugins/event-calendar-by-hg/assets/js/front.min.js?v=1.0.2&ver=4.9.1
confidence: 20
event-calendar-wd:
QueryParameter:
number: 1.1.8
@@ -8515,6 +8608,13 @@ plugins:
- http://wp.lab/wp-content/plugins/exit-notifier/assets/css/jAlert-v3.css?ver=1.4.3
- http://wp.lab/wp-content/plugins/exit-notifier/assets/js/frontend.js?ver=1.4.3
- http://wp.lab/wp-content/plugins/exit-notifier/assets/js/jAlert-v3.js?ver=1.4.3
expivi:
TranslationFile:
number: '0.1'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/expivi/languages/expivi.pot, Match: ''"Project-Id-Version:
Expivi 0.1'''
explanatory-dictionary:
QueryParameter:
number: 4.1.5
@@ -8564,6 +8664,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/extensive-vc-addon/languages/extensive-vc.pot,
Match: ''"Project-Id-Version: Extensive VC 1.4.1'''
extra-blocks:
TranslationFile:
number: '1.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/extra-blocks/languages/extra-blocks.po,
Match: ''"Project-Id-Version: Extra Blocks 1.0'''
extra-privacy-for-elementor:
QueryParameter:
number: 0.0.5
@@ -9489,6 +9596,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/foxyshop/css/foxyshop.css?ver=4.7.3
confidence: 10
front-editor-for-woocommerce:
ComposerFile:
number: 1.0.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/front-editor-for-woocommerce/package.json,
Match: ''1.0.0'''
front-end-pm:
TranslationFile:
number: '6.3'
@@ -9641,6 +9755,12 @@ plugins:
- http://wp.lab/wp-content/plugins/gallery-made-easy/template/masonry.js?ver=1.3
- http://wp.lab/wp-content/plugins/gallery-made-easy/template/main.js?ver=1.3
confidence: 100
gallerya:
ComposerFile:
number: 1.9.15
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/gallerya/package.json, Match: ''1.9.15'''
game-showcase:
QueryParameter:
number: 1.0.0
@@ -10928,6 +11048,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/guardian-news-headlines/guardian_headlines.css?ver=0.5.4
confidence: 10
guten-editor-blocks:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/guten-editor-blocks/languages/guten-editor-blocks.pot,
Match: ''"v1.0.0'''
gutenbee:
ComposerFile:
number: 1.0.0
@@ -10956,6 +11083,18 @@ plugins:
- http://wp.lab/wp-content/plugins/h7-tabs/assets/css/font-awesome.css?ver=7.0.1
- http://wp.lab/wp-content/plugins/h7-tabs/assets/css/animate.min.css?ver=7.0.1
confidence: 30
halloween-woocommerce:
QueryParameter:
number: '0.2'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/halloween-woocommerce/styles.css?ver=0.2
- http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/cookie.js?ver=0.2
- http://wp.lab/wp-content/plugins/halloween-woocommerce/main.js?ver=0.2
- http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/jquery.vibrate.js?ver=0.2
- http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/vibrationoptions.js?ver=0.2
- http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/random-image.js?ver=0.2
confidence: 60
hammy:
QueryParameter:
number: 1.5.1
@@ -11120,6 +11259,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/hero-social-widget/assets/css/hero-social-style.css?ver=1.0
confidence: 10
hidden-contents:
TranslationFile:
number: '1.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/hidden-contents/languages/hidden-contents-fa_IR.po,
Match: ''"Project-Id-Version: Hide Content 1.0'''
hidden-login:
QueryParameter:
number: '1.0'
@@ -11193,6 +11339,24 @@ plugins:
- http://wp.lab/wp-content/plugins/hints/_inc/hints.css?ver=1.0aa
- http://wp.lab/wp-content/plugins/hints/_inc/hints.js?ver=1.0aa
confidence: 20
hivepress:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/hivepress/assets/css/fontawesome/fontawesome.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/css/fontawesome/solid.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/css/fancybox.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/css/slick.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/css/grid.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/css/frontend.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.iframe-transport.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.fileupload.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.fancybox.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/js/slick.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.sticky-sidebar.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/hivepress/assets/js/frontend.min.js?ver=1.0.0
confidence: 100
hjyl-comment-spam:
TranslationFile:
number: '1.0'
@@ -11356,6 +11520,13 @@ plugins:
- http://wp.lab/wp-content/plugins/html5-videogallery-plus-player/assets/css/magnific-popup.css?ver=2.1.3
- http://wp.lab/wp-content/plugins/html5-videogallery-plus-player/assets/js/video.js?ver=2.1.3
confidence: 40
http-to-https:
TranslationFile:
number: '2.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/http-to-https/languages/http-to-https.pot,
Match: ''"Project-Id-Version: HTTP to HTTPS 2.0'''
hubwoo-deal-per-order-lite:
TranslationFile:
number: 1.0.0
@@ -11501,6 +11672,15 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/ico-list-widget/languages/ico-lw.pot, Match:
''"Project-Id-Version: ICO List Widget 1.0.0'''
iconpress-lite:
QueryParameter:
number: 1.4.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/iconpress-lite/assets/css/iconpress.css?ver=1.4.0
- http://wp.lab/wp-content/plugins/iconpress-lite/assets/css/panel.css?ver=1.4.0
- http://wp.lab/wp-content/plugins/iconpress-lite/assets/js/iconpress.min.js?ver=1.4.0
confidence: 30
ics-button:
JavascriptVar:
number: '0.6'
@@ -11562,6 +11742,20 @@ plugins:
found_by: Meta Tag (Passive Detection)
interesting_entries:
- 'http://wp.lab/, Match: ''1.1.2'''
ifthengive:
QueryParameter:
number: 0.1.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/ifthengive/public/css/datatables/jquery.dataTables.css?ver=0.1.0
- http://wp.lab/wp-content/plugins/ifthengive/public/css/datatables/dataTables.responsive.css?ver=0.1.0
- http://wp.lab/wp-content/plugins/ifthengive/includes/css/alertify/alertify.css?ver=0.1.0
- http://wp.lab/wp-content/plugins/ifthengive/public/css/ifthengive-public.css?ver=0.1.0
- http://wp.lab/wp-content/plugins/ifthengive/includes/css/alertify/alertify.min.js?ver=0.1.0
- http://wp.lab/wp-content/plugins/ifthengive/public/js/ifthengive-public.js?ver=0.1.0
- http://wp.lab/wp-content/plugins/ifthengive/public/js/datatables/jquery.dataTables.min.js?ver=0.1.0
- http://wp.lab/wp-content/plugins/ifthengive/public/js/datatables/dataTables.responsive.js?ver=0.1.0
confidence: 80
ifttt-instagram-gallery:
QueryParameter:
number: 1.0.5
@@ -12738,7 +12932,8 @@ plugins:
- http://wp.lab/wp-content/plugins/kaya-qr-code-generator/css/wpkqcg-pkg.css?ver=1.0.2
- http://wp.lab/wp-content/plugins/kaya-qr-code-generator/assets/qrcode.js?ver=1.0.2
- http://wp.lab/wp-content/plugins/kaya-qr-code-generator/js/wpkqcg-pkg.js?ver=1.0.2
confidence: 30
- http://wp.lab/wp-content/plugins/kaya-qr-code-generator/assets/qrcode-v2.js?ver=1.0.2
confidence: 40
kb-support:
QueryParameter:
number: 1.1.5
@@ -13275,6 +13470,29 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/lead-to-clio/lang/lead-to-clio.pot, Match:
''"Project-Id-Version: lead_to_clio 1.0'''
leader:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/leader/public/css/leader-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/leader/public/js/leader-public.js?ver=1.0.0
confidence: 20
leadgeneration:
QueryParameter:
number: '1.1'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/leadgeneration/assets/vendors/fontawesome/css/fontawesome-all.min.css?ver=1.1
confidence: 10
leadkit-pro:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/leadkit-pro/public/css/leadkitpro-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/leadkit-pro/public/js/leadkitpro-public.js?ver=1.0.0
confidence: 20
leaflet-map:
QueryParameter:
number: 2.9.1
@@ -13537,7 +13755,8 @@ plugins:
- http://wp.lab/wp-content/plugins/limelight-storefront/includes/assets/limelight-traffic-attribution.min.js?ver=1.1.3
- http://wp.lab/wp-content/plugins/limelight-storefront/includes/assets/main.js?ver=1.1.3
- http://wp.lab/wp-content/plugins/limelight-storefront/classes/assets/limelight-traffic-attribution.min.js?ver=1.1.3
confidence: 40
- http://wp.lab/wp-content/plugins/limelight-storefront/assets/js/limelight-traffic-attribution.min.js?ver=1.1.3
confidence: 50
JavascriptVar:
number: 1.1.3
found_by: Javascript Var (Passive Detection)
@@ -13702,6 +13921,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/livepress/languages/livepress.pot, Match:
''"Project-Id-Version: livepress 1.4.5'''
livestream-notice:
QueryParameter:
number: 1.1.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/livestream-notice/livestream-notice.css?ver=1.1.2
- http://wp.lab/wp-content/plugins/livestream-notice/livestream-notice.js?ver=1.1.2
confidence: 20
loanthru-calculator:
QueryParameter:
number: 1.0.0
@@ -13813,6 +14040,15 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/logic-hop/public/js/ajax-methods.min.js?ver=2.1.9
- http://wp.lab/wp-content/plugins/logic-hop/public/css/display.css?ver=2.1.9
- http://wp.lab/wp-content/plugins/logic-hop/public/css/display.min.css?ver=2.1.9
confidence: 30
login-and-logout-redirect:
QueryParameter:
number: 1.0.4
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/login-and-logout-redirect/public/css/login-and-logout-redirect-public.css?ver=1.0.4
- http://wp.lab/wp-content/plugins/login-and-logout-redirect/public/js/login-and-logout-redirect-public.js?ver=1.0.4
confidence: 20
login-customizer:
ChangeLog:
@@ -14067,6 +14303,14 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/lucidlms/assets/css/frontend/main.css?ver=1.0.5
confidence: 10
luckywp-cookie-notice-gdpr:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/luckywp-cookie-notice-gdpr/front/assets/main.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/luckywp-cookie-notice-gdpr/front/assets/main.min.js?ver=1.0.0
confidence: 20
lukas-tripster:
TranslationFile:
number: '1.0'
@@ -14246,6 +14490,14 @@ plugins:
- http://wp.lab/wp-content/plugins/magic-slider/css/magic-slider.css?ver=1.3
- http://wp.lab/wp-content/plugins/magic-slider/bxslider/jquery.bxslider.min.js?ver=1.3
confidence: 20
mailcamp:
QueryParameter:
number: 1.3.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/mailcamp/public/css/mailcamp-public.css?ver=1.3.1
- http://wp.lab/wp-content/plugins/mailcamp/public/js/mailcamp-public.js?ver=1.3.1
confidence: 20
mailchimp-for-wp:
ChangeLog:
number: 4.1.14
@@ -14465,6 +14717,13 @@ plugins:
found_by: Meta Tag (Passive Detection)
interesting_entries:
- 'http://wp.lab/, Match: ''Margarita v1.2.0 - https://emdplugins.com'''
marketplace-taxes:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/marketplace-taxes/languages/marketplace-taxes.pot,
Match: ''"Project-Id-Version: Marketplace Taxes 1.0.0'''
masburti-flickr-gallery:
TranslationFile:
number: '1.1'
@@ -14505,6 +14764,14 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/massive-visual-builder-page-layout-builder/assets/rating/rating.js?ver=1.0
confidence: 10
mastalab-comments:
QueryParameter:
number: 1.0.10
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/mastalab-comments/public/css/mastalab_comments-public.css?ver=1.0.10
- http://wp.lab/wp-content/plugins/mastalab-comments/public/js/mastalab_comments-public.js?ver=1.0.10
confidence: 20
master-modal-login-lite:
Comment:
number: 0.1.1
@@ -14821,6 +15088,13 @@ plugins:
confidence: 10
interesting_entries:
- http://wp.lab/wp-content/plugins/menu-icons/css/extra.min.css?ver=0.10.2
menu-item-duplicator:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/menu-item-duplicator/languages/menu-item-duplicator.pot,
Match: ''roject-Id-Version: Menu Item Duplicator 1.0.0'''
menu-manager:
QueryParameter:
number: 1.0.4
@@ -15841,6 +16115,13 @@ plugins:
- http://wp.lab/wp-content/plugins/naver-map/naver-map.css?ver=1.10
- http://wp.lab/wp-content/plugins/naver-map/naver-map.js?ver=1.10
confidence: 20
nbsp-french:
TranslationFile:
number: 1.9.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/nbsp-french/languages/nbsp-french.pot, Match:
''s Non-Breaking Space for French Content 1.9.0'''
nearby-locations:
QueryParameter:
number: 1.1.1
@@ -15908,6 +16189,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/nepali-calendar/languages/nepali-calendar.pot,
Match: ''"Project-Id-Version: Nepali Calendar 1.0.0'''
neptune-business:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/neptune-business/public/css/neptune-busines-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/neptune-business/public/js/neptune-busines-public.js?ver=1.0.0
confidence: 20
neptune-style-element:
Comment:
number: '1.0'
@@ -16531,6 +16820,14 @@ plugins:
found_by: Meta Tag (Passive Detection)
interesting_entries:
- 'http://wp.lab/, Match: ''omniads/0.54'''
onc-master:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/onc-master/public/css/onc_master-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/onc-master/public/js/onc_master-public.js?ver=1.0.0
confidence: 20
one-click-demo-import:
TranslationFile:
number: 2.4.0
@@ -16818,6 +17115,16 @@ plugins:
found_by: Comment (Passive Detection)
interesting_entries:
- 'http://wp.lab/, Match: ''OSM plugin V4.0.2'''
osmapper:
QueryParameter:
number: 1.3.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/osmapper/assets/css/ba_map_renderer.css?ver=1.3.2
- http://wp.lab/wp-content/plugins/osmapper/assets/css/ba_map_styles.css?ver=1.3.2
- http://wp.lab/wp-content/plugins/osmapper/assets/js/leaflet.js?ver=1.3.2
- http://wp.lab/wp-content/plugins/osmapper/assets/js/ba_map_renderer.js?ver=1.3.2
confidence: 40
oss-upload:
TranslationFile:
number: '3.5'
@@ -16916,6 +17223,26 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/pagamentos-digitais-4all/package.json, Match:
''1.0.0'''
page-builder-by-azexo:
QueryParameter:
number: 1.27.84
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/swiper.css?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/animate.css?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/magnific-popup.css?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/frontend.css?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/isotope.pkgd.js?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.waypoints.js?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.countdown.js?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.maskedinput.js?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/swiper.js?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.magnific-popup.js?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/scrollReveal.js?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/parallax.js?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/rellax.js?ver=1.27.84
- http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/frontend.js?ver=1.27.84
confidence: 100
page-builder-sandwich:
QueryParameter:
number: 4.4.3
@@ -17850,6 +18177,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/portfolio-toolkit/languages/portfolio-toolkit.pot,
Match: ''"Project-Id-Version: Portfolio Toolkit 0.1.5'''
poshtiban:
QueryParameter:
number: 1.1.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/poshtiban/assets/js/poshtiban-public.js?ver=1.1.0
confidence: 10
post-and-page-builder:
QueryParameter:
number: 1.6.1
@@ -17899,6 +18233,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/post-content-shortcodes/styles/default-styles.css?ver=1.0
confidence: 10
post-deadlines:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/post-deadlines/assets/script.js?ver=1.0.0
confidence: 10
post-display:
QueryParameter:
number: 1.0.0
@@ -18342,6 +18683,13 @@ plugins:
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/pressbooks-mpdf/composer.json, Match: ''3.0.0'''
pressbooks-openstax-import:
ComposerFile:
number: 1.3.0
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/pressbooks-openstax-import/composer.json,
Match: ''1.3.0'''
pressbooks-textbook:
ComposerFile:
number: 3.1.6
@@ -19443,6 +19791,13 @@ plugins:
- http://wp.lab/wp-content/plugins/reframer/public/css/reframer-public.min.css?ver=1.0.2
- http://wp.lab/wp-content/plugins/reframer/public/js/reframer-public.min.js?ver=1.0.2
confidence: 20
registration-for-woocommerce:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/registration-for-woocommerce/languages/registration-for-woocommerce.pot,
Match: ''d-Version: Registration For WooCommerce 1.0.0'''
registrations-for-the-events-calendar:
QueryParameter:
number: 2.0.3
@@ -19657,6 +20012,13 @@ plugins:
- http://wp.lab/wp-content/plugins/responsive-header-image-slider/css/responsiveimgslider.css?ver=3.0.3
- http://wp.lab/wp-content/plugins/responsive-header-image-slider/js/jquery.slides.min.js?ver=3.0.3
confidence: 20
responsive-horizontal-vertical-and-accordion-tabs:
TranslationFile:
number: '1.0'
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/responsive-horizontal-vertical-and-accordion-tabs/languages/wp-best-responsive-tabs.pot,
Match: ''horizontal vertical and accordion Tabs 1.0'''
responsive-jquery-slider:
TranslationFile:
number: 1.1.1
@@ -20112,6 +20474,13 @@ plugins:
- http://wp.lab/wp-content/plugins/rolo-slider/assets/js/owl.carousel.min.js?ver=1.0.5
- http://wp.lab/wp-content/plugins/rolo-slider/assets/js/rolo.js?ver=1.0.5
confidence: 20
rontar-blog-retargeting:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/rontar-blog-retargeting/languages/rontar-blog-retargeting.pot,
Match: ''ect-Id-Version: Rontar Blog Retargeting 1.0.0'''
roost-for-bloggers:
Comment:
number: 2.4.0
@@ -20651,6 +21020,14 @@ plugins:
interesting_entries:
- !binary |-
aHR0cDovL3dwLmxhYi93cC1jb250ZW50L3BsdWdpbnMvc2VhcmNoLWJ5LWFsZ29saWEtaW5zdGFudC1yZWxldmFudC1yZXN1bHRzL2xhbmd1YWdlcy9hbGdvbGlhLnBvdCwgTWF0Y2g6ICdBbGdvbGlhIOKAkyBJbnN0YW50ICYgUmVsZXZhbnQgcmVzdWx0cyAyLjguMSc=
search-cloud-one:
QueryParameter:
number: 2.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/search-cloud-one/public/css/sc1-search-public.css?ver=2.0.0
- http://wp.lab/wp-content/plugins/search-cloud-one/public/js/sc1-search-public.js?ver=2.0.0
confidence: 20
search-everything:
JavascriptVar:
number: 8.1.9
@@ -21683,6 +22060,13 @@ plugins:
- http://wp.lab/wp-content/plugins/simple-sharing/public/css/exxica-simple-sharing-public.css?ver=2.0.2
- http://wp.lab/wp-content/plugins/simple-sharing/public/js/exxica-simple-sharing-public.js?ver=2.0.2
confidence: 20
simple-shortcode-block:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/simple-shortcode-block/languages/simple-shortcode-block.pot,
Match: ''ject-Id-Version: Simple Shortcode Block 1.0.0'''
simple-sidebar-manager:
TranslationFile:
number: '1.0'
@@ -21965,6 +22349,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/sitewit-engagement-analytics/languages/sitewit-engagement-analytics.pot,
Match: ''ect-Id-Version: Search Engine Marketing 2.5.0'''
siwecos:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/siwecos/languages/siwecos-de_DE.po, Match:
''# Version: 1.0.0'''
sj-cornerstone-addon:
QueryParameter:
number: 0.1.0
@@ -22199,7 +22590,8 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/smart-overlay/smart-overlay.js?ver=0.7
- http://wp.lab/wp-content/plugins/smart-overlay/assets/smart-overlay.js?ver=0.7
confidence: 20
- http://wp.lab/wp-content/plugins/smart-overlay/assets/smart-overlay.css?ver=0.7
confidence: 30
smart-post-like:
QueryParameter:
number: 1.0.0
@@ -22652,6 +23044,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/son-of-gifv/languages/son-of-gifv.pot, Match:
''"Project-Id-Version: Son of GIFV 1.0.0'''
sophia-twitter-auto-post:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/sophia-twitter-auto-post/languages/sophia-post-to-twitter.pot,
Match: ''ct-Id-Version: Sophia Twitter Auto Post 1.0.0'''
source-affix:
QueryParameter:
number: 1.5.0
@@ -24642,6 +25041,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/ttt-devices/js/ttt-devices.js?ver=0.4
confidence: 10
ttv-easy-embed-player:
QueryParameter:
number: 1.0.2
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/ttv-easy-embed-player/public/js/twitch-player-public.js?ver=1.0.2
confidence: 10
tumblr-crosspostr:
TranslationFile:
number: 0.9.0
@@ -25542,6 +25948,14 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/very-simple-slider/css/very-simple-slider.css?ver=1.0
confidence: 10
vessel:
QueryParameter:
number: 0.7.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/vessel/css/vessel.css?ver=0.7.1
- http://wp.lab/wp-content/plugins/vessel/js/vessel.js?ver=0.7.1
confidence: 20
viavi-wp-timeline:
TranslationFile:
number: '1.0'
@@ -25738,6 +26152,15 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/voice-search/languages/voice-search.pot,
Match: ''"Project-Id-Version: Voice Search 1.2.1'''
vowels-contact-form-with-drag-and-drop:
QueryParameter:
number: 1.0.4
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/vowels-contact-form-with-drag-and-drop/css/styles.css?ver=1.0.4
- http://wp.lab/wp-content/plugins/vowels-contact-form-with-drag-and-drop/js/vowels.js?ver=1.0.4
- http://wp.lab/wp-content/plugins/vowels-contact-form-with-drag-and-drop/js/jquery.vowels.js?ver=1.0.4
confidence: 30
voxpress:
Comment:
number: 1.1.5
@@ -25900,6 +26323,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/wbounce/frontend/js/min/wbounce.min.js?ver=1.8
confidence: 10
wc-18app:
TranslationFile:
number: 0.9.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wc-18app/languages/it_IT.pot, Match: ''"Project-Id-Version:
WC 18app 0.9.0'''
wc-affiliate-new-window:
QueryParameter:
number: 1.0.0
@@ -25972,6 +26402,13 @@ plugins:
- http://wp.lab/wp-content/plugins/wc-guest-checkout-single-product/public/css/wc-guest-checkout-single-product-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/wc-guest-checkout-single-product/public/js/wc-guest-checkout-single-product-public.js?ver=1.0.0
confidence: 20
wc-min-max-quantities:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wc-min-max-quantities/i18n/languages/wc-min-max-quantities.pot,
Match: ''oject-Id-Version: WC Min Max Quantities 1.0.0'''
wc-moldovaagroindbank:
TranslationFile:
number: '1.0'
@@ -26789,6 +27226,13 @@ plugins:
found_by: Composer File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/woo-ajax-filter/package.json, Match: ''1.0.0'''
woo-ajax-loginregister:
QueryParameter:
number: '1.1'
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/woo-ajax-loginregister/css/style.css?ver=1.1
confidence: 10
woo-align-buttons:
QueryParameter:
number: 3.1.1
@@ -26814,6 +27258,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/woo-animated-grid/cs-framework/languages/bn_BD.po,
Match: ''"Project-Id-Version: Codestar Framework 1.0.0'''
woo-apuspayments:
TranslationFile:
number: 2.13.1
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/woo-apuspayments/languages/woocommerce-apuspayments.pot,
Match: ''ct-Id-Version: WooCommerce ApusPayments 2.13.1'''
woo-authorize-net:
QueryParameter:
number: 1.0.0
@@ -26918,6 +27369,13 @@ plugins:
- http://wp.lab/wp-content/plugins/woo-easy-view/public/css/r_wev_search-public.css?ver=1.0
- http://wp.lab/wp-content/plugins/woo-easy-view/public/js/r_wev_search-public.js?ver=1.0
confidence: 30
woo-estimated-shipping-date:
TranslationFile:
number: 3.0.2
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/woo-estimated-shipping-date/languages/wcesd.pot,
Match: ''on: WooCommerce Estimated Shipping Date 3.0.2'''
woo-extra-cart-fee:
QueryParameter:
number: 1.0.0
@@ -26940,6 +27398,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/woo-fruugo-integration/languages/ced-fruugo-en_US.po,
Match: ''ject-Id-Version: Woo Fruugo Integration 1.0.0'''
woo-gateway-payger:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/woo-gateway-payger/languages/PT_pt.po, Match:
''-payger.pot (Woocommerce Gateway Payger 1.0.0'''
woo-gift-cards-lite:
TranslationFile:
number: 1.0.0
@@ -27878,6 +28343,14 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wordpresscom-stats-smiley-remover/langs/wordpresscom-stats-smiley-remover-fr_FR.po,
Match: ''on: WordPress.com Stats Smiley Remover v15.01'''
workshop-butler:
QueryParameter:
number: 2.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/workshop-butler/public/css/styles.1.0.2.min.css?ver=2.0.0
- http://wp.lab/wp-content/plugins/workshop-butler/public/css/fontawesome-all.min.css?ver=2.0.0
confidence: 20
world-cup-predictor:
TranslationFile:
number: 1.9.5
@@ -28325,6 +28798,14 @@ plugins:
- http://wp.lab/wp-content/plugins/wp-cfg-leaderboard/css/style.css?ver=1.3.1
- http://wp.lab/wp-content/plugins/wp-cfg-leaderboard/js/jsgrid/jsgrid.min.js?ver=1.3.1
confidence: 40
wp-charts-and-graphs:
QueryParameter:
number: 1.0.4
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-charts-and-graphs/assets/js/pantherius_wp_charts.js?ver=1.0.4
- http://wp.lab/wp-content/plugins/wp-charts-and-graphs/assets/js/pantherius_wp_charts_init.js?ver=1.0.4
confidence: 20
wp-child-theme-generator:
TranslationFile:
number: 1.0.2
@@ -28869,6 +29350,20 @@ plugins:
found_by: Comment (Passive Detection)
interesting_entries:
- 'http://wp.lab/, Match: ''Facebook Like Send & Open Graph Meta v1.3.5'''
wp-facebook-review-showcase-lite:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/frontend-style.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/font-awesome/font-awesome.min.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/elegant-icons/elegant-icons.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/flat-star-icon/flaticon.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/jquery.bxslider.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/js/jquery.bxslider.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/js/wow.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/js/frontend-script.js?ver=1.0.0
confidence: 80
wp-facebook-reviews:
QueryParameter:
number: '3.4'
@@ -28977,6 +29472,13 @@ plugins:
- http://wp.lab/wp-content/plugins/wp-file-word-counter/public/js/wfwc-uploadfile.min.js?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp-file-word-counter/public/js/wfwc-public.js?ver=1.0.0
confidence: 30
wp-film-studio:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-film-studio/assets/js/popper.min.js?ver=1.0.0
confidence: 10
wp-flexible-map:
QueryParameter:
number: 1.12.1
@@ -29012,6 +29514,13 @@ plugins:
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-font-awesome/font-awesome/css/font-awesome.min.css?ver=1.5
confidence: 10
wp-force-logout:
TranslationFile:
number: 1.0.0
found_by: Translation File (Aggressive Detection)
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wp-force-logout/languages/wp-force-logout.pot,
Match: ''"Project-Id-Version: WPForce Logout 1.0.0'''
wp-foundation-shortcodes:
QueryParameter:
number: 0.8.5
@@ -29282,6 +29791,13 @@ plugins:
interesting_entries:
- 'http://wp.lab/wp-content/plugins/wp-images-upload-on-piclect/languages/kuaza_pic_up_lang-tr_TR.po,
Match: ''sgid "<strong>Plugin version:</strong> v1.0'''
wp-insurance:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wp-insurance/assets/js/popper.min.js?ver=1.0.0
confidence: 10
wp-inventory-manager:
QueryParameter:
number: 1.5.7
@@ -31199,6 +31715,13 @@ plugins:
- http://wp.lab/wp-content/plugins/wp30-by-who/public/css/wp30-by-who-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/wp30-by-who/public/js/wp30-by-who-public.js?ver=1.0.0
confidence: 20
wpac-like-system:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wpac-like-system/assets/js/ajax.js?ver=1.0.0
confidence: 10
wpadverts:
TranslationFile:
number: 1.2.0
@@ -31489,6 +32012,13 @@ plugins:
- http://wp.lab/wp-content/plugins/wpmerchant/public/css/wpmerchant-public.css?ver=2.0.5
- http://wp.lab/wp-content/plugins/wpmerchant/public/js/wpmerchant-public.js?ver=2.0.5
confidence: 20
wpmk-faq:
QueryParameter:
number: 1.0.0
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wpmk-faq/assets/js/wpmk-script.js?ver=1.0.0
confidence: 10
wpmk-portfolio:
QueryParameter:
number: 1.0.0
@@ -31885,6 +32415,14 @@ plugins:
- http://wp.lab/wp-content/plugins/wt-advanced-woocommerce-report/public/css/wt-advanced-woocommerce-report-public.css?ver=1.0.0
- http://wp.lab/wp-content/plugins/wt-advanced-woocommerce-report/public/js/wt-advanced-woocommerce-report-public.js?ver=1.0.0
confidence: 20
wt-pocket-navigator:
QueryParameter:
number: 1.0.1
found_by: Query Parameter (Passive Detection)
interesting_entries:
- http://wp.lab/wp-content/plugins/wt-pocket-navigator/public/css/wtpn-pocket-nav-public.css?ver=1.0.1
- http://wp.lab/wp-content/plugins/wt-pocket-navigator/public/js/wtpn-pocket-nav-public.js?ver=1.0.1
confidence: 20
wt-smart-coupons-for-woocommerce:
QueryParameter:
number: 0.0.1

View File

@@ -0,0 +1,92 @@
{
"name": "animation-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js"
},
"dependencies": {
"animate.css": "^3.7.0",
"autoprefixer": "^7.2.4",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.1",
"babel-preset-cgb": "^1.5.0",
"cgb-dev-utils": "^1.4.0",
"chalk": "^2.3.0",
"classnames": "^2.2.6",
"cross-env": "^5.0.1",
"cross-spawn": "^5.1.0",
"css-loader": "^1.0.0",
"emergence.js": "^1.1.2",
"eslint": "^4.15.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-jest": "^21.6.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-wordpress": "^0.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"filesize": "^3.5.11",
"fs-extra": "^5.0.0",
"gzip-size": "^4.1.0",
"inquirer": "^5.0.0",
"node-sass": "^4.7.2",
"ora": "^1.3.0",
"postcss-loader": "^2.0.10",
"raw-loader": "^0.5.1",
"resolve-pkg": "^1.0.0",
"sass-loader": "^6.0.6",
"shelljs": "^0.8.0",
"style-loader": "^0.19.1",
"update-notifier": "^2.3.0",
"webpack": "^3.1.0"
},
"babel": {
"presets": [
[
"env",
{
"modules": false,
"targets": {
"browsers": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 1 Android version",
"last 1 ChromeAndroid version",
"ie 11"
]
}
}
]
],
"plugins": [
[
"transform-object-rest-spread"
],
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
],
[
"transform-react-jsx",
{
"pragma": "wp.element.createElement"
}
],
[
"transform-runtime",
{
"helpers": false,
"polyfill": false,
"regenerator": true
}
]
]
}
}

View File

@@ -0,0 +1,84 @@
msgid ""
msgstr ""
"Project-Id-Version: APx Link Status 1.0.0\n"
"POT-Creation-Date: 2018-10-10 19:05+0600\n"
"PO-Revision-Date: 2018-10-10 19:05+0600\n"
"Last-Translator: \n"
"Language-Team: AlignPixel <contact@alignpixel.com>\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.6.11\n"
"X-Poedit-Basepath: ../\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-KeywordsList: __;esc_attr__;esc_html__;_e;esc_attr_e;esc_html_e;_x;"
"esc_attr_x;esc_html_x\n"
"X-Poedit-SearchPath-0: .\n"
#: admin/class-apx-link-status-admin.php:206
msgid "APX Link Status Info"
msgstr ""
#: admin/class-apx-link-status-admin.php:218
msgid "All Links"
msgstr ""
#: admin/class-apx-link-status-admin.php:219
msgid "Internal Links"
msgstr ""
#: admin/class-apx-link-status-admin.php:220
msgid "External Links"
msgstr ""
#: admin/class-apx-link-status-admin.php:244
msgid "APX Link Status"
msgstr ""
#: admin/class-apx-link-status-admin.php:253
msgid "Main Settings"
msgstr ""
#: admin/class-apx-link-status-admin.php:254
msgid "Select Post Type"
msgstr ""
#: admin/class-apx-link-status-admin.php:255
msgid "Add Image link"
msgstr ""
#: admin/class-apx-link-status-admin.php:259
msgid ""
"Select post type where you want to show the APX Link Status. By default, all "
"media link are excluded, if you want to show the media link please select "
"media type."
msgstr ""
#: admin/partials/meta-display.php:19
msgid "Total Links:"
msgstr ""
#: admin/partials/meta-display.php:20
msgid "Internal Links:"
msgstr ""
#: admin/partials/meta-display.php:21
msgid "External Links:"
msgstr ""
#: admin/partials/meta-display.php:28
msgid "Link Type"
msgstr ""
#: admin/partials/meta-display.php:29
msgid "Anchor Text"
msgstr ""
#: admin/partials/meta-display.php:30
msgid "Link"
msgstr ""
#: admin/partials/options-main-wrap.php:2
msgid "APX Link Status Options"
msgstr ""

View File

@@ -0,0 +1,248 @@
# Copyright (C) 2018 Backstage
# This file is distributed under the same license as the Backstage package.
msgid ""
msgstr ""
"Project-Id-Version: Backstage 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/backstage\n"
"POT-Creation-Date: 2018-09-27 10:57:34+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"
#: extras.php:227
msgid "Please provide only paths in the plugin for autoloading."
msgstr ""
#: extras.php:232
msgid "We support only require, require_once, include, and include_once."
msgstr ""
#: includes/class-Backstage.php:138
msgid "Customizer Preview"
msgstr ""
#: includes/class-Backstage.php:158
msgid "Something is wrong! We couldn't find the user role needed for Backstage. Try to deactivate and activate the plugin again."
msgstr ""
#: includes/class-Backstage.php:214
msgid "Something is very wrong! We couldn't create the user needed for Backstage."
msgstr ""
#: includes/class-Backstage.php:225
msgid "Something is very wrong! We couldn't find the user needed for Backstage. Try to deactivate and activate the plugin again."
msgstr ""
#: includes/class-Backstage.php:492 includes/class-Settings.php:131
msgid "Back to Demo"
msgstr ""
#: includes/class-Backstage.php:495 includes/class-Settings.php:154
msgid "<b>Demo Mode</b><p>You can't upload images and save settings.</p>"
msgstr ""
#: includes/class-Backstage.php:631 includes/class-Settings.php:213
msgid "Customize Styles"
msgstr ""
#: includes/class-Settings.php:53
msgid "Backstage Setup"
msgstr ""
#: includes/class-Settings.php:99
msgid "Backstage"
msgstr ""
#: includes/class-Settings.php:120
msgid "Customizer Behavior"
msgstr ""
#: includes/class-Settings.php:127 includes/class-Settings.php:209
msgid "Button Text"
msgstr ""
#: includes/class-Settings.php:128
msgid "Input the text of the button at the top of the Customizer sidebar (that replaces the Publish button). This button will bring the visitor back to the URL it entered the Customizer from."
msgstr ""
#: includes/class-Settings.php:135
msgid "Notice Style"
msgstr ""
#: includes/class-Settings.php:136
msgid "Set the style/type of the Customizer notice. If \"Custom\", you can target the notification with the \".notice-backstage-custom\" CSS selector."
msgstr ""
#: includes/class-Settings.php:141
msgid "Info"
msgstr ""
#: includes/class-Settings.php:142
msgid "Warning"
msgstr ""
#: includes/class-Settings.php:143
msgid "Success"
msgstr ""
#: includes/class-Settings.php:144
msgid "Error"
msgstr ""
#: includes/class-Settings.php:145
msgid "Custom"
msgstr ""
#: includes/class-Settings.php:150
msgid "Notice HTML"
msgstr ""
#: includes/class-Settings.php:151
msgid "Set the text or HTML of the Customizer notice. Leave empty if you don't want to show a notification."
msgstr ""
#: includes/class-Settings.php:166
msgid "Dismissible Notice"
msgstr ""
#: includes/class-Settings.php:167
msgid "Decide if the notice should be dismissible by the user or not. It will only be dismissed for the current session."
msgstr ""
#: includes/class-Settings.php:173
msgid "Hide Customizing Info"
msgstr ""
#: includes/class-Settings.php:174
msgid "Check to hide the top Customizer sidebar info that starts with \"You are customizing...\"."
msgstr ""
#: includes/class-Settings.php:184
msgid "Frontend Behavior"
msgstr ""
#: includes/class-Settings.php:191
msgid "Output Mode"
msgstr ""
#: includes/class-Settings.php:192
msgid "Here you can decide if you want us to output a button on the frontend with a link to the Customizer, or if you want to do that yourself."
msgstr ""
#: includes/class-Settings.php:198
msgid "Output a button for me"
msgstr ""
#: includes/class-Settings.php:199
msgid "Let me specify the button markup and CSS"
msgstr ""
#: includes/class-Settings.php:200
msgid "I will handle the button myself"
msgstr ""
#: includes/class-Settings.php:210
msgid "Set here the text for the frontend button."
msgstr ""
#: includes/class-Settings.php:221
msgid "Button Classes"
msgstr ""
#: includes/class-Settings.php:222
msgid "Set here custom class(es) for the frontend button. If multiple, please separate them with a comma and a space."
msgstr ""
#: includes/class-Settings.php:233
msgid "Button Wrapper Classes"
msgstr ""
#: includes/class-Settings.php:234
msgid "Set here custom class(es) for the frontend button wrapper. If multiple, please separate them with a comma and a space."
msgstr ""
#: includes/class-Settings.php:250
msgid "Custom HTML"
msgstr ""
#: includes/class-Settings.php:251
msgid "Add here the custom HTML you want to output on the frontend of your site. You must include the %s content tag so it can be replaced with the URL for Customizer access."
msgstr ""
#: includes/class-Settings.php:273
msgid "Custom CSS"
msgstr ""
#: includes/class-Settings.php:274
msgid "Add here the custom CSS you want to output on the frontend of your site. It's OK to leave it empty if you have the CSS elsewhere."
msgstr ""
#: includes/class-Settings.php:331
msgid "Custom Button Instructions"
msgstr ""
#: includes/class-Settings.php:332
msgid "Since you wish to have control and handle your own button, we will make it easy for you. You use the \"backstage_get_customizer_link()\" PHP function to get the link to the Customizer. Output it directly or send it to JS via a localized variable."
msgstr ""
#: includes/class-Settings.php:346
msgid "Advanced"
msgstr ""
#: includes/class-Settings.php:353
msgid "URL Auto-login Key"
msgstr ""
#: includes/class-Settings.php:354
msgid "Set the key (parameter name) that will be used to auto-login the visitor and gain access to the Customizer."
msgstr ""
#: includes/lib/abstracts/class-Plugin_Init.php:81
msgid "Error: plugin \"%s\" requires a newer version of PHP to be running."
msgstr ""
#: includes/lib/abstracts/class-Plugin_Init.php:82
msgid "Minimal version of PHP required: %s"
msgstr ""
#: includes/lib/abstracts/class-Plugin_Init.php:83
msgid "Your server's PHP version: %s"
msgstr ""
#: includes/lib/abstracts/class-Plugin_Init.php:144
msgid "The <strong>%s</strong> plugin has been updated to version %s. Enjoy!"
msgstr ""
#: includes/lib/abstracts/class-Singleton_Registry.php:56
msgid "Trying to get instance of nonexistent class."
msgstr ""
#: includes/lib/abstracts/class-Singleton_Registry.php:121
msgid "Cloning is forbidden."
msgstr ""
#: includes/lib/abstracts/class-Singleton_Registry.php:130
msgid "Unserializing instances of this class is forbidden."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Backstage"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://wordpress.org/plugins/customizer-guest-demo-access"
msgstr ""
#. Description of the plugin/theme
msgid "Allow your visitors to access the Customizer and play with it."
msgstr ""
#. Author of the plugin/theme
msgid "Pixelgrade"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://pixelgrade.com"
msgstr ""

View File

@@ -0,0 +1,159 @@
# Copyright (C) 2018 CurrencyRate.today
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Cryptocurrency Price Widget 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/cryptocurrency-price-widget\n"
"POT-Creation-Date: 2018-10-04 11:30:27+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"
"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"
#. Plugin Name of the plugin/theme
msgid "Cryptocurrency Price Widget"
msgstr ""
#: includes/crcpw-admin-settings.php:6
#: includes/crcpw-cryptocurrency-price-widget.php:60
msgid "Settings"
msgstr ""
#: includes/crcpw-admin-settings.php:7
msgid "Search"
msgstr ""
#: includes/crcpw-admin-settings.php:12
msgid "Select horizontal"
msgstr ""
#: includes/crcpw-admin-settings.php:25
msgid "Select vertical"
msgstr ""
#: includes/crcpw-admin-settings.php:39
msgid "Color"
msgstr ""
#: includes/crcpw-admin-settings.php:47
msgid "Options"
msgstr ""
#: includes/crcpw-admin-settings.php:52
msgid "Streaming data"
msgstr ""
#: includes/crcpw-admin-settings.php:52
msgid "Prices are updated real-time"
msgstr ""
#: includes/crcpw-admin-settings.php:56
msgid "Striped"
msgstr ""
#: includes/crcpw-admin-settings.php:60
msgid "Rounded"
msgstr ""
#: includes/crcpw-admin-settings.php:64
msgid "Shadow"
msgstr ""
#: includes/crcpw-admin-settings.php:68
msgid "Border"
msgstr ""
#: includes/crcpw-admin-settings.php:72
msgid "Signature"
msgstr ""
#: includes/crcpw-admin-settings.php:72
msgid ""
"Please don't uncheck this option, this makes our widget free and will help "
"improve it in the future"
msgstr ""
#: includes/crcpw-admin-settings.php:81 includes/crcpw-admin-settings.php:83
msgid "Preview"
msgstr ""
#: includes/crcpw-admin-settings.php:90
msgid "Shortcode"
msgstr ""
#: includes/crcpw-admin-settings.php:93
msgid "How to install"
msgstr ""
#: includes/crcpw-admin-settings.php:95
msgid "Copy the shortcode, then go to %sWidgets%s page"
msgstr ""
#: includes/crcpw-admin-settings.php:96
msgid "Select &laquo;Text&raquo; press button &laquo;Add Widget&raquo;"
msgstr ""
#: includes/crcpw-admin-settings.php:97
msgid "In&nbsp;form &laquo;Content&raquo; paste shortcode"
msgstr ""
#: includes/crcpw-admin-settings.php:99
msgid "Advice"
msgstr ""
#: includes/crcpw-admin-settings.php:99
msgid "you'll can add shortcode anywhere: post, page and etc"
msgstr ""
#: includes/crcpw-admin-settings.php:103
msgid "Note"
msgstr ""
#: includes/crcpw-admin-settings.php:106
msgid "We do everything so that you use this plugin for free"
msgstr ""
#: includes/crcpw-admin-settings.php:107
msgid "To make the plugin work in further — rate it please"
msgstr ""
#: includes/crcpw-admin-settings.php:108
msgid "Rating"
msgstr ""
#: includes/crcpw-admin-settings.php:111
msgid "Cryptocurrency Widgets for Website"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://co-in.io/crypto-price-widget/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Gives you a customizable Cryptocurrency Price Widget for website with ⚡live "
"real-time price update and flexible settings."
msgstr ""
#. Author of the plugin/theme
msgid "CurrencyRate.today"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://currencyrate.today/"
msgstr ""

View File

@@ -0,0 +1,26 @@
{
"name": "download-media-file",
"version": "1.0.0",
"description": "Adds a button to media modal to download media file.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shamimmoeen/download-media-file.git"
},
"keywords": [
"download-media-file"
],
"author": "CoderBloc",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/shamimmoeen/download-media-file/issues"
},
"homepage": "https://github.com/shamimmoeen/download-media-file#readme",
"devDependencies": {
"grunt-wp-i18n": "^1.0.2",
"grunt-wp-readme-to-markdown": "^2.0.1"
}
}

View File

@@ -0,0 +1,24 @@
# Copyright (C) 2018 CoderBloc
# This file is distributed under the GPL-3.0+.
msgid ""
msgstr ""
"Project-Id-Version: Download Media File 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/download-media-file\n"
"POT-Creation-Date: 2018-10-02 08:03: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-i18n1.0.2\n"
#: includes/class-download-media-file.php:62
msgid "Download"
msgstr ""
#: includes/class-download-media-file.php:112
#: includes/class-download-media-file.php:173
msgid "File not found"
msgstr ""

View File

@@ -0,0 +1,65 @@
# Copyright (C) 2018 Expivi
# This file is distributed under the same license as the Expivi package.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Expivi 0.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/expivi\n"
"POT-Creation-Date: 2018-07-04 13:40+0200\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: Poedit 2.0.8\n"
#: classes/AdminSettings.php:19
msgid "Expivi product"
msgstr ""
#: classes/AdminSettings.php:43
msgid "Expivi settings"
msgstr ""
#: classes/AdminSettings.php:53
msgid "General"
msgstr ""
#: classes/AdminSettings.php:58
msgid "API Url"
msgstr ""
#: classes/AdminSettings.php:62
msgid "API Token"
msgstr ""
#: classes/CartManager.php:50 classes/CartManager.php:104
msgid "Could not do price calculation"
msgstr ""
#: classes/Catalog.php:20
msgid "Configure product"
msgstr ""
#: expivi.php:33
msgid "This plugin requires %s to be active"
msgstr ""
#: templates/expivi_tab.php:19
msgid "Expivi product ID"
msgstr ""
#. Plugin Name of the plugin/theme
#. Author of the plugin/theme
msgid "Expivi"
msgstr ""
#. Plugin URI of the plugin/theme
#. Author URI of the plugin/theme
msgid "http://www.expivi.com/"
msgstr ""
#. Description of the plugin/theme
msgid "Complex visualisation and configuration made simple"
msgstr ""

View File

@@ -0,0 +1,213 @@
# Copyright (C) 2018 ZintaTheme (www.zintatheme.com)
# This file is distributed under the same license as ExtraBlocks package.
msgid ""
msgstr ""
"Project-Id-Version: Extra Blocks 1.0\n"
"Report-Msgid-Bugs-To: http://zintathemes.com\n"
"POT-Creation-Date: 2018-09-21 00:07:03+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: Hassan Matooq <>\n"
"Language-Team: Hassan Matooq <>\n"
"X-Generator: grunt-wp-i18n1.0.2\n"
#: includes/class-extrablocks-hooks.php:26
msgid ""
"<strong>Extra Blocks</strong> needs Gutenberg editor installed.<br/> It "
"looks like you don`t have Gutenberg editor installed."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Extra Blocks"
msgstr ""
#: includes/class-extrablocks-hooks.php:141 languages/extra-blocks.php:31
msgid "Row"
msgstr ""
#: languages/extra-blocks.php:27
msgid "Column"
msgstr ""
#: languages/extra-blocks.php:28
msgid "A single column."
msgstr ""
#: languages/extra-blocks.php:34
msgid "layouts configuration"
msgstr ""
#: languages/extra-blocks.php:37
msgid "Container"
msgstr ""
#: languages/extra-blocks.php:38
msgid "Container Box"
msgstr ""
#: languages/extra-blocks.php:39
msgid "Background Image"
msgstr ""
#: languages/extra-blocks.php:40
msgid "Remove image"
msgstr ""
#: languages/extra-blocks.php:41
msgid "Edit image"
msgstr ""
#: languages/extra-blocks.php:42
msgid "Background Attachment"
msgstr ""
#: languages/extra-blocks.php:43 languages/extra-blocks.php:44
#: languages/extra-blocks.php:64
msgid "Background Color"
msgstr ""
#: languages/extra-blocks.php:47
msgid "Button"
msgstr ""
#: languages/extra-blocks.php:48
msgid "Button block."
msgstr ""
#: languages/extra-blocks.php:49
msgid "Button Settings"
msgstr ""
#: languages/extra-blocks.php:50
msgid "Button title"
msgstr ""
#: languages/extra-blocks.php:51
msgid "Button Link"
msgstr ""
#: languages/extra-blocks.php:52
msgid "Open in new tab"
msgstr ""
#: languages/extra-blocks.php:53
msgid "Wave effect"
msgstr ""
#: languages/extra-blocks.php:54
msgid "Effect color"
msgstr ""
#: languages/extra-blocks.php:55
msgid "Light"
msgstr ""
#: languages/extra-blocks.php:56
msgid "Red"
msgstr ""
#: languages/extra-blocks.php:57
msgid "Yellow"
msgstr ""
#: languages/extra-blocks.php:58
msgid "Orange"
msgstr ""
#: languages/extra-blocks.php:59
msgid "Purple"
msgstr ""
#: languages/extra-blocks.php:60
msgid "Green"
msgstr ""
#: languages/extra-blocks.php:61
msgid "Teal"
msgstr ""
#: languages/extra-blocks.php:62 languages/extra-blocks.php:84
msgid "Color Settings"
msgstr ""
#: languages/extra-blocks.php:63 languages/extra-blocks.php:85
msgid "Text Color"
msgstr ""
#: languages/extra-blocks.php:67
msgid "Buttons Group"
msgstr ""
#: languages/extra-blocks.php:70
msgid "Number of buttons"
msgstr ""
#: languages/extra-blocks.php:71
msgid "Space between buttons"
msgstr ""
#: languages/extra-blocks.php:74
msgid "Testimonial"
msgstr ""
#: languages/extra-blocks.php:75
msgid "Regular"
msgstr ""
#: languages/extra-blocks.php:76
msgid "Large"
msgstr ""
#: languages/extra-blocks.php:79
msgid "Testimonial Settings"
msgstr ""
#: languages/extra-blocks.php:80
msgid "Testimonial Style"
msgstr ""
#: languages/extra-blocks.php:81
msgid "none"
msgstr ""
#: languages/extra-blocks.php:82
msgid "Style 1"
msgstr ""
#: languages/extra-blocks.php:83
msgid "Show Stars"
msgstr ""
#: languages/extra-blocks.php:86
msgid "Cite Color"
msgstr ""
#: languages/extra-blocks.php:87
msgid "Add testimonial text"
msgstr ""
#: languages/extra-blocks.php:88
msgid "Add cite text"
msgstr ""
#: languages/extra-blocks.php:91
msgid "Separator"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://zintathemes.com"
msgstr ""
#. Description of the plugin/theme
msgid "Extra blocks for Gutenberg editor."
msgstr ""
#. Author of the plugin/theme
msgid "ZintaThemes"
msgstr ""
#. Author URI of the plugin/theme
msgid "www.zintathemes.com"
msgstr ""

View File

@@ -0,0 +1,29 @@
{
"name": "front-editor-wc",
"version": "1.0.0",
"description": "Front Editor for Woocommerce",
"main": "index.js",
"scripts": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git"
},
"keywords": [
"wordpress"
],
"author": "briar",
"license": "GPL-2.0",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-cssnano": "^2.1.2",
"gulp-minify": "0.0.14",
"gulp-npm-files": "^0.1.3",
"gulp-postcss": "^6.1.0",
"gulp-rename": "^1.2.2",
"gulp-wp-pot": "^2.0.1",
"postcss-cssnext": "^2.8.0"
},
"dependencies": {}
}

View File

@@ -0,0 +1,36 @@
{
"name": "gallerya",
"version": "1.9.15",
"author": "netzstrategen <hallo@netzstrategen.com>",
"license": "GPL-2.0",
"devDependencies": {
"asset-builder": "^1.1.0",
"browser-sync": "^2.8.2",
"del": "^1.2.1",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-changed": "^1.3.0",
"gulp-concat": "^2.6.0",
"gulp-flatten": "0.1.1",
"gulp-if": "^2.0.1",
"gulp-imagemin": "^2.3.0",
"gulp-jshint": "^1.11.2",
"gulp-less": "^3.0.3",
"gulp-minify-css": "^1.2.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-rev": "^6.0.0",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"imagemin-pngcrush": "^4.1.0",
"jshint-stylish": "^2.0.1",
"lazypipe": "^1.0.1",
"merge": "^1.2.0",
"merge-stream": "^1.0.0",
"minimist": "^1.1.3",
"run-sequence": "^1.1.2",
"traverse": "^0.6.6",
"wiredep": "^2.2.2"
}
}

View File

@@ -0,0 +1,525 @@
# Blank WordPress Pot
# Copyright 2014 ...
# This file is distributed under the GNU General Public License v3 or later.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: "
"Guten Editor Blocks "
"v1.0.0\n"
"POT-Creation-Date: "
"2018-09-19 16:27+0530\n"
"PO-Revision-Date: \n"
"Last-Translator: Your "
"Name <you@example.com>\n"
"Language-Team: "
"ThemeVedanta "
"<themevedanta@gmail."
"com>\n"
"Report-Msgid-Bugs-To: "
"Translator Name "
"<translations@example."
"com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/"
"plain; charset=UTF-8\n"
"Content-Transfer-"
"Encoding: 8bit\n"
"Plural-Forms: "
"nplurals=2; plural=n != "
"1;\n"
"X-Textdomain-Support: "
"yesX-Generator: Poedit "
"1.6.4\n"
"X-Poedit-SourceCharset: "
"UTF-8\n"
"X-Poedit-KeywordsList: "
"__;_e;esc_html_e;"
"esc_html_x:1,2c;"
"esc_html__;esc_attr_e;"
"esc_attr_x:1,2c;"
"esc_attr__;_ex:1,2c;"
"_nx:4c,1,2;"
"_nx_noop:4c,1,2;_x:1,2c;"
"_n:1,2;_n_noop:1,2;"
"__ngettext:1,2;"
"__ngettext_noop:1,2;_c,"
"_nc:4c,1,2\n"
"X-Poedit-Basepath: ..\n"
"Language: en_US\n"
"X-Generator: Poedit "
"2.1.1\n"
"X-Poedit-"
"SearchPath-0: .\n"
#: guten-editor-blocks.php:49
msgid "Guten Editor Blocks"
msgstr ""
#: node_modules/webpack/node_modules/yargs-parser/index.js:306
#: node_modules/yargs-parser/index.js:301
#, javascript-format
msgid ""
"Not enough arguments "
"following: %s"
msgstr ""
#: node_modules/webpack/node_modules/yargs-parser/index.js:454
#: node_modules/yargs-parser/index.js:449
#, javascript-format
msgid ""
"Invalid JSON config "
"file: %s"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:169
#: node_modules/yargs/lib/usage.js:169
msgid "Commands:"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:177
#: node_modules/webpack/node_modules/yargs/lib/usage.js:407
#: node_modules/yargs/lib/usage.js:177
#: node_modules/yargs/lib/usage.js:407
msgid "default:"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:179
#: node_modules/yargs/lib/usage.js:179
msgid "aliases:"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:241
#: node_modules/yargs/lib/usage.js:241
msgid "boolean"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:242
#: node_modules/yargs/lib/usage.js:242
msgid "count"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:243
#: node_modules/webpack/node_modules/yargs/lib/usage.js:244
#: node_modules/yargs/lib/usage.js:243
#: node_modules/yargs/lib/usage.js:244
msgid "string"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:245
#: node_modules/yargs/lib/usage.js:245
msgid "array"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:246
#: node_modules/yargs/lib/usage.js:246
msgid "number"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:250
#: node_modules/yargs/lib/usage.js:250
msgid "required"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:251
#: node_modules/yargs/lib/usage.js:251
msgid "choices:"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:270
#: node_modules/yargs/lib/usage.js:270
msgid "Examples:"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/usage.js:385
#: node_modules/yargs/lib/usage.js:385
msgid "generated-value"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/validation.js:27
#: node_modules/webpack/node_modules/yargs/lib/validation.js:50
#: node_modules/yargs/lib/validation.js:26
#: node_modules/yargs/lib/validation.js:49
#, javascript-format
msgid ""
"Not enough non-option "
"arguments: got %s, need "
"at least %s"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/validation.js:38
#: node_modules/yargs/lib/validation.js:37
#, javascript-format
msgid ""
"Too many non-option "
"arguments: got %s, "
"maximum of %s"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/validation.js:186
#: node_modules/yargs/lib/validation.js:185
msgid "Invalid values:"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/validation.js:189
#: node_modules/yargs/lib/validation.js:188
#, javascript-format
msgid ""
"Argument: %s, Given: %s, "
"Choices: %s"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/validation.js:219
#: node_modules/yargs/lib/validation.js:218
#, javascript-format
msgid ""
"Argument check failed: %s"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/validation.js:284
#: node_modules/yargs/lib/validation.js:283
msgid ""
"Implications failed:"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/validation.js:314
#: node_modules/yargs/lib/validation.js:313
#, javascript-format
msgid ""
"Arguments %s and %s are "
"mutually exclusive"
msgstr ""
#: node_modules/webpack/node_modules/yargs/lib/validation.js:333
#: node_modules/yargs/lib/validation.js:332
#, javascript-format
msgid "Did you mean %s?"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:68
msgid "Small"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:69
msgid "Medium"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:70
msgid "Large"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:71
msgid "Extra Large"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:76
msgid "Square"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:77
msgid "Rounded Square"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:78
msgid "Circular"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:99
msgid "Content Options"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:101
#: src/blocks/block-iconbox/components/inspector.js:153
#: src/blocks/block-imagebox/components/inspector.js:93
msgid "Title Font Size"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:110
msgid ""
"Description Font Size"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:119
#: src/blocks/block-cta/components/inspector.js:124
#: src/blocks/block-iconbox/components/inspector.js:198
#: src/blocks/block-iconbox/components/inspector.js:203
#: src/blocks/block-imagebox/components/inspector.js:129
#: src/blocks/block-imagebox/components/inspector.js:134
msgid "Title Color"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:131
#: src/blocks/block-cta/components/inspector.js:136
msgid "Description Color"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:143
msgid "Background Options"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:144
#: src/blocks/block-iconbox/components/inspector.js:247
msgid ""
"Select a background "
"image:"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:153
#: src/blocks/block-iconbox/components/inspector.js:256
msgid "Edit image"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:157
#: src/blocks/block-iconbox/components/inspector.js:260
msgid "Select Image"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:163
#: src/blocks/block-iconbox/components/inspector.js:266
msgid "Remove Image"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:167
#: src/blocks/block-iconbox/components/inspector.js:270
msgid "Remove"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:177
#: src/blocks/block-iconbox/components/inspector.js:280
msgid "Image Opacity"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:187
#: src/blocks/block-cta/components/inspector.js:192
#: src/blocks/block-iconbox/components/inspector.js:290
#: src/blocks/block-iconbox/components/inspector.js:295
#: src/blocks/block-imagebox/components/inspector.js:80
#: src/blocks/block-imagebox/components/inspector.js:85
msgid "Background Color"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:199
msgid "Button Options"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:201
msgid ""
"Open link in new window"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:207
msgid "Button Size"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:217
msgid "Button Shape"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:227
#: src/blocks/block-cta/components/inspector.js:232
msgid "Button Color"
msgstr ""
#: src/blocks/block-cta/components/inspector.js:249
#: src/blocks/block-cta/components/inspector.js:254
msgid "Button Text Color"
msgstr ""
#: src/blocks/block-cta/index.js:214
msgid "CallToAction Title"
msgstr ""
#: src/blocks/block-cta/index.js:229
msgid ""
"CallToAction Description"
msgstr ""
#: src/blocks/block-cta/index.js:245
msgid "Button text..."
msgstr ""
#: src/blocks/block-cta/index.js:277
msgid "Apply"
msgstr ""
#: src/blocks/block-cta/index.js:290
msgid "GEB CallToAction"
msgstr ""
#: src/blocks/block-cta/index.js:291
msgid ""
"Add a cta section with a "
"title, text, and a "
"button."
msgstr ""
#: src/blocks/block-cta/index.js:295
msgid "calltoaction"
msgstr ""
#: src/blocks/block-cta/index.js:296
#: src/blocks/block-iconbox/index.js:576
#: src/blocks/block-imagebox/index.js:549
msgid "editor"
msgstr ""
#: src/blocks/block-cta/index.js:297
#: src/blocks/block-iconbox/index.js:577
#: src/blocks/block-imagebox/index.js:550
msgid "guteneditorblocks"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:86
msgid "Default"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:87
msgid "Aside Left"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:88
msgid "Aside Right"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:93
#: src/blocks/block-imagebox/components/inspector.js:62
msgid ""
"Iconbox General Options"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:95
#: src/blocks/block-imagebox/components/inspector.js:64
msgid "Number Of Columns"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:103
msgid "Iconbox Style"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:112
msgid "Iconbox-1 Icon"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:121
msgid "Iconbox-2 Icon"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:131
msgid "Iconbox-3 Icon"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:141
msgid "Iconbox-4 Icon"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:151
#: src/blocks/block-imagebox/components/inspector.js:91
msgid ""
"Iconbox Content Options"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:162
#: src/blocks/block-imagebox/components/inspector.js:102
msgid "Content Font Size"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:171
msgid "Icon Size"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:180
#: src/blocks/block-imagebox/components/inspector.js:111
msgid "Border Size"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:189
#: src/blocks/block-imagebox/components/inspector.js:120
msgid "Border Radius"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:210
#: src/blocks/block-iconbox/components/inspector.js:215
#: src/blocks/block-imagebox/components/inspector.js:141
#: src/blocks/block-imagebox/components/inspector.js:146
msgid "Content Color"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:222
#: src/blocks/block-iconbox/components/inspector.js:227
msgid "Icon Color"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:234
#: src/blocks/block-iconbox/components/inspector.js:239
#: src/blocks/block-imagebox/components/inspector.js:153
#: src/blocks/block-imagebox/components/inspector.js:158
msgid "Border Color"
msgstr ""
#: src/blocks/block-iconbox/components/inspector.js:246
msgid ""
"Iconbox Background "
"Options"
msgstr ""
#: src/blocks/block-iconbox/index.js:295
#: src/blocks/block-iconbox/index.js:374
#: src/blocks/block-iconbox/index.js:454
#: src/blocks/block-iconbox/index.js:532
msgid "Iconbox Title"
msgstr ""
#: src/blocks/block-iconbox/index.js:310
#: src/blocks/block-iconbox/index.js:389
#: src/blocks/block-iconbox/index.js:469
#: src/blocks/block-iconbox/index.js:547
msgid "Iconbox Description"
msgstr ""
#: src/blocks/block-iconbox/index.js:570
msgid "GEB Iconbox"
msgstr ""
#: src/blocks/block-iconbox/index.js:571
msgid ""
"Add a iconbox section "
"with a title, content, "
"and fontawesome icon."
msgstr ""
#: src/blocks/block-iconbox/index.js:575
msgid "iconbox"
msgstr ""
#: src/blocks/block-imagebox/components/inspector.js:72
msgid "Image Width"
msgstr ""
#: src/blocks/block-imagebox/index.js:284
#: src/blocks/block-imagebox/index.js:362
#: src/blocks/block-imagebox/index.js:441
#: src/blocks/block-imagebox/index.js:520
msgid ""
"Imagebox Description"
msgstr ""
#: src/blocks/block-imagebox/index.js:347
#: src/blocks/block-imagebox/index.js:426
#: src/blocks/block-imagebox/index.js:505
msgid "Imagebox Title"
msgstr ""
#: src/blocks/block-imagebox/index.js:543
msgid "GEB Imagebox"
msgstr ""
#: src/blocks/block-imagebox/index.js:544
msgid ""
"Add a imagebox section "
"with a title, content, "
"and image."
msgstr ""
#: src/blocks/block-imagebox/index.js:548
msgid "imagebox"
msgstr ""

View File

@@ -0,0 +1,138 @@
msgid ""
msgstr ""
"Project-Id-Version: Hide Content 1.0\n"
"POT-Creation-Date: 2018-10-06 00:28+0330\n"
"PO-Revision-Date: 2018-10-06 00:29+0330\n"
"Last-Translator: \n"
"Language-Team: WP-Mart\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.0.5\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
#: hidden-contents.php:38 hidden-contents.php:39
msgid "Hide Content"
msgstr "مخفی‌ساز متن"
#: hidden-contents.php:62
msgid "You do not have sufficient permissions to access this page."
msgstr "شما دسترسی لازم برای مشاهده این صفحه را ندارید."
#: hidden-contents.php:83
msgid "Hide content settings"
msgstr "تنظیمات مخفی‌ساز متن"
#: hidden-contents.php:103
msgid "Settings Saved."
msgstr "تنظیمات ذخیره شد."
#: hidden-contents.php:104
msgid "Close"
msgstr "بستن"
#: hidden-contents.php:108
msgid "Sorry, your nonce did not verify."
msgstr "پیوندی که شما دنبال می‌کردید منقضی شده است."
#: hidden-contents.php:112
msgid ""
"The following options are available to set the output of the 'Hide Content' "
"plugin."
msgstr "گزینه های زیر جهت تنظیم خروجی و نحوه کار افزونه مخفی ساز متن است."
#: hidden-contents.php:118
msgid "Post Type to hide content"
msgstr "انتخاب پست تایپ برای مخفی سازی"
#: hidden-contents.php:121
msgid "Post Type"
msgstr "پست تایپ"
#: hidden-contents.php:135
msgid "Select Post Type to hide "
msgstr ""
"از این بخش می توانید پست تایپ مدنظرتان را برای مخفی سازی متن انتخاب کنید "
#: hidden-contents.php:140
msgid "Change content dump image"
msgstr "تغییر عکس پیش فرض"
#: hidden-contents.php:143
msgid "Upload image"
msgstr "بارگزاری عکس"
#: hidden-contents.php:144
msgid "Change default image"
msgstr "تغییر عکس پیش فرض"
#: hidden-contents.php:145
msgid "You can change default image holder from here."
msgstr "از این بخش می توانید عکس پیش فرض را تغییر دهید."
#: hidden-contents.php:150
msgid "Character to show"
msgstr "تعداد کاراکتر نمایشی"
#: hidden-contents.php:154
msgid "Enter the number of characters you want to be visible to the user."
msgstr ""
"تعداد کاراکتری که می خواهید برای کاربر قابل مشاهده باشد را وارد کنید. برای "
"عدم نمایش روی عدد 0 تنظیم کنید."
#: hidden-contents.php:159
msgid "Content phars list to show"
msgstr "لیست واژگان جهت نمایش"
#: hidden-contents.php:162
msgid "write some phars"
msgstr "واژه مدنظر را وارد کنید"
#: hidden-contents.php:163
msgid ""
"The exlude list is for creating a list of words that is visible to the user "
"in your contents. <br>Example phars: we, was, or, that,... "
msgstr ""
"لیست محروم سازی جهت ایجاد لیستی از واژه هاست که در متن برای کاربر قابل "
"مشاهده است. <br>مانند: است، به ، با و... "
#: hidden-contents.php:169
msgid "Save Settings"
msgstr "ذخیره تنظیمات"
#: languages/common-strings.php:2
msgid "Hidden Contents"
msgstr "مخفی‌ساز متن"
#: languages/common-strings.php:3
msgid "A handy plugin for hide contents and images from guest users."
msgstr "افزونه ای جهت مخفی کردن متن و عکس از کاربران مهمان."
#: languages/common-strings.php:4
msgid "Morteza Geransayeh"
msgstr "مرتضی گرانسایه"
#~ msgid ""
#~ "A handy plugin for hide contents and images from guest users. But you can "
#~ "control how many characters and what words show."
#~ msgstr "افزونه ای جهت مخفی کردن متن و عکس از کاربران مهمان."
#~ msgid "Hide content for registered users?"
#~ msgstr "مخفی سازی برای کاربران؟"
#~ msgid "Yes"
#~ msgstr "بله"
#~ msgid "No"
#~ msgstr "خیر"
#~ msgid ""
#~ "By turning this option on, all site contents will be hiding for "
#~ "registered users."
#~ msgstr ""
#~ "با فعال کردن این گزینه، نوشته های سایت حتی برای کاربران عضو هم مخفی می "
#~ "شوند."

View File

@@ -0,0 +1,181 @@
msgid ""
msgstr ""
"Project-Id-Version: HTTP to HTTPS 2.0\n"
"POT-Creation-Date: 2018-10-16 00:35+0200\n"
"PO-Revision-Date: 2018-10-16 00:39+0200\n"
"Last-Translator: \n"
"Language-Team: Ambrogio Piredda\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.8.7.1\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: _e;__\n"
"X-Poedit-SearchPath-0: .\n"
#: settings-fields.php:6
msgid ""
"Select one or more of the options below and click the \"Replace URLs\" "
"button. Only the URLs that point to your own site will be replaced. No URL "
"pointing outside of your site will be replaced."
msgstr ""
#: settings-fields.php:7
msgid ""
"<b>WARNING:</b> Changing the site URL without having an SSL certificate "
"installed will break your site. You can find more information about the site "
"URL"
msgstr ""
#: settings-fields.php:7 settings-fields.php:93 settings-fields.php:141
#: settings-fields.php:157
msgid "here"
msgstr ""
#: settings-fields.php:8
msgid "<b>NOTE:</b> This plugin does not change URLs in the"
msgstr ""
#: settings-fields.php:8
msgid "GUID"
msgstr ""
#: settings-fields.php:8
msgid "column of the wp_posts table"
msgstr ""
#: settings-fields.php:39
#, php-format
msgid "Site URL:&#9;%s"
msgstr ""
#: settings-fields.php:39
#, php-format
msgid "Home URL:&#9;%s"
msgstr ""
#: settings-fields.php:39
#, php-format
msgid "Table prefix:&#9;%s"
msgstr ""
#: settings-fields.php:39
#, php-format
msgid "Blog ID:&#9;%s"
msgstr ""
#: settings-fields.php:61
msgid ""
"Replace URLs of src attributes in the <b>post_content</b> column of the "
"<b>wp_posts</b> table."
msgstr ""
#: settings-fields.php:77
msgid ""
"Replace URLs of href attributes in the <b>post_content</b> column of the "
"<b>wp_posts</b> table."
msgstr ""
#: settings-fields.php:93
msgid ""
"Replace URLs in the <b>pinged</b> column of the <b>wp_posts</b> table. More "
"information about pingbacks"
msgstr ""
#: settings-fields.php:109
msgid ""
"Replace URLs in the <b>comment_author_url</b> and the <b>comment_content</b> "
"columns of the <b>wp_comments</b> table."
msgstr ""
#: settings-fields.php:125
msgid ""
"Replace URLs in the <b>meta_value</b> column of the <b>wp_postmeta</b> table."
msgstr ""
#: settings-fields.php:141
msgid ""
"Replace the site URL in the <b>wp_options</b> table. More information about "
"the site URL"
msgstr ""
#: settings-fields.php:157
msgid ""
"Replace the home URL in the <b>wp_options</b> table. More information about "
"the home URL"
msgstr ""
#: settings-fields.php:173
msgid ""
"Select this option to simulate a replacement of the options you have "
"selected. No URL will be replaced."
msgstr ""
#: settings-page.php:8 settings-page.php:82 settings-page.php:83
msgid "HTTP to HTTPS"
msgstr ""
#: settings-page.php:17
msgid "Replace URLs"
msgstr ""
#: settings-page.php:56
#, php-format
msgid "Cells found: %s"
msgstr ""
#: settings-page.php:58
#, php-format
msgid "Cells updated: %s"
msgstr ""
#: settings-page.php:63
msgid "Select at least one option"
msgstr ""
#: settings.php:8
msgid "Instructions"
msgstr ""
#: settings.php:15
msgid "Site details"
msgstr ""
#: settings.php:22
msgid "Settings"
msgstr ""
#: settings.php:30
msgid "Replace images and attachments URLs"
msgstr ""
#: settings.php:38
msgid "Replace links URLs"
msgstr ""
#: settings.php:46
msgid "Replace pingbacks URLs"
msgstr ""
#: settings.php:54
msgid "Replace URLs in comments"
msgstr ""
#: settings.php:62
msgid "Replace postmeta URLs"
msgstr ""
#: settings.php:70
msgid "Replace site URL"
msgstr ""
#: settings.php:78
msgid "Replace home URL"
msgstr ""
#: settings.php:86
msgid "Simulate replacement"
msgstr ""

View File

@@ -0,0 +1,752 @@
# Copyright (C) 2018 The Plugin Pros
# This file is distributed under the same license as the Marketplace Taxes package.
msgid ""
msgstr ""
"Project-Id-Version: Marketplace Taxes 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://github.com/ThePluginPros/marketplace-taxes/issues\n"
"POT-Creation-Date: 2018-10-12 13:17:26+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"
"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-mt-admin-notices.php:98
msgid "Action failed. Please refresh the page and retry."
msgstr ""
#: includes/admin/class-mt-admin-notices.php:102
msgid "Cheatin&#8217; huh?"
msgstr ""
#: includes/admin/class-mt-admin.php:54
msgid "Settings"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Marketplace Taxes"
msgstr ""
#: includes/admin/class-mt-wc-integration.php:48
msgid "Use this page to configure sales tax automation for your marketplace."
msgstr ""
#: includes/admin/class-mt-wc-integration.php:49
msgid ""
"Need help? Check out the <a "
"href=\"https://thepluginpros.com/documentation/taxjar\">documentation</a>"
msgstr ""
#: includes/admin/class-mt-wc-integration.php:63
msgid "Enable"
msgstr ""
#: includes/admin/class-mt-wc-integration.php:65
msgid "Enable automated tax calculations"
msgstr ""
#: includes/admin/class-mt-wc-integration.php:71
msgid "Your API token will be used to calculate the correct tax rate at checkout."
msgstr ""
#: includes/admin/class-mt-wc-integration.php:81
msgid "Seller of record"
msgstr ""
#: includes/admin/class-mt-wc-integration.php:85
msgid "Vendor"
msgstr ""
#: includes/admin/class-mt-wc-integration.php:86
msgid "Marketplace"
msgstr ""
#: includes/admin/class-mt-wc-integration.php:89
msgid ""
"The seller of record is responsible for collecting and remitting sales tax "
"for each sale. The tax collected at checkout will be given to the seller of "
"record."
msgstr ""
#: includes/admin/class-mt-wc-integration.php:98
msgid "Business locations"
msgstr ""
#: includes/admin/views/html-select-category-bulk.php:7
#: includes/admin/views/html-select-category.php:26
msgid "Tax category"
msgstr ""
#: includes/admin/views/html-select-category-bulk.php:9
#: includes/class-mt-assets.php:67
msgid "No change"
msgstr ""
#: includes/admin/views/html-select-category-bulk.php:14
#: includes/admin/views/html-select-category.php:43
#: includes/integrations/wc-vendors/views/html-field-tax-category.php:26
msgid "Change"
msgstr ""
#: includes/admin/views/html-select-category-bulk.php:18
#: includes/admin/views/html-select-category.php:48
#: includes/integrations/wc-vendors/views/html-field-tax-category.php:31
msgid "Reset"
msgstr ""
#: includes/admin/views/html-select-category.php:29
msgid ""
"Used for products that are either exempt from tax in some jurisdictions or "
"are taxed at reduced rates. "
msgstr ""
#: includes/admin/views/html-select-category.php:37
#: includes/class-mt-assets.php:66
msgid "None"
msgstr ""
#: includes/admin/views/html-tax-category-modal.php:13
msgid "Select"
msgstr ""
#: includes/admin/views/html-tax-category-modal.php:26
msgid "Select tax category"
msgstr ""
#: includes/admin/views/html-tax-category-modal.php:28
msgid "Close modal panel"
msgstr ""
#: includes/admin/views/html-tax-category-modal.php:37
msgid "Start typing to search"
msgstr ""
#: includes/admin/views/notices/html-notice-custom.php:19
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:33
#: includes/integrations/wc-vendors/views/notices/html-notice-updated.php:19
msgid "Dismiss"
msgstr ""
#: includes/class-marketplace-taxes.php:140
#. translators: 1: required plugin name, 2: minimum version
msgid ""
"<strong>%1$s needs to be updated.</strong> Marketplace Taxes requires %1$s "
"%2$s+."
msgstr ""
#: includes/class-marketplace-taxes.php:151
#. translators: 1: required plugin name
msgid ""
"<strong>%1$s not detected.</strong> Please install or activate %1$s to use "
"Marketplace Taxes."
msgstr ""
#: includes/class-marketplace-taxes.php:173
#. translators: 1 - list of required PHP extensions
msgid ""
"<strong>Required PHP extensions are missing.</strong> Marketplace Taxes "
"requires %1$s."
msgstr ""
#: includes/class-marketplace-taxes.php:182
#. translators: 1 - required php version
msgid ""
"<strong>PHP needs to be updated.</strong> Marketplace Taxes requires PHP "
"%1$s+."
msgstr ""
#: includes/class-mt-addresses.php:80
msgid "Inherited from your general shop settings"
msgstr ""
#: includes/class-mt-addresses.php:135
msgid "Default address"
msgstr ""
#: includes/class-mt-addresses.php:243
msgid "%1$s and <a href=\"%4$s\">%2$s other %3$s</a>"
msgstr ""
#: includes/class-mt-addresses.php:246
msgid "seller"
msgid_plural "sellers"
msgstr[0] ""
msgstr[1] ""
#: includes/class-mt-addresses.php:262
msgid ""
"<strong>Warning!</strong> %s %s not configured their business addresses. "
"Taxes will not be calculated for %s."
msgstr ""
#: includes/class-mt-addresses.php:267
msgid "has"
msgid_plural "have"
msgstr[0] ""
msgstr[1] ""
#: includes/class-mt-addresses.php:268
msgid "this vendor"
msgid_plural "these vendors"
msgstr[0] ""
msgstr[1] ""
#: includes/class-mt-addresses.php:313
msgid "Tax setup incomplete."
msgstr ""
#: includes/class-mt-addresses.php:314
msgid ""
"Please complete the following steps to ensure your customers are taxed "
"correctly:"
msgstr ""
#: includes/class-mt-addresses.php:347
msgid ""
"<strong>Tax setup incomplete.</strong> Please <a href=\"%s\">complete your "
"store address</a> to dismiss this notice."
msgstr ""
#: includes/class-mt-assets.php:65
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:323
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:350
msgid "Same as parent"
msgstr ""
#: includes/class-mt-assets.php:96
msgid "Select an option&hellip;"
msgstr ""
#: includes/class-mt-assets.php:177
msgid ""
"Are you sure you want to dismiss this notice? You won't be warned about "
"these sellers again."
msgstr ""
#: includes/class-mt-calculator.php:120
msgid "%s Shipping"
msgstr ""
#: includes/class-mt-calculator.php:172
msgid "Failed to calculate the tax due: %s"
msgstr ""
#: includes/class-mt-install.php:69
msgid "%1$s tax rate(s) deleted successfully."
msgstr ""
#: includes/class-mt-install.php:73
msgid "Your existing tax rates will be kept."
msgstr ""
#: includes/class-mt-install.php:106
msgid ""
"<strong>Warning!</strong> There are tax rates in your WooCommerce tax "
"tables. This may cause your customers to be overtaxed. Please choose to <a "
"href=\"%1$s\">keep</a> or <a href=\"%2$s\">delete</a> the existing tax "
"rates."
msgstr ""
#: includes/class-mt-integrations.php:51
msgid ""
"<strong>%1$s not detected.</strong> Please install or active %1$s to use "
"Marketplace Taxes."
msgstr ""
#: includes/class-mt-integrations.php:65
msgid ""
"<strong>%1$s needs to be updated.</strong> Marketplace Taxes requires %1$s "
"version %2$s or greater."
msgstr ""
#: includes/class-mt-integrations.php:84
msgid ""
"<strong>TaxJar for Marketplace is inactive</strong>. No compatible "
"marketplace plugin detected."
msgstr ""
#: includes/class-mt-tax-categories.php:42
msgid "Once monthly"
msgstr ""
#: includes/class-mt-tax-categories.php:110
msgid "Products that don't fall into other categories"
msgstr ""
#: includes/class-mt-tax-categories.php:111
msgid "General"
msgstr ""
#: includes/class-mt-util.php:33
#: includes/fields/class-mt-field-api-token.php:67
msgid "The provided API token is invalid."
msgstr ""
#: includes/class-mt-util.php:35
#: includes/fields/class-mt-field-api-token.php:69
msgid "Error connecting to TaxJar."
msgstr ""
#: includes/class-mt-vendor-settings-form.php:69
msgid "Use TaxJar for Reporting"
msgstr ""
#: includes/class-mt-vendor-settings-form.php:94
msgid ""
"Please fill out the fields below to ensure that your customers are taxed "
"correctly."
msgstr ""
#: includes/fields/class-mt-field-api-token.php:31
msgid "TaxJar API token"
msgstr ""
#: includes/fields/class-mt-field-api-token.php:32
msgid ""
"<a href=\"https://thepluginpros.com/out/taxjar-api-token\" "
"target=\"_blank\">Find your API token</a> | <a "
"href=\"https://thepluginpros.com/out/taxjar\" target=\"_blank\">Register "
"for TaxJar</a>"
msgstr ""
#: includes/fields/class-mt-field-business-locations.php:34
msgid "Business Locations"
msgstr ""
#: includes/fields/class-mt-field-business-locations.php:35
msgid ""
"Please enter all locations, including stores, warehouses, distribution "
"facilities, etc."
msgstr ""
#: includes/fields/class-mt-field-business-locations.php:81
msgid "You must provide at least one business location."
msgstr ""
#: includes/fields/class-mt-field-business-locations.php:101
msgid "Select an option..."
msgstr ""
#: includes/fields/class-mt-field-upload-orders.php:39
msgid "Sales tax reporting"
msgstr ""
#: includes/fields/class-mt-field-upload-orders.php:40
msgid ""
"Upload orders to <a href=\"https://thepluginpros.com/out/taxjar\" "
"target=\"_blank\">TaxJar</a> for reporting"
msgstr ""
#: includes/fields/class-mt-field-upload-orders.php:51
msgid ""
"<span style='color: #ff0000;'>There was an error retrieving your keys. "
"Please disable and re-enable reporting.</span>"
msgstr ""
#: includes/fields/class-mt-field-upload-orders.php:103
msgid ""
"There was an error linking this store to your TaxJar account. Please "
"contact support@thepluginpros.com"
msgstr ""
#: includes/fields/class-mt-field-upload-orders.php:114
msgid ""
"There was an error unlinking this store from your TaxJar account. Please "
"contact support@thepluginpros.com"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-integration-wc-vendors.php:100
msgid "Inherited from your store settings"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-integration-wc-vendors.php:116
msgid "Inherited from your shipping settings"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-integration-wc-vendors.php:297
msgid "Enter a complete store address"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-integration-wc-vendors.php:310
msgid "Review your tax settings"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-admin.php:43
#: includes/integrations/wc-vendors/views/html-admin-tax-settings-page.php:15
msgid "Tax Settings"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-admin.php:44
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:66
msgid "Taxes"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-admin.php:67
msgid "Settings saved."
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:149
msgid ""
"A custom product variation template is in use. Tax category assignment "
"won't work for variations."
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:231
msgid "Store Country"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:247
msgid "Store Address"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:248
msgid "Street Address"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:260
msgid "Apartment, unit, suite etc."
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:272
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:273
msgid "City / Town"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:285
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:286
msgid "State / County"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:298
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:299
msgid "Postcode / Zip"
msgstr ""
#: includes/integrations/wc-vendors/class-mt-wc-vendors-settings-manager.php:107
msgid "This field is disabled while Marketplace Taxes is active."
msgstr ""
#: includes/integrations/wc-vendors/views/html-field-tax-category.php:19
msgid "Tax Category"
msgstr ""
#: includes/integrations/wc-vendors/views/html-field-tax-category.php:23
msgid "Loading..."
msgstr ""
#: includes/integrations/wc-vendors/views/html-field-tax-category.php:41
msgid ""
"Used for products that are either exempt from tax in some jurisdictions or "
"are taxed at reduced rates."
msgstr ""
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:22
msgid "Your vendor orders need to be updated."
msgstr ""
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:24
msgid ""
"Marketplace Taxes needs to update your database to ensure that transaction "
"data imported into TaxJar is accurate."
msgstr ""
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:30
msgid "Run the update"
msgstr ""
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:42
msgid ""
"It is strongly recommended that you backup your database before proceeding. "
"Are you sure you wish to run the updater now?"
msgstr ""
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:50
msgid ""
"Are you sure you want to skip the database update? Your vendors will only "
"be able to import new orders into TaxJar."
msgstr ""
#: includes/integrations/wc-vendors/views/notices/html-notice-updated.php:21
msgid ""
"Marketplace Taxes data update complete. The updated orders will be imported "
"into TaxJar within 24 hours."
msgstr ""
#: includes/integrations/wc-vendors/views/notices/html-notice-updating.php:17
msgid "Marketplace Taxes data update"
msgstr ""
#: includes/integrations/wc-vendors/views/notices/html-notice-updating.php:18
msgid "Your vendor sub orders are being updated in the background. "
msgstr ""
#: includes/integrations/wc-vendors/views/notices/html-notice-updating.php:21
msgid "Taking a while? Click here to run it now."
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:49
msgid "Any"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:73
msgid "Remove"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:96
msgid "SKU"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:124
msgid "Enabled"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:130
msgid "Downloadable"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:136
msgid "Virtual"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:143
msgid "Manage stock?"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:163
msgid "Regular Price:"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:165
msgid "Variation price (required)"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:173
msgid "Sale Price:"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:177
msgid "Schedule"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:186
msgid "Sale start date:"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:195
msgid "Sale end date:"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:199
msgid "Cancel schedule"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:213
msgid "Stock Qty:"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:223
msgid "Allow Backorders?"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:243
msgid "Stock status"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:268
msgid "Weight"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:282
msgid "Dimensions (L&times;W&times;H)"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:317
msgid "Shipping class:"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:347
msgid "Tax class:"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:370
msgid "Variation Description:"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:387
msgid "Downloadable Files"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:392
msgid "Name"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:393
msgid "File URL"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:433
msgid "Add File"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:449
msgid "Download Limit:"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:451
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:461
msgid "Unlimited"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:459
msgid "Download Expiry:"
msgstr ""
#: includes/views/html-field-address-table.php:27
msgid "Address"
msgstr ""
#: includes/views/html-field-address-table.php:28
msgid "Country"
msgstr ""
#: includes/views/html-field-address-table.php:29
#: includes/views/html-field-address-table.php:84
msgid "State"
msgstr ""
#: includes/views/html-field-address-table.php:30
#: includes/views/html-field-address-table.php:90
msgid "City"
msgstr ""
#: includes/views/html-field-address-table.php:31
#: includes/views/html-field-address-table.php:95
msgid "Postcode"
msgstr ""
#: includes/views/html-field-address-table.php:40
msgid "Add Address"
msgstr ""
#: includes/views/html-field-address-table.php:57
msgid "No addresses entered."
msgstr ""
#: includes/views/html-field-address-table.php:58
msgid "Add one."
msgstr ""
#: includes/views/html-field-address-table.php:69
msgid "Street address"
msgstr ""
#: includes/views/html-field-address-table.php:141
msgid "At least one business address is required."
msgstr ""
#: marketplace-taxes.php:57
msgid "WooCommerce"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://github.com/ThePluginPros/marketplace-taxes"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Connect your WooCommerce based marketplace to <a "
"href=\"https://thepluginpros.com/out/taxjar\" target=\"_blank\">TaxJar</a> "
"to automate sales tax calculations, reporting, and filing."
msgstr ""
#. Author of the plugin/theme
msgid "The Plugin Pros"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://thepluginpros.com"
msgstr ""
#: includes/class-mt-assets.php:100
msgctxt "enhanced select"
msgid "One result is available, press enter to select it."
msgstr ""
#: includes/class-mt-assets.php:105
msgctxt "enhanced select"
msgid "%qty% results are available, use up and down arrow keys to navigate."
msgstr ""
#: includes/class-mt-assets.php:110
msgctxt "enhanced select"
msgid "No matches found"
msgstr ""
#: includes/class-mt-assets.php:115
msgctxt "enhanced select"
msgid "Loading failed"
msgstr ""
#: includes/class-mt-assets.php:120
msgctxt "enhanced select"
msgid "Please enter 1 or more characters"
msgstr ""
#: includes/class-mt-assets.php:125
msgctxt "enhanced select"
msgid "Please enter %qty% or more characters"
msgstr ""
#: includes/class-mt-assets.php:130
msgctxt "enhanced select"
msgid "Please delete 1 character"
msgstr ""
#: includes/class-mt-assets.php:135
msgctxt "enhanced select"
msgid "Please delete %qty% characters"
msgstr ""
#: includes/class-mt-assets.php:140
msgctxt "enhanced select"
msgid "You can only select 1 item"
msgstr ""
#: includes/class-mt-assets.php:145
msgctxt "enhanced select"
msgid "You can only select %qty% items"
msgstr ""
#: includes/class-mt-assets.php:150
msgctxt "enhanced select"
msgid "Loading more results&hellip;"
msgstr ""
#: includes/class-mt-assets.php:155
msgctxt "enhanced select"
msgid "Searching&hellip;"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:188
msgctxt "placeholder"
msgid "From&hellip;"
msgstr ""
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:197
msgctxt "placeholder"
msgid "To&hellip;"
msgstr ""

View File

@@ -0,0 +1,34 @@
# Copyright (C) 2018 Menu Item Duplicator
# This file is distributed under the same license as the Menu Item Duplicator package.
msgid ""
msgstr ""
"Project-Id-Version: Menu Item Duplicator 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/menu-item-"
"duplicator\n"
"POT-Creation-Date: 2018-10-14 22:02: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"
#: menu-item-duplicator.php:49
msgid "Duplicate"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Menu Item Duplicator"
msgstr ""
#. Description of the plugin/theme
msgid "Enable duplication of menu items (also duplicates sub-elements)"
msgstr ""
#. Author of the plugin/theme
msgid "Mathieu Hays"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://mathieuhays.co.uk"
msgstr ""

View File

@@ -0,0 +1,35 @@
# Copyright (C) 2018 JSM's Non-Breaking Space for French Content
# This file is distributed under the same license as the JSM's Non-Breaking Space for French Content package.
msgid ""
msgstr ""
"Project-Id-Version: JSM's Non-Breaking Space for French Content 1.9.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/nbsp-french\n"
"POT-Creation-Date: 2018-MO-DA HO:MI+ZONE\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"
#. Plugin Name of the plugin/theme
msgid "JSM's Non-Breaking Space for French Content"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://surniaulula.com/extend/plugins/nbsp-french/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Adds a non-breaking space between words and punctuation marks to avoid "
"inappropriate line-breaks in French."
msgstr ""
#. Author of the plugin/theme
msgid "JS Morisset"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://surniaulula.com/"
msgstr ""

View File

@@ -0,0 +1,42 @@
{
"name": "bccampus/pressbooks-openstax-import",
"description": "Imports OpenStax zip files into Pressbooks",
"type": "wordpress-plugin",
"version": "1.3.0",
"homepage": "https://github.com/bccampus/pressbooks-openstax-import",
"license": "GPL-3.0+",
"authors": [
{
"name": "Brad Payne",
"homepage": "https://github.com/bdolor"
},
{
"name": "aparedes",
"homepage": "https://github.com/alexpflores"
}
],
"config": {
"platform": {
"php": "7.1"
}
},
"require": {
"php": ">=7.1",
"ext-libxml": "*",
"ext-xsl": "*",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"humanmade/coding-standards": "^0.5.0"
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration phpunit.xml",
"@standards"
],
"standards": [
"vendor/bin/phpcs --standard=phpcs.ruleset.xml *.php inc/"
]
}
}

View File

@@ -212,6 +212,11 @@
<link rel="stylesheet" id="ad-short-css" href="http://wp.lab/wp-content/plugins/ad-short/ad_short.css?ver=2.0.1" type="text/css" media="all">
<!-- adbutler -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/adbutler/js/adbutler_hb_init.js?ver=1.18"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/adbutler/js/adbutler_hb_final.js?ver=1.18"></script>
<!-- add-anchor-links -->
<link rel="stylesheet" id="add-anchor-links-style-css" href="http://wp.lab/wp-content/plugins/add-anchor-links/assets/css/add-anchor-links.css?ver=1.0.0" type="text/css" media="all">
@@ -458,6 +463,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ajaxify-faqtastic/js/ajaxify-faqtastic.js?ver=1.5"></script>
<!-- ak-menu-icons-lite -->
<link rel="stylesheet" id="wpmi-font-awesome-style-css" href="http://wp.lab/wp-content/plugins/ak-menu-icons-lite/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
<!-- aklamator-popup -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/aklamator-popup/assets/js/popup.js?ver=1.0"></script>
@@ -740,6 +749,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/arrange-multisite-order/js/amo.js?ver=1.0"></script>
<!-- art-decoration-shortcode -->
<link rel="stylesheet" id="tds-style-frontend-css" href="http://wp.lab/wp-content/plugins/art-decoration-shortcode/assets/css/style-front.min.css?ver=1.5.2" type="text/css" media="all">
<!-- art-picture-gallery -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/art-picture-gallery/assets/js/masonry.pkgd.min.js?ver=1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/art-picture-gallery/assets/js/imagesloaded.pkgd.min.js?ver=1.0"></script>
@@ -1820,6 +1833,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/case-study/include/js/custom-owlCarousel-detail.js?ver=1.0"></script>
<!-- catch-breadcrumb -->
<link rel="stylesheet" id="catch-breadcrumb-css" href="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/css/catch-breadcrumb-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/js/catch-breadcrumb-public.js?ver=1.0.0"></script>
<!-- catch-infinite-scroll -->
<link rel="stylesheet" id="catch-infinite-scroll-css" href="http://wp.lab/wp-content/plugins/catch-infinite-scroll/public/css/catch-infinite-scroll-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-infinite-scroll/public/js/catch-infinite-scroll-public.js?ver=1.0.0"></script>
@@ -2536,6 +2554,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cornerstone/js/lib.core.js?ver=0.7.5"></script>
<!-- cosmic-carousel -->
<link rel="stylesheet" id="cosmic-css" href="http://wp.lab/wp-content/plugins/cosmic-carousel/public/css/cosmic-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cosmic-carousel/public/js/cosmic-public.js?ver=1.0.0"></script>
<!-- coupon-reveal-button -->
<link rel="stylesheet" id="spbcta-stylesheet-front-css" href="http://wp.lab/wp-content/plugins/coupon-reveal-button/css/spbcta-stylesheet-front.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/coupon-reveal-button/js/spbcta-nm.js?ver=1.0.0"></script>
@@ -3216,6 +3239,11 @@
<link rel="stylesheet" id="eu-cookies-bar-style-css" href="http://wp.lab/wp-content/plugins/eu-cookies-bar/css/eu-cookies-bar.css?ver=1.0.1" type="text/css" media="all">
<!-- event-calendar-by-hg -->
<link rel="stylesheet" id="ech-front-css-css" href="http://wp.lab/wp-content/plugins/event-calendar-by-hg/assets/css/front.min.css?v=1.0.2&amp;ver=4.9.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/event-calendar-by-hg/assets/js/front.min.js?v=1.0.2&amp;ver=4.9.1"></script>
<!-- event-calendar-wd -->
<link rel="stylesheet" id="ecwd-popup-style-css" href="http://wp.lab/wp-content/plugins/event-calendar-wd/css/ecwd_popup.css?ver=1.1.8_5a27b7015a44d" type="text/css" media="all">
<link rel="stylesheet" id="ecwd_font-awesome-css" href="http://wp.lab/wp-content/plugins/event-calendar-wd/css/font-awesome/font-awesome.css?ver=1.1.8_5a27b7015a44d" type="text/css" media="all">
@@ -4390,6 +4418,15 @@
<link rel="stylesheet" id="h7tabs_animate.min-css" href="http://wp.lab/wp-content/plugins/h7-tabs/assets/css/animate.min.css?ver=7.0.1" type="text/css" media="all">
<!-- halloween-woocommerce -->
<link rel="stylesheet" id="halloweenstyles-css" href="http://wp.lab/wp-content/plugins/halloween-woocommerce/styles.css?ver=0.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/cookie.js?ver=0.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/main.js?ver=0.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/jquery.vibrate.js?ver=0.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/vibrationoptions.js?ver=0.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/random-image.js?ver=0.2"></script>
<!-- hammy -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hammy/js/jquery-picture.js?ver=1.5.1"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hammy/js/hammy.js?ver=1.5.1"></script>
@@ -4513,6 +4550,21 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hints/_inc/hints.js?ver=1.0aa"></script>
<!-- hivepress -->
<link rel="stylesheet" id="fontawesome-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/fontawesome/fontawesome.min.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="fontawesome-solid-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/fontawesome/solid.min.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="fancybox-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/fancybox.min.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="slick-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/slick.min.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="hp-grid-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/grid.min.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="hp-core-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/frontend.min.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.iframe-transport.min.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.fileupload.min.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.fancybox.min.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/slick.min.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.sticky-sidebar.min.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/frontend.min.js?ver=1.0.0"></script>
<!-- holler-box -->
<link rel="stylesheet" id="holler-css-css" href="http://wp.lab/wp-content/plugins/holler-box/assets/css/holler-frontend.min.css?ver=1.3.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/holler-box/assets/js/holler-frontend.min.js?ver=1.3.1"></script>
@@ -4625,6 +4677,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ico-list-widget/assets/js/elw.front.min.js?ver=1.0.0"></script>
<!-- iconpress-lite -->
<link rel="stylesheet" id="iconpress-css-css" href="http://wp.lab/wp-content/plugins/iconpress-lite/assets/css/iconpress.css?ver=1.4.0" type="text/css" media="all">
<link rel="stylesheet" id="iconpress-panel-css-css" href="http://wp.lab/wp-content/plugins/iconpress-lite/assets/css/panel.css?ver=1.4.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/iconpress-lite/assets/js/iconpress.min.js?ver=1.4.0"></script>
<!-- idataffiliates -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/idataffiliates/js/app/ta.js?ver=1.0.0"></script>
@@ -4643,6 +4701,17 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ie-compatibility-mode-checker/public/js/wp-ie-check-public.js?ver=1.0.0"></script>
<!-- ifthengive -->
<link rel="stylesheet" id="ifthengivepublicDataTablecss-css" href="http://wp.lab/wp-content/plugins/ifthengive/public/css/datatables/jquery.dataTables.css?ver=0.1.0" type="text/css" media="all">
<link rel="stylesheet" id="ifthengivepublicDataTable-css" href="http://wp.lab/wp-content/plugins/ifthengive/public/css/datatables/dataTables.responsive.css?ver=0.1.0" type="text/css" media="all">
<link rel="stylesheet" id="ifthengivepublic_alertify_css-css" href="http://wp.lab/wp-content/plugins/ifthengive/includes/css/alertify/alertify.css?ver=0.1.0" type="text/css" media="all">
<link rel="stylesheet" id="ifthengive-css" href="http://wp.lab/wp-content/plugins/ifthengive/public/css/ifthengive-public.css?ver=0.1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ifthengive/includes/css/alertify/alertify.min.js?ver=0.1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ifthengive/public/js/ifthengive-public.js?ver=0.1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ifthengive/public/js/datatables/jquery.dataTables.min.js?ver=0.1.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ifthengive/public/js/datatables/dataTables.responsive.js?ver=0.1.0"></script>
<!-- ifttt-instagram-gallery -->
<link rel="stylesheet" id="ifttt-instagram-gallery-plugin-styles-css" href="http://wp.lab/wp-content/plugins/ifttt-instagram-gallery/public/assets/css/public.css?ver=1.0.5" type="text/css" media="all">
@@ -5128,6 +5197,7 @@
<link rel="stylesheet" id="wpkqcg-style-css" href="http://wp.lab/wp-content/plugins/kaya-qr-code-generator/css/wpkqcg-pkg.css?ver=1.0.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kaya-qr-code-generator/assets/qrcode.js?ver=1.0.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kaya-qr-code-generator/js/wpkqcg-pkg.js?ver=1.0.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kaya-qr-code-generator/assets/qrcode-v2.js?ver=1.0.2"></script>
<!-- kb-support -->
@@ -5341,6 +5411,20 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lead-magnets-by-contentupgrademe/public/js/contentupgrade-me.js?ver=1.0.4"></script>
<!-- leader -->
<link rel="stylesheet" id="leader-css" href="http://wp.lab/wp-content/plugins/leader/public/css/leader-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/leader/public/js/leader-public.js?ver=1.0.0"></script>
<!-- leadgeneration -->
<link rel="stylesheet" id="lg-fontawesome-css" href="http://wp.lab/wp-content/plugins/leadgeneration/assets/vendors/fontawesome/css/fontawesome-all.min.css?ver=1.1" type="text/css" media="all">
<!-- leadkit-pro -->
<link rel="stylesheet" id="leadkitpro-css" href="http://wp.lab/wp-content/plugins/leadkit-pro/public/css/leadkitpro-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/leadkit-pro/public/js/leadkitpro-public.js?ver=1.0.0"></script>
<!-- leaflet-map -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/leaflet-map/scripts/construct-leaflet-map.min.js?ver=2.9.1"></script>
@@ -5465,6 +5549,7 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/limelight-storefront/includes/assets/limelight-traffic-attribution.min.js?ver=1.1.3"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/limelight-storefront/includes/assets/main.js?ver=1.1.3"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/limelight-storefront/classes/assets/limelight-traffic-attribution.min.js?ver=1.1.3"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/limelight-storefront/assets/js/limelight-traffic-attribution.min.js?ver=1.1.3"></script>
<!-- link-designer-lite -->
@@ -5533,6 +5618,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/livemesh-siteorigin-widgets/assets/js/lsow-frontend.min.js?ver=1.6.1"></script>
<!-- livestream-notice -->
<link rel="stylesheet" id="livestreamNotice-css" href="http://wp.lab/wp-content/plugins/livestream-notice/livestream-notice.css?ver=1.1.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/livestream-notice/livestream-notice.js?ver=1.1.2"></script>
<!-- loanthru-calculator -->
<link rel="stylesheet" id="loanthru_calculator-css" href="http://wp.lab/wp-content/plugins/loanthru-calculator/public/css/loanthru_calculator-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/loanthru-calculator/public/js/loanthru_calculator-public.js?ver=1.0.0"></script>
@@ -5576,6 +5666,12 @@
<!-- logic-hop -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/logic-hop/public/js/ajax-methods.min.js?ver=2.1.9"></script>
<link rel="stylesheet" id="logichop-display-css" href="http://wp.lab/wp-content/plugins/logic-hop/public/css/display.css?ver=2.1.9" type="text/css" media="all">
<link rel="stylesheet" id="logichop-display-css" href="http://wp.lab/wp-content/plugins/logic-hop/public/css/display.min.css?ver=2.1.9" type="text/css" media="all">
<!-- login-and-logout-redirect -->
<link rel="stylesheet" id="login-and-logout-redirect-css" href="http://wp.lab/wp-content/plugins/login-and-logout-redirect/public/css/login-and-logout-redirect-public.css?ver=1.0.4" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/login-and-logout-redirect/public/js/login-and-logout-redirect-public.js?ver=1.0.4"></script>
<!-- login-ip-restriction -->
@@ -5699,6 +5795,11 @@
<link rel="stylesheet" id="lucidlms-main-css" href="//wp.lab/wp-content/plugins/lucidlms/assets/css/frontend/main.css?ver=1.0.5" type="text/css" media="all">
<!-- luckywp-cookie-notice-gdpr -->
<link rel="stylesheet" id="lwpcng-main-css" href="http://wp.lab/wp-content/plugins/luckywp-cookie-notice-gdpr/front/assets/main.min.css?ver=1.0.0" type="text/css" media="all">
<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>
<!-- 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>
@@ -5793,6 +5894,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/magic-slider/bxslider/jquery.bxslider.min.js?ver=1.3"></script>
<!-- mailcamp -->
<link rel="stylesheet" id="mailcamp-css" href="http://wp.lab/wp-content/plugins/mailcamp/public/css/mailcamp-public.css?ver=1.3.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailcamp/public/js/mailcamp-public.js?ver=1.3.1"></script>
<!-- mailchimp-subscribe-widget -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailchimp-subscribe-widget/js/mcsw.js?ver=0.9"></script>
@@ -5903,6 +6009,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/massive-visual-builder-page-layout-builder/assets/rating/rating.js?ver=1.0"></script>
<!-- mastalab-comments -->
<link rel="stylesheet" id="mastalab-comments-css" href="http://wp.lab/wp-content/plugins/mastalab-comments/public/css/mastalab_comments-public.css?ver=1.0.10" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mastalab-comments/public/js/mastalab_comments-public.js?ver=1.0.10"></script>
<!-- master-slider -->
<link rel="stylesheet" id="msl-main-css" href="http://wp.lab/wp-content/plugins/master-slider/public/assets/css/masterslider.main.css?ver=3.4.1" type="text/css" media="all">
@@ -6493,6 +6604,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nepali-calendar/assets/js/frontend/nepali-calendar-frontend.min.js?ver=1.0.0"></script>
<!-- neptune-business -->
<link rel="stylesheet" id="neptune-busines-css" href="http://wp.lab/wp-content/plugins/neptune-business/public/css/neptune-busines-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/neptune-business/public/js/neptune-busines-public.js?ver=1.0.0"></script>
<!-- nerd-wp -->
<link rel="stylesheet" id="nerd-wp-css" href="http://wp.lab/wp-content/plugins/nerd-wp/public/css/nerd-wp-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nerd-wp/public/js/nerd-wp-public.js?ver=1.0.0"></script>
@@ -6747,6 +6863,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/olevmedia-shortcodes/assets/js/shortcodes.js?ver=1.1.9"></script>
<!-- onc-master -->
<link rel="stylesheet" id="onc_master-css" href="http://wp.lab/wp-content/plugins/onc-master/public/css/onc_master-public.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/onc-master/public/js/onc_master-public.js?ver=1.0.0"></script>
<!-- one-thousand-nine-hundred-and-ninety-nineify -->
<link rel="stylesheet" id="oneK99ify-css" href="http://wp.lab/wp-content/plugins/one-thousand-nine-hundred-and-ninety-nineify/assets/css/oneK99ify.min.css?ver=0.0.3" type="text/css" media="screen">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/one-thousand-nine-hundred-and-ninety-nineify/assets/js/oneK99ify.min.js?ver=0.0.3"></script>
@@ -6857,6 +6978,13 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/oscar-hotel-booking-engine/assets/js/ohbe-search-ui.js?ver=1.1.1"></script>
<!-- osmapper -->
<link rel="stylesheet" id="ba_map_renderer-css" href="http://wp.lab/wp-content/plugins/osmapper/assets/css/ba_map_renderer.css?ver=1.3.2" type="text/css" media="all">
<link rel="stylesheet" id="ba_map_styles-css" href="http://wp.lab/wp-content/plugins/osmapper/assets/css/ba_map_styles.css?ver=1.3.2" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/osmapper/assets/js/leaflet.js?ver=1.3.2"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/osmapper/assets/js/ba_map_renderer.js?ver=1.3.2"></script>
<!-- ot-flatsome-vertical-menu -->
<link rel="stylesheet" id="ot-vertical-menu-css" href="http://wp.lab/wp-content/plugins/ot-flatsome-vertical-menu/assets/css/ot-vertical-menu.css?ver=1.1.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ot-flatsome-vertical-menu/assets/js/ot-vertical-menu.js?ver=1.1.0"></script>
@@ -6897,6 +7025,23 @@
<link rel="stylesheet" id="pablo-career-icons-css" href="http://wp.lab/wp-content/plugins/pablo-career/src/Plugin/Helper/../../../public/css/dashicons.min.css?ver=1.0.3" type="text/css" media="all">
<!-- page-builder-by-azexo -->
<link rel="stylesheet" id="swiper-css" href="http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/swiper.css?ver=1.27.84" type="text/css" media="all">
<link rel="stylesheet" id="animate-css" href="http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/animate.css?ver=1.27.84" type="text/css" media="all">
<link rel="stylesheet" id="magnific-popup-css" href="http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/magnific-popup.css?ver=1.27.84" type="text/css" media="all">
<link rel="stylesheet" id="azh_frontend-css" href="http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/frontend.css?ver=1.27.84" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/isotope.pkgd.js?ver=1.27.84"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.waypoints.js?ver=1.27.84"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.countdown.js?ver=1.27.84"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.maskedinput.js?ver=1.27.84"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/swiper.js?ver=1.27.84"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.magnific-popup.js?ver=1.27.84"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/scrollReveal.js?ver=1.27.84"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/parallax.js?ver=1.27.84"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/rellax.js?ver=1.27.84"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/frontend.js?ver=1.27.84"></script>
<!-- page-builder-sandwich -->
<link rel="stylesheet" id="PageBuilderSandwich-css" href="http://wp.lab/wp-content/plugins/page-builder-sandwich/page_builder_sandwich/css/style.min.css?ver=4.4.3" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-sandwich/page_builder_sandwich/js/min/frontend-min.js?ver=4.4.3"></script>
@@ -7299,6 +7444,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/portfolio-gallery-by-ims/public/js/ims-portfolio-public.js?ver=1.0.1"></script>
<!-- poshtiban -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/poshtiban/assets/js/poshtiban-public.js?ver=1.1.0"></script>
<!-- post-and-page-builder -->
<link rel="stylesheet" id="boldgrid-fe-css" href="http://wp.lab/wp-content/plugins/post-and-page-builder/assets/css/editor-fe.min.css?ver=1.6.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/post-and-page-builder/assets/js/jquery-stellar/jquery.stellar.js?ver=1.6.1"></script>
@@ -7330,6 +7479,10 @@
<link rel="stylesheet" id="pcs-styles-css" href="http://wp.lab/wp-content/plugins/post-content-shortcodes/styles/default-styles.css?ver=1.0" type="text/css" media="screen">
<!-- post-deadlines -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/post-deadlines/assets/script.js?ver=1.0.0"></script>
<!-- post-display -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/post-display/js/owl.carousel.js?ver=1.0.0"></script>
@@ -8401,6 +8554,11 @@
<link rel="stylesheet" id="sanpop-public-style-css" href="http://wp.lab/wp-content/plugins/search-and-navigation-popup/assets/css/sanpop-public-style.css?ver=1.0" type="text/css" media="all">
<!-- search-cloud-one -->
<link rel="stylesheet" id="sc1-search-css" href="http://wp.lab/wp-content/plugins/search-cloud-one/public/css/sc1-search-public.css?ver=2.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/search-cloud-one/public/js/sc1-search-public.js?ver=2.0.0"></script>
<!-- search-google -->
<link rel="stylesheet" id="search-google-style-css" href="http://wp.lab/wp-content/plugins/search-google/css/search-google.css?ver=1.9" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/search-google/js/search-google.js?ver=1.9"></script>
@@ -9049,6 +9207,7 @@
<!-- smart-overlay -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/smart-overlay/smart-overlay.js?ver=0.7"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/smart-overlay/assets/smart-overlay.js?ver=0.7"></script>
<link rel="stylesheet" id="smart-overlay-css" href="http://wp.lab/wp-content/plugins/smart-overlay/assets/smart-overlay.css?ver=0.7" type="text/css" media="all">
<!-- smart-post-like -->
@@ -10057,6 +10216,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ttt-devices/js/ttt-devices.js?ver=0.4"></script>
<!-- ttv-easy-embed-player -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ttv-easy-embed-player/public/js/twitch-player-public.js?ver=1.0.2"></script>
<!-- turbo-widgets -->
<link rel="stylesheet" id="turbo-widgets-css" href="http://wp.lab/wp-content/plugins/turbo-widgets/public/css/turbo-widgets-public.css?ver=2.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/turbo-widgets/public/js/turbo-widgets-public.js?ver=2.0.0"></script>
@@ -10443,6 +10606,11 @@
<link rel="stylesheet" id="very-simple-slider-style-css" href="http://wp.lab/wp-content/plugins/very-simple-slider/css/very-simple-slider.css?ver=1.0" type="text/css" media="screen">
<!-- vessel -->
<link rel="stylesheet" id="vessel_campaign_style-css" href="http://wp.lab/wp-content/plugins/vessel/css/vessel.css?ver=0.7.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vessel/js/vessel.js?ver=0.7.1"></script>
<!-- video-background -->
<link rel="stylesheet" id="vidbg-frontend-style-css" href="http://wp.lab/wp-content/plugins/video-background/css/pushlabs-vidbg.css?ver=2.6.3" type="text/css" media="all">
@@ -10524,6 +10692,12 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/voice-search/js/voice-search.min%20.js?ver=1.2.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>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vowels-contact-form-with-drag-and-drop/js/jquery.vowels.js?ver=1.0.4"></script>
<!-- voxpress -->
<link rel="stylesheet" id="ubivox-style-public-css" href="http://wp.lab/wp-content/plugins/voxpress/styles/ubivox.public.css?ver=1.1.5" type="text/css" media="">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/voxpress/scripts/ubivox.public.js?ver=1.1.5"></script>
@@ -10941,6 +11115,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-added-to-cart-notification/assets/js/frontend.js?ver=1.0.1"></script>
<!-- woo-ajax-loginregister -->
<link rel="stylesheet" id="zorem-ajax-css" href="http://wp.lab/wp-content/plugins/woo-ajax-loginregister/css/style.css?ver=1.1" type="text/css" media="all">
<!-- woo-align-buttons -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-align-buttons/public/js/wooalign-public.js?ver=3.1.1"></script>
@@ -11216,6 +11394,11 @@
<link rel="stylesheet" id="wordpresscom-stats-smiley-remover-css" href="http://wp.lab/wp-content/plugins/wordpresscom-stats-smiley-remover/css/wordpresscom-stats-smiley-remover.css?ver=15.01" type="text/css" media="all">
<!-- workshop-butler -->
<link rel="stylesheet" id="wsb-themes-css" href="http://wp.lab/wp-content/plugins/workshop-butler/public/css/styles.1.0.2.min.css?ver=2.0.0" type="text/css" media="all">
<link rel="stylesheet" id="wsb-fontawesome-styles-css" href="http://wp.lab/wp-content/plugins/workshop-butler/public/css/fontawesome-all.min.css?ver=2.0.0" type="text/css" media="all">
<!-- world-flags -->
<link rel="stylesheet" id="world_flags_css-css" href="http://wp.lab/wp-content/plugins/world-flags/css/wf.css?ver=1.1" type="text/css" media="screen">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/world-flags/js/wf.jq.js?ver=1.1"></script>
@@ -11428,6 +11611,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-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>
<!-- wp-cirrus -->
<link rel="stylesheet" id="wpcirrus-cloudStyle-css" href="http://wp.lab/wp-content/plugins/wp-cirrus/cirrusCloud.css?ver=0.6.11" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-cirrus/wp_cirrus_gwt/wp_cirrus_gwt.nocache.js?ver=0.6.11"></script>
@@ -11666,6 +11854,17 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-facebook-group/public/js/kankoz-fg-promoter-public.js?ver=1.0.2"></script>
<!-- wp-facebook-review-showcase-lite -->
<link rel="stylesheet" id="wpfrsl-frontend-css-css" href="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/frontend-style.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="wpfrsl-fontawesome-style-css" href="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/font-awesome/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="wpfrsl-elegant-icons-style-css" href="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/elegant-icons/elegant-icons.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="wpfrsl-flaticons-star-style-css" href="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/flat-star-icon/flaticon.css?ver=1.0.0" type="text/css" media="all">
<link rel="stylesheet" id="wpfrsl-bxslider-style-css" href="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/jquery.bxslider.css?ver=1.0.0" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/js/jquery.bxslider.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/js/wow.js?ver=1.0.0"></script>
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/js/frontend-script.js?ver=1.0.0"></script>
<!-- wp-facebook-reviews -->
<link rel="stylesheet" id="wp-review-slider-pro-public_template1-css" href="http://wp.lab/wp-content/plugins/wp-facebook-reviews/public/css/wprev-public_template1.css?ver=3.4" type="text/css" media="all">
<link rel="stylesheet" id="wprev_w3-css" href="http://wp.lab/wp-content/plugins/wp-facebook-reviews/public/css/wprev_w3.css?ver=3.4" type="text/css" media="all">
@@ -11713,6 +11912,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-file-word-counter/public/js/wfwc-public.js?ver=1.0.0"></script>
<!-- wp-film-studio -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-film-studio/assets/js/popper.min.js?ver=1.0.0"></script>
<!-- wp-flexible-map -->
<link rel="stylesheet" id="flxmap-css" href="http://wp.lab/wp-content/plugins/wp-flexible-map/css/styles.css?ver=1.12.1" type="text/css" media="all">
@@ -11860,6 +12063,10 @@
<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-insurance -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-insurance/assets/js/popper.min.js?ver=1.0.0"></script>
<!-- wp-inventory-manager -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-inventory-manager/js/wpinventory.js?ver=1.5.7"></script>
@@ -12740,6 +12947,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp30-by-who/public/js/wp30-by-who-public.js?ver=1.0.0"></script>
<!-- wpac-like-system -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpac-like-system/assets/js/ajax.js?ver=1.0.0"></script>
<!-- wpaudio-mp3-player -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpaudio-mp3-player/wpaudio.min.js?ver=3.1"></script>
@@ -12849,6 +13060,10 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpmerchant/public/js/wpmerchant-public.js?ver=2.0.5"></script>
<!-- wpmk-faq -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpmk-faq/assets/js/wpmk-script.js?ver=1.0.0"></script>
<!-- wpmk-portfolio -->
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpmk-portfolio/assets/js/wpmk-script.js?ver=1.0.0"></script>
@@ -12984,6 +13199,11 @@
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wt-advanced-woocommerce-report/public/js/wt-advanced-woocommerce-report-public.js?ver=1.0.0"></script>
<!-- wt-pocket-navigator -->
<link rel="stylesheet" id="wtpn-pocket-nav-css" href="http://wp.lab/wp-content/plugins/wt-pocket-navigator/public/css/wtpn-pocket-nav-public.css?ver=1.0.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wt-pocket-navigator/public/js/wtpn-pocket-nav-public.js?ver=1.0.1"></script>
<!-- wt-smart-coupons-for-woocommerce -->
<link rel="stylesheet" id="wt-smart-coupon-css" href="http://wp.lab/wp-content/plugins/wt-smart-coupons-for-woocommerce/public/css/wt-smart-coupon-public.css?ver=0.0.1" type="text/css" media="all">
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wt-smart-coupons-for-woocommerce/public/js/wt-smart-coupon-public.js?ver=0.0.1"></script>

View File

@@ -0,0 +1,167 @@
# Copyright (C) 2018 Salive
# This file is distributed under the same license as the Registration For WooCommerce package.
msgid ""
msgstr ""
"Project-Id-Version: Registration For WooCommerce 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-25 13:10:15+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-i18n1.0.2\n"
#: includes/class-registration-for-woocommerce-settings.php:24
#: includes/class-registration-for-woocommerce-settings.php:47
msgid "Registration Form"
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:49
msgid "Settings for woocommerce registration."
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:54
msgid "Layout"
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:55
msgid "Layout to appear woocommerce registration form in frontend."
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:69
msgid "Include WooCommerce Billing Fields"
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:70
#: includes/class-registration-for-woocommerce-settings.php:82
#: includes/class-registration-for-woocommerce-settings.php:116
msgid "Billing Fields to appear in woocommerce registration form."
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:81
msgid "Required (*) Billing Fields"
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:93
msgid "Different Shipping"
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:94
msgid "Show ship to different address checkbox field"
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:103
msgid "Include WooCommerce Shipping Fields"
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:104
msgid "Shipping Fields to appear in woocommerce registration form."
msgstr ""
#: includes/class-registration-for-woocommerce-settings.php:115
msgid "Required (*) Shipping Fields"
msgstr ""
#: includes/class-registration-for-woocommerce.php:46
#: includes/class-registration-for-woocommerce.php:55
msgid "Cheatin&#8217; huh?"
msgstr ""
#: includes/class-registration-for-woocommerce.php:151
msgid "Please install woocommerce plugin to use registration-for-woocommerce addon."
msgstr ""
#: includes/functions-registration-for-woocommerce.php:57
msgid "Billing Address"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:68
#: includes/functions-registration-for-woocommerce.php:121
#: includes/functions-registration-for-woocommerce.php:160
#: includes/functions-registration-for-woocommerce.php:181
msgid "Country"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:70
#: includes/functions-registration-for-woocommerce.php:123
msgid "Select a country&hellip;"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:101
msgid "Ship to different address"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:110
msgid "Shipping Address"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:154
#: includes/functions-registration-for-woocommerce.php:175
msgid "Title"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:155
#: includes/functions-registration-for-woocommerce.php:176
msgid "First Name"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:156
#: includes/functions-registration-for-woocommerce.php:177
msgid "Last Name"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:157
#: includes/functions-registration-for-woocommerce.php:178
msgid "Company"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:158
#: includes/functions-registration-for-woocommerce.php:179
msgid "Address 1"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:159
#: includes/functions-registration-for-woocommerce.php:180
msgid "Address 2"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:161
#: includes/functions-registration-for-woocommerce.php:182
msgid "City"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:162
#: includes/functions-registration-for-woocommerce.php:183
msgid "State"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:163
#: includes/functions-registration-for-woocommerce.php:184
msgid "Postcode"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:164
msgid "Email"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:165
msgid "Phone"
msgstr ""
#: includes/functions-registration-for-woocommerce.php:234
msgid "is a required field."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Registration For WooCommerce"
msgstr ""
#. Description of the plugin/theme
msgid "Extended registration form for woocommerce"
msgstr ""
#. Author of the plugin/theme
msgid "Salive"
msgstr ""

View File

@@ -0,0 +1,363 @@
# Copyright (C) 2018 Responsive horizontal vertical and accordion Tabs
# This file is distributed under the same license as the Responsive horizontal vertical and accordion Tabs package.
msgid ""
msgstr ""
"Project-Id-Version: Responsive horizontal vertical and accordion Tabs 1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-best-"
"responsive-tabs\n"
"POT-Creation-Date: 2018-10-11 16:17:13+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-best-responsive-tabs.php:102
msgid "Responsive Tabs"
msgstr ""
#: wp-best-responsive-tabs.php:103
msgid "Tab Sets"
msgstr ""
#: wp-best-responsive-tabs.php:104 wp-best-responsive-tabs.php:404
#: wp-best-responsive-tabs.php:464
msgid "Manage Tabs"
msgstr ""
#: wp-best-responsive-tabs.php:105
msgid "Preview Slider"
msgstr ""
#: wp-best-responsive-tabs.php:105
msgid "Preview Tabs"
msgstr ""
#: wp-best-responsive-tabs.php:282 wp-best-responsive-tabs.php:706
#: wp-best-responsive-tabs.php:1182 wp-best-responsive-tabs.php:1755
msgid "UPGRADE TO PRO VERSION"
msgstr ""
#: wp-best-responsive-tabs.php:304
msgid "Manage Tab Sets"
msgstr ""
#: wp-best-responsive-tabs.php:304 wp-best-responsive-tabs.php:1289
msgid "Add New"
msgstr ""
#: wp-best-responsive-tabs.php:311 wp-best-responsive-tabs.php:492
#: wp-best-responsive-tabs.php:1298 wp-best-responsive-tabs.php:1516
msgid "Bulk Actions"
msgstr ""
#: wp-best-responsive-tabs.php:312 wp-best-responsive-tabs.php:493
#: wp-best-responsive-tabs.php:1299
msgid "delete"
msgstr ""
#: wp-best-responsive-tabs.php:314 wp-best-responsive-tabs.php:496
#: wp-best-responsive-tabs.php:1300 wp-best-responsive-tabs.php:1520
msgid "Apply"
msgstr ""
#: wp-best-responsive-tabs.php:336 wp-best-responsive-tabs.php:338
#: wp-best-responsive-tabs.php:1364 wp-best-responsive-tabs.php:1366
msgid "Search"
msgstr ""
#: wp-best-responsive-tabs.php:339 wp-best-responsive-tabs.php:1367
msgid "Reset Search"
msgstr ""
#: wp-best-responsive-tabs.php:372 wp-best-responsive-tabs.php:375
#: wp-best-responsive-tabs.php:377 wp-best-responsive-tabs.php:460
#: wp-best-responsive-tabs.php:1397 wp-best-responsive-tabs.php:1400
#: wp-best-responsive-tabs.php:1402 wp-best-responsive-tabs.php:1480
msgid "Id"
msgstr ""
#: wp-best-responsive-tabs.php:383 wp-best-responsive-tabs.php:386
#: wp-best-responsive-tabs.php:388 wp-best-responsive-tabs.php:461
#: wp-best-responsive-tabs.php:745
msgid "Name"
msgstr ""
#: wp-best-responsive-tabs.php:394 wp-best-responsive-tabs.php:397
#: wp-best-responsive-tabs.php:399 wp-best-responsive-tabs.php:462
msgid "Created On"
msgstr ""
#: wp-best-responsive-tabs.php:403
msgid "Shortcode"
msgstr ""
#: wp-best-responsive-tabs.php:405 wp-best-responsive-tabs.php:465
#: wp-best-responsive-tabs.php:1440 wp-best-responsive-tabs.php:1489
msgid "Edit"
msgstr ""
#: wp-best-responsive-tabs.php:406 wp-best-responsive-tabs.php:466
#: wp-best-responsive-tabs.php:1441 wp-best-responsive-tabs.php:1490
#: wp-best-responsive-tabs.php:1517
msgid "Delete"
msgstr ""
#: wp-best-responsive-tabs.php:459
msgid "Select Record"
msgstr ""
#: wp-best-responsive-tabs.php:463
msgid "ShortCode"
msgstr ""
#: wp-best-responsive-tabs.php:472 wp-best-responsive-tabs.php:1498
msgid "No Records"
msgstr ""
#: wp-best-responsive-tabs.php:472
msgid "No Tab Sets Found"
msgstr ""
#: wp-best-responsive-tabs.php:510
msgid ""
"Are you sure you want to delete selected tabs Sets ? All tabs related to "
"this tab Sets also removed."
msgstr ""
#: wp-best-responsive-tabs.php:519
msgid ""
"Are you sure you want to delete this tab sets ? All tabs related to this "
"sets also removed."
msgstr ""
#: wp-best-responsive-tabs.php:532 wp-best-responsive-tabs.php:950
#: wp-best-responsive-tabs.php:1563 wp-best-responsive-tabs.php:1950
msgid "Access All Themes In One Price"
msgstr ""
#: wp-best-responsive-tabs.php:543
msgid "Recommended WordPress Plugin"
msgstr ""
#: wp-best-responsive-tabs.php:602
msgid "Tab set updated successfully."
msgstr ""
#: wp-best-responsive-tabs.php:615
msgid "Tab set added successfully."
msgstr ""
#: wp-best-responsive-tabs.php:730
msgid "Update Tab Set"
msgstr ""
#: wp-best-responsive-tabs.php:734
msgid "Add Tab Set"
msgstr ""
#: wp-best-responsive-tabs.php:758
msgid "Type"
msgstr ""
#: wp-best-responsive-tabs.php:764 wp-best-responsive-tabs.php:2121
msgid "Select"
msgstr ""
#: wp-best-responsive-tabs.php:766
msgid "Responsive Horizontal Tabs"
msgstr ""
#: wp-best-responsive-tabs.php:767
msgid "Responsive Vertical Tabs"
msgstr ""
#: wp-best-responsive-tabs.php:768
msgid "Responsive Accordion Tabs"
msgstr ""
#: wp-best-responsive-tabs.php:782
msgid "Active Tab Background Color"
msgstr ""
#: wp-best-responsive-tabs.php:796
msgid "Inactive Tab Background Color"
msgstr ""
#: wp-best-responsive-tabs.php:811
msgid "Border Color"
msgstr ""
#: wp-best-responsive-tabs.php:826
msgid "Tab font color"
msgstr ""
#: wp-best-responsive-tabs.php:840
msgid "Active Tab font color"
msgstr ""
#: wp-best-responsive-tabs.php:854
msgid "Tab Content color"
msgstr ""
#: wp-best-responsive-tabs.php:872 wp-best-responsive-tabs.php:1870
msgid "Save Changes"
msgstr ""
#: wp-best-responsive-tabs.php:874 wp-best-responsive-tabs.php:1872
msgid "Cancel"
msgstr ""
#: wp-best-responsive-tabs.php:961
msgid "Speed Test For Your WP"
msgstr ""
#: wp-best-responsive-tabs.php:1018
msgid "Tab set deleted successfully."
msgstr ""
#: wp-best-responsive-tabs.php:1025
msgid "Error while deleting tab set."
msgstr ""
#: wp-best-responsive-tabs.php:1076
msgid "Selected tab sets deleted successfully."
msgstr ""
#: wp-best-responsive-tabs.php:1083
msgid "Error while deleting tab sets."
msgstr ""
#: wp-best-responsive-tabs.php:1115
msgid ""
"Please select tab set. Click on \"Manage Tabs\" of your desired tab set."
msgstr ""
#: wp-best-responsive-tabs.php:1289
msgid "Tabs"
msgstr ""
#: wp-best-responsive-tabs.php:1408 wp-best-responsive-tabs.php:1411
#: wp-best-responsive-tabs.php:1413 wp-best-responsive-tabs.php:1481
msgid "Title"
msgstr ""
#: wp-best-responsive-tabs.php:1418 wp-best-responsive-tabs.php:1421
#: wp-best-responsive-tabs.php:1423 wp-best-responsive-tabs.php:1487
msgid "Display Order"
msgstr ""
#: wp-best-responsive-tabs.php:1430 wp-best-responsive-tabs.php:1433
#: wp-best-responsive-tabs.php:1435 wp-best-responsive-tabs.php:1488
msgid "Published On"
msgstr ""
#: wp-best-responsive-tabs.php:1498
msgid "No Tabs"
msgstr ""
#: wp-best-responsive-tabs.php:1535
msgid "Are you sure you want to delete selected tabs?"
msgstr ""
#: wp-best-responsive-tabs.php:1544
msgid "Are you sure you want to delete this tab?"
msgstr ""
#: wp-best-responsive-tabs.php:1554 wp-best-responsive-tabs.php:1941
msgid "Google For Business Coupon"
msgstr ""
#: wp-best-responsive-tabs.php:1583 wp-best-responsive-tabs.php:2137
msgid "To print this tab sets into WordPress Post/Page use below code"
msgstr ""
#: wp-best-responsive-tabs.php:1589 wp-best-responsive-tabs.php:2140
msgid ""
"To print this tab sets into WordPress theme/template PHP files use below code"
msgstr ""
#: wp-best-responsive-tabs.php:1675
msgid "Tab updated successfully."
msgstr ""
#: wp-best-responsive-tabs.php:1682
msgid "Error while updating tab"
msgstr ""
#: wp-best-responsive-tabs.php:1712
msgid "New tab added successfully."
msgstr ""
#: wp-best-responsive-tabs.php:1720
msgid "Error while adding tab"
msgstr ""
#: wp-best-responsive-tabs.php:1779
msgid "Update Tab"
msgstr ""
#: wp-best-responsive-tabs.php:1789
msgid "Add Tab"
msgstr ""
#: wp-best-responsive-tabs.php:1801
msgid "Tab Title"
msgstr ""
#: wp-best-responsive-tabs.php:1817
msgid "Tab Order"
msgstr ""
#: wp-best-responsive-tabs.php:1835
msgid "Tab Content"
msgstr ""
#: wp-best-responsive-tabs.php:1849 wp-best-responsive-tabs.php:1854
msgid "Is Default Selected Tab?"
msgstr ""
#: wp-best-responsive-tabs.php:2010
msgid "Tab deleted successfully."
msgstr ""
#: wp-best-responsive-tabs.php:2017
msgid "Error while deleting tab."
msgstr ""
#: wp-best-responsive-tabs.php:2058
msgid "selected tabs deleted successfully."
msgstr ""
#: wp-best-responsive-tabs.php:2067
msgid "Error while deleting tabs."
msgstr ""
#: wp-best-responsive-tabs.php:2117
msgid "Tabs Preview"
msgstr ""
#: wp-best-responsive-tabs.php:2119
msgid "Select Tab Set"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Responsive horizontal vertical and accordion Tabs"
msgstr ""
#. Plugin URI of the plugin/theme
msgid ""
"https://www.i13websolution.com/best-wordpress-responsive-tabs-plugin.html"
msgstr ""
#. Description of the plugin/theme
msgid ""
"This is beautiful responsive all in one tabs for wordpress sites/blogs. Add "
"any number of tabs sets to your site. your tabs sets will be ready within "
"few min."
msgstr ""
#. Author of the plugin/theme
msgid "I Thirteen Web Solution"
msgstr ""

View File

@@ -0,0 +1,60 @@
# Copyright (C) 2018 Rontar Blog Retargeting
# This file is distributed under the same license as the Rontar Blog Retargeting package.
msgid ""
msgstr ""
"Project-Id-Version: Rontar Blog Retargeting 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/rontar-blog-retargeting\n"
"POT-Creation-Date: 2018-10-13 17:28:14+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"
#: admin/Class_Admin.php:75
msgid "Rontar Blog Retargeting"
msgstr ""
#: admin/Class_Admin.php:82 admin/Class_Admin.php:147
msgid "Enable"
msgstr ""
#: admin/Class_Admin.php:93 admin/Class_Admin.php:99
msgid "Advertiser ID"
msgstr ""
#: admin/Class_Admin.php:106 admin/Class_Admin.php:112
msgid "Feed ID"
msgstr ""
#: admin/Class_Admin.php:119 admin/Class_Admin.php:125
msgid "Audience ID"
msgstr ""
#: admin/Class_Admin.php:132 admin/Class_Admin.php:138
msgid "Blog Feed URL"
msgstr ""
#: admin/Class_Admin.php:157
msgid "Enable Rontar Blog Retargeting"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Rontar Blog Retargeting"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://rontar.com/"
msgstr ""
#. Description of the plugin/theme
msgid "Rontar blog feed and retargeting pixel easy integration."
msgstr ""
#. Author of the plugin/theme
msgid "Slava Velikiy <slava@rontar.com>"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://rontar.com/"
msgstr ""

View File

@@ -0,0 +1,35 @@
# Copyright (C) 2018 Pablo Cianes
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Simple Shortcode Block 1.0.0\n"
"Report-Msgid-Bugs-To: "
"http://wordpress.org/support/plugin/simple-shortcode-block\n"
"POT-Creation-Date: 2018-10-08 19:13:14+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"
#: gutenberg/class-simple-shortcode-block-gutenberg.php:180
msgid "Please, set here the [shortcode] to render"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Simple Shortcode Block"
msgstr ""
#. Description of the plugin/theme
msgid "A simple block to render a shortcode in a dynamic way."
msgstr ""
#. Author of the plugin/theme
msgid "Pablo Cianes"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://pablocianes.com/"
msgstr ""

View File

@@ -0,0 +1,72 @@
# Plugin Name: SIWECOS
# Plugin URI: https://www.siwecos.de
# Version: 1.0.0
# Description: Validate your Wordpress site against the SIWECOS.de security check
# Author: SIWECOS.de
# Author URI: https:/www.siwecos.de
# License: GPL2
#
# SIWECOS is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# any later version.
#
# SIWECOS is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with SIWECOS. If not, see http://www.gnu.org/licenses/gpl-2.0.html file.
msgid ""
msgstr ""
"Project-Id-Version: SIWECOS WordPress Pot v1.0.0\n"
"Report-Msgid-Bugs-To: SIWECOS <technik@siwecos.de>\n"
"POT-Creation-Date: 2018-10-12 11:27+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: SIWECOS <technik@siwecos.de\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2;_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
"X-Poedit-Basepath: ..\n"
"X-Generator: Poedit 2.2\n"
"X-Poedit-SearchPath-0: .\n"
#: output/form.php:39
msgid "Email"
msgstr "E-Mail"
#: output/form.php:43
msgid "Password"
msgstr "Passwort"
#: output/form.php:50
msgid "Register on siwecos.de"
msgstr "Auf siwecos.de registrieren"
#: output/validation.php:34
msgid "The scan is in progress, please refresh the page and try again"
msgstr ""
"Der Scan Ihrer Seite läuft, bitte aktualisieren Sie die Seite in "
"einigen Minuten"
#: output/validation.php:41
msgid "Result"
msgstr "Ergebnis"
#: output/validation.php:53
msgid "Open siwecos.de"
msgstr "SIWECOS.de öffnen"
#: output/validation.php:54
msgid "Scan again"
msgstr "Erneut scannen"

View File

@@ -0,0 +1,87 @@
# Copyright (C) 2018 Sophia Twitter Auto Post
# This file is distributed under the same license as the Sophia Twitter Auto Post package.
msgid ""
msgstr ""
"Project-Id-Version: Sophia Twitter Auto Post 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sophia-post-to-"
"twitter\n"
"POT-Creation-Date: 2018-09-28 17:52:52+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"
#: admin/options-init.php:131
msgid "Plugin Options"
msgstr ""
#: admin/options-init.php:133
msgid "Set plugins options."
msgstr ""
#: admin/options-init.php:139
msgid "Plugin status"
msgstr ""
#: admin/options-init.php:140
msgid "Enable or Disable post to twitter"
msgstr ""
#: admin/options-init.php:158
msgid "Twitter Options"
msgstr ""
#: admin/options-init.php:160
msgid "Twitter App keys."
msgstr ""
#: admin/options-init.php:166
msgid "Consumer Key"
msgstr ""
#: admin/options-init.php:167
msgid "Consumer key of your twitter app."
msgstr ""
#: admin/options-init.php:172
msgid "Consumer Secret"
msgstr ""
#: admin/options-init.php:173
msgid "Consumer secret of your twitter app."
msgstr ""
#: admin/options-init.php:178
msgid "Access Token"
msgstr ""
#: admin/options-init.php:179
msgid "Access token of your twitter app."
msgstr ""
#: admin/options-init.php:184
msgid "Access Token Secret"
msgstr ""
#: admin/options-init.php:185
msgid "Access token secret of your twitter app."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "Sophia Twitter Auto Post"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Plugin to send new posts to twitter using the codebird twitter auth library"
msgstr ""
#. Author of the plugin/theme
msgid "Jordi Cuevas"
msgstr ""
#. Author URI of the plugin/theme
msgid "@jordicuevas"
msgstr ""

View File

@@ -0,0 +1,189 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: WC 18app 0.9.0\n"
"POT-Creation-Date: 2018-10-17 22:48+0200\n"
"PO-Revision-Date: 2018-07-02 12:47+0200\n"
"Last-Translator: \n"
"Language-Team: ilGhera\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.0.6\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-KeywordsList: _;__\n"
"X-Poedit-SearchPath-0: .\n"
#: includes/class-18app-admin.php:17
msgid "WooCommerce 18app - Impostazioni"
msgstr ""
#: includes/class-18app-admin.php:17
msgid "WC 18app"
msgstr ""
#: includes/class-18app-admin.php:166
msgid "Impostazioni"
msgstr ""
#: includes/class-18app-admin.php:171
msgid "Certificato"
msgstr ""
#: includes/class-18app-admin.php:172
msgid "Opzioni"
msgstr ""
#: includes/class-18app-admin.php:179
msgid "Carica il tuo certificato"
msgstr ""
#: includes/class-18app-admin.php:180
msgid ""
"Se sei già in posseso di un certificato non devi fare altro che caricarlo, "
"nient'altro."
msgstr ""
#: includes/class-18app-admin.php:187
msgid "Carica certificato"
msgstr ""
#: includes/class-18app-admin.php:196 includes/class-18app-admin.php:204
msgid "Elimina"
msgstr ""
#: includes/class-18app-admin.php:197
msgid "File caricato e attivato correttamente."
msgstr ""
#: includes/class-18app-admin.php:205
#, php-format
msgid "L'attivazione del certificato ha restituito il seguente errore: %s"
msgstr ""
#: includes/class-18app-admin.php:213
msgid "Carica il certificato (.pem) necessario alla connessione con 18app"
msgstr ""
#: includes/class-18app-admin.php:229
msgid "Richiedi un certificato"
msgstr ""
#: includes/class-18app-admin.php:230
msgid ""
"Con questo strumento puoi generare un file .der necessario per richiedere il "
"tuo certificato su 18app."
msgstr ""
#: includes/class-18app-admin.php:235
msgid "Stato"
msgstr ""
#: includes/class-18app-admin.php:241
msgid "Provincia"
msgstr ""
#: includes/class-18app-admin.php:247
msgid "Località"
msgstr ""
#: includes/class-18app-admin.php:253
msgid "Nome azienda"
msgstr ""
#: includes/class-18app-admin.php:259
msgid "Reparto azienda"
msgstr ""
#: includes/class-18app-admin.php:265
msgid "Nome"
msgstr ""
#: includes/class-18app-admin.php:271
msgid "Email"
msgstr ""
#: includes/class-18app-admin.php:277
msgid "Password"
msgstr ""
#: includes/class-18app-admin.php:286
msgid "Scarica file .der"
msgstr ""
#: includes/class-18app-admin.php:295
msgid "Crea il tuo certificato"
msgstr ""
#: includes/class-18app-admin.php:296
msgid ""
"Con questo ultimo passaggio, potrai iniziare a ricevere pagamenti attraverso "
"buoni 18app."
msgstr ""
#: includes/class-18app-admin.php:303
msgid "Genera certificato"
msgstr ""
#: includes/class-18app-admin.php:307
msgid "Carica il file .cer ottenuto da 18app per procedere"
msgstr ""
#: includes/class-18app-admin.php:331
msgid "Categorie"
msgstr ""
#: includes/class-18app-admin.php:346
msgid "Seleziona le categorie di prodotti corrispondenti ai beni acquistabili."
msgstr ""
#: includes/class-18app-admin.php:351
msgid "Utilizzo immagine "
msgstr ""
#: includes/class-18app-admin.php:355
msgid "Mostra il logo 18app nella pagine di checkout."
msgstr ""
#: includes/class-18app-admin.php:386
msgid "ATTENZIONE! Il file caricato non sembra essere un certificato valido."
msgstr ""
#: includes/class-18app-gateway.php:40
msgid "Enable/Disable"
msgstr ""
#: includes/class-18app-gateway.php:42
msgid "Abilita pagamento con buono 18app"
msgstr ""
#: includes/class-18app-gateway.php:46
msgid "Title"
msgstr ""
#: includes/class-18app-gateway.php:48
msgid "This controls the title which the user sees during checkout."
msgstr ""
#: includes/class-18app-gateway.php:49 includes/class-18app-gateway.php:139
msgid "Buono 18app"
msgstr ""
#: includes/class-18app-gateway.php:53
msgid "Messaggio utente"
msgstr ""
#: includes/class-18app-gateway.php:70
msgid "Inserisci qui il tuo codice"
msgstr ""
#: includes/class-18app-gateway.php:180
msgid ""
"Uno o più prodotti nel carrello non sono acquistabili con il buono inserito."
msgstr ""
#: includes/class-18app-gateway.php:239
msgid "<b>Buono 18app</b> - "
msgstr ""

View File

@@ -0,0 +1,115 @@
# Copyright (C) 2018 pluginever
# This file is distributed under the GPLv2+.
msgid ""
msgstr ""
"Project-Id-Version: WC Min Max Quantities 1.0.0\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/wc-min-max-quantities\n"
"POT-Creation-Date: 2018-10-07 10:11:57+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
"X-Generator: grunt-wp-i18n1.0.2\n"
#: includes/admin/class-metabox.php:14
msgid "Product Min Quantity"
msgstr ""
#: includes/admin/class-metabox.php:19
msgid ""
"Enter a quantity to prevent user from buying this product if they have "
"fewer than the allowed quantity in their cart."
msgstr ""
#: includes/admin/class-metabox.php:26
msgid "Product Max Quantity"
msgstr ""
#: includes/admin/class-metabox.php:29
msgid ""
"Enter a quantity to prevent user from buying this product if they have "
"more than the allowed quantity in their cart."
msgstr ""
#: includes/admin/class-metabox.php:35
msgid "Ignore Global MinMax Rules"
msgstr ""
#: includes/admin/class-metabox.php:38
msgid "Exclude this product from global minimum/maximum order quantity/value rules."
msgstr ""
#: includes/admin/class-settings.php:15
msgid "Min/Max Quantities"
msgstr ""
#: includes/admin/class-settings.php:18
msgid "Minimum Order Quantity"
msgstr ""
#: includes/admin/class-settings.php:24
msgid "Maximum Order Quantity"
msgstr ""
#: includes/admin/class-settings.php:30
msgid "Minimum Order Value"
msgstr ""
#: includes/admin/class-settings.php:36
msgid "Maximum Order Value"
msgstr ""
#: includes/class-user-cart.php:50 includes/class-user-cart.php:106
msgid "You have to buy at least %s quantities of %s"
msgstr ""
#: includes/class-user-cart.php:57 includes/class-user-cart.php:115
msgid "You can't buy more than %s quantities of %s"
msgstr ""
#: includes/class-user-cart.php:66
msgid "Quantity of products in cart must be %s or more "
msgstr ""
#: includes/class-user-cart.php:73
msgid "Quantity of products in cart must not be more than %s "
msgstr ""
#: includes/class-user-cart.php:80
msgid "Minimum cart total should be %s or more"
msgstr ""
#: includes/class-user-cart.php:87
msgid "Maximum cart total can not be more than %s "
msgstr ""
#: wc-min-max-quantities.php:98
msgid "Cloning is forbidden."
msgstr ""
#: wc-min-max-quantities.php:107
msgid "Unserializing instances of this class is forbidden."
msgstr ""
#. Plugin Name of the plugin/theme
msgid "WC Min Max Quantities"
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://www.pluginever.com/wc-minmax-qunatities"
msgstr ""
#. Description of the plugin/theme
msgid "The Best WordPress Plugin ever made!"
msgstr ""
#. Author of the plugin/theme
msgid "pluginever"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://www.pluginever.com"
msgstr ""

View File

@@ -0,0 +1,758 @@
# Copyright (C) 2018 ApusPayments
# This file is distributed under the GPLv3 or later.
msgid ""
msgstr ""
"Project-Id-Version: WooCommerce ApusPayments 2.13.1\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/woocommerce-ApusPayments\n"
"POT-Creation-Date: 2018-08-03 20:47:22+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/admin/views/html-admin-help-message.php:14
msgid ""
"Help us keep the %s plugin free making a donation or rate %s on "
"WordPress.org. Thank you in advance!"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "WooCommerce ApusPayments"
msgstr ""
#: includes/admin/views/html-admin-help-message.php:15
msgid "Make a donation"
msgstr ""
#: includes/admin/views/html-admin-help-message.php:15
msgid "Make a review"
msgstr ""
#: includes/admin/views/html-notice-currency-not-supported.php:15
#: includes/admin/views/html-notice-email-missing.php:15
#: includes/admin/views/html-notice-token-missing.php:15
msgid "ApusPayments Disabled"
msgstr ""
#: includes/admin/views/html-notice-currency-not-supported.php:15
msgid "Currency <code>%s</code> is not supported. Works only with Brazilian Real."
msgstr ""
#: includes/admin/views/html-notice-email-missing.php:15
msgid "You should inform your email address."
msgstr ""
#: includes/admin/views/html-notice-missing-ecfb.php:22
msgid "depends on the last version of Extra Checkout Fields for Brazil to work!"
msgstr ""
#: includes/admin/views/html-notice-missing-ecfb.php:25
msgid "Active Extra Checkout Fields for Brazil"
msgstr ""
#: includes/admin/views/html-notice-missing-ecfb.php:33
msgid "Install Extra Checkout Fields for Brazil"
msgstr ""
#: includes/admin/views/html-notice-missing-woocommerce.php:22
msgid "depends on the last version of WooCommerce to work!"
msgstr ""
#: includes/admin/views/html-notice-missing-woocommerce.php:25
msgid "Active WooCommerce"
msgstr ""
#: includes/admin/views/html-notice-missing-woocommerce.php:33
msgid "Install WooCommerce"
msgstr ""
#: includes/admin/views/html-notice-token-missing.php:15
msgid "You should inform your token."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:151
#: includes/class-wc-ApusPayments-gateway.php:258
#: templates/transparent-checkout-form.php:19
msgid "Credit Card"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:152
msgid "Billet"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:153
#: includes/class-wc-ApusPayments-gateway.php:264
#: templates/transparent-checkout-form.php:23
msgid "Bank Transfer"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:154
#: includes/class-wc-ApusPayments-api.php:203
msgid "ApusPayments credit"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:155
#: includes/class-wc-ApusPayments-api.php:204
msgid "Oi Paggo"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:156
#: includes/class-wc-ApusPayments-api.php:205
msgid "Account deposit"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:159
#: includes/class-wc-ApusPayments-api.php:208
msgid "Unknown"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:170
msgid "Credit Card %s"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:171
msgid "Billet %s"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:172
msgid "Bank Transfer %s"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:239
#: includes/class-wc-ApusPayments-api.php:240
#: includes/class-wc-ApusPayments-api.php:241
#: includes/class-wc-ApusPayments-api.php:242
#: includes/class-wc-ApusPayments-api.php:243
#: includes/class-wc-ApusPayments-api.php:244
msgid "Please enter with a valid phone number with DDD. Example: (11) 5555-5555."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:245
#: includes/class-wc-ApusPayments-api.php:246
#: includes/class-wc-ApusPayments-api.php:247
#: includes/class-wc-ApusPayments-api.php:248
#: includes/class-wc-ApusPayments-api.php:249
msgid "Please enter with a valid zip code number."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:250
msgid "Please enter with a valid CPF number."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:252
msgid "Please select a bank to make payment by bank transfer."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:253
msgid "Credit card holder CPF is required."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:254
msgid "Credit card holder birthdate is required."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:255
msgid "Credit card holder name is required."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:256
#: includes/class-wc-ApusPayments-api.php:257
msgid "Credit card holder phone is required."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:258
#: includes/class-wc-ApusPayments-api.php:259
msgid "The address complement is too long, it cannot be more than 40 characters."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:260
msgid "<strong>Neighborhood</strong> is a required field."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:261
msgid "Credit card holder CPF invalid."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:262
msgid ""
"Invalid email domain. You must use an email @sandbox.ApusPayments.com.br while "
"you are using the ApusPayments Sandbox."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:263
msgid "The customer email can not be the same as the ApusPayments account owner."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:270
msgid ""
"An error has occurred while processing your payment, please review your "
"data and try again. Or contact us for assistance."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:379
msgid "Order %s"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:611
msgid ""
"Too bad! The email or token from the ApusPayments are invalids my little "
"friend!"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:648
#: includes/class-wc-ApusPayments-api.php:668
#: includes/class-wc-ApusPayments-api.php:690
#: includes/class-wc-ApusPayments-api.php:750
#: includes/class-wc-ApusPayments-api.php:770
#: includes/class-wc-ApusPayments-gateway.php:24
#: includes/class-wc-ApusPayments-gateway.php:190
msgid "ApusPayments"
msgstr ""
#: includes/class-wc-ApusPayments-api.php:668
#: includes/class-wc-ApusPayments-api.php:770
msgid ""
"An error has occurred while processing your payment, please try again. Or "
"contact us for assistance."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:690
msgid "Please, select a payment method."
msgstr ""
#: includes/class-wc-ApusPayments-api.php:716
msgid ""
"You are not allowed to use the ApusPayments Transparent Checkout. Looks like "
"you neglected to installation guide of this plugin. This is not pretty, do "
"you know?"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:25
msgid ""
"Accept payments by credit card, bank debit or banking ticket using the "
"ApusPayments."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:26
msgid "Proceed to payment"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:149
msgid "interest free"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:150
msgid "Invalid credit card number."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:151
msgid "Invalid expiry date, please use the MM / YYYY date format."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:152
msgid "Please check the expiry date and use a valid format as MM / YYYY."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:153
msgid ""
"Unable to process the data from your credit card on the ApusPayments, please "
"try again or contact us for assistance."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:154
msgid "Select a number of installments."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:168
msgid "System Status &gt; Logs"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:180
msgid "Enable/Disable"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:182
msgid "Enable ApusPayments"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:186
msgid "Title"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:188
msgid "This controls the title which the user sees during checkout."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:193
msgid "Description"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:195
msgid "This controls the description which the user sees during checkout."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:196
#: templates/lightbox-checkout.php:19
msgid "Pay via ApusPayments"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:199
msgid "Integration"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:204
msgid "Integration method"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:206
msgid ""
"Choose how the customer will interact with the ApusPayments. Redirect (Client "
"goes to ApusPayments page) or Lightbox (Inside your store)"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:211
msgid "Redirect (default)"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:212
msgid "Lightbox"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:213
msgid "Transparent Checkout"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:217
msgid "ApusPayments Sandbox"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:219
msgid "Enable ApusPayments Sandbox"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:222
msgid "ApusPayments Sandbox can be used to test the payments."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:225
msgid "ApusPayments Email"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:227
msgid ""
"Please enter your ApusPayments email address. This is needed in order to take "
"payment."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:232
msgid "ApusPayments Token"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:235
#. translators: %s: link to ApusPayments settings
msgid ""
"Please enter your ApusPayments token. This is needed to process the payment "
"and notifications. Is possible generate a new token %s."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:235
#: includes/class-wc-ApusPayments-gateway.php:242
#: includes/class-wc-ApusPayments-gateway.php:249
msgid "here"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:239
msgid "ApusPayments Sandbox Email"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:242
#. translators: %s: link to ApusPayments settings
msgid ""
"Please enter your ApusPayments sandbox email address. You can get your sandbox "
"email %s."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:246
msgid "ApusPayments Sandbox Token"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:249
#. translators: %s: link to ApusPayments settings
msgid ""
"Please enter your ApusPayments sandbox token. You can get your sandbox token "
"%s."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:253
msgid "Transparent Checkout Options"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:260
msgid "Enable Credit Card for Transparente Checkout"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:266
msgid "Enable Bank Transfer for Transparente Checkout"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:270
#: templates/transparent-checkout-form.php:27
msgid "Banking Ticket"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:272
msgid "Enable Banking Ticket for Transparente Checkout"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:276
msgid "Banking Ticket Tax Message"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:278
msgid ""
"Display a message alerting the customer that will be charged R$ 1,00 for "
"payment by Banking Ticket"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:282
msgid "Integration Behavior"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:287
msgid "Send only the order total"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:289
msgid ""
"If this option is enabled will only send the order total, not the list of "
"items."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:293
msgid "Invoice Prefix"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:295
msgid ""
"Please enter a prefix for your invoice numbers. If you use your ApusPayments "
"account for multiple stores ensure this prefix is unqiue as ApusPayments will "
"not allow orders with the same invoice number."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:300
msgid "Gateway Testing"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:305
msgid "Debug Log"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:307
msgid "Enable logging"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:310
#. translators: %s: log page link
msgid "Log ApusPayments events, such as API requests, inside %s"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:475
msgid "ApusPayments Request Unauthorized"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:495
msgid "Payer email"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:498
msgid "Payer name"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:503
msgid "Payment type"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:508
msgid "Payment method"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:513
#: templates/transparent-checkout-form.php:53
msgid "Installments"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:518
msgid "Payment URL"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:521
msgid "Intermediation Rate"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:524
msgid "Intermediation Fee"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:571
msgid ""
"ApusPayments: The buyer initiated the transaction, but so far the ApusPayments "
"not received any payment information."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:575
msgid "ApusPayments: Payment under review."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:586
#: includes/class-wc-ApusPayments-gateway.php:589
msgid "ApusPayments: Payment approved."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:597
msgid "ApusPayments: Payment completed and credited to your account."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:601
msgid "ApusPayments: Payment came into dispute."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:604
#. translators: %s: order number
msgid "Payment for order %s came into dispute"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:605
msgid "Payment in dispute"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:607
#. translators: %s: order number
msgid ""
"Order %s has been marked as on-hold, because the payment came into dispute "
"in ApusPayments."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:612
msgid "ApusPayments: Payment refunded."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:615
#. translators: %s: order number
msgid "Payment for order %s refunded"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:616
msgid "Payment refunded"
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:618
#. translators: %s: order number
msgid "Order %s has been marked as refunded by ApusPayments."
msgstr ""
#: includes/class-wc-ApusPayments-gateway.php:627
msgid "ApusPayments: Payment canceled."
msgstr ""
#: includes/class-wc-ApusPayments.php:63
msgid "Settings"
msgstr ""
#: includes/views/html-receipt-page-error.php:19
msgid "Click to try again"
msgstr ""
#: templates/emails/html-instructions.php:15
#: templates/emails/plain-instructions.php:14
msgid "Payment"
msgstr ""
#: templates/emails/html-instructions.php:19
#: templates/emails/plain-instructions.php:20
msgid ""
"Please use the link below to view your Banking Ticket, you can print and "
"pay in your internet banking or in a lottery retailer:"
msgstr ""
#: templates/emails/html-instructions.php:19
#: templates/payment-instructions.php:18
msgid "Pay the Banking Ticket"
msgstr ""
#: templates/emails/html-instructions.php:19
#: templates/emails/plain-instructions.php:28
#: templates/payment-instructions.php:18
msgid ""
"After we receive the ticket payment confirmation, your order will be "
"processed."
msgstr ""
#: templates/emails/html-instructions.php:23
#: templates/emails/plain-instructions.php:32
msgid "Please use the link below to make the payment in your bankline:"
msgstr ""
#: templates/emails/html-instructions.php:23
#: templates/payment-instructions.php:24
msgid "Pay at your bank"
msgstr ""
#: templates/emails/html-instructions.php:23
#: templates/emails/plain-instructions.php:40
#: templates/payment-instructions.php:24
msgid ""
"After we receive the confirmation from the bank, your order will be "
"processed."
msgstr ""
#: templates/emails/html-instructions.php:27
#: templates/emails/plain-instructions.php:44
#: templates/payment-instructions.php:30
msgid "You just made the payment in %s using the %s."
msgstr ""
#: templates/emails/html-instructions.php:27
#: templates/emails/plain-instructions.php:48
#: templates/payment-instructions.php:30
msgid ""
"As soon as the credit card operator confirm the payment, your order will be "
"processed."
msgstr ""
#: templates/lightbox-checkout.php:15
msgid ""
"Thank you for your order, please wait a few seconds to make the payment "
"with ApusPayments."
msgstr ""
#: templates/lightbox-checkout.php:17
msgid ""
"Thank you for your order, please click the button below to pay with "
"ApusPayments."
msgstr ""
#: templates/lightbox-checkout.php:19
msgid "Cancel order &amp; restore cart"
msgstr ""
#: templates/payment-instructions.php:18
msgid "Please click in the following button to view your Banking Ticket."
msgstr ""
#: templates/payment-instructions.php:18
msgid "You can print and pay in your internet banking or in a lottery retailer."
msgstr ""
#: templates/payment-instructions.php:24
msgid "Please use the following button to make the payment in your bankline."
msgstr ""
#: templates/transparent-checkout-form.php:35
msgid "Card Holder Name"
msgstr ""
#: templates/transparent-checkout-form.php:35
msgid "as recorded on the card"
msgstr ""
#: templates/transparent-checkout-form.php:39
msgid "Card Number"
msgstr ""
#: templates/transparent-checkout-form.php:44
msgid "Expiry (MM/YYYY)"
msgstr ""
#: templates/transparent-checkout-form.php:45
msgid "MM / YYYY"
msgstr ""
#: templates/transparent-checkout-form.php:48
msgid "Security Code"
msgstr ""
#: templates/transparent-checkout-form.php:49
msgid "CVC"
msgstr ""
#: templates/transparent-checkout-form.php:53
msgid "the minimum value of the installment is R$ 5,00"
msgstr ""
#: templates/transparent-checkout-form.php:59
msgid "Card Holder CPF"
msgstr ""
#: templates/transparent-checkout-form.php:64
msgid "Card Holder Birth Date"
msgstr ""
#: templates/transparent-checkout-form.php:65
msgid "DD / MM / YYYY"
msgstr ""
#: templates/transparent-checkout-form.php:68
msgid "Card Holder Phone"
msgstr ""
#: templates/transparent-checkout-form.php:69
msgid "(xx) xxxx-xxxx"
msgstr ""
#: templates/transparent-checkout-form.php:77
msgid "Select your bank:"
msgstr ""
#: templates/transparent-checkout-form.php:79
msgid "Banco do Brasil"
msgstr ""
#: templates/transparent-checkout-form.php:80
msgid "Banco Bradesco"
msgstr ""
#: templates/transparent-checkout-form.php:82
msgid ""
"* After clicking \"Proceed to payment\" you will have access to the link "
"that will take you to your bank's website, so you can make the payment in "
"total security."
msgstr ""
#: templates/transparent-checkout-form.php:91
msgid "The order will be confirmed only after the payment approval."
msgstr ""
#: templates/transparent-checkout-form.php:94
msgid "Tax"
msgstr ""
#: templates/transparent-checkout-form.php:94
msgid "R$ 1,00 (rate applied to cover management risk costs of the payment method)."
msgstr ""
#: templates/transparent-checkout-form.php:97
msgid ""
"* After clicking \"Proceed to payment\" you will have access to banking "
"ticket which you can print and pay in your internet banking or in a lottery "
"retailer."
msgstr ""
#. Plugin URI of the plugin/theme
msgid "https://github.com/apuspayments/WooComercePlugin"
msgstr ""
#. Description of the plugin/theme
msgid "Includes ApusPayments as a payment gateway to WooCommerce."
msgstr ""
#. Author of the plugin/theme
msgid "ApusPayments"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://apuspayments.com"
msgstr ""

View File

@@ -0,0 +1,145 @@
# Copyright (C) 2018 Mohammed Saimon
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: WooCommerce Estimated Shipping Date 3.0.2\n"
"Report-Msgid-Bugs-To: https://saimonsplugins.com/contact/\n"
"POT-Creation-Date: 2018-10-05 07:52:34+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"
"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-product-settings.php:51
msgid "Enable WC Estimated Date"
msgstr ""
#: includes/admin/class-product-settings.php:52
msgid "Enable or Disable woocommerce estimated shipping date"
msgstr ""
#: includes/admin/class-product-settings.php:57
#: includes/admin/class-settings.php:150
msgid "Estimated Delivery Time in Days"
msgstr ""
#: includes/admin/class-product-settings.php:58
#: includes/admin/class-settings.php:151
msgid "Insert how many days it will take to deliver the product after purchase"
msgstr ""
#: includes/admin/class-product-settings.php:66
#: includes/admin/class-settings.php:157
msgid "Estimated Delivery Date Message"
msgstr ""
#: includes/admin/class-product-settings.php:67
#: includes/admin/class-settings.php:158
msgid "Insert your message"
msgstr ""
#: includes/admin/class-settings.php:62
msgid "Estimated Shipping Date"
msgstr ""
#: includes/admin/class-settings.php:62
msgid "Shipping Date"
msgstr ""
#: includes/admin/class-settings.php:69
msgid "WooCommerce Estimated Shipping Date Settings"
msgstr ""
#: includes/admin/class-settings.php:85
msgid "Enable Shipping Date for All Existing Products"
msgstr ""
#: includes/admin/class-settings.php:88
msgid ""
"This tool will enable WooCommerce Estimated Shipping Date for all the "
"existing products. It's helpful if you have lots of products, that you "
"don't want to insert estimated shipping date for each and every product "
"manually. Which is very time consuming."
msgstr ""
#: includes/admin/class-settings.php:97
msgid "Enable for All"
msgstr ""
#: includes/admin/class-settings.php:134
msgid "Enable"
msgstr ""
#: includes/admin/class-settings.php:135
msgid "Enable WooCommerce Estimated Shipping Date."
msgstr ""
#: includes/admin/class-settings.php:141
msgid "Enable Shipping Date for All Existing Product"
msgstr ""
#: includes/admin/class-settings.php:142
msgid ""
"Enable Shipping for all existing product by default. If this option is not "
"checked you will have to enable estimated shipping date for each individual "
"product manually"
msgstr ""
#: includes/admin/class-settings.php:239
msgid "%d products are completed out of %d"
msgstr ""
#: includes/admin/class-settings.php:245
msgid "WooCommerce estimated shipping date has been applied to all products."
msgstr ""
#: includes/libs/settings-api.php:370
msgid "Choose File"
msgstr ""
#: includes/public/class-public.php:74
msgid "<strong class='shipping-date'> %s %s</strong>"
msgstr ""
#: includes/public/class-public.php:101 includes/public/class-public.php:125
#: includes/public/class-public.php:151
msgid "<strong>%s %s</strong>"
msgstr ""
#: woo-estimated-shipping-date.php:123
msgid ""
"<b>WC Estimated Shipping Date</b> requires %sWooCommerce%s to be installed "
"& activated!"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "WooCommerce Estimated Shipping Date"
msgstr ""
#. Description of the plugin/theme
msgid ""
"A simple WooCommerce based plugin to show the estimated shipping date on "
"the product, cart, checkout page"
msgstr ""
#. Author of the plugin/theme
msgid "Mohammed Saimon"
msgstr ""
#. Author URI of the plugin/theme
msgid "https://saimonsplugins.com"
msgstr ""

View File

@@ -0,0 +1,310 @@
# Translation of Payger in Portuguese (Portugal)
# This file is distributed under the same license as the Payger package.
msgid ""
msgstr ""
"PO-Revision-Date: 2018-08-31 14:33:52+0000\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/1.0-alpha-1000\n"
"Project-Id-Version: Payger\n"
#: public/partials/pay-modal.php:127
msgid "This payment is underpaid. Please use the data below to pay the missing amount"
msgstr "Esta encomenda está parcialmente paga. Por favor use os dados abaixo para completar o pagamento."
#: public/class-wc-email-customer-underpaid-order.php:28
msgid "Order underpaid"
msgstr "Encomenda parcialmente paga"
#: public/emails/plain/customer-underpaid-order.php:25
msgid "Your order is on-hold until we confirm payment has been received. Your order details are shown below for your reference:"
msgstr "A sua encomenda aguarda pagamento até confirmação de que o montante foi recebido. Os dados da sua encomenda estão visíveis abaixo para sua referência:"
#: admin/class-woocommerce-payger-admin.php:117
msgid "Every Minute"
msgstr "A cada minuto"
#: admin/class-woocommerce-payger-admin.php:131
msgid "Error: You must enter API key."
msgstr "Erro: Deve inserir a sua chave API key"
#: admin/class-woocommerce-payger-admin.php:138
msgid "Error: You must enter API secret."
msgstr "Erro: Deve inserir o seu API secret."
#: admin/class-woocommerce-payger-admin.php:150
msgid "Error: Your api credentials are not valid. Please double check that you entered them correctly and try again."
msgstr "Erro: As suas credenciais para acesso à API não são válidas. Por favor verifique que as inseriu correctamente e tente novamente."
#: admin/class-woocommerce-payger-admin.php:170
msgid "You must choose a crypto currency first."
msgstr "Deve primeiro escolher uma criptomoeda."
#: admin/class-woocommerce-payger-admin.php:171
#: includes/class-woocommerce-payger-gateway.php:395
#: includes/class-woocommerce-payger-gateway.php:543
msgid "Payment error: "
msgstr "Erro de pagamento:"
#: admin/class-woocommerce-payger-admin.php:222
#: public/class-woocommerce-payger-public.php:118
msgid "Please use the following qrCode to process your payment."
msgstr "Por favor use o seguinte qrCode para efectuar o seu pagamento."
#: admin/class-woocommerce-payger-admin.php:237
#: includes/class-woocommerce-payger-gateway.php:264
#: public/class-woocommerce-payger-public.php:135
msgid "You will pay"
msgstr "Vai pagar"
#: admin/class-woocommerce-payger-admin.php:238
#: public/class-woocommerce-payger-public.php:136
msgid "in"
msgstr "em"
#: admin/class-woocommerce-payger-admin.php:239
msgid "Payger qrCode"
msgstr "Payger qrCode"
#: admin/class-woocommerce-payger-admin.php:277
#: admin/class-woocommerce-payger-admin.php:332
#: admin/class-woocommerce-payger-admin.php:422
msgid "Payger Payment Confirmed"
msgstr "Pagamento via Payger Confirmado"
#: admin/class-woocommerce-payger-admin.php:281
msgid "Still Waiting for Payment"
msgstr "A Aguardar Pagamento"
#: admin/class-woocommerce-payger-admin.php:333
msgid "Payment is verified and completed."
msgstr "Pagamento foi verificado e está completo."
#: admin/class-woocommerce-payger-admin.php:356
msgid "Payment is verified but not completed. Missing amount of "
msgstr "Pagamento foi verificado mas não está completo. Está em falta o montante de"
#: admin/class-woocommerce-payger-admin.php:356
msgid " an email was sent to the buyer."
msgstr "um email foi enviado ao comprador."
#: admin/class-woocommerce-payger-admin.php:424
msgid "Payment is verified and completed. The amount of "
msgstr "Pagamento foi verificado e está completo. O montante de"
#: admin/class-woocommerce-payger-admin.php:424
msgid " was overpaid."
msgstr "foi pago a mais."
#: admin/class-woocommerce-payger-admin.php:526
msgid "Payger Payment Failed"
msgstr "Pagamento através do Payger falhou"
#: admin/class-woocommerce-payger-admin.php:437
msgid "Unpaid order cancelled - time limit reached."
msgstr "Encomenda não paga foi cancelada - tempo limite atingido."
#: includes/class-woocommerce-payger-gateway.php:51
#: includes/class-woocommerce-payger-gateway.php:52
#: includes/class-woocommerce-payger-gateway.php:152
msgid "Payger"
msgstr "Payger"
#: includes/class-woocommerce-payger-gateway.php:53
msgid "Pay with crypto currency (powered by Payger)"
msgstr "Pague com criptomoedas ( através do Payger )"
#: includes/class-woocommerce-payger-gateway.php:95
msgid "What is Payger?"
msgstr "O que é o Payger?"
#: includes/class-woocommerce-payger-gateway.php:143
msgid "Enable/Disable"
msgstr "Activar/Desactivar"
#: includes/class-woocommerce-payger-gateway.php:145
msgid "Enable payments through Payger"
msgstr "Activar pagamentos através do Payger"
#: includes/class-woocommerce-payger-gateway.php:149
msgid "Title"
msgstr "Título"
#: includes/class-woocommerce-payger-gateway.php:151
msgid "This controls the title which the user sees during checkout."
msgstr "Controla o título que o utilizador vê durante o processo de compra."
#: includes/class-woocommerce-payger-gateway.php:156
msgid "Description"
msgstr "Descrição"
#: includes/class-woocommerce-payger-gateway.php:158
msgid "Pay with crypto currency provided by Payger"
msgstr "Pague com criptomoedas através do Payger"
#: includes/class-woocommerce-payger-gateway.php:159
msgid "This controls the description which the user sees during checkout."
msgstr "Controla a descrição que o utilizador vê durante o processo de compra."
#: includes/class-woocommerce-payger-gateway.php:163
msgid "Username"
msgstr ""
#: includes/class-woocommerce-payger-gateway.php:165
msgid "Key provided by Payger when signing the contract."
msgstr "Chave obtida no Payger quando cria uma conta."
#: includes/class-woocommerce-payger-gateway.php:169
msgid "Password"
msgstr "Palavra chave"
#: includes/class-woocommerce-payger-gateway.php:171
msgid "Secret provided by Payger when signing the contract."
msgstr "Secret obtido no Payger quando cria uma conta."
#: includes/class-woocommerce-payger-gateway.php:175
msgid "Advanced options"
msgstr "Opções Avançadas"
#: includes/class-woocommerce-payger-gateway.php:180
msgid "Accepted Currencies"
msgstr "Moedas Aceites"
#: includes/class-woocommerce-payger-gateway.php:183
msgid "Choose which are the currencies you will allow users to pay with. This depends on your shop currency choosen on Woocommerce General Options. If no options are available it means your shop currency can't be converted to any crypto currency, please choose a different one you want to use Payger. "
msgstr "Escolha que moedas vai disponibilizar para os seus utilizadores usarem como pagamento. Estas opções dependem na moeda da sua loja escolhida nas opções gerais do WooCommerce. Se nenhuma opção estiver disponível, significa que a sua moeda não pode ser convertida em nenhuma criptomoeda, por favor escolha uma diferente se pretende usar o Payger."
#: includes/class-woocommerce-payger-gateway.php:189
msgid "Max Expired"
msgstr "Nº vezes que pode Expirar"
#: includes/class-woocommerce-payger-gateway.php:191
msgid "Define the number of times an expired order will ask for payment to the user. Default is set to 5."
msgstr "Define o número de vezes uma encomenda expirada vai pedir um novo pagamento ao utilizador. Default is set to 5."
#: includes/class-woocommerce-payger-gateway.php:196
msgid "Payment Type"
msgstr "Tipo de Pagamento"
#: includes/class-woocommerce-payger-gateway.php:199
msgid "Choose which type of paymnet you would like to make available for buyers "
msgstr "Escolha o tipo de pagamento que quer disponibilizar aos seus utilizadores"
#: includes/class-woocommerce-payger-gateway.php:260
msgid "Choose Currency"
msgstr "Escolha a Moeda"
#: includes/class-woocommerce-payger-gateway.php:263
msgid "Please choose one..."
msgstr "Por favor escolha uma..."
#: includes/class-woocommerce-payger-gateway.php:265
msgid "at rate"
msgstr "à rate"
#: includes/class-woocommerce-payger-gateway.php:267
msgid "Your currency rate was recently updated. You will pay a total amount of"
msgstr "A sua rate de moeda mudou recentemente. Irá pagar um montante total de "
#: includes/class-woocommerce-payger-gateway.php:268
msgid "corresponding to a rate of"
msgstr "correspondente a uma rate de"
#: includes/class-woocommerce-payger-gateway.php:269
msgid "Please confirm you want to proceed with your order."
msgstr "Por favor confirme que quer prosseguir com a sua encomenda."
#: includes/class-woocommerce-payger-gateway.php:271
msgid "*This is an estimate value. Due to crypto currency volatility this rate may change. Please take this into consideration."
msgstr "*Este é um valor estimado. Devido à volatilidade das criptomoedas a rate pode variar. Por favor tenha isso em conta."
#: includes/class-woocommerce-payger-gateway.php:376
msgid "Awaiting Payger payment"
msgstr "A aguardar pagamento"
#: includes/class-woocommerce-payger.php:95
msgid "WooCommerce Gateway Payger requires WooCommerce to be activated"
msgstr "WooCommerce Gateway Payger depende do WooCommerce estar activo"
#: public/class-wc-email-customer-underpaid-order.php:29
msgid "This is an order notification sent to customers containing order details after an order is underpaid."
msgstr "Esta notificação é enviada aos clientes contendo detalhes da encomenda após uma encomenda ser parcialmente paga."
#: public/class-wc-email-customer-underpaid-order.php:52
msgid "Your {site_title} underpaid order notification"
msgstr "A sua {site_title} notificação de encomenda parcialmente paga"
#: public/class-wc-email-customer-underpaid-order.php:62
msgid "Thank you for your order"
msgstr "Obrigado pela sua encomenda"
#: public/class-woocommerce-payger-public.php:131
msgid "Copy"
msgstr "Copiar"
#: public/emails/customer-underpaid-order.php:28
msgid "Your order is on-hold until we confirm the missing payment has been received. Your order details are shown below for your reference:"
msgstr "A sua encomenda aguarda pagamento até confirmação de que o montante em falta foi recebido. Os detalhes da sua encomenda estão visíveis abaixo para sua referência:"
#: public/partials/customer-underpaid-order.php:28
msgid "Your order is underpaid and will remain on-hold until we confirm the complete payment has been received. Your order details and instructions for complete the payment are shown below for your reference:"
msgstr "A sua encomenda foi parcialmente paga e continuará a aguardar pagamento até confirmação que o montante total foi recebido. Os detalhes da encomenda e instruções para completar o pagamento estão visíveis abaixo para sua referência:"
#: public/partials/pay-modal.php:37
msgid "Payment for: "
msgstr "Pagamento de:"
#: public/partials/pay-modal.php:96
msgid "Open Modal"
msgstr "Abrir Modal"
#: public/partials/pay-modal.php:117
msgid "Awaiting Payment..."
msgstr "A aguardar pagamento..."
#: public/partials/pay-modal.php:122
msgid "This payment has expired"
msgstr "Este pagamento expirou"
#: public/partials/pay-modal.php:166
msgid "Payment Amount"
msgstr "Montante a pagar"
#: public/partials/pay-modal.php:171
msgid "Network Cost"
msgstr "Taxa a pagar"
#: public/partials/pay-modal.php:176
msgid "Total"
msgstr "Total"
#: public/partials/pay-modal.php:193
msgid "Copy payment URL"
msgstr "Copiar o URL de pagamento"
#: public/partials/pay-modal.php:201
msgid "How do I pay this?"
msgstr "Como pago?"
#. Plugin Name of the plugin/theme
msgid "Woocommerce Gateway Payger"
msgstr "Woocommerce Gateway Payger"
#. #-#-#-#-# woocommerce-gateway-payger.pot (Woocommerce Gateway Payger 1.0.0)
#. #-#-#-#-#
#. Plugin URI of the plugin/theme
#. #-#-#-#-# woocommerce-gateway-payger.pot (Woocommerce Gateway Payger 1.0.0)
#. #-#-#-#-#
#. Author URI of the plugin/theme
msgid "http://www.widgilabs.com"
msgstr "http://www.widgilabs.com"
#. Description of the plugin/theme
msgid "Payger Payment Gateway for Woocommerce"
msgstr "Payger Payment Gateway para Woocommerce"
#. Author of the plugin/theme
msgid "WidgiLabs"
msgstr "WidgiLabs"

View File

@@ -0,0 +1,54 @@
# Copyright (C) 2018 Sanjeev Aryal
# This file is distributed under the same license as the WPForce Logout package.
msgid ""
msgstr ""
"Project-Id-Version: WPForce Logout 1.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-10-12 15:06: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 <EMAIL@ADDRESS>\n"
"X-Generator: grunt-wp-i18n1.0.2\n"
#: includes/class-wp-force-logout-process.php:53
msgid "Login Activity"
msgstr ""
#: includes/class-wp-force-logout-process.php:226
msgid "Logout"
msgstr ""
#: includes/class-wp-force-logout-process.php:249
msgid ""
"Before we deactivate WPForce Logout, would you care to <a href=\"%1$s\" "
"target=\"_blank\">let us know why</a> so we can improve it for you? <a "
"href=\"%2$s\">No, deactivate now</a>."
msgstr ""
#: includes/class-wp-force-logout.php:47 includes/class-wp-force-logout.php:56
msgid "Cheatin&#8217; huh?"
msgstr ""
#. Plugin Name of the plugin/theme
msgid "WPForce Logout"
msgstr ""
#. Description of the plugin/theme
msgid "Forcefully logout WordPress user(s)."
msgstr ""
#. Author of the plugin/theme
msgid "Sanjeev Aryal"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://www.sanjeebaryal.com.np"
msgstr ""
#: includes/class-wp-force-logout-process.php:105
msgctxt "The action on users list page"
msgid "Logout"
msgstr ""

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

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

View File

@@ -1,4 +1,4 @@
[+] WordPress version 4.0 identified.
[+] WordPress version 4.0 identified (Released on 2014-09-04).
| Detected By: rspec
| Confirmed By:
| Confirmed 1

View File

@@ -1,6 +1,7 @@
{
"version": {
"number": "4.0",
"release_date": "2014-09-04",
"found_by": "rspec",
"confidence": 0,
"interesting_entries": [

View File

@@ -1,4 +1,4 @@
[+] WordPress version 4.0 identified.
[+] WordPress version 4.0 identified (Released on 2014-09-04).
| Detected By: rspec
| Confirmed By: Confirmed 1
| - IE1

View File

@@ -1,6 +1,7 @@
{
"version": {
"number": "4.0",
"release_date": "2014-09-04",
"found_by": "rspec",
"confidence": 0,
"interesting_entries": [

View File

@@ -1,4 +1,4 @@
[+] WordPress version 4.0 identified.
[+] WordPress version 4.0 identified (Released on 2014-09-04).
| Detected By: rspec
| - IE1
| - IE2

View File

@@ -1,6 +1,7 @@
{
"version": {
"number": "4.0",
"release_date": "2014-09-04",
"found_by": "rspec",
"confidence": 0,
"interesting_entries": [

View File

@@ -1,3 +1,3 @@
[+] WordPress version 4.0 identified.
[+] WordPress version 4.0 identified (Released on 2014-09-04).
| Detected By: rspec

View File

@@ -1,6 +1,7 @@
{
"version": {
"number": "4.0",
"release_date": "2014-09-04",
"found_by": "rspec",
"confidence": 0,
"interesting_entries": [

View File

@@ -1,4 +1,4 @@
[+] WordPress version 3.8.1 identified.
[+] WordPress version 3.8.1 identified (Released on 2014-01-23).
| Detected By: rspec
|
| [!] 2 vulnerabilities identified:

View File

@@ -1,6 +1,7 @@
{
"version": {
"number": "3.8.1",
"release_date": "2014-01-23",
"found_by": "rspec",
"confidence": 0,
"interesting_entries": [

View File

@@ -37,5 +37,11 @@ shared_examples WPScan::Target::Platform::WordPress do
its(:wordpress_hosted?) { should be true }
end
context 'when the target host doesn\'t matches' do
let(:url) { 'http://ex-wordpress.com' }
its(:wordpress_hosted?) { should be false }
end
end
end

View File

@@ -97,9 +97,9 @@ module WebMock
end
# rubocop:enabled all
SPECS = Pathname.new(__FILE__).dirname.to_s
FIXTURES = File.join(SPECS, 'fixtures')
FINDERS_FIXTURES = File.join(FIXTURES, 'finders')
DYNAMIC_FINDERS_FIXTURES = File.join(FIXTURES, 'dynamic_finders')
SPECS = Pathname.new(__FILE__).dirname
FIXTURES = SPECS.join('fixtures')
FINDERS_FIXTURES = FIXTURES.join('finders')
DYNAMIC_FINDERS_FIXTURES = FIXTURES.join('dynamic_finders')
redefine_constant(:DB_DIR, File.join(FIXTURES, 'db'))
redefine_constant(:DB_DIR, FIXTURES.join('db'))

View File

@@ -16,12 +16,12 @@ Gem::Specification.new do |s|
s.homepage = 'https://wpscan.org/'
s.license = 'Dual'
s.files = Dir.glob('lib/**/*') + Dir.glob('app/**/*')
s.files = Dir.glob('lib/**/*') + Dir.glob('app/**/*') + %w[LICENSE README.md]
s.test_files = []
s.executables = ['wpscan']
s.require_paths = ['lib']
s.add_dependency 'cms_scanner', '~> 0.0.40.1'
s.add_dependency 'cms_scanner', '~> 0.0.40.3'
# Already required by CMSScanner, so version restrictions loosen
s.add_dependency 'activesupport', '~> 5.2'
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency 'rspec', '~> 3.8.0'
s.add_development_dependency 'rspec-its', '~> 1.2.0'
s.add_development_dependency 'rubocop', '~> 0.59.2'
s.add_development_dependency 'rubocop', '~> 0.60.0'
s.add_development_dependency 'simplecov', '~> 0.16.1'
s.add_development_dependency 'webmock', '~> 3.4.2'
end