Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6e9d147dd0 | ||
|
|
9a7872a7c4 | ||
|
|
e8f10fb2db | ||
|
|
221f3fcbfd | ||
|
|
ab5153363f | ||
|
|
8576145d3f | ||
|
|
7908fb7d97 | ||
|
|
44b934540e | ||
|
|
9978595237 | ||
|
|
109c701e4f | ||
|
|
11f35d86ff | ||
|
|
fa3005f2b7 | ||
|
|
f30255d6d8 | ||
|
|
183df75112 | ||
|
|
105d06c8f8 | ||
|
|
82941906ca | ||
|
|
470fbb1ff3 | ||
|
|
8c6234879e | ||
|
|
689252c715 | ||
|
|
19cf00227b | ||
|
|
c9795dc560 |
@@ -1,6 +1,7 @@
|
||||
require: rubocop-performance
|
||||
AllCops:
|
||||
NewCops: enable
|
||||
SuggestExtensions: false
|
||||
TargetRubyVersion: 2.5
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
|
||||
23
README.md
23
README.md
@@ -24,10 +24,11 @@
|
||||
## Prerequisites
|
||||
|
||||
- (Optional but highly recommended: [RVM](https://rvm.io/rvm/install))
|
||||
- Ruby >= 2.3 - Recommended: latest
|
||||
- Ruby >= 2.5 - Recommended: latest
|
||||
- Ruby 2.5.0 to 2.5.3 can cause an 'undefined symbol: rmpd_util_str_to_d' error in some systems, see [#1283](https://github.com/wpscanteam/wpscan/issues/1283)
|
||||
- Curl >= 7.21 - Recommended: latest
|
||||
- Curl >= 7.72 - Recommended: latest
|
||||
- The 7.29 has a segfault
|
||||
- The < 7.72 could result in `Stream error in the HTTP/2 framing layer` in some cases
|
||||
- RubyGems - Recommended: latest
|
||||
- Nokogiri might require packages to be installed via your package manager depending on your OS, see https://nokogiri.org/tutorials/installing_nokogiri.html
|
||||
|
||||
@@ -35,6 +36,10 @@
|
||||
|
||||
When using a pentesting distubution (such as Kali Linux), it is recommended to install/update wpscan via the package manager if available.
|
||||
|
||||
### In macOSX via Homebrew
|
||||
|
||||
`brew install wpscanteam/tap/wpscan`
|
||||
|
||||
### From RubyGems
|
||||
|
||||
```shell
|
||||
@@ -80,9 +85,19 @@ For more options, open a terminal and type ```wpscan --help``` (if you built wps
|
||||
|
||||
The DB is located at ~/.wpscan/db
|
||||
|
||||
## Vulnerability Database
|
||||
## Optional: WordPress Vulnerability Database API
|
||||
|
||||
The WPScan CLI tool uses the [WPScan API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan](https://wpscan.com/register). Up to 50 API requests per day are given free of charge to registered users. Once the 50 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPScan](https://wpscan.com/).
|
||||
The WPScan CLI tool uses the [WordPress Vulnerability Database API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan.com](https://wpscan.com/register).
|
||||
|
||||
Up to 25 API requests per day are given free of charge, that should be suitable to scan most WordPress websites at least once per day. When the daily 25 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPScan.com](https://wpscan.com/).
|
||||
|
||||
#### The Free plan allows 25 API requests per day. View the different [available API plans](https://wpscan.com/api).
|
||||
|
||||
### How many API requests do you need?
|
||||
|
||||
- Our WordPress scanner makes one API request for the WordPress version, one request per installed plugin and one request per installed theme.
|
||||
- On average, a WordPress website has 22 installed plugins.
|
||||
- The Free plan should cover around 50% of all WordPress websites.
|
||||
|
||||
## Load CLI options from file/s
|
||||
|
||||
|
||||
@@ -8,13 +8,13 @@ module WPScan
|
||||
def cli_options
|
||||
[OptURL.new(['--url URL', 'The URL of the blog to scan'],
|
||||
required_unless: %i[update help hh version], default_protocol: 'http')] +
|
||||
super.drop(1) + # delete the --url from CMSScanner
|
||||
super.drop(2) + # delete the --url and --force from CMSScanner
|
||||
[
|
||||
OptChoice.new(['--server SERVER', 'Force the supplied server module to be loaded'],
|
||||
choices: %w[apache iis nginx],
|
||||
normalize: %i[downcase to_sym],
|
||||
advanced: true),
|
||||
OptBoolean.new(['--force', 'Do not check if the target is running WordPress']),
|
||||
OptBoolean.new(['--force', 'Do not check if the target is running WordPress or returns a 403']),
|
||||
OptBoolean.new(['--[no-]update', 'Whether or not to update the Database'])
|
||||
]
|
||||
end
|
||||
@@ -39,7 +39,7 @@ module WPScan
|
||||
output('@notice', msg: 'It seems like you have not updated the database for some time.')
|
||||
print '[?] Do you want to update now? [Y]es [N]o, default: [N]'
|
||||
|
||||
/^y/i.match?(Readline.readline) ? true : false
|
||||
/^y/i.match?(Readline.readline)
|
||||
end
|
||||
|
||||
def update_db
|
||||
|
||||
@@ -7,7 +7,7 @@ module WPScan
|
||||
class KnownLocations < CMSScanner::Finders::Finder
|
||||
include CMSScanner::Finders::Finder::Enumerator
|
||||
|
||||
SQL_PATTERN = /(?:DROP|(?:UN)?LOCK|CREATE) TABLE|INSERT INTO/.freeze
|
||||
SQL_PATTERN = /(?:DROP|(?:UN)?LOCK|CREATE|ALTER) (?:TABLE|DATABASE)|INSERT INTO/.freeze
|
||||
|
||||
# @param [ Hash ] opts
|
||||
# @option opts [ String ] :list
|
||||
|
||||
@@ -6,6 +6,7 @@ require_relative 'interesting_findings/multisite'
|
||||
require_relative 'interesting_findings/debug_log'
|
||||
require_relative 'interesting_findings/backup_db'
|
||||
require_relative 'interesting_findings/mu_plugins'
|
||||
require_relative 'interesting_findings/php_disabled'
|
||||
require_relative 'interesting_findings/registration'
|
||||
require_relative 'interesting_findings/tmm_db_migrate'
|
||||
require_relative 'interesting_findings/upload_sql_dump'
|
||||
@@ -26,7 +27,7 @@ module WPScan
|
||||
%w[
|
||||
Readme DebugLog FullPathDisclosure BackupDB DuplicatorInstallerLog
|
||||
Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate
|
||||
UploadSQLDump EmergencyPwdResetScript WPCron
|
||||
UploadSQLDump EmergencyPwdResetScript WPCron PHPDisabled
|
||||
].each do |f|
|
||||
finders << InterestingFindings.const_get(f).new(target)
|
||||
end
|
||||
|
||||
21
app/finders/interesting_findings/php_disabled.rb
Normal file
21
app/finders/interesting_findings/php_disabled.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
module InterestingFindings
|
||||
# See https://github.com/wpscanteam/wpscan/issues/1593
|
||||
class PHPDisabled < CMSScanner::Finders::Finder
|
||||
PATTERN = /\$wp_version =/.freeze
|
||||
|
||||
# @return [ InterestingFinding ]
|
||||
def aggressive(_opts = {})
|
||||
path = 'wp-includes/version.php'
|
||||
|
||||
return unless PATTERN.match?(target.head_and_get(path).body)
|
||||
|
||||
Model::PHPDisabled.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -132,5 +132,19 @@ module WPScan
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
class PHPDisabled < InterestingFinding
|
||||
# @return [ String ]
|
||||
def to_s
|
||||
@to_s ||= 'PHP seems to be disabled'
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= {
|
||||
url: ['https://github.com/wpscanteam/wpscan/issues/1593']
|
||||
}
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -63,7 +63,7 @@ module WPScan
|
||||
def webshot_enabled?
|
||||
res = Browser.get(url, params: { webshot: 1, src: "http://#{default_allowed_domains.sample}" })
|
||||
|
||||
/WEBSHOT_ENABLED == true/.match?(res.body) ? false : true
|
||||
!/WEBSHOT_ENABLED == true/.match?(res.body)
|
||||
end
|
||||
|
||||
# @return [ Array<String> ] The default allowed domains (between the 2.0 and 2.8.13)
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.12'
|
||||
VERSION = '3.8.14'
|
||||
end
|
||||
|
||||
@@ -7,7 +7,7 @@ describe WPScan::Controller::VulnApi do
|
||||
|
||||
before do
|
||||
WPScan::ParsedCli.options = rspec_parsed_options(cli_args)
|
||||
WPScan::DB::VulnApi.instance_variable_set(:'@default_request_params', nil)
|
||||
WPScan::DB::VulnApi.instance_variable_set(:@default_request_params, nil)
|
||||
end
|
||||
|
||||
describe '#cli_options' do
|
||||
|
||||
@@ -102,19 +102,29 @@ describe WPScan::Finders::DbExports::KnownLocations do
|
||||
expect(target).to receive(:homepage_or_404?).twice.and_return(false)
|
||||
end
|
||||
|
||||
it 'returns the expected Array<DbExport>' do
|
||||
expected = []
|
||||
context 'when matching the pattern' do
|
||||
it 'returns the expected Array<DbExport>' do
|
||||
expected = []
|
||||
|
||||
found_files.each do |file|
|
||||
url = "#{target.url}#{file}"
|
||||
expected << WPScan::Model::DbExport.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
found_files.each do |file|
|
||||
url = "#{target.url}#{file}"
|
||||
expected << WPScan::Model::DbExport.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
end
|
||||
|
||||
expect(finder.aggressive(opts)).to eql expected
|
||||
end
|
||||
end
|
||||
|
||||
expect(finder.aggressive(opts)).to eql expected
|
||||
context 'when not matching the pattern' do
|
||||
let(:db_export) { '' }
|
||||
|
||||
it 'returns an empty array' do
|
||||
expect(finder.aggressive(opts)).to eql []
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
50
spec/app/finders/interesting_findings/php_disabled_spec.rb
Normal file
50
spec/app/finders/interesting_findings/php_disabled_spec.rb
Normal file
@@ -0,0 +1,50 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::PHPDisabled do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'php_disabled') }
|
||||
let(:file_path) { 'wp-includes/version.php' }
|
||||
let(:file_url) { target.url(file_path) }
|
||||
|
||||
describe '#aggressive' do
|
||||
before do
|
||||
expect(target).to receive(:sub_dir).at_least(1).and_return(false)
|
||||
expect(target).to receive(:head_or_get_params).and_return(method: :head)
|
||||
end
|
||||
|
||||
context 'when not a 200' do
|
||||
it 'return nil' do
|
||||
stub_request(:head, file_url).to_return(status: 404)
|
||||
|
||||
expect(finder.aggressive).to eql nil
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a 200' do
|
||||
before do
|
||||
stub_request(:head, file_url)
|
||||
stub_request(:get, file_url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when the body does not match' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should be_nil }
|
||||
end
|
||||
|
||||
context 'when the body matches' do
|
||||
let(:body) { File.read(fixtures.join('version.php')) }
|
||||
|
||||
it 'returns the PHPDisabled' do
|
||||
expect(finder.aggressive).to eql WPScan::Model::PHPDisabled.new(
|
||||
file_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -10,7 +10,7 @@ describe WPScan::Finders::InterestingFindings::Base do
|
||||
%w[
|
||||
Readme DebugLog FullPathDisclosure
|
||||
Multisite MuPlugins Registration UploadDirectoryListing TmmDbMigrate
|
||||
UploadSQLDump
|
||||
UploadSQLDump PHPDisabled
|
||||
]
|
||||
end
|
||||
|
||||
|
||||
@@ -172,7 +172,7 @@ describe WPScan::Model::Plugin do
|
||||
|
||||
after do
|
||||
expect(plugin.vulnerabilities).to eq @expected
|
||||
expect(plugin.vulnerable?).to eql @expected.empty? ? false : true
|
||||
expect(plugin.vulnerable?).to eql !@expected.empty?
|
||||
end
|
||||
|
||||
context 'when plugin not in the DB' do
|
||||
|
||||
@@ -200,7 +200,7 @@ describe WPScan::Model::Theme do
|
||||
|
||||
after do
|
||||
expect(theme.vulnerabilities).to eq @expected
|
||||
expect(theme.vulnerable?).to eql @expected.empty? ? false : true
|
||||
expect(theme.vulnerable?).to eql !@expected.empty?
|
||||
end
|
||||
|
||||
context 'when theme not in the DB' do
|
||||
|
||||
1334
spec/fixtures/db/dynamic_finders.yml
vendored
1334
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
542
spec/fixtures/dynamic_finders/expected.yml
vendored
542
spec/fixtures/dynamic_finders/expected.yml
vendored
@@ -1246,6 +1246,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/addonify-quick-view/package.json, Match:
|
||||
''1.0.0'''
|
||||
addonify-recaptcha-for-edd:
|
||||
QueryParameter:
|
||||
number: 1.0.2
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/addonify-recaptcha-for-edd/public/js/addonify-recaptcha-for-edd-public.js?ver=1.0.2
|
||||
confidence: 10
|
||||
addons-for-beaver-builder:
|
||||
QueryParameter:
|
||||
number: 1.4.1
|
||||
@@ -1825,7 +1832,9 @@ plugins:
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/advanced-sermons/styling/asp-frontend.css?ver=1.8
|
||||
confidence: 10
|
||||
- http://wp.lab/wp-content/plugins/advanced-sermons/styling/css/asp-frontend.css?ver=1.8
|
||||
- http://wp.lab/wp-content/plugins/advanced-sermons/styling/media-player/asp-media-player.css?ver=1.8
|
||||
confidence: 30
|
||||
advanced-spoiler:
|
||||
QueryParameter:
|
||||
number: 2.02
|
||||
@@ -2070,6 +2079,13 @@ plugins:
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/affilicious/package.json, Match: ''0.9.14'''
|
||||
affliates-manager-prime-for-wc-lite:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/affliates-manager-prime-for-wc-lite/languages/ciwcamp-affliate-manager.pot,
|
||||
Match: ''d-Version: Wordpress Contact Form 7 PDF-1.0.0'''
|
||||
afs-analytics-for-woocommerce:
|
||||
Comment:
|
||||
number: '1.1'
|
||||
@@ -2141,6 +2157,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/agile-whatsapp-share/languages/agile_whatsapp_share.po,
|
||||
Match: ''"Project-Id-Version: Whatsapp Share v1.0'''
|
||||
agy-verification:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/agy-verification/languages/agy-verification.pot,
|
||||
Match: ''"Project-Id-Version: Agy Verification 1.0.0'''
|
||||
ahachat-messenger-marketing:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -3392,6 +3415,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/art-picture-gallery/apg.class/file-upload/js/blueimp-gallery-indicator.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/art-picture-gallery/apg.class/file-upload/js/jquery.blueimp-gallery.js?ver=1.0
|
||||
confidence: 80
|
||||
art-video-player:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/art-video-player/assets/js/artplayer.js?ver=1.0
|
||||
confidence: 10
|
||||
arya-license-manager:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -3480,6 +3510,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/assign-missing-categories/languages/assign-missing-categories.pot,
|
||||
Match: ''t-Id-Version: Assign Missing Categories 1.2'''
|
||||
assistant7:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/assistant7/public/css/assistant7-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/assistant7/public/js/assistant7-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
asterisk-web-callback:
|
||||
TranslationFile:
|
||||
number: '0.1'
|
||||
@@ -5435,6 +5473,12 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/birthday-discount-vouchers/assets/js/picker.date.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/birthday-discount-vouchers/assets/js/custom.js?ver=1.0.0
|
||||
confidence: 40
|
||||
bit-smtp:
|
||||
MetaTag:
|
||||
number: 1.0.2
|
||||
found_by: Meta Tag (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''Forms by BitCode 1.0.2'''
|
||||
bitcoin-address:
|
||||
QueryParameter:
|
||||
number: 0.8.1
|
||||
@@ -5580,6 +5624,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/blkcanvas-easy-attachments/package.json,
|
||||
Match: ''1.0.0'''
|
||||
block-conditions:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/block-conditions/public/css/block-conditions-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/block-conditions/public/js/block-conditions-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
block-fancy-list-item:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -5732,6 +5784,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/blog-sidebar-widget/public/css/blog-sidebar-widget-public.min.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/blog-sidebar-widget/public/js/blog-sidebar-widget-public.min.js?ver=1.0.1
|
||||
confidence: 20
|
||||
blogging-tools:
|
||||
TranslationFile:
|
||||
number: 1.0.2
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/blogging-tools/languages/blogging-tools.pot,
|
||||
Match: ''"Project-Id-Version: Blogging Tools 1.0.2'''
|
||||
bloglovin-follow:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
@@ -6331,6 +6390,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/boozang/public/css/boozang-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/boozang/public/js/boozang-public.js?ver=1.0.0
|
||||
bot-for-telegram-on-woocommerce:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/bot-for-telegram-on-woocommerce/package.json,
|
||||
Match: ''1.0.0'''
|
||||
botamp:
|
||||
QueryParameter:
|
||||
number: 1.3.2
|
||||
@@ -6634,6 +6700,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/brader-kits/public/css/brader-kits-public.css?ver=20.8.21
|
||||
- http://wp.lab/wp-content/plugins/brader-kits/public/js/brader-kits-public.js?ver=20.8.21
|
||||
confidence: 20
|
||||
brand-coupons-for-woocommerce:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/brand-coupons-for-woocommerce/public/css/woocommerce-brand-coupons-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/brand-coupons-for-woocommerce/public/js/woocommerce-brand-coupons-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
branda-white-labeling:
|
||||
TranslationFile:
|
||||
number: 3.3.2
|
||||
@@ -6786,6 +6860,15 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/browser-window-stats/languages/browser-window-stats.pot,
|
||||
Match: ''roject-Id-Version: Browser Window Stats 1.1'''
|
||||
browsing-history:
|
||||
QueryParameter:
|
||||
number: 1.1.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/browsing-history/assets/list.css?ver=1.1.0
|
||||
- http://wp.lab/wp-content/plugins/browsing-history/assets/save.js?ver=1.1.0
|
||||
- http://wp.lab/wp-content/plugins/browsing-history/assets/list.js?ver=1.1.0
|
||||
confidence: 30
|
||||
brozzme-blurb-lightbox-module-in-divi:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
@@ -9967,6 +10050,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/jBox.all.min.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/main.js?ver=1.0
|
||||
confidence: 40
|
||||
conditional-taxonomy-option:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/css/cto-acf-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/js/cto-acf-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
conekta-payment-gateway:
|
||||
ChangeLog:
|
||||
number: 3.0.5
|
||||
@@ -10247,6 +10338,13 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/content-planner/js/badger.js?ver=1.0
|
||||
content-promoter:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/content-promoter/languages/contentpromoter.pot,
|
||||
Match: ''"Project-Id-Version: Content Promoter 1.0.0'''
|
||||
content-protector:
|
||||
Comment:
|
||||
number: '2.11'
|
||||
@@ -10699,6 +10797,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/country-code-selector/public/css/country-code-selector-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/country-code-selector/public/js/country-code-selector-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
coupon-bulker:
|
||||
QueryParameter:
|
||||
number: 1.2.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/coupon-bulker/public/css/coupon-bulker-public.css?ver=1.2.0
|
||||
- http://wp.lab/wp-content/plugins/coupon-bulker/public/js/coupon-bulker-public.js?ver=1.2.0
|
||||
confidence: 20
|
||||
coupon-reveal-button:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -10837,6 +10943,12 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/cowidgets-elementor-addons/package.json,
|
||||
Match: ''1.0.0'''
|
||||
coyote:
|
||||
ChangeLog:
|
||||
number: 1.0.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/coyote/changelog.txt, Match: ''= 1.0.0'''
|
||||
cpf-e-cnpj-para-contact-form-7:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -11316,6 +11428,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/custom-classes/lang/custom-classes.pot,
|
||||
Match: ''"Project-Id-Version: Custom Classes 1.0.0'''
|
||||
custom-codes:
|
||||
TranslationFile:
|
||||
number: 2.1.9
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/custom-codes/languages/custom-codes.pot,
|
||||
Match: ''"Project-Id-Version: Custom Codes 2.1.9'''
|
||||
custom-color-palette:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -11413,6 +11532,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/custom-job-fields-for-wp-job-manager/public/css/cfwjm-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/custom-job-fields-for-wp-job-manager/public/js/cfwjm-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
custom-layouts:
|
||||
QueryParameter:
|
||||
number: 1.1.3
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/custom-layouts/assets/js/frontend/custom-layouts.js?ver=1.1.3
|
||||
confidence: 10
|
||||
custom-login:
|
||||
MetaTag:
|
||||
number: 3.2.7
|
||||
@@ -11753,6 +11879,28 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/dark-login-screen/langs/dark_login_screen-en_AU.po,
|
||||
Match: ''Project-Id-Version: Stronger Admin Bar v1.0'''
|
||||
dark-mode-lite:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/dark-mode-lite/styles/css/dml-visitor-mode.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/dark-mode-lite/styles/css/toggle.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/dark-mode-lite/styles/js/dml-visitor-mode.js?ver=1.0
|
||||
confidence: 30
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/dark-mode-lite/languages/dark_mode_lite.pot,
|
||||
Match: ''"Project-Id-Version: Dark Mode Lite 1.0'''
|
||||
darklup-lite-wp-dark-mode:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/darklup-lite-wp-dark-mode/assets/css/darkluplite-style.css?ver=1.0.0
|
||||
confidence: 10
|
||||
darkmode:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -11874,6 +12022,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/dbd-pinterest-widget/theme/css/dbd_pinterest.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/dbd-pinterest-widget/theme/js/dbd_pinterest.js?ver=1.0
|
||||
confidence: 20
|
||||
deau-api:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/deau-api/languages/deau-api-en_US.po, Match:
|
||||
''roject-Id-Version: deAU API Plugin Pot v1.0.0'''
|
||||
debtcom-business-in-a-box:
|
||||
QueryParameter:
|
||||
number: 3.0.0
|
||||
@@ -12935,6 +13090,13 @@ plugins:
|
||||
confidence: 10
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/duplicate-page-and-post/admin/css/duplicate-page-and-post-admin.min.css?ver=2.1.1
|
||||
duplicate-pages-posts:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/duplicate-pages-posts/languages/duplicate-pages-posts.pot,
|
||||
Match: ''d-Version: Duplicate Pages, Posts & CPT 1.0'''
|
||||
duplicate-term:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -13020,6 +13182,21 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/dynamic-seo-child-pages/lang/dynamic-seo-child-pages.pot,
|
||||
Match: ''ect-Id-Version: Dynamic SEO Child Pages 1.1'''
|
||||
dynamically-display-posts:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/dynamically-display-posts/includes/frontend/assets/css/style.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/dynamically-display-posts/includes/frontend/assets/add/vue_js/vue.production.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/dynamically-display-posts/includes/frontend/assets/js/script.js?ver=1.0
|
||||
confidence: 30
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/dynamically-display-posts/languages/uk_UA.po,
|
||||
Match: ''"Project-Id-Version: xq-xe-xt-xy 1.0'''
|
||||
dynast-admin-panel:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -13145,6 +13322,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/easy-collapse-accordion/js/bootstrap-accordion.min.js?ver=1.0
|
||||
confidence: 10
|
||||
easy-contact-form-pro:
|
||||
ChangeLog:
|
||||
number: 1.1.1.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/easy-contact-form-pro/changelogs.txt, Match:
|
||||
''= 1.1.1.0 =*'''
|
||||
easy-country-spam-blocker:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -13622,6 +13806,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/easy-table-of-contents/vendor/icomoon/style.min.css?ver=1.3
|
||||
- http://wp.lab/wp-content/plugins/easy-table-of-contents/assets/css/screen.min.css?ver=1.3
|
||||
- http://wp.lab/wp-content/plugins/easy-table-of-contents/assets/js/front.min.js?ver=1.3
|
||||
easy-tag-and-tracking-id-inserter:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/easy-tag-and-tracking-id-inserter/public/css/easy-tag-and-tracking-id-inserter-public.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/easy-tag-and-tracking-id-inserter/public/js/easy-tag-and-tracking-id-inserter-public.js?ver=1.0.1
|
||||
confidence: 20
|
||||
easy-taxonomy-support:
|
||||
TranslationFile:
|
||||
number: 1.0.2
|
||||
@@ -13837,7 +14029,10 @@ plugins:
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio-wp.js?ver=1.0.0
|
||||
confidence: 10
|
||||
- http://wp.lab/wp-content/plugins/economic-market-news/assets/Sortable.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio_search.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio_search.css?v=1.0.0&ver=5.3.1
|
||||
confidence: 40
|
||||
ecwid-widgets-avalanche:
|
||||
QueryParameter:
|
||||
number: 1.6.1
|
||||
@@ -14736,6 +14931,15 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/envychimp/public/js/envy-chimp-public.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envychimp/public/js/ajaxChimp.min.js?ver=1.0.0
|
||||
confidence: 60
|
||||
envydoc:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/envydoc/public/css/font-awesome.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envydoc/public/css/envy-doc-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/envydoc/public/js/envy-doc-public.js?ver=1.0.0
|
||||
confidence: 30
|
||||
envynotifs:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -15205,6 +15409,13 @@ plugins:
|
||||
found_by: Comment (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''Generated By Events-Calendar - Version: 6.7.6'''
|
||||
events-for-geodirectory:
|
||||
TranslationFile:
|
||||
number: 2.1.1.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/events-for-geodirectory/languages/geodirevents-en_US.po,
|
||||
Match: ''ect-Id-Version: Events for GeoDirectory 2.1.1.0'''
|
||||
events-made-easy:
|
||||
QueryParameter:
|
||||
number: 2.0.68
|
||||
@@ -15557,6 +15768,19 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/extend-filter-products-by-price-widget/languages/wc-change-filter-by-price-display.pot,
|
||||
Match: ''Filter By Price Display for WooCommerce 1.0'''
|
||||
extended-simple-history-for-beaver-builder:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/extended-simple-history-for-beaver-builder/languages/extended-simple-history-beaver-builder.pot,
|
||||
Match: ''ended Simple History for Beaver Builder 1.0.0'''
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/extended-simple-history-for-beaver-builder/package.json,
|
||||
Match: ''1.0.0'''
|
||||
extended-warranty:
|
||||
ChangeLog:
|
||||
number: 1.0.0
|
||||
@@ -16393,6 +16617,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/five-star-ratings-shortcode/package.json,
|
||||
Match: ''1.1.4'''
|
||||
fix-pay-checkout-gateway-para-wc:
|
||||
ChangeLog:
|
||||
number: 1.0.7
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/fix-pay-checkout-gateway-para-wc/changelog.txt,
|
||||
Match: ''= 1.0.7'''
|
||||
fixed-bottom-menu:
|
||||
QueryParameter:
|
||||
number: '1.00'
|
||||
@@ -17020,7 +17251,10 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/world-flags-sprite/stylesheets/flags16.css?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/js/anwpfl-public.min.js?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles-compatible.css?ver=0.4.2
|
||||
confidence: 50
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles.min.css?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.css?ver=0.4.2
|
||||
- http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.js?ver=0.4.2
|
||||
confidence: 80
|
||||
ChangeLog:
|
||||
number: 0.10.4
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
@@ -19629,6 +19863,32 @@ plugins:
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/gutenberg/changelog.txt, Match: ''= 3.9.0'''
|
||||
guto-toolkit:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/css/bootstrap.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/css/animate.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/css/boxicons.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/css/nice-select.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/css/owl.carousel.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/css/odometer.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/css/magnific-popup.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/css/main-style.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/popper.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/bootstrap.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/nice-select.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/magnific-popup.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/owl.carousel.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/meanmenu.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/parallax.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/jquery.appear.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/odometer.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/wow.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/jquery.ajaxchimp.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/guto-toolkit/public/js/guto-toolkit-public.js?ver=1.0.0
|
||||
confidence: 100
|
||||
gvsoft-photobox:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
@@ -20160,6 +20420,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/hk-button-contact/css/button-contact.css?ver=1.0
|
||||
confidence: 10
|
||||
hm-logo-showcase:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/hm-logo-showcase/assets/css/hmls-front-style.css?ver=1.1
|
||||
- http://wp.lab/wp-content/plugins/hm-logo-showcase/assets/js/hmls-front-script.js?ver=1.1
|
||||
confidence: 20
|
||||
hm-product-catalog:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -20177,6 +20445,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/hm-resume-manager/assets/css/hmrm-front-style.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/hm-resume-manager/assets/js/hmrm-front-script.js?ver=1.0
|
||||
confidence: 20
|
||||
hm-simple-facebook-page:
|
||||
QueryParameter:
|
||||
number: '1.4'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/hm-simple-facebook-page/assets/css/hmsfp-front-style.css?ver=1.4
|
||||
confidence: 10
|
||||
hmh-footer-builder-for-elementor:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -20334,6 +20609,15 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/hotmart-wp/languages/hotmart-wp-pt_BR.po,
|
||||
Match: ''"Project-Id-Version: Hotmart WP 0.3.3'''
|
||||
hotspot:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/hotspot/assets/frontend/css/xolo-hotspot-public.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/jquery.powertip.min.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/xolo-hotspot-public.js?ver=1.0
|
||||
confidence: 30
|
||||
hover-effects:
|
||||
QueryParameter:
|
||||
number: '2.1'
|
||||
@@ -20592,6 +20876,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/i-search/front/js/isrc-autocomplete.min.js?ver=1.2.0
|
||||
- http://wp.lab/wp-content/plugins/i-search/front/js/frontend.min.js?ver=1.2.0
|
||||
confidence: 30
|
||||
i2-azon:
|
||||
QueryParameter:
|
||||
number: 0.2.4
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/i2-azon/dist/css/style.css?ver=0.2.4
|
||||
confidence: 10
|
||||
iamport-payment:
|
||||
ComposerFile:
|
||||
number: 0.9.15
|
||||
@@ -21419,6 +21710,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/inperks-abandoned-cart-recovery/i18n/languages/inperks-abandoned-cart-recovery.pot,
|
||||
Match: ''art recovery for WooCommerce by Inperks 1.0.0'''
|
||||
insert-block-pattern-block:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/insert-block-pattern-block/languages/ibpb.pot,
|
||||
Match: ''-Id-Version: Insert Block Pattern Block 1.0'''
|
||||
insert-giphy-block:
|
||||
ComposerFile:
|
||||
number: 0.1.0
|
||||
@@ -22298,6 +22596,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/jp-scrollbar/js/jquery.mCustomScrollbar.concat.min.js?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/jp-scrollbar/js/jquery.mousewheel.js?ver=1.0
|
||||
confidence: 20
|
||||
jp-students-result-management-system:
|
||||
QueryParameter:
|
||||
number: '1.5'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/jp-students-result-management-system/css/style.css?ver=1.5
|
||||
- http://wp.lab/wp-content/plugins/jp-students-result-management-system/js/scripts.js?ver=1.5
|
||||
confidence: 20
|
||||
jps-affiliate:
|
||||
QueryParameter:
|
||||
number: '0.1'
|
||||
@@ -22465,6 +22771,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/jsm-pretty-json-ld/languages/jsm-pretty-json-ld.pot,
|
||||
Match: ''roject-Id-Version: JSM''s Pretty JSON-LD 1.0.0'''
|
||||
jsm-show-comment-meta:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/jsm-show-comment-meta/languages/jsm-show-comment-meta.pot,
|
||||
Match: ''Id-Version: JSM''s Show Comment Metadata 1.0.0'''
|
||||
jsm-show-post-meta:
|
||||
TranslationFile:
|
||||
number: 1.1.0
|
||||
@@ -22660,6 +22973,24 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/kanzu-support-desk/assets/css/ksd-public.css?ver=2.4.5
|
||||
- http://wp.lab/wp-content/plugins/kanzu-support-desk/assets/js/ksd-public.js?ver=2.4.5
|
||||
confidence: 20
|
||||
kassa-at-for-woocommerce:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/kassa-at-for-woocommerce/languages/kassa-at-for-woocommerce-de_DE_formal.po,
|
||||
Match: ''ct-Id-Version: KASSA.AT For WooCommerce 1.0.0'''
|
||||
kata-plus:
|
||||
QueryParameter:
|
||||
number: 1.0.3
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/libraries/grid.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/theme-styles.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/sticky-box.css?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/sticky-box.js?ver=1.0.3
|
||||
- http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/kata-plus-inline.js?ver=1.0.3
|
||||
confidence: 50
|
||||
katalyst-video-plus:
|
||||
QueryParameter:
|
||||
number: 3.2.1
|
||||
@@ -24078,6 +24409,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/link-exchange-lite/languages/link-exchange-it_IT.po,
|
||||
Match: ''"Project-Id-Version: Link Exchange v1.0.0'''
|
||||
link-products-to-sendinblue:
|
||||
ChangeLog:
|
||||
number: 1.0.2
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/link-products-to-sendinblue/changelog.txt,
|
||||
Match: ''= 1.0.2'''
|
||||
link-roundups:
|
||||
TranslationFile:
|
||||
number: 0.4.1
|
||||
@@ -24324,6 +24662,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/livetwitch/public/css/twitch-public.css?ver=0.0.2
|
||||
- http://wp.lab/wp-content/plugins/livetwitch/public/js/twitch-public.js?ver=0.0.2
|
||||
confidence: 20
|
||||
llc-tax:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/llc-tax/assets/css/llc_main.css?ver=1.1
|
||||
- http://wp.lab/wp-content/plugins/llc-tax/assets/js/llc_main.js?ver=1.1
|
||||
confidence: 20
|
||||
lnd-for-wp:
|
||||
QueryParameter:
|
||||
number: 0.1.0
|
||||
@@ -25435,6 +25781,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/mana-gateway/inc/frontend/css/mana-gateway-frontend.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/mana-gateway/inc/frontend/js/mana-gateway-frontend.js?ver=1.0.0
|
||||
confidence: 20
|
||||
manage-admin-columns:
|
||||
TranslationFile:
|
||||
number: 1.4.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/manage-admin-columns/languages/manage-admin-columns.pot,
|
||||
Match: ''roject-Id-Version: Manage Admin Columns 1.4.0'''
|
||||
manage-inactive-subsites:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -25973,6 +26326,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/maxtradelogin/languages/maxtradelogin.pot,
|
||||
Match: ''"Project-Id-Version: MaxtradeLogin 1.0.1'''
|
||||
mbaierl-projects-cpt:
|
||||
TranslationFile:
|
||||
number: '0.1'
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/mbaierl-projects-cpt/languages/et_builder-de_DE.po,
|
||||
Match: ''ct-Id-Version: Divi Projects by mbaierl 0.1'''
|
||||
mc4wp-activity:
|
||||
ChangeLog:
|
||||
number: 1.0.5
|
||||
@@ -26107,6 +26467,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/medium/languages/medium.pot, Match: ''"Project-Id-Version:
|
||||
Medium 1.4.0'''
|
||||
mega-elements-addons-for-elementor:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/mega-elements-addons-for-elementor/languages/mega-elements-addons-for-elementor.pot,
|
||||
Match: ''n: Mega Elements - Addons for Elementor 1.0.0'''
|
||||
mega-store-companion:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
@@ -26842,6 +27209,12 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/mobile-menu/includes/css/mobmenu.css?ver=2.7.4.4
|
||||
- http://wp.lab/wp-content/plugins/mobile-menu/includes/js/mobmenu.js?ver=2.7.4.4
|
||||
confidence: 30
|
||||
mobile-pages:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/mobile-pages/package.json, Match: ''1.0.0'''
|
||||
mobile-switcher:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -27750,6 +28123,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/my-eyes-are-up-here/package.json, Match:
|
||||
''1.1.9'''
|
||||
my-fastapp:
|
||||
TranslationFile:
|
||||
number: 1.0.1
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/my-fastapp/languages/my-fastapp.pot, Match:
|
||||
''"Project-Id-Version: MyFastApp (DEV) 1.0.1'''
|
||||
my-faves:
|
||||
QueryParameter:
|
||||
number: 1.1.1
|
||||
@@ -27759,6 +28139,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/my-faves/public/js/gscript.js?ver=1.1.1
|
||||
- http://wp.lab/wp-content/plugins/my-faves/public/js/myfaves-public.js?ver=1.1.1
|
||||
confidence: 30
|
||||
my-favorites:
|
||||
QueryParameter:
|
||||
number: 1.1.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/my-favorites/assets/select.css?ver=1.1.0
|
||||
- http://wp.lab/wp-content/plugins/my-favorites/assets/select.js?ver=1.1.0
|
||||
confidence: 20
|
||||
my-idx-home-search:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
@@ -29067,6 +29455,7 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-main.min.js?ver=1.9.1
|
||||
- http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/florist-one-flower-delivery-public.min.js?ver=1.9.1
|
||||
- http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-condolences.min.js?ver=1.9.1
|
||||
- http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-photo-gallery.min.js?ver=1.9.1
|
||||
confidence: 100
|
||||
obituary-central-newspaper-obituary-editor:
|
||||
QueryParameter:
|
||||
@@ -31831,6 +32220,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/post-sliders/js/owl.carousel.js?ver=1.0
|
||||
confidence: 10
|
||||
post-status-indicator:
|
||||
ComposerFile:
|
||||
number: 1.0.1
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/post-status-indicator/package.json, Match:
|
||||
''1.0.1'''
|
||||
post-theming:
|
||||
TranslationFile:
|
||||
number: '0.3'
|
||||
@@ -31982,6 +32378,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/posts-data-table/assets/css/posts-data-table.min.css?ver=1.1
|
||||
- http://wp.lab/wp-content/plugins/posts-data-table/assets/js/posts-data-table.min.js?ver=1.1
|
||||
confidence: 20
|
||||
posts-filter:
|
||||
QueryParameter:
|
||||
number: 1.0.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/posts-filter/assets/filter.css?ver=1.0.1
|
||||
- http://wp.lab/wp-content/plugins/posts-filter/assets/filter.js?ver=1.0.1
|
||||
confidence: 20
|
||||
posts-grid:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
@@ -32010,6 +32414,20 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/posts-in-sidebar/CHANGELOG.md, Match: ''##
|
||||
[4.7.5]'''
|
||||
posts-search:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/posts-search/assets/found_posts.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/posts-search/assets/found_posts.js?ver=1.0.0
|
||||
confidence: 20
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/posts-search/languages/posts-search.pot,
|
||||
Match: ''"v1.0.0'''
|
||||
posts-slider-shortcode:
|
||||
QueryParameter:
|
||||
number: '1.0'
|
||||
@@ -32552,6 +32970,14 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/private-google-calendars/lib/fullcalendar4/moment-timezone/main.min.js?ver=20191205
|
||||
- http://wp.lab/wp-content/plugins/private-google-calendars/lib/tippy/tippy-bundle.umd.min.js?ver=20191205
|
||||
confidence: 100
|
||||
privy-crm-integration:
|
||||
QueryParameter:
|
||||
number: 0.1.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/privy-crm-integration/public/css/privyr-crm-public.css?ver=0.1.0
|
||||
- http://wp.lab/wp-content/plugins/privy-crm-integration/public/js/privyr-crm-public.js?ver=0.1.0
|
||||
confidence: 20
|
||||
pro-adblock:
|
||||
QueryParameter:
|
||||
number: 1.2.1
|
||||
@@ -32690,6 +33116,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/product-recommendation-quiz-for-ecommerce/changelog.txt,
|
||||
Match: ''version 1.0.3'''
|
||||
product-recommendations-custom-locations:
|
||||
TranslationFile:
|
||||
number: 1.0.1
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/product-recommendations-custom-locations/languages/woocommerce-product-recommendations-custom-locations.pot,
|
||||
Match: ''duct Recommendations - Custom Locations 1.0.1'''
|
||||
product-review:
|
||||
QueryParameter:
|
||||
number: 1.2.3
|
||||
@@ -33360,6 +33793,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/qstomizer-custom-product-designer/languages/qstomizer-es_ES.po,
|
||||
Match: ''"Project-Id-Version: Qstomizer v1.0.0'''
|
||||
quabads:
|
||||
QueryParameter:
|
||||
number: 1.2.1
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/quabads/admin/css/quabads-admin.css?ver=1.2.1
|
||||
confidence: 10
|
||||
quadmenu:
|
||||
QueryParameter:
|
||||
number: 1.1.6
|
||||
@@ -35662,6 +36102,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/rw-elephant-rental-inventory/lib/assets/css/rw-elephant.min.css?ver=2.1.2
|
||||
- http://wp.lab/wp-content/plugins/rw-elephant-rental-inventory/lib/assets/js/rw-elephant.min.js?ver=2.1.2
|
||||
confidence: 20
|
||||
rw-recent-post:
|
||||
QueryParameter:
|
||||
number: '1.1'
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/rw-recent-post/css/rwstyle.css?ver=1.1
|
||||
confidence: 10
|
||||
ry-wc-city-select:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
@@ -35682,6 +36129,13 @@ plugins:
|
||||
found_by: Comment (Passive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/, Match: ''S-ButtonZ 1.1.5'''
|
||||
s2-donation-using-stripe:
|
||||
ChangeLog:
|
||||
number: 1.0.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/s2-donation-using-stripe/changelog.txt,
|
||||
Match: ''= 1.0.0'''
|
||||
s2-wishlist-for-woocommerce:
|
||||
ChangeLog:
|
||||
number: 1.0.4
|
||||
@@ -37381,6 +37835,16 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/show-posts/atw-posts-style.min.css?ver=1.3.9
|
||||
confidence: 10
|
||||
show-product-variations-for-woocommerce:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/wsv-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/datatables.min.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/datatables.min.js?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/wsv-public.js?ver=1.0.0
|
||||
confidence: 40
|
||||
show-remote-ip:
|
||||
QueryParameter:
|
||||
number: 0.0.1
|
||||
@@ -39784,6 +40248,12 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/sparrow/public/css/getsparrow-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/sparrow/public/js/getsparrow-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
spatie-ray:
|
||||
ChangeLog:
|
||||
number: 1.1.0
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/spatie-ray/CHANGELOG.md, Match: ''## 1.1.0'''
|
||||
speaker-lite:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
@@ -39928,7 +40398,10 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/sports-leagues/vendor/datatables/datatables.min.css?ver=0.5.3
|
||||
- http://wp.lab/wp-content/plugins/sports-leagues/vendor/datatables/datatables.min.js?ver=0.5.3
|
||||
- http://wp.lab/wp-content/plugins/sports-leagues/public/js/sl-public.min.js?ver=0.5.3
|
||||
confidence: 70
|
||||
- http://wp.lab/wp-content/plugins/sports-leagues/public/css/styles.min.css?ver=0.5.3
|
||||
- http://wp.lab/wp-content/plugins/sports-leagues/vendor/modaal/modaal.min.css?ver=0.5.3
|
||||
- http://wp.lab/wp-content/plugins/sports-leagues/vendor/modaal/modaal.min.js?ver=0.5.3
|
||||
confidence: 100
|
||||
ChangeLog:
|
||||
number: 0.5.3
|
||||
found_by: Change Log (Aggressive Detection)
|
||||
@@ -40439,7 +40912,10 @@ plugins:
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/stock-quotes-list/assets/stockdio-wp.js?ver=2.7.13
|
||||
confidence: 10
|
||||
- http://wp.lab/wp-content/plugins/stock-quotes-list/assets/Sortable.min.js?ver=2.7.13
|
||||
- http://wp.lab/wp-content/plugins/stock-quotes-list/assets/stockdio_search.js?ver=2.7.13
|
||||
- http://wp.lab/wp-content/plugins/stock-quotes-list/assets/stockdio_search.css?v=2.7.13&ver=5.3.1
|
||||
confidence: 40
|
||||
stock-ticker:
|
||||
QueryParameter:
|
||||
number: 3.0.4
|
||||
@@ -41146,6 +41622,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/sync-post-with-other-site/languages/sps_text_domain-en_US.po,
|
||||
Match: ''-Id-Version: Sync Post With Other Site v1.0.0'''
|
||||
QueryParameter:
|
||||
number: 1.1.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/sync-post-with-other-site/assets/css/sps_front_style.css?rand=578&ver=1.1.0
|
||||
- http://wp.lab/wp-content/plugins/sync-post-with-other-site/assets/js/sps_front_js.js?rand=749&ver=1.1.0
|
||||
confidence: 20
|
||||
synchi:
|
||||
TranslationFile:
|
||||
number: '5.1'
|
||||
@@ -41872,6 +42355,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/textp2p-texting-widget/assets/css/im-textp2p.css?ver=1.0
|
||||
- http://wp.lab/wp-content/plugins/textp2p-texting-widget/assets/js/im-textp2p.js?ver=1.0
|
||||
confidence: 20
|
||||
texty:
|
||||
TranslationFile:
|
||||
number: '1.0'
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/texty/languages/texty.pot, Match: ''"Project-Id-Version:
|
||||
Texty 1.0'''
|
||||
tf-numbers-number-counter-animaton:
|
||||
QueryParameter:
|
||||
number: 1.5.1
|
||||
@@ -41988,6 +42478,13 @@ plugins:
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/the-post-grid/assets/css/thepostgrid.css?ver=2.2.2
|
||||
confidence: 10
|
||||
the-publisher-desk-ads:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/the-publisher-desk-ads/package.json, Match:
|
||||
''1.0.0'''
|
||||
the-publisher-desk-read-more:
|
||||
ComposerFile:
|
||||
number: 1.0.0
|
||||
@@ -50205,6 +50702,13 @@ plugins:
|
||||
- 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-chatbot-builder:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-chatbot-builder/languages/wp-chatbot-builder-en_US.po,
|
||||
Match: ''"Project-Id-Version: WP-Chatbot Builder 1.0.0'''
|
||||
wp-chatfox:
|
||||
ChangeLog:
|
||||
number: 1.0.0
|
||||
@@ -50801,6 +51305,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-ds-blog-map/wp-ds-blogmap-ru_RU.po, Match:
|
||||
''"Project-Id-Version: WP DS Blog Map v3.1.3'''
|
||||
wp-dummy-content-generator:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wp-dummy-content-generator/public/css/wp_dummy_content_generator-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wp-dummy-content-generator/public/js/wp_dummy_content_generator-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wp-easter-egg:
|
||||
QueryParameter:
|
||||
number: 2.0.6
|
||||
@@ -51254,6 +51766,11 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-foft-loader/lang/wp-foft-loader.pot,
|
||||
Match: ''"Project-Id-Version: WP FOFT Loader 1.0.30'''
|
||||
ComposerFile:
|
||||
number: 2.1.5
|
||||
found_by: Composer File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wp-foft-loader/package.json, Match: ''2.1.5'''
|
||||
wp-font-awesome:
|
||||
QueryParameter:
|
||||
number: '1.5'
|
||||
@@ -54988,6 +55505,13 @@ plugins:
|
||||
- http://wp.lab/wp-content/plugins/wpc-paypal-pro-payments/public/css/wpc-paypal-pro-payments-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wpc-paypal-pro-payments/public/js/wpc-paypal-pro-payments-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wpc-product-faqs:
|
||||
TranslationFile:
|
||||
number: 1.0.0
|
||||
found_by: Translation File (Aggressive Detection)
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wpc-product-faqs/languages/wpc-product-faqs.pot,
|
||||
Match: ''rsion: WPC Product FAQs for WooCommerce 1.0.0'''
|
||||
wpc-product-quantity:
|
||||
TranslationFile:
|
||||
number: 1.1.0
|
||||
@@ -55103,6 +55627,14 @@ plugins:
|
||||
interesting_entries:
|
||||
- 'http://wp.lab/wp-content/plugins/wpdirectory/wpDirectory-es_ES.po, Match:
|
||||
''"Project-Id-Version: wpDirectory 1.0'''
|
||||
wpdirectorykit:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
found_by: Query Parameter (Passive Detection)
|
||||
interesting_entries:
|
||||
- http://wp.lab/wp-content/plugins/wpdirectorykit/public/css/wpdirectorykit-public.css?ver=1.0.0
|
||||
- http://wp.lab/wp-content/plugins/wpdirectorykit/public/js/wpdirectorykit-public.js?ver=1.0.0
|
||||
confidence: 20
|
||||
wpdownload:
|
||||
QueryParameter:
|
||||
number: 1.0.0
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,220 @@
|
||||
# Agy is a powerful solution to add any kind of verification restriction on your website. Easy to setup, optimized for all devices, and modern design option to match your
|
||||
# Copyright (C) YEAR Marko Radulovic
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <upss070288@gmail.com>, 2021.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Agy Verification 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-01-05 19:48+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: agy-verification.php:69
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: agy-verification.php:83
|
||||
msgid "Docs & FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: agy-verification.php:88
|
||||
msgid "GitHub"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:24
|
||||
msgid "You have successfully saved your settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:93
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\" target=\"%s\" class=\"%s\">"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:145
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\" target=\"%s\"><img src=\"%s\" class=\"%s\"></a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:159
|
||||
msgid "_blank"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:161
|
||||
msgid "agy-logo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:176 includes/Agy_Dashboard.php:262
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:177 includes/Agy_Dashboard.php:267
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:179 includes/Agy_Dashboard.php:272
|
||||
msgid "Design"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:186
|
||||
msgid "Agy Verification"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:222
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:244
|
||||
msgid "Set your General settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:249
|
||||
msgid "Set all of the text for your modal verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:254
|
||||
msgid "Set the desirable design for the modal verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:278
|
||||
msgid "Enable / Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:283
|
||||
msgid "Show for unregistered users only"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:288
|
||||
msgid "Activate Debug mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:293
|
||||
msgid "Exit URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:299
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:304
|
||||
msgid "Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:309
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:314
|
||||
msgid "Enter Button Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:319
|
||||
msgid "Exit Button Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:324
|
||||
msgid "Separator Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:329
|
||||
msgid "Slogan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:335
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:340
|
||||
msgid "Z-Index ( Overlay )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:345
|
||||
msgid "Content Box width ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:350
|
||||
msgid "Headline Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:355
|
||||
msgid "Headline Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:360
|
||||
msgid "Subtitle Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:365
|
||||
msgid "Subtitle Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:370
|
||||
msgid "Message Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:375
|
||||
msgid "Message Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:380
|
||||
msgid "Enter Button background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:385
|
||||
msgid "Enter Button font color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:390
|
||||
msgid "Enter Button border style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:395
|
||||
msgid "Enter Button border color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:400
|
||||
msgid "Enter Button font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:405
|
||||
msgid "Exit Button background color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:410
|
||||
msgid "Exit Button font color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:415
|
||||
msgid "Exit Button border style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:420
|
||||
msgid "Exit Button border color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:425
|
||||
msgid "Exit Button font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:430
|
||||
msgid "Separator Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:435
|
||||
msgid "Separator Font size ( in px )"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:440
|
||||
msgid "Slogan Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Agy_Dashboard.php:445
|
||||
msgid "Slogan Font size ( in px )"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,55 @@
|
||||
# Copyright (C) 2021 Tammersoft
|
||||
# This file is distributed under the same license as the Blogging Tools plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Blogging Tools 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blogging-tools-pro\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-01-23T09:42:38+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: blogging-tools\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Blogging Tools"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Various tools to help blogging."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Tammersoft"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.tammersoft.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:11
|
||||
msgid "Word count"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:12
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:13
|
||||
msgid "Links"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:43
|
||||
msgid "Outlinks"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:44
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bt-admin-list.php:45
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "woo-telegram",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"browser-sync": "^2.26.13",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-autoprefixer": "^7.0.1",
|
||||
"gulp-cached": "^1.1.1",
|
||||
"gulp-cssbeautify": "^3.0.0",
|
||||
"gulp-livereload": "^4.0.2",
|
||||
"gulp-sass": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
4
spec/fixtures/dynamic_finders/plugin_version/coyote/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/coyote/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* First release of the plugin.
|
||||
@@ -0,0 +1,865 @@
|
||||
# Copyright (C) 2021 PressX
|
||||
# This file is distributed under the same license as the Custom Codes plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Custom Codes 2.1.9\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-codes\n"
|
||||
"Last-Translator: Bilal TAS <bilal@pressx.co>\n"
|
||||
"Language-Team: PressX <info@pressx.co>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-01-20T21:53:46+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: custom-codes\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: lib/post-type.php:21
|
||||
#: lib/post-type.php:29
|
||||
msgid "Custom Codes"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/custom-codes/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Your custom SASS, CSS, JS and PHP customizations in same directory."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "PressX"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://pressx.co"
|
||||
msgstr ""
|
||||
|
||||
#: lib/activation.php:44
|
||||
#: lib/views/settings-area.php:20
|
||||
#: lib/views/settings-area.php:21
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:23
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:24
|
||||
#: lib/views/locations-area.php:21
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:25
|
||||
msgid "Release Order"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:26
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:47
|
||||
msgid "Not selected"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:67
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:73
|
||||
#: lib/views/locations-area.php:52
|
||||
msgid "Frontend"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:79
|
||||
#: lib/views/locations-area.php:148
|
||||
msgid "Backend"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:82
|
||||
msgid "All roles"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:98
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:103
|
||||
#: lib/views/locations-area.php:161
|
||||
msgid "Everywhere"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:108
|
||||
#: lib/views/locations-area.php:163
|
||||
msgid "Nowhere"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:116
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:119
|
||||
msgid "All pages"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:135
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:138
|
||||
msgid "All posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:154
|
||||
msgid "Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:157
|
||||
msgid "All post types"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:174
|
||||
#: lib/views/locations-area.php:100
|
||||
msgid "Categories / Terms"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:177
|
||||
msgid "All terms"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:196
|
||||
#: lib/views/locations-area.php:114
|
||||
msgid "Archives / Taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:199
|
||||
msgid "All taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:216
|
||||
msgid "Template"
|
||||
msgstr ""
|
||||
|
||||
#: lib/admin-columns.php:219
|
||||
msgid "All templates"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:207
|
||||
msgid "DESKTOP STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:208
|
||||
msgid "TABLET LANDSCAPE STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:209
|
||||
msgid "TABLET PORTRAIT STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:210
|
||||
msgid "SMARTPHONE LANDSCAPE STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:211
|
||||
msgid "SMARTPHONE PORTRAIT STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:212
|
||||
msgid "RETINA DISPLAY STYLES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:254
|
||||
msgid "Could not be written to the file."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:270
|
||||
msgid "Could not be written to the bundle file."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:279
|
||||
#: lib/editor-saver.php:318
|
||||
msgid "Bundle file could not be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:289
|
||||
msgid "File could not be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:306
|
||||
msgid "File output could not be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:335
|
||||
#: lib/editor-saver.php:434
|
||||
msgid "No compiler found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:361
|
||||
#: lib/editor-saver.php:459
|
||||
msgid "Compiled output could not be written to the file."
|
||||
msgstr ""
|
||||
|
||||
#: lib/editor-saver.php:427
|
||||
msgid "Output could not be written to the file."
|
||||
msgstr ""
|
||||
|
||||
#: lib/permissions.php:38
|
||||
msgid "\"wp-content/custom_codes\" folder does not have correct permissions. Please update its permissions to be able to use the plugin."
|
||||
msgstr ""
|
||||
|
||||
#: lib/permissions.php:39
|
||||
msgid "Exists:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/permissions.php:39
|
||||
msgid "Readable:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/permissions.php:39
|
||||
msgid "Writable:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/permissions.php:39
|
||||
msgid "Executable:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:19
|
||||
#: lib/views/admin-bar.php:34
|
||||
msgid "Codes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:20
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:22
|
||||
msgid "Edit Code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:23
|
||||
msgid "Add New Code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:24
|
||||
msgid "No code added yet."
|
||||
msgstr ""
|
||||
|
||||
#: lib/post-type.php:25
|
||||
msgid "Search Codes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:25
|
||||
msgid "Selected language for the custom code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:37
|
||||
msgid "Location of the code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:51
|
||||
msgid "Pages that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:63
|
||||
msgid "Posts that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:75
|
||||
msgid "Post types that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:87
|
||||
msgid "Terms that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:99
|
||||
msgid "Taxonomies that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:111
|
||||
msgid "Templates that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:123
|
||||
msgid "Code includes list."
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:137
|
||||
msgid "Roles that the code will be applied"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:149
|
||||
msgid "Save count of each code post"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:162
|
||||
msgid "User defined editor theme"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:174
|
||||
msgid "User defined editor font size"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:186
|
||||
msgid "User defined editor indent option"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:199
|
||||
msgid "AJAX Saver"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:211
|
||||
msgid "Play sound when saved"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:223
|
||||
msgid "Save with \"Cmd/Ctrl S\""
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:235
|
||||
msgid "Emmet Feature"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:248
|
||||
#: lib/views/settings-area.php:151
|
||||
msgid "Initial Editor Tab"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:260
|
||||
msgid "Output Order"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:272
|
||||
msgid "Desktop <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:284
|
||||
msgid "Tablet Landscape <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:296
|
||||
msgid "Tablet Portrait <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:308
|
||||
msgid "Smartphone Landscape <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:320
|
||||
msgid "Smartphone Portrait <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:332
|
||||
msgid "Retina Displays <br> Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:345
|
||||
msgid "Show admin bar menu"
|
||||
msgstr ""
|
||||
|
||||
#: lib/register-data.php:357
|
||||
msgid "Store codes after uninstallation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:19
|
||||
msgctxt "taxonomy general name"
|
||||
msgid "Code Groups"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:20
|
||||
msgctxt "taxonomy singular name"
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:21
|
||||
msgid "Search Groups"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:22
|
||||
msgid "All Groups"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:23
|
||||
msgid "Parent Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:24
|
||||
msgid "Parent Group:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:25
|
||||
msgid "Edit Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:26
|
||||
msgid "Update Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:27
|
||||
msgid "Add New Group"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:28
|
||||
msgid "New Group Name"
|
||||
msgstr ""
|
||||
|
||||
#: lib/taxonomy.php:29
|
||||
msgid "Code Groups"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:59
|
||||
#: lib/upgrade.php:118
|
||||
msgid "Public Mixins"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:59
|
||||
#: lib/upgrade.php:118
|
||||
msgid "Admin Mixins"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:93
|
||||
#: lib/upgrade.php:234
|
||||
msgid "Import Mixins"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:172
|
||||
#: lib/upgrade.php:271
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:172
|
||||
#: lib/upgrade.php:271
|
||||
msgid "Public"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Admin or Public 2: Language selected
|
||||
#: lib/upgrade.php:191
|
||||
#: lib/upgrade.php:290
|
||||
msgid "%1$s Side %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:347
|
||||
msgid "Custom PHP Functions"
|
||||
msgstr ""
|
||||
|
||||
#: lib/upgrade.php:391
|
||||
#: lib/upgrade.php:405
|
||||
msgid "Admin Notes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/admin-bar.php:50
|
||||
msgid "Untitled Code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/admin-bar.php:61
|
||||
msgid "All Codes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/admin-bar.php:70
|
||||
msgid "+ New Code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:42
|
||||
msgid "SELECT EDITOR TYPE"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:51
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:77
|
||||
msgid "SHORTCUTS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:79
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:80
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:81
|
||||
msgid "Find & Replace"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:82
|
||||
msgid "Multiple Lines"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:82
|
||||
msgid "Option/Alt + Click and Drag"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:83
|
||||
msgid "Add Multi Cursor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:83
|
||||
msgid "Command/Ctrl + Click"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:84
|
||||
msgid "Comment the Line"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:85
|
||||
msgid "Tidy Codes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:86
|
||||
msgid "Toggle Fullscreen Mode"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:87
|
||||
msgid "Space Hierarchy"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:87
|
||||
msgid "(Select) + Shift + Tab"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:88
|
||||
msgid "Emmet Abbreviations"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:88
|
||||
msgid "Write Abbs. + Tab"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:91
|
||||
msgid "Code Folding"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Editor Name 2: Language name
|
||||
#: lib/views/editor-area.php:163
|
||||
msgid "Write your custom %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:169
|
||||
msgid "Insufficient permissions to write this editor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:172
|
||||
msgid "Editor file might exist but content is not readable and writable"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:207
|
||||
msgid "Please click \"Update\" to confirm the new language."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:215
|
||||
msgid "Dark Theme"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:216
|
||||
msgid "Light Theme"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:223
|
||||
msgid "Font Size:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:269
|
||||
msgid "OUTPUT"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/editor-area.php:270
|
||||
msgid "SAVE"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/includes-area.php:28
|
||||
msgid "Includes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:56
|
||||
msgid "Pages"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:58
|
||||
#: lib/views/locations-area.php:69
|
||||
#: lib/views/locations-area.php:89
|
||||
#: lib/views/locations-area.php:102
|
||||
#: lib/views/locations-area.php:116
|
||||
#: lib/views/locations-area.php:126
|
||||
#: lib/views/locations-area.php:150
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:58
|
||||
msgid "Select specific page(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:64
|
||||
msgid "If none of them selected, codes will be applied all pages."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:67
|
||||
msgid "Posts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:69
|
||||
msgid "Select specific post(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:84
|
||||
#: lib/views/locations-area.php:97
|
||||
msgid "If none of them selected, codes will be applied all single posts."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:87
|
||||
msgid "Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:89
|
||||
msgid "Select specific post type(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:102
|
||||
msgid "Select specific term(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:116
|
||||
msgid "Select specific taxonomy(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:124
|
||||
msgid "Templates"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:126
|
||||
msgid "Select specific template(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:143
|
||||
msgid "If none of them selected, codes will be applied all the pages that have any assigned custom template."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:150
|
||||
msgid "Select specific role(s):"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:156
|
||||
msgid "If none of them selected, codes will be applied all roles."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:159
|
||||
msgid "Login Screen"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:171
|
||||
msgid "Current Editor File:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:172
|
||||
#: lib/views/locations-area.php:174
|
||||
#: lib/views/locations-area.php:181
|
||||
#: lib/views/locations-area.php:183
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:172
|
||||
#: lib/views/locations-area.php:174
|
||||
#: lib/views/locations-area.php:181
|
||||
#: lib/views/locations-area.php:183
|
||||
msgid "Click to Copy"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:174
|
||||
#: lib/views/locations-area.php:183
|
||||
msgid "Compiled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:180
|
||||
msgid "Output File:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/locations-area.php:194
|
||||
msgid "Release Order:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:48
|
||||
msgid "Custom Codes Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:53
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:54
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:59
|
||||
msgid "Editor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:60
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:61
|
||||
msgid "Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:72
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:72
|
||||
msgid "Note: If you just update the media queries, you need to update the style codes to apply new ones."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:73
|
||||
msgid "Dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:85
|
||||
msgid "Editor Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:86
|
||||
msgid "Change the general settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:95
|
||||
#: lib/views/settings-area.php:109
|
||||
#: lib/views/settings-area.php:307
|
||||
msgid "Yes, please"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:95
|
||||
#: lib/views/settings-area.php:109
|
||||
#: lib/views/settings-area.php:120
|
||||
msgid "Recommended for better experience"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:96
|
||||
msgid "No, use default WP post saver"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:104
|
||||
msgid "Only works if AJAX saver enabled"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:110
|
||||
msgid "No sound"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:120
|
||||
msgid "Yes, use keyboard shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:121
|
||||
msgid "No keyboard shortcut"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:131
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:131
|
||||
msgid "Recommended"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:132
|
||||
msgid "Deactive"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:145
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:146
|
||||
msgid "Change the settings related to styles"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:157
|
||||
msgid "First Editor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:157
|
||||
#: lib/views/settings-area.php:192
|
||||
#: lib/views/settings-area.php:206
|
||||
#: lib/views/settings-area.php:220
|
||||
#: lib/views/settings-area.php:234
|
||||
#: lib/views/settings-area.php:248
|
||||
#: lib/views/settings-area.php:262
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:161
|
||||
msgid "Global Editor"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:161
|
||||
msgid "Editor without Media Query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:174
|
||||
msgid "Mobile First"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:175
|
||||
msgid "Recommended for mobile performance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:179
|
||||
msgid "Desktop First"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:191
|
||||
#: lib/views/settings-area.php:194
|
||||
#: lib/views/settings-area.php:205
|
||||
#: lib/views/settings-area.php:219
|
||||
#: lib/views/settings-area.php:233
|
||||
#: lib/views/settings-area.php:247
|
||||
#: lib/views/settings-area.php:249
|
||||
#: lib/views/settings-area.php:261
|
||||
msgid "No media query"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:270
|
||||
msgid "Reset Media Queries as"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:273
|
||||
msgid "Mobile First (Min Width)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:274
|
||||
msgid "Desktop First (Max Width)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:286
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:287
|
||||
msgid "Change the core plugin settings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:296
|
||||
msgid "Yes, show the menu"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:296
|
||||
msgid "Recommended for easy access"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:297
|
||||
msgid "Hide the menu on admin bar"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:307
|
||||
msgid "Recommended for later use"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:308
|
||||
msgid "Delete the codes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/views/settings-area.php:319
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,172 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Dark Mode Lite 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://frsarker.com\n"
|
||||
"POT-Creation-Date: 2021-01-17 07:08+0600\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: functions.php:56
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/save_advanced.php:20
|
||||
msgid "Advanced Settings Updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/save_general.php:22
|
||||
msgid "General Settings Updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/save_style.php:21
|
||||
msgid "Style Settings Updated."
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:11
|
||||
msgid "Dark Mode Lite"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:12
|
||||
msgid "Dark Night Mode functionality for your WordPress Website"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:19
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:27
|
||||
msgid "General Settings:"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:30
|
||||
msgid "Dark Mode (Visitor)"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:33 views/main-container.php:43
|
||||
#: views/main-container.php:82
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:34 views/main-container.php:44
|
||||
#: views/main-container.php:83
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:40
|
||||
msgid "Dark Mode (Admin Panel)"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:50
|
||||
msgid "Make Dark First"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:53
|
||||
msgid "Enable - Visitors will see the dark mode first"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:54
|
||||
msgid "Disable - Visitors will see the light mode first"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:60 views/main-container.php:122
|
||||
#: views/main-container.php:184
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:68
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:76
|
||||
msgid "Advanced Settings:"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:79
|
||||
msgid "Low Image Brightness"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:91
|
||||
msgid "Image Brightness Level"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:129
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:137
|
||||
msgid "Style Settings:"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:140
|
||||
msgid "Floating Switch Style"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:143
|
||||
msgid "Switch 1"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:144
|
||||
msgid "Switch 2 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:150
|
||||
msgid "Floating Switch Color (Pro)"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:157
|
||||
msgid "Floating Switch Position"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:160
|
||||
msgid "Bottom Right"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:161
|
||||
msgid "Bottom Left"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:167
|
||||
msgid "Color Preset"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:170
|
||||
msgid "Color Preset 1"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:171
|
||||
msgid "Color Preset 2 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:172
|
||||
msgid "Color Preset 3 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:173
|
||||
msgid "Color Preset 4 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:174
|
||||
msgid "Color Preset 5 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:175
|
||||
msgid "Color Preset 6 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:176
|
||||
msgid "Color Preset 7 - Available in Pro Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/main-container.php:177
|
||||
msgid "Custom Background/Text/Link Color - Available in Pro Version"
|
||||
msgstr ""
|
||||
149
spec/fixtures/dynamic_finders/plugin_version/deau-api/translation_file/languages/deau-api-en_US.po
vendored
Normal file
149
spec/fixtures/dynamic_finders/plugin_version/deau-api/translation_file/languages/deau-api-en_US.po
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
# Copyright (C) 2020 Caronima Inc.
|
||||
# This file is distributed under the same license as the DBP Cloud WP Plugin package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: deAU API Plugin Pot v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
||||
"POT-Creation-Date: 2021-01-06 21:21+0900\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: info@caronima.com\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: assets/sidebar.php:9
|
||||
msgid "開発者"
|
||||
msgstr "Developer"
|
||||
|
||||
#: assets/sidebar.php:9
|
||||
msgid "株式会社カロニマ"
|
||||
msgstr "Caronima Inc."
|
||||
|
||||
#: assets/sidebar.php:11
|
||||
msgid "WebアプリのYouTube"
|
||||
msgstr "Web App YouTube"
|
||||
|
||||
#: assets/sidebar.php:12
|
||||
msgid "WebアプリのFacebook"
|
||||
msgstr "Web App Facebook"
|
||||
|
||||
#: assets/sidebar.php:13
|
||||
msgid "WebアプリのTwitter"
|
||||
msgstr "Web App Twitter"
|
||||
|
||||
#: assets/sidebar.php:14
|
||||
msgid "Webアプリ"
|
||||
msgstr "Web App"
|
||||
|
||||
#: assets/sidebar.php:15
|
||||
msgid "Webアプリの利用規約"
|
||||
msgstr "Web App Terms"
|
||||
|
||||
#: assets/sidebar.php:16
|
||||
msgid "Webアプリのプライバシーポリシー"
|
||||
msgstr "Web App Privacy Policy"
|
||||
|
||||
#: assets/sidebar.php:17
|
||||
msgid "開発者のWebサイト"
|
||||
msgstr "Corporate Website"
|
||||
|
||||
#: assets/sidebar.php:21
|
||||
msgid "プラグイン名"
|
||||
msgstr "Plugin Name"
|
||||
|
||||
#: assets/sidebar.php:23
|
||||
msgid "プラグインバージョン"
|
||||
msgstr "Plugin Version"
|
||||
|
||||
#: assets/sidebar.php:25
|
||||
msgid "Webアプリ名"
|
||||
msgstr "Web App Name"
|
||||
|
||||
#: deau-api.php:36
|
||||
#, php-format
|
||||
msgid "このプラグインは、PHP %s 以上が必要になります。"
|
||||
msgstr "Oops, this plugin will soon require PHP %s or higher."
|
||||
|
||||
#: deau-api.php:69
|
||||
msgid "PHPのクラス名が競合しています。"
|
||||
msgstr "Oops, PHP Class Name Conflict."
|
||||
|
||||
#: function.php:91
|
||||
msgid "法人番号"
|
||||
msgstr "Japan Corporate Number"
|
||||
|
||||
#: function.php:95
|
||||
msgid "deAU Appパスワード"
|
||||
msgstr "deAU App password"
|
||||
|
||||
#: function.php:100
|
||||
msgid "法人情報"
|
||||
msgstr "Corporate information"
|
||||
|
||||
#: function.php:106
|
||||
msgid "ERROR! CODE 402: WebアプリのAPIが停止中です。"
|
||||
msgstr "ERROR! CODE 402: The API of the web application is stopped."
|
||||
|
||||
#: function.php:162
|
||||
msgid "deAUのWebアプリでデータの編集・確認"
|
||||
msgstr "Edit / check data on deAU web app"
|
||||
|
||||
#: function.php:166
|
||||
msgid "ERROR! CODE 404: WebアプリのAPIのエンドポイントが見つかりません。"
|
||||
msgstr "ERROR! CODE 404: Web app API endpoint not found."
|
||||
|
||||
#: function.php:172
|
||||
msgid "ショートコード: "
|
||||
msgstr "Shortcodes: "
|
||||
|
||||
#: function.php:181 function.php:189
|
||||
msgid "削除"
|
||||
msgstr "Delete"
|
||||
|
||||
#: function.php:189
|
||||
msgid "このショートコードを削除しますか?この操作は取り消せません。"
|
||||
msgstr "Do you want to remove this shortcode? This operation cannot be undone."
|
||||
|
||||
#: function.php:190
|
||||
msgid "ショートコードを作成"
|
||||
msgstr "Create a shortcode"
|
||||
|
||||
#: function.php:195
|
||||
msgid "法人沿革"
|
||||
msgstr "Corporate history"
|
||||
|
||||
#: function.php:196
|
||||
msgid "沿革表示ショートコード: "
|
||||
msgstr "History display shortcode: "
|
||||
|
||||
#: function.php:203
|
||||
msgid ""
|
||||
"ショートコードで書き出されたHTML及び法人沿革のスタイルは、左メニューの 外観 "
|
||||
"-> カスタマイズ -> 追加 CSS にて編集できます。(Wordpress ver.4.7以降)"
|
||||
msgstr ""
|
||||
"The HTML and corporate history styles exported by shortcode can be edited "
|
||||
"with Appearance-> Customize-> Additional CSS on the left menu. (Wordpress "
|
||||
"ver.4.7 or later)"
|
||||
|
||||
#: function.php:275
|
||||
msgid ""
|
||||
"ERROR: deAU APIのショートコードのslugの値が空か又はその値が存在しません。"
|
||||
msgstr "ERROR: The deAU API shortcode slug value is empty or does not exist."
|
||||
|
||||
#: function.php:284
|
||||
msgid "ERROR: deAU APIのショートコードのslugの値を指定してください。"
|
||||
msgstr "ERROR: Specify the slug value of the deAU API shortcode."
|
||||
|
||||
#~ msgid "Author"
|
||||
#~ msgstr "Author"
|
||||
@@ -0,0 +1,50 @@
|
||||
# Copyright (C) 2021 WP Ninjas - Jonas Tietgen, Ferry Abt
|
||||
# This file is distributed under the same license as the Duplicate Pages, Posts & CPT plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Duplicate Pages, Posts & CPT 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/duplicate-by-wpninjas\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-01-28T11:31:53+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: duplicate-pages-posts\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Duplicate Pages, Posts & CPT"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wp-ninjas.de/plugins/duplicate-pages-posts/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Duplicate pages, posts and custom post types with all their settings and contents with a single click."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WP Ninjas - Jonas Tietgen, Ferry Abt"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wp-ninjas.de/"
|
||||
msgstr ""
|
||||
|
||||
#: duplicate-pages-posts.php:43
|
||||
msgctxt "list link"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: duplicate-pages-posts.php:72
|
||||
msgctxt "admin bar"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#: duplicate-pages-posts.php:98
|
||||
msgctxt "post title"
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,49 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: xq-xe-xt-xy 1.0\n"
|
||||
"POT-Creation-Date: 2018-07-11 09:44+0300\n"
|
||||
"PO-Revision-Date: 2018-07-11 09:44+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Marko Maksym\n"
|
||||
"Language: uk_UA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../includes\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Title of the page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:66
|
||||
msgid "Link Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-admin-main.php:69
|
||||
msgid "Submenu item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/index.php:8
|
||||
msgid "Settings Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:10
|
||||
msgid "Main page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:13 admin/templates/page1.php:8
|
||||
msgid "Page 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/templates/main_module_menu.php:16 admin/templates/page2.php:8
|
||||
msgid "Page 2"
|
||||
msgstr ""
|
||||
156
spec/fixtures/dynamic_finders/plugin_version/easy-contact-form-pro/change_log/changelogs.txt
vendored
Normal file
156
spec/fixtures/dynamic_finders/plugin_version/easy-contact-form-pro/change_log/changelogs.txt
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
== Changelog ==
|
||||
= 1.1.1.0 =* TWEAK : Ability to use custom Date Format in Date form field
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
|
||||
= 1.1.0.9 =* FIXED : RTL ( right to left ) language issue for several countries
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
|
||||
= 1.1.0.7 =* FIXED : Date Range dropdown issue on mobile devices
|
||||
* FIXED : PHP error issue on Submissions page
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
* FIXED : Simple Captcha random char not show up on first load
|
||||
* FIXED : SMTP password and configuration issue in PHP 7
|
||||
* TWEAK : Now you can easily add the form using Gutenberg block
|
||||
* TWEAK : Now this plugin support for using GMAIL SMTP with OAuth method for both Gmail or G Suite
|
||||
* TWEAK : Form preview now opened in lightbox instead of in a new tab
|
||||
|
||||
= 1.1.0.5 =* FIXED : Shortcode generator CSS conflict with another GhozyLab plugins
|
||||
|
||||
= 1.1.0.3 =* FIXED : Shortcode Generator button disappeared in Gutenberg editor (WP version 5+)
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
|
||||
= 1.1.0.1 =* UPDATED : PHP 7 Compatibility
|
||||
* FIXED : Sender Maps API
|
||||
* FIXED : PHP Switch error on several host
|
||||
* FIXED : Icon indicator not update if has same IP Address on block/unblock IP Address
|
||||
|
||||
= 1.1.0.0 =* FIXED : Ability to set email subject
|
||||
* FIXED : PHP error when export to CSV
|
||||
* FIXED : Checkbox validation issue
|
||||
* FIXED : Form not appear when only available one form in widget list
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
* TWEAK : Sent, error and warning notifications with modal message box
|
||||
* TWEAK : Permission on Submissions page, only Admin that can read the sensitive data such as email or IP address
|
||||
* UPDATED : Font Awesome to 4.7.0
|
||||
* UPDATED : Form Validation script
|
||||
|
||||
= 1.0.9.9 =* FIXED : CSS focus issue on submit button
|
||||
* FIXED : Simple Captcha issue on first load
|
||||
* FIXED : Google new reCaptcha issue on mobile device
|
||||
* FIXED : Form footer width issue on several themes
|
||||
* FIXED : jQuery error on Support Page
|
||||
* FIXED : Form styles not applied to modal form
|
||||
* FIXED : Image header PHP error on several themes / hosting provider
|
||||
* TWEAK : Ability to insert the form easily via Visual Composer Components list
|
||||
* TWEAK : Ability to disable Sticky / Popup form on mobile device. See on Global Settings > Sticky Form > Disable on Mobile
|
||||
* TWEAK : Ability to set Form Align. See on Docs & Help Center > Troubleshooting & Tutorials > Align
|
||||
* TWEAK : Ability to export sender email to CSV format. See on Submissions > Top Left Dropdown menu > Export Email to CSV option
|
||||
* UPDATED : Form builder core script
|
||||
|
||||
= 1.0.9.7 =* FIXED : Lightbox issue on free plugins page
|
||||
* FIXED : Typography issue ( font color & size not applied ) when use Open Sans font type
|
||||
* TWEAK : Ability to change field text color. See on Settings > Layout & Styles > Form Elements > Fields Text Color
|
||||
* TWEAK : Ability to set the background color if there are error/no error on fields when form submitted. See on Settings > Layout & Styles > Form Elements > Fields Background Color on Success & Fields Background Color on Error
|
||||
* TWEAK : Ability to use image for your form background. See on Settings > Layout & Styles > Form Layout > Form Pattern or Form Background
|
||||
|
||||
= 1.0.9.5 =* ADDED : Option to clone/duplicate forms. See on Forms Overview Page
|
||||
* ADDED : Two Error message styles ( Shake & Pulsate effect ). See on Settings > Layout & Styles > Form Elements > Error Message Style
|
||||
* FIXED : Cross-site scripting (XSS) vulnerability. PLEASE UPDATE NOW!
|
||||
* FIXED : Field icons not appear in several Themes
|
||||
* FIXED : Form pattern and form background color issue on Popup Mode
|
||||
* TWEAK : Menu form ( edit, duplicate, preview & delete ) on Forms Overview
|
||||
* TWEAK : Function to avoid conflict with Lite version
|
||||
|
||||
= 1.0.9.3 =* FIXED : Date Range issue
|
||||
* FIXED : Email Subject will auto use Email Header when no email field on the form
|
||||
* FIXED : Label font size & style
|
||||
* FIXED : Many other PHP and CSS clean and optimization
|
||||
* ADDED : Number field
|
||||
* ADDED : Custom HTML Code field
|
||||
* ADDED : New Option to set fields margin. See on Settings > Layout & Styles > Form Elements > Fields Margin
|
||||
* TWEAK : Ability to change field icon color. See on Settings > Layout & Styles > Form Elements > Fields Icon Color
|
||||
* TWEAK : Ability to change field border color. See on Settings > Layout & Styles > Form Elements > Fields Border Color
|
||||
* TWEAK : Ability to set Message and Textarea rows ( height ). Click Message and Textarea field on Form editor and you will find the option on the left panel named Field Attributes
|
||||
|
||||
= 1.0.9.1 =* ADDED : Send a Copy Option. See on Form Settings > Email
|
||||
* UPDATED : Font Awesome to 4.5.0
|
||||
* TWEAK : Submission details list so you can get all form data based on user input. See on Submissions > View Details
|
||||
|
||||
= 1.0.9.0 =* FIXED : Contact Form Widget disappear
|
||||
|
||||
= 1.0.8.9 =* TWEAK : Ability to set multiple recipient ( multiple recipients may be specified using a comma-separated email ). For example : a@domain.com, b@domain.com, c@domain.com etc.
|
||||
* TWEAK : Ability to change language for BROWSE text on Attachment field and --- SELECT --- text on Dropdown field. See on Settings > Miscellaneous > Custom Text / Label
|
||||
|
||||
= 1.0.8.7 =* FIXED : Sticky Form scrollbar issue in several modern browser
|
||||
|
||||
= 1.0.8.5 =* ADDED : Ability to reply message directly from Submissions list. See on Easy Contact Pro > Submissions
|
||||
* ADDED : Sticky Form Posts / Pages exclusion option
|
||||
= 1.0.8.3 =* FIXED : Disable Metabox Toggle Function
|
||||
* FIXED : CSS conflict with several themes
|
||||
* FIXED : Widget issue in version WP 4.2.4 and ready for WP 4.3 ( Release on August 18 )
|
||||
* ADDED : General Settings page, see on Global Settings menu
|
||||
* ADDED : Google Fonts Support
|
||||
* ADDED : Ability to open Form from Link ( image or text link ), see on Docs & Help Center Page to apply it
|
||||
* ADDED : Typography option, see on Form Settings > Layout & Styles
|
||||
* ADDED : Option to be able to get popup notification in admin area if you get a new email or when available new info or news. See on Global Settings > General Settings
|
||||
|
||||
= 1.0.8.1 =* FIXED : Send email error message
|
||||
* ADDED : New Feature that allow you to use image in form header. See on Settings > Layout & Styles > Header & Footer Area
|
||||
* ADDED : Refresh Captcha ( Simple Captcha ) button
|
||||
* ADDED : WP_DEBUG check on Admin Init
|
||||
* ADDED : Contact Support Form, see on Easy Contact Pro > Docs & Help Center menu
|
||||
* UPDATED : Ability to remove default name, email and message fields
|
||||
* FIXED : Optimizing for Mobile
|
||||
|
||||
= 1.0.7.19 =* FIXED : Submit loading animation when reCaptcha error
|
||||
* UPDATED : Font Awesome to 4.3.0
|
||||
* UPDATED : Global Settings Page interface, now using AJAX
|
||||
* ADDED : Extra Page, this feature will make you more easy to earn money with GhozyLab Affiliate Program. See on Whats New tab.
|
||||
* ADDED : New Hook in form header, this option to make the form support for the next Addons release such as Change form header with image/icon, etc
|
||||
* FIXED : Deactivate license when WP_DEBUG is true
|
||||
|
||||
= 1.0.7.17 =* NEW : Welcome Page
|
||||
* FIXED : New reCAPTCHA & Old reCAPTCHA responsive issue
|
||||
* FIXED : Preview mode on several themes
|
||||
* FIXED : Preview mode on site with SSL ON
|
||||
* FIXED : Undefined ajaxurl
|
||||
|
||||
= 1.0.7.15 =* ADDED : Slider field
|
||||
* ADDED : Date Range field so you can easily set start and finish date just one click
|
||||
* ADDED : Sender information including country, location ( Geolocation ), IP Address, etc. See on Easy Contact Pro > Submissions > View Details
|
||||
* ADDED : Option to set the error message ( Tooltip or Text under each field ). See on Layout & Styles > Form Elements > Error Message Style
|
||||
* ADDED : Option to set form padding
|
||||
* ADDED : New function to be able to use Addons ( BETA )
|
||||
* FIXED : Single quote issue in Message after sent.
|
||||
* FIXED : Preview mode on several themes, for example Avada theme.
|
||||
* FIXED : Loss SMTP password when re-save the settings
|
||||
* IMPORTANT : Connection issue with GhozyLab server, please update NOW!
|
||||
|
||||
= 1.0.7.13 =* FIXED : Global setting missing style when saved on WP Multisite
|
||||
* FIXED : Encrypt/Decrypt SMTP password function
|
||||
* ADDED : Address field
|
||||
|
||||
= 1.0.7.11 =* FIXED : Text area width
|
||||
* ADDED : Phone field with fancy mask
|
||||
|
||||
= 1.0.7.10 =* FIXED : Disappearance of name field.
|
||||
|
||||
= 1.0.7.9 =* ADDED : Sticky Popup Form. You can put the form to show in sticky/Popup mode. See on Global Settings > Sticky Popup Form
|
||||
* ADDED : Form Preview option in Form Editor
|
||||
* ADDED : Date and Rating System form fields
|
||||
* ADDED : form Pattern Option ( see on Layout & Styles > Form Layout )
|
||||
* ADDED : New Option to set Form footer color ( see on Layout & Styles > Header & Footer Area )
|
||||
* FIXED : Send email error when WP_DEBUG ( in wp-config.php ) set to TRUE
|
||||
|
||||
= 1.0.7.7 =* ADDED : Form pre-loader
|
||||
* ADDED : SMPT mail function and SMPT Mail Settings Page ( Global Settings )
|
||||
* FIXED : Fields CSS issue on several themes
|
||||
* FIXED : Submission page issue
|
||||
|
||||
= 1.0.7.5 =* ADDED : Submissions Report & Statistic Page
|
||||
* ADDED : Free Install Plugin Page
|
||||
* FIXED : Default form width and default form title
|
||||
|
||||
= 1.0.7.3 =* FIXED : If checkbox label containing single quote
|
||||
|
||||
= 1.0.0.0 =* This is the launch version. No changes yet
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"name": "extended-simple-history-beaver-builder",
|
||||
"version": "1.0.0",
|
||||
"description": "Extended Simple History for Beaver Builder",
|
||||
"main": "extended-simple-history-beaver-builder.php",
|
||||
"scripts": {
|
||||
"lint:js": "wp-scripts lint-js assets/js/src/",
|
||||
"lint:css": "wp-scripts lint-style assets/css/scss/",
|
||||
"build:js": "node build-scripts/js.js;",
|
||||
"build:css": "node build-scripts/css.js;",
|
||||
"build:i18n": "node ./node_modules/node-wp-i18n/bin/wpi18n addtextdomain && node ./node_modules/node-wp-i18n/bin/wpi18n makepot",
|
||||
"watch:css": "./node_modules/watch/cli.js 'npm run build:css' assets/css/scss/ --ignoreDotFiles --wait=2",
|
||||
"watch:js": "./node_modules/watch/cli.js 'npm run build:js' assets/js/src/ --ignoreDotFiles --wait=2",
|
||||
"watch:i18n": "./node_modules/watch/cli.js 'npm run build:i18n' includes/ --ignoreDotFiles --wait=2",
|
||||
"watch": "npm run watch:css & npm run watch:js",
|
||||
"build": "npm run build:css && npm run build:js && npm run build:i18n;"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git"
|
||||
},
|
||||
"author": "WEBDOGS",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@wordpress/browserslist-config": "^2.7.0",
|
||||
"@wordpress/scripts": "^12.6.1",
|
||||
"autoprefixer": "^9.8.6",
|
||||
"babelify": "^10.0.0",
|
||||
"browserify": "^16.5.2",
|
||||
"cssnano": "^4.1.10",
|
||||
"fs": "0.0.1-security",
|
||||
"node-sass": "^4.14.1",
|
||||
"node-wp-i18n": "^1.2.4",
|
||||
"postcss": "^7.0.35",
|
||||
"postcss-preset-env": "^6.7.0",
|
||||
"uglify-js": "^3.12.4",
|
||||
"watch": "^1.0.2"
|
||||
},
|
||||
"babel": {
|
||||
"presets": [
|
||||
[
|
||||
"@babel/preset-env",
|
||||
{
|
||||
"targets": {
|
||||
"browsers": [
|
||||
"extends @wordpress/browserslist-config"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"browserslist": [
|
||||
"extends @wordpress/browserslist-config"
|
||||
],
|
||||
"dependencies": {}
|
||||
}
|
||||
@@ -0,0 +1,141 @@
|
||||
# Copyright (C) 2021 WEBDOGS
|
||||
# This file is distributed under the same license as the Extended Simple History for Beaver Builder package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Extended Simple History for Beaver Builder 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/extended-simple-history-beaver-builder\n"
|
||||
"POT-Creation-Date: 2021-01-25 18:06:12+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.4\n"
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:79
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:79
|
||||
msgid "Rendered"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:80
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:80
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:81
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:81
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:111
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:111
|
||||
msgid "Beaver Builder {post_type_label} \"{post_title}\" updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:115
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:115
|
||||
msgid "Beaver Builder {post_type_label} \"{post_title}\" draft saved"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:119
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:119
|
||||
msgid "Beaver Builder Global Settings Updated"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:193
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:193
|
||||
#. Translators: %s is the Beaver Builder setting slug.
|
||||
msgid "Global Setting %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:460
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:460
|
||||
#. Translators: %s is the Beaver Builder setting slug.
|
||||
msgid "Layout %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:478
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:478
|
||||
#. Translators: %1$s is the Beaver Builder node type (Row, Column-group,
|
||||
#. Column, or Module). %2$s is the Module type if the node type is module,
|
||||
#. otherwise an empty string.
|
||||
msgid "Deleted: %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:498
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:498
|
||||
#. Translators: %1$s is the Beaver Builder node type (Row, Column-group,
|
||||
#. Column, or Module). %2$s is the Module type if the node type is module,
|
||||
#. otherwise an empty string.
|
||||
msgid "%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:519
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:519
|
||||
#. Translators: %1$s is the Beaver Builder node type (Row, Column-group,
|
||||
#. Column, or Module). %2$s is the Module type if the node type is module,
|
||||
#. otherwise an empty string.
|
||||
msgid "New %1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:567
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:567
|
||||
msgid "Moved"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:629
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:629
|
||||
#. Translators: %s is the post type.
|
||||
msgid "View %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:639
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:665
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:668
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:639
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:665
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:668
|
||||
msgid " Click to view/hide"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:665
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:665
|
||||
#. Translators: %s is the diff label.
|
||||
msgid "Drafted change: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:668
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:668
|
||||
#. Translators: %s is the diff label.
|
||||
msgid "Updated: %s"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Extended Simple History for Beaver Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "A Simple History extension to log additional data from Beaver Builder."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WEBDOGS"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://webdogs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:99
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:99
|
||||
msgctxt "Logger: Beaver Builder"
|
||||
msgid "Logs more details for Beaver Builder edits."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/simple-history/loggers/class-beaver-builder.php:104
|
||||
#: svn/trunk/includes/classes/simple-history/loggers/class-beaver-builder.php:104
|
||||
msgctxt "Logger: Beaver Builder"
|
||||
msgid "Using plugin Beaver Builder"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,25 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.0 =
|
||||
* Beta release
|
||||
|
||||
= 1.0.1 =
|
||||
* Adicionando cancelamento da venda
|
||||
|
||||
= 1.0.2 =
|
||||
* Adicionando validação no valor do cancelamento
|
||||
|
||||
= 1.0.3 =
|
||||
* Ajuste no valor do cancelamento
|
||||
|
||||
= 1.0.4 =
|
||||
* Ajustes internos para futura inserção de novos tipos de pagamento
|
||||
|
||||
= 1.0.5 =
|
||||
* Mudança nas credenciais de configuração
|
||||
|
||||
= 1.0.6 =
|
||||
* Ajustes campos adicionais
|
||||
|
||||
= 1.0.7 =
|
||||
* Ajustes nas instruções do plugin
|
||||
@@ -0,0 +1,67 @@
|
||||
# Copyright (C) 2021 Espen Munthe
|
||||
# This file is distributed under the same license as the Insert Block Pattern Block plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Insert Block Pattern Block 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ibpb\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-01-17T12:02:03+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: ibpb\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Insert Block Pattern Block"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Gutenberg Block for inserting Theme Block Patterns into page/post or into a insertable block areas (like columns)."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Espen Munthe"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://espenmunthe.com"
|
||||
msgstr ""
|
||||
|
||||
#: insert-block-pattern-block.php:48
|
||||
#: insert-block-pattern-block.php:84
|
||||
#: src/insert-block-pattern-block/edit.js:169
|
||||
#: src/insert-block-pattern-block/register-block-type.js:19
|
||||
#: dist/ibpb_blocks_registration.js:292
|
||||
#: dist/ibpb_blocks_registration.js:340
|
||||
msgid "Insert Block Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: insert-block-pattern-block.php:49
|
||||
#: src/insert-block-pattern-block/register-block-type.js:20
|
||||
#: dist/ibpb_blocks_registration.js:341
|
||||
msgid "Block for inserting a Block Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: insert-block-pattern-block.php:50
|
||||
#: src/insert-block-pattern-block/register-block-type.js:22
|
||||
#: dist/ibpb_blocks_registration.js:343
|
||||
msgid "Block Pattern"
|
||||
msgstr ""
|
||||
|
||||
#: src/insert-block-pattern-block/edit.js:61
|
||||
#: dist/ibpb_blocks_registration.js:205
|
||||
msgid "Select a Block Pattern Category"
|
||||
msgstr ""
|
||||
|
||||
#: src/insert-block-pattern-block/edit.js:66
|
||||
#: dist/ibpb_blocks_registration.js:211
|
||||
msgid "Uncategorized"
|
||||
msgstr ""
|
||||
|
||||
#: src/insert-block-pattern-block/edit.js:106
|
||||
#: dist/ibpb_blocks_registration.js:247
|
||||
msgid "Select a Block Pattern"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,57 @@
|
||||
# Copyright (C) 2021 JSM's Show Comment Metadata
|
||||
# This file is distributed under the same license as the JSM's Show Comment Metadata package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JSM's Show Comment Metadata 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/jsm-show-comment-"
|
||||
"meta\n"
|
||||
"POT-Creation-Date: 2021-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: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: jsm-show-comment-meta.php:95
|
||||
msgid ""
|
||||
"The %1$s plugin requires %2$s version %3$s or newer and has been deactivated."
|
||||
msgstr ""
|
||||
|
||||
#: jsm-show-comment-meta.php:97
|
||||
msgid "Please upgrade %1$s before trying to re-activate the %2$s plugin."
|
||||
msgstr ""
|
||||
|
||||
#: jsm-show-comment-meta.php:121
|
||||
msgid "Comment Metadata"
|
||||
msgstr ""
|
||||
|
||||
#: jsm-show-comment-meta.php:172
|
||||
msgid "Key"
|
||||
msgstr ""
|
||||
|
||||
#: jsm-show-comment-meta.php:174
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "JSM's Show Comment Metadata"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://surniaulula.com/extend/plugins/jsm-show-comment-meta/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Show all comment meta (aka custom fields) in a metabox on comment editing "
|
||||
"pages."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "JS Morisset"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://surniaulula.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,159 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: KASSA.AT For WooCommerce 1.0.0\n"
|
||||
"POT-Creation-Date: 2020-12-29 09:28+0100\n"
|
||||
"PO-Revision-Date: 2020-12-29 09:28+0100\n"
|
||||
"Last-Translator: manuelschultz\n"
|
||||
"Language-Team: KASSA.AT\n"
|
||||
"Language: de_DE@formal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_html__\n"
|
||||
"X-Poedit-SearchPath-0: api-connection.php\n"
|
||||
"X-Poedit-SearchPath-1: create-menus.php\n"
|
||||
"X-Poedit-SearchPath-2: kassa-at-for-woocommerce.php\n"
|
||||
"X-Poedit-SearchPath-3: stock-syncro.php\n"
|
||||
|
||||
#: create-menus.php:33
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr ""
|
||||
"Sie haben nicht die nötigen Berechtigungen um auf die Seite zuzugreifen."
|
||||
|
||||
#: create-menus.php:152
|
||||
msgid "KASSA.AT connection:"
|
||||
msgstr "Verbindung zu KASSA.AT:"
|
||||
|
||||
#: create-menus.php:155
|
||||
msgid "You are already connected to a KASSA.AT account."
|
||||
msgstr "Sie sind bereits mit einer KASSA.AT-Konto. verbunden."
|
||||
|
||||
#: create-menus.php:158
|
||||
msgid "Remove connection to KASSA.AT."
|
||||
msgstr "Entfernen Sie die Verbindung zu KASSA.AT."
|
||||
|
||||
#: create-menus.php:166
|
||||
msgid "Connect with KASSA.AT account"
|
||||
msgstr "Mit KASSA.AT Verbinden"
|
||||
|
||||
#: create-menus.php:171
|
||||
msgid "Dont have a KASSA.AT account? Create one!"
|
||||
msgstr "Haben Sie kein KASSA.AT-Konto? Erstellen Sie eines!"
|
||||
|
||||
#: create-menus.php:177
|
||||
msgid "Synchronize Stocks:"
|
||||
msgstr "Synchronisieren Sie den Lagerstand:"
|
||||
|
||||
#: create-menus.php:178
|
||||
msgid "Choose warehouse:"
|
||||
msgstr "Wählen Sie ein Lager:"
|
||||
|
||||
#: create-menus.php:188
|
||||
msgid "Save changes!"
|
||||
msgstr "Änderungen speichern!"
|
||||
|
||||
#: create-menus.php:195
|
||||
msgid "Synchronize stocks with KASSA.AT."
|
||||
msgstr "Lagerstände mit KASSA.AT synchronisieren."
|
||||
|
||||
#: create-menus.php:196
|
||||
msgid "Use KASSA.AT-data"
|
||||
msgstr "KASSA.AT-Daten als Master verwenden"
|
||||
|
||||
#: create-menus.php:203
|
||||
msgid "Synchronize!"
|
||||
msgstr "Synchronisieren!"
|
||||
|
||||
#: kassa-at-for-woocommerce.php:167
|
||||
msgid "Please follow these instructions to use the plugin:"
|
||||
msgstr "Bitte folgen Sie den Anweisungen, um das Plugin einzurichten:"
|
||||
|
||||
#: kassa-at-for-woocommerce.php:171
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you don't have a KASSA.AT account please create one <a href=\"%s\">here</"
|
||||
"a>."
|
||||
msgstr ""
|
||||
"Wenn Sie kein KASSA.AT Konto haben erstellen Sie eines <a href=\"%s\">hier</"
|
||||
"a>."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:172
|
||||
msgid ""
|
||||
"Use the Button \"Connect with KASSA.AT account\" to connect to the register-"
|
||||
"service."
|
||||
msgstr ""
|
||||
"Klicken Sie den Knopf \"Mit KASSA.AT Verbinden\" um die Verbindung "
|
||||
"herzustellen."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:176
|
||||
msgid ""
|
||||
"Login the KASSA.AT site and create your articles. Note that in order to have "
|
||||
"connect the WP-site and the KASSA.AT-account, you need to fill in the "
|
||||
"\"Artikelnummer\"-field with your article numbers."
|
||||
msgstr ""
|
||||
"Loggen Sie sich in Ihr KASSA.AT Konto ein und legen Sie Ihre Artikel an. "
|
||||
"Beachten Sie, dass Sie das Feld \"Artikelnummer\" ausfüllen (Dies wird "
|
||||
"später noch wichtig)."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:177
|
||||
msgid ""
|
||||
"In your KASSA.AT account, create a warehouse and assign the articles to it."
|
||||
msgstr ""
|
||||
"Legen Sie dann ein Lager in Ihrem KASSA.AT Konto an und befüllen Sie dieses "
|
||||
"mit Ihren Artikeln."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:178
|
||||
msgid ""
|
||||
"Go back to your WordPress page, choose your register-warehouse from your "
|
||||
"KASSA.AT's warehouses."
|
||||
msgstr ""
|
||||
"Gehen Sie nun zurück zu Ihrer WordPress Seite und wählen Sie das Lager aus, "
|
||||
"das Sie eben befüllt haben."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:179
|
||||
msgid ""
|
||||
"Go to your woocommerce-article section and create or edit your articles, use "
|
||||
"the article-number from your KASSA.AT-articles in the \"SKU\"-field and "
|
||||
"activate stock-management."
|
||||
msgstr ""
|
||||
"Gehen Sie zu der Artikelübersicht von Woocommerce und erstellen Sie hier "
|
||||
"Ihre Artikel oder bearbeiten Sie diese. Achten Sie bitte darauf, dass Sie "
|
||||
"die Artikelnummer Ihrer KASSA.AT Artikel in das \"Artikelnummer\"-Feld "
|
||||
"eintragen und aktivieren Sie \"Lagerbestand verwalten\"."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:180
|
||||
msgid ""
|
||||
"Go to the KASSA.AT-menu in your wordpress-site and press the \"Synchronize!"
|
||||
"\" Button."
|
||||
msgstr ""
|
||||
"Gehen Sie auf Ihrer WordPress-Seite in das KASSA.AT Menü zurück und drücken "
|
||||
"Sie auf den \"Synchronisieren!\"-Knopf."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:182
|
||||
msgid ""
|
||||
"And here we go. Whenever a customer buys anything in your local store or a "
|
||||
"customer orders something in your online-store, your KASSA.AT-service will "
|
||||
"have trace of that and will always check, that the onlineshop displays the "
|
||||
"correct amount of items in stock."
|
||||
msgstr ""
|
||||
"Und schon sind wir fertig. Wann immer ein Kunde etwas in Ihrem Geschäft "
|
||||
"kauft, oder etwas in Ihrem Onlineshop bestellt Werden die Lagerstände von "
|
||||
"beiden Systemen angepasst, sodass Sie immer den korrekten Lagerstand im "
|
||||
"Blick haben können."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:188
|
||||
#, php-format
|
||||
msgid "If you have any questions with the setting up, feel free to %s."
|
||||
msgstr "Wenn Sie irgendwelche Fragen haben, %s."
|
||||
|
||||
#: kassa-at-for-woocommerce.php:192
|
||||
msgid "contact us"
|
||||
msgstr "kontaktieren Sie uns"
|
||||
|
||||
#: stock-syncro.php:96
|
||||
#, php-format
|
||||
msgid "Woocommerce Invoice: %s"
|
||||
msgstr "Woocommerce-Rechnung: %s"
|
||||
@@ -0,0 +1,8 @@
|
||||
= 1.0.2 - 13 january 2021 =
|
||||
* Fixed: Fatal error during Sendinblue Api call
|
||||
|
||||
= 1.0.1 - 12 janauary 2021 =
|
||||
* Update: Plugin URI, Using WordPress uri instead of Github uri
|
||||
|
||||
= 1.0.0 - 11 january 2021 =
|
||||
* Initial release
|
||||
@@ -0,0 +1,101 @@
|
||||
# Copyright (C) 2021 Santiago Becerra
|
||||
# This file is distributed under the same license as the Manage Admin Columns plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Manage Admin Columns 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/manage-admin-columns\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-01-04T01:22:42+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: manage-admin-columns\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Manage Admin Columns"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/sanbec/manage-admin-columns"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin adds a featured image column to the WordPress admin."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Santiago Becerra"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpcombo.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:83
|
||||
#: includes/class-firstcolumnfeaturedimage.php:97
|
||||
msgid "Manage Admin Columns Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:98
|
||||
msgid "Featured Image Column"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:116
|
||||
msgid "Style Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:123
|
||||
msgid "Choose the size and shape of the featured image at the list table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:134
|
||||
msgid "Featured Image Size:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:163
|
||||
msgid "Shape:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:174
|
||||
msgid "Circle"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:177
|
||||
msgid "Square"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:188
|
||||
msgid "Lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:199
|
||||
msgid "Open lightbox on image click"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:209
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:220
|
||||
msgid "Show border on hover"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:225
|
||||
msgid "Post Types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:233
|
||||
msgid "Select the post types where you want the featured image column to be displayed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:307
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-firstcolumnfeaturedimage.php:363
|
||||
#: includes/class-firstcolumnfeaturedimage.php:364
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,178 @@
|
||||
# Copyright (C) 2020 Michael Baierl - Einfach Websites
|
||||
# This file is distributed under the same license as the Divi Projects by mbaierl plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Divi Projects by mbaierl 0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mbaierl-divi-"
|
||||
"projects\n"
|
||||
"POT-Creation-Date: 2020-11-21T15:37:00+00:00\n"
|
||||
"PO-Revision-Date: 2020-11-21 16:37+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.2\n"
|
||||
"X-Domain: et_builder\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Projects Custom Post Type for Divi by mbaierl"
|
||||
msgstr "Projekte von Divi - by mbaierl"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://mbaierl.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"The Divi \"Projects\" Custom Post Type - in case you move away from Divi but "
|
||||
"still want to use the Projects."
|
||||
msgstr ""
|
||||
"Die Divi “Projekte” Sammlung - falls du von Divi zu einem anderen Theme "
|
||||
"wechselst, aber “Projekte” nach wie vor verwenden willst."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Michael Baierl - Einfach Websites"
|
||||
msgstr ""
|
||||
|
||||
#: includes/divi-projects-cpt.php:17
|
||||
msgid "Projects"
|
||||
msgstr "Projekte"
|
||||
|
||||
#: includes/divi-projects-cpt.php:18
|
||||
msgid "Project"
|
||||
msgstr "Projekt"
|
||||
|
||||
#: includes/divi-projects-cpt.php:19
|
||||
msgid "Add New"
|
||||
msgstr "Neu"
|
||||
|
||||
#: includes/divi-projects-cpt.php:20
|
||||
msgid "Add New Project"
|
||||
msgstr "Neues Projekt"
|
||||
|
||||
#: includes/divi-projects-cpt.php:21
|
||||
msgid "Edit Project"
|
||||
msgstr "Projekt bearbeiten"
|
||||
|
||||
#: includes/divi-projects-cpt.php:22
|
||||
msgid "New Project"
|
||||
msgstr "Neues Projekt"
|
||||
|
||||
#: includes/divi-projects-cpt.php:23
|
||||
msgid "All Projects"
|
||||
msgstr "Alle Projekte"
|
||||
|
||||
#: includes/divi-projects-cpt.php:24
|
||||
msgid "View Project"
|
||||
msgstr "Projekt anzeigen"
|
||||
|
||||
#: includes/divi-projects-cpt.php:25
|
||||
msgid "Search Projects"
|
||||
msgstr "Projekte durchsuchen"
|
||||
|
||||
#: includes/divi-projects-cpt.php:26
|
||||
msgid "Nothing found"
|
||||
msgstr "Nichts gefunden"
|
||||
|
||||
#: includes/divi-projects-cpt.php:27
|
||||
msgid "Nothing found in Trash"
|
||||
msgstr "Nichts im Papierkorb gefunden"
|
||||
|
||||
#: includes/divi-projects-cpt.php:58
|
||||
msgid "Project Categories"
|
||||
msgstr "Projekt Kategorien"
|
||||
|
||||
#: includes/divi-projects-cpt.php:59
|
||||
msgid "Project Category"
|
||||
msgstr "Projekt Kategorie"
|
||||
|
||||
#: includes/divi-projects-cpt.php:60
|
||||
msgid "Search Categories"
|
||||
msgstr "Kategorien durchsuchen"
|
||||
|
||||
#: includes/divi-projects-cpt.php:61
|
||||
msgid "All Categories"
|
||||
msgstr "Alle Kategorien"
|
||||
|
||||
#: includes/divi-projects-cpt.php:62
|
||||
msgid "Parent Category"
|
||||
msgstr "Übergeordnete Kategorie"
|
||||
|
||||
#: includes/divi-projects-cpt.php:63
|
||||
msgid "Parent Category:"
|
||||
msgstr "Übergeordnete Kategorie:"
|
||||
|
||||
#: includes/divi-projects-cpt.php:64
|
||||
msgid "Edit Category"
|
||||
msgstr "Kategorie bearbeiten"
|
||||
|
||||
#: includes/divi-projects-cpt.php:65
|
||||
msgid "Update Category"
|
||||
msgstr "Kategorie aktualisieren"
|
||||
|
||||
#: includes/divi-projects-cpt.php:66
|
||||
msgid "Add New Category"
|
||||
msgstr "Neue Kategorie"
|
||||
|
||||
#: includes/divi-projects-cpt.php:67
|
||||
msgid "New Category Name"
|
||||
msgstr "Name der neuen Kategorie"
|
||||
|
||||
#: includes/divi-projects-cpt.php:68
|
||||
msgid "Categories"
|
||||
msgstr "Kategorien"
|
||||
|
||||
#: includes/divi-projects-cpt.php:69
|
||||
msgid "You currently don't have any project categories."
|
||||
msgstr "Du hast aktuell keine Projekt-Kategorien."
|
||||
|
||||
#: includes/divi-projects-cpt.php:83
|
||||
msgid "Project Tags"
|
||||
msgstr "Projekt Schlagwörter"
|
||||
|
||||
#: includes/divi-projects-cpt.php:84
|
||||
msgid "Project Tag"
|
||||
msgstr "Projekt Schlagwort"
|
||||
|
||||
#: includes/divi-projects-cpt.php:85
|
||||
msgid "Search Tags"
|
||||
msgstr "Schlagwörter suchen"
|
||||
|
||||
#: includes/divi-projects-cpt.php:86
|
||||
msgid "All Tags"
|
||||
msgstr "Alle Schlagwörter"
|
||||
|
||||
#: includes/divi-projects-cpt.php:87
|
||||
msgid "Parent Tag"
|
||||
msgstr "Übergeordnetes Schlagwort"
|
||||
|
||||
#: includes/divi-projects-cpt.php:88
|
||||
msgid "Parent Tag:"
|
||||
msgstr "Übergeordnetes Schlagwort:"
|
||||
|
||||
#: includes/divi-projects-cpt.php:89
|
||||
msgid "Edit Tag"
|
||||
msgstr "Schlagwort bearbeiten"
|
||||
|
||||
#: includes/divi-projects-cpt.php:90
|
||||
msgid "Update Tag"
|
||||
msgstr "Schlagwort aktualisieren"
|
||||
|
||||
#: includes/divi-projects-cpt.php:91
|
||||
msgid "Add New Tag"
|
||||
msgstr "Neues Schlagwort erstellen"
|
||||
|
||||
#: includes/divi-projects-cpt.php:92
|
||||
msgid "New Tag Name"
|
||||
msgstr "Name des neuen Schlagwortes"
|
||||
|
||||
#: includes/divi-projects-cpt.php:93
|
||||
msgid "Tags"
|
||||
msgstr "Schlagwörter"
|
||||
|
||||
#~ msgid "Divi Projects by mbaierl"
|
||||
#~ msgstr "Divi Projekte von mbaierl"
|
||||
File diff suppressed because it is too large
Load Diff
13
spec/fixtures/dynamic_finders/plugin_version/mobile-pages/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/mobile-pages/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "gbmp-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
# Copyright (C) 2020 Teamonair s.r.l.
|
||||
# This file is distributed under the same license as the My FastAPP plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: MyFastApp (DEV) 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/my-fastapp\n"
|
||||
"Last-Translator: Francesco Colombo <francesco@teamonair.com>\n"
|
||||
"Language-Team: Francesco Colombo <francesco@teamonair.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-12-07T19:25:08+01:00\n"
|
||||
"PO-Revision-Date: 2020-12-07 10:10+02\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: my-fastapp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "MyFastApp"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.myfastapp.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin allows you to use your WordPress site as a backend to create your mobile application for iOS and Android. Configure and build your mobile applications directly from the WordPress site."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Teamonair s.r.l."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://myfastapp.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:29
|
||||
#: includes/class-admin.php:30
|
||||
msgid "My FastAPP"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:38
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:39
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-admin.php:40
|
||||
msgid "Download Builds"
|
||||
msgstr ""
|
||||
51
spec/fixtures/dynamic_finders/plugin_version/post-status-indicator/composer_file/package.json
vendored
Normal file
51
spec/fixtures/dynamic_finders/plugin_version/post-status-indicator/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "psi-react-app",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@wordpress/components": "^11.1.3",
|
||||
"react": "^16.14.0",
|
||||
"react-dom": "^16.14.0",
|
||||
"react-router-dom": "^5.1.2",
|
||||
"use-debounce": "^5.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "webpack --watch",
|
||||
"build": "cross-env NODE_ENV=production node_modules/.bin/webpack"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.9.0",
|
||||
"@babel/preset-env": "^7.9.0",
|
||||
"@babel/preset-react": "^7.9.4",
|
||||
"babel-loader": "^8.1.0",
|
||||
"browser-sync": "^2.26.7",
|
||||
"browser-sync-webpack-plugin": "^2.2.2",
|
||||
"cross-env": "^7.0.2",
|
||||
"css-loader": "^3.4.2",
|
||||
"file-loader": "^6.0.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.13.1",
|
||||
"sass-loader": "^8.0.2",
|
||||
"webpack": "^4.42.1",
|
||||
"webpack-cli": "^3.3.11"
|
||||
},
|
||||
"description": "Post Status Indicator WordPress plugin React dashboard",
|
||||
"main": "webpack.config.js",
|
||||
"author": "Sean Hayes",
|
||||
"license": "GPL-2.0+"
|
||||
}
|
||||
@@ -0,0 +1,141 @@
|
||||
# Copyright (C) 2020 Caronima Inc.
|
||||
# This file is distributed under the same license as the DBP Cloud WP Plugin package.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"Posts Search Plugin Pot "
|
||||
"v1.0.0\n"
|
||||
"POT-Creation-Date: "
|
||||
"2021-01-20 23:25+0900\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Your "
|
||||
"Name <you@example.com>\n"
|
||||
"Language-Team: https://"
|
||||
"profiles.wordpress.org/"
|
||||
"takashimatsuyama/\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Translator Name "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"1.6.4\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Language: en_US\n"
|
||||
"X-Generator: Poedit "
|
||||
"2.4.2\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: assets/results.php:36
|
||||
msgid "read more"
|
||||
msgstr ""
|
||||
|
||||
#: assets/results.php:44
|
||||
msgid ""
|
||||
"There are no articles "
|
||||
"that hit the search "
|
||||
"criteria."
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:38
|
||||
msgid ""
|
||||
"No search keyword has "
|
||||
"been entered."
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:45
|
||||
msgid "Read further"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:46
|
||||
msgid "Loading"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:80
|
||||
msgid "Search keyword"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:81
|
||||
msgid "Search area"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-results.php:93
|
||||
msgid "item display"
|
||||
msgid_plural ""
|
||||
"items display"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: assets/shortcode-searchform.php:21
|
||||
msgid "Enter a keyword"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-searchform.php:29
|
||||
msgid ""
|
||||
"Select a search area"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-searchform.php:31
|
||||
#: assets/wp_query.php:35
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-searchform.php:51
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: assets/shortcode-searchform.php:95
|
||||
#, php-format
|
||||
msgid "Filter by %s"
|
||||
msgstr ""
|
||||
|
||||
#: function.php:57
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<span class=\"number\">"
|
||||
"%s</span><span class="
|
||||
"\"unit\">item</span>"
|
||||
msgid_plural ""
|
||||
"<span class=\"number\">"
|
||||
"%s</span><span class="
|
||||
"\"unit\">items</span>"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: posts-search.php:36
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Oops, this plugin will "
|
||||
"soon require PHP %s or "
|
||||
"higher."
|
||||
msgstr ""
|
||||
|
||||
#: posts-search.php:62
|
||||
msgid ""
|
||||
"Oops, PHP Class Name "
|
||||
"Conflict."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,273 @@
|
||||
# Copyright (C) 2021 SomewhereWarm
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Product Recommendations - Custom Locations 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://woocommerce.com/my-account/create-a-ticket/\n"
|
||||
"POT-Creation-Date: 2021-01-27 14:56: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: 2021-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: includes/admin/class-wc-prl-cl-admin-menus.php:58
|
||||
#: includes/admin/class-wc-prl-cl-admin-menus.php:94
|
||||
#: includes/class-wc-prl-cl-post-types.php:56
|
||||
msgid "Custom Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-prl-cl-admin-menus.php:69
|
||||
#: includes/class-wc-prl-cl-post-types.php:60
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-prl-cl-admin-menus.php:79
|
||||
#: includes/class-wc-prl-cl-post-types.php:63
|
||||
msgid "Edit Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-prl-cl-admin.php:75
|
||||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wc-prl-cl-admin.php:168
|
||||
msgid "Shortcode copied."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:113
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:114
|
||||
msgid "Deployments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:115
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:116
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:180
|
||||
msgid "Regenerate recommendations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/list-tables/class-wc-prl-cl-admin-list-locations.php:181
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-shortcode.php:64
|
||||
msgid "Copy shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:43
|
||||
msgid "Location Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:80
|
||||
msgid "Expand all"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:81
|
||||
msgid "Close all"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:113
|
||||
msgid "No Engines found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:114
|
||||
msgid "You have not added Engines to this location. Deploy an Engine now?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:121
|
||||
msgid "Deploy an Engine"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-location-configuration.php:122
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-shortcode.php:43
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/meta-boxes/class-wc-prl-cl-meta-box-shortcode.php:62
|
||||
msgid ""
|
||||
"To render the recommendations generated in this Custom Location, add the "
|
||||
"following shortcode to any post or page:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-location-shortcode.php:29
|
||||
#: includes/class-wc-prl-cl-location-shortcode.php:60
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:57
|
||||
msgid "Custom Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:58
|
||||
msgid "Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:61
|
||||
msgid "Add custom location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:62
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:64
|
||||
msgid "New Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:65
|
||||
msgid "View Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:66
|
||||
msgid "View Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:67
|
||||
msgid "Search Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:69
|
||||
msgid "No Locations found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:70
|
||||
msgid "Parent Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:71
|
||||
msgid "Filter Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:72
|
||||
msgid "Location navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:73
|
||||
msgid "Locations list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:75
|
||||
msgid ""
|
||||
"Create additional Locations for your recommendation Engines and use "
|
||||
"shortcodes to display them anywhere."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:102
|
||||
msgid "Create Custom Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:105
|
||||
msgid "Need to display product recommendations using shortcodes or blocks?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:107
|
||||
msgid "Start by creating a Custom Location, and then use its shortcode anywhere."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:109
|
||||
msgid "Add Location"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:129
|
||||
#: includes/class-wc-prl-cl-post-types.php:130
|
||||
msgid "Location updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:132
|
||||
#. translators: %s: date and time of the revision
|
||||
msgid "Location restored to revision from %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:133
|
||||
msgid "Location created."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:134
|
||||
msgid "Location saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:135
|
||||
msgid "Location submitted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:136
|
||||
msgid "Location draft updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:153
|
||||
#. translators: %s: location count
|
||||
msgid "%s item permanently deleted."
|
||||
msgid_plural "%s items permanently deleted."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:155
|
||||
#. translators: %s: location count
|
||||
msgid "%s item moved to Trash."
|
||||
msgid_plural "%s items moved to Trash."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:157
|
||||
#. translators: %s: location count
|
||||
msgid "%s item restored from Trash."
|
||||
msgid_plural "%s items restored from Trash."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: product-recommendations-custom-locations.php:75
|
||||
#: product-recommendations-custom-locations.php:82
|
||||
msgid "Foul!"
|
||||
msgstr ""
|
||||
|
||||
#: product-recommendations-custom-locations.php:234
|
||||
msgid ""
|
||||
"Product Recommendations - Custom Locations requires at least WooCommerce "
|
||||
"<strong>%s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: product-recommendations-custom-locations.php:236
|
||||
msgid ""
|
||||
"<strong>Product Recommendations - Custom Locations</strong> requires at "
|
||||
"least <a href=\"%1$s\" target=\"_blank\">WooCommerce Product "
|
||||
"Recommendations</a> version <strong>%2$s</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Product Recommendations - Custom Locations"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://woocommerce.com/products/product-recommendations/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Use shortcodes and blocks to display product recommendations in custom "
|
||||
"pages and locations. Free feature plugin for the official WooCommerce "
|
||||
"Product Recommendations extension."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SomewhereWarm"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://somewherewarm.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-prl-cl-post-types.php:59
|
||||
msgctxt "Admin menu name"
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
@@ -357,6 +357,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/addon-elements-for-elementor-page-builder/assets/js/eae.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- addonify-recaptcha-for-edd -->
|
||||
<script src="http://wp.lab/wp-content/plugins/addonify-recaptcha-for-edd/public/js/addonify-recaptcha-for-edd-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- addons-for-beaver-builder -->
|
||||
<link rel="stylesheet" id="labb-frontend-styles-css" href="http://wp.lab/wp-content/plugins/addons-for-beaver-builder/assets/css/labb-frontend.css?ver=1.4.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="labb-icomoon-styles-css" href="http://wp.lab/wp-content/plugins/addons-for-beaver-builder/assets/css/icomoon.css?ver=1.4.1" type="text/css" media="all">
|
||||
@@ -572,6 +576,8 @@
|
||||
|
||||
<!-- advanced-sermons -->
|
||||
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/asp-frontend.css?ver=1.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="asp-frontend-styling-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/css/asp-frontend.css?ver=1.8" media="all">
|
||||
<link rel="stylesheet" id="asp-media-player-css" href="http://wp.lab/wp-content/plugins/advanced-sermons/styling/media-player/asp-media-player.css?ver=1.8" media="all">
|
||||
|
||||
|
||||
<!-- advanced-spoiler -->
|
||||
@@ -1166,6 +1172,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/art-picture-gallery/apg.class/file-upload/js/jquery.blueimp-gallery.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- art-video-player -->
|
||||
<script src="http://wp.lab/wp-content/plugins/art-video-player/assets/js/artplayer.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- as-store-locator -->
|
||||
<link rel="stylesheet" id="assl-style-css" href="http://wp.lab/wp-content/plugins/as-store-locator/assets/frontend/css/assl-style.css?ver=1.5.6" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/as-store-locator/assets/frontend/js/assl-script.min.js?ver=1.5.6"></script>
|
||||
@@ -1202,6 +1212,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/aspen-to-weaver-xtreme/js/aspen2wx_jslib.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- assistant7 -->
|
||||
<link rel="stylesheet" id="assistant7-css" href="http://wp.lab/wp-content/plugins/assistant7/public/css/assistant7-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/assistant7/public/js/assistant7-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- astra-widgets -->
|
||||
<link rel="stylesheet" id="astra-widgets-style-css" href="http://wp.lab/wp-content/plugins/astra-widgets/assets/css/unminified/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -1939,6 +1954,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blip-slideshow/blip-mootools.js?ver=1.2.7"></script>
|
||||
|
||||
|
||||
<!-- block-conditions -->
|
||||
<link rel="stylesheet" id="block-conditions-front-css-css" href="http://wp.lab/wp-content/plugins/block-conditions/public/css/block-conditions-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/block-conditions/public/js/block-conditions-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- block-fancy-list-item -->
|
||||
<link rel="stylesheet" id="block-fancy-list-item-css" href="http://wp.lab/wp-content/plugins/block-fancy-list-item/public/css/block-fancy-list-item-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/block-fancy-list-item/public/js/block-fancy-list-item-public.js?ver=1.0.0"></script>
|
||||
@@ -2371,6 +2391,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/brader-kits/public/js/brader-kits-public.js?ver=20.8.21"></script>
|
||||
|
||||
|
||||
<!-- brand-coupons-for-woocommerce -->
|
||||
<link rel="stylesheet" id="woocommerce-brand-coupons-css" href="http://wp.lab/wp-content/plugins/brand-coupons-for-woocommerce/public/css/woocommerce-brand-coupons-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/brand-coupons-for-woocommerce/public/js/woocommerce-brand-coupons-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- branding -->
|
||||
<link rel="stylesheet" id="lolita-css-loader-css" href="http://wp.lab/wp-content/plugins/branding/LolitaFramework/CssLoader/assets/css/lolita_css_loader.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
@@ -2415,6 +2440,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/browser-theme-colors/public/js/browser-theme-colors-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- browsing-history -->
|
||||
<link rel="stylesheet" id="ccc_browsing_history-list-css-css" href="http://wp.lab/wp-content/plugins/browsing-history/assets/list.css?ver=1.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/browsing-history/assets/save.js?ver=1.1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/browsing-history/assets/list.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- bs-faq -->
|
||||
<link rel="stylesheet" id="bs_faq_plugin-css" href="http://wp.lab/wp-content/plugins/bs-faq/public/css/bs_faq_plugin-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bs_faq_my_css-css" href="http://wp.lab/wp-content/plugins/bs-faq/public/css/bs_faq_my_css.css?ver=1.0.0" type="text/css" media="all">
|
||||
@@ -3574,6 +3605,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/conditional-popup-creator/assets/js/main.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- conditional-taxonomy-option -->
|
||||
<link rel="stylesheet" id="cto-acf-css" href="http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/css/cto-acf-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/conditional-taxonomy-option/public/js/cto-acf-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- conformis-cookie-banner -->
|
||||
<script src="http://wp.lab/wp-content/plugins/conformis-cookie-banner/js/main.js?ver=0.1.0"></script>
|
||||
<link rel="stylesheet" id="conformis_style-css" href="http://wp.lab/wp-content/plugins/conformis-cookie-banner/css/main.css?ver=0.1.0" media="all">
|
||||
@@ -3881,6 +3917,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/country-code-selector/public/js/country-code-selector-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- coupon-bulker -->
|
||||
<link rel="stylesheet" id="coupon-bulker-css" href="http://wp.lab/wp-content/plugins/coupon-bulker/public/css/coupon-bulker-public.css?ver=1.2.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/coupon-bulker/public/js/coupon-bulker-public.js?ver=1.2.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>
|
||||
@@ -4130,6 +4171,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/custom-job-fields-for-wp-job-manager/public/js/cfwjm-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- custom-layouts -->
|
||||
<script src="http://wp.lab/wp-content/plugins/custom-layouts/assets/js/frontend/custom-layouts.js?ver=1.1.3"></script>
|
||||
|
||||
|
||||
<!-- custom-map-for-real-estate -->
|
||||
<link rel="stylesheet" id="maps-points-css" href="http://wp.lab/wp-content/plugins/custom-map-for-real-estate/frontend/css/maps_points.css?ver=1.1.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/custom-map-for-real-estate/frontend/js/maps_points.js?ver=1.1.1"></script>
|
||||
@@ -4222,6 +4267,16 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dakpion/public/js/dakpion-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- dark-mode-lite -->
|
||||
<link rel="stylesheet" id="dml-visitor-style-css" href="http://wp.lab/wp-content/plugins/dark-mode-lite/styles/css/dml-visitor-mode.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="dml-toggle-style-css" href="http://wp.lab/wp-content/plugins/dark-mode-lite/styles/css/toggle.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/dark-mode-lite/styles/js/dml-visitor-mode.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- darklup-lite-wp-dark-mode -->
|
||||
<link rel="stylesheet" id="darkluplite-style-css" href="http://wp.lab/wp-content/plugins/darklup-lite-wp-dark-mode/assets/css/darkluplite-style.css?ver=1.0.0" media="">
|
||||
|
||||
|
||||
<!-- darkmode -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/darkmode/js/darkmode.min.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -4511,6 +4566,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dynamic-content-for-woocommerce/public/js/cc-for-woocommerce-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- dynamically-display-posts -->
|
||||
<link rel="stylesheet" id="mxddp_style-css" href="http://wp.lab/wp-content/plugins/dynamically-display-posts/includes/frontend/assets/css/style.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/dynamically-display-posts/includes/frontend/assets/add/vue_js/vue.production.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/dynamically-display-posts/includes/frontend/assets/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- dynast-admin-panel -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/dynast-admin-panel/assets/js/admin_contact.js?ver=v1.0"></script>
|
||||
|
||||
@@ -4746,6 +4807,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-table-of-contents/assets/js/front.min.js?ver=1.3"></script>
|
||||
|
||||
|
||||
<!-- easy-tag-and-tracking-id-inserter -->
|
||||
<link rel="stylesheet" id="easy-tag-and-tracking-id-inserter-css" href="http://wp.lab/wp-content/plugins/easy-tag-and-tracking-id-inserter/public/css/easy-tag-and-tracking-id-inserter-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-tag-and-tracking-id-inserter/public/js/easy-tag-and-tracking-id-inserter-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- easy-twitter-feeds -->
|
||||
<script src="http://wp.lab/wp-content/plugins/easy-twitter-feeds/public/js/widget.js?ver=1.0"></script>
|
||||
|
||||
@@ -4843,6 +4909,9 @@
|
||||
|
||||
<!-- economic-market-news -->
|
||||
<script src="http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio-wp.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/economic-market-news/assets/Sortable.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio_search.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="customStockdioSearchStyles-css" href="http://wp.lab/wp-content/plugins/economic-market-news/assets/stockdio_search.css?v=1.0.0&ver=5.3.1" media="all">
|
||||
|
||||
|
||||
<!-- ecwid-widgets-avalanche -->
|
||||
@@ -5096,6 +5165,12 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/envychimp/public/js/ajaxChimp.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- envydoc -->
|
||||
<link rel="stylesheet" id="envydoc-font-awesome-css" href="http://wp.lab/wp-content/plugins/envydoc/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-doc-css" href="http://wp.lab/wp-content/plugins/envydoc/public/css/envy-doc-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/envydoc/public/js/envy-doc-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- envynotifs -->
|
||||
<link rel="stylesheet" id="envy-notifs-font-awesome-css" href="http://wp.lab/wp-content/plugins/envynotifs/public/css/font-awesome.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="envy-notifs-bootstrap-css" href="http://wp.lab/wp-content/plugins/envynotifs/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
@@ -6007,6 +6082,9 @@
|
||||
<link rel="stylesheet" id="anwpfl_flags_16-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/world-flags-sprite/stylesheets/flags16.css?ver=0.4.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/js/anwpfl-public.min.js?ver=0.4.2"></script>
|
||||
<link rel="stylesheet" id="anwpfl_styles-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles-compatible.css?ver=0.4.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="anwpfl_styles-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/public/css/styles.min.css?ver=0.4.2" media="all">
|
||||
<link rel="stylesheet" id="modaal-css" href="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.css?ver=0.4.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/football-leagues-by-anwppro/vendor/modaal/modaal.min.js?ver=0.4.2"></script>
|
||||
|
||||
|
||||
<!-- football-match-tracker -->
|
||||
@@ -6952,6 +7030,29 @@
|
||||
<link rel="stylesheet" id="guardian_headlines_style-css" href="http://wp.lab/wp-content/plugins/guardian-news-headlines/guardian_headlines.css?ver=0.5.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- guto-toolkit -->
|
||||
<link rel="stylesheet" id="bootstrap-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="animate-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/animate.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="boxicons-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/boxicons.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="nice-select-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/nice-select.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="owl-carousel-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/owl.carousel.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="odometer-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/odometer.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="magnific-popup-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/magnific-popup.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="guto-main-css" href="http://wp.lab/wp-content/plugins/guto-toolkit/public/css/main-style.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/popper.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/nice-select.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/magnific-popup.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/owl.carousel.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/meanmenu.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/parallax.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/jquery.appear.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/odometer.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/wow.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/jquery.ajaxchimp.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/guto-toolkit/public/js/guto-toolkit-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- h5p -->
|
||||
<link rel="stylesheet" id="h5p-plugin-styles-css" href="http://wp.lab/wp-content/plugins/h5p/h5p-php-library/styles/h5p.css?ver=1.10.0" type="text/css" media="all">
|
||||
|
||||
@@ -7171,6 +7272,11 @@
|
||||
<link rel="stylesheet" id="button-contact-css" href="http://wp.lab/wp-content/plugins/hk-button-contact/css/button-contact.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- hm-logo-showcase -->
|
||||
<link rel="stylesheet" id="hmls-front-style-css" href="http://wp.lab/wp-content/plugins/hm-logo-showcase/assets/css/hmls-front-style.css?ver=1.1" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/hm-logo-showcase/assets/js/hmls-front-script.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- hm-product-catalog -->
|
||||
<link rel="stylesheet" id="wphpc-front-style-w3-css" href="http://wp.lab/wp-content/plugins/hm-product-catalog/assets/css/wphpc-w3.css?ver=1.0" type="text/css" media="">
|
||||
<link rel="stylesheet" id="wphpc-front-style-css" href="http://wp.lab/wp-content/plugins/hm-product-catalog/assets/css/wphpc-front-style.css?ver=1.0" type="text/css" media="">
|
||||
@@ -7182,6 +7288,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/hm-resume-manager/assets/js/hmrm-front-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- hm-simple-facebook-page -->
|
||||
<link rel="stylesheet" id="hmsfp-front-style-css" href="http://wp.lab/wp-content/plugins/hm-simple-facebook-page/assets/css/hmsfp-front-style.css?ver=1.4" media="">
|
||||
|
||||
|
||||
<!-- hmh-footer-builder-for-elementor -->
|
||||
<link rel="stylesheet" id="bbfb-css" href="http://wp.lab/wp-content/plugins/hmh-footer-builder-for-elementor//assets/css/bbfb.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hmh-footer-builder-for-elementor//assets/js/script.js?ver=1.0"></script>
|
||||
@@ -7237,6 +7347,12 @@
|
||||
<link rel="stylesheet" id="hpr-style-css" href="http://wp.lab/wp-content/plugins/hotline-phone-ring/assets/css/app.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- hotspot -->
|
||||
<link rel="stylesheet" id="xolo-hotspot-public-css" href="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/css/xolo-hotspot-public.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/jquery.powertip.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/hotspot/assets/frontend/js/xolo-hotspot-public.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- hover-effects -->
|
||||
<link rel="stylesheet" id="hover-effects-css" href="http://wp.lab/wp-content/plugins/hover-effects/asset/css/hover.css?ver=2.1" type="text/css" media="all">
|
||||
|
||||
@@ -7322,6 +7438,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/i-search/front/js/frontend.min.js?ver=1.2.0"></script>
|
||||
|
||||
|
||||
<!-- i2-azon -->
|
||||
<link rel="stylesheet" id="i2_azon_style_css-css" href="http://wp.lab/wp-content/plugins/i2-azon/dist/css/style.css?ver=0.2.4" media="all">
|
||||
|
||||
|
||||
<!-- ic-besocial -->
|
||||
<link rel="stylesheet" id="ic-besocial-css" href="http://wp.lab/wp-content/plugins/ic-besocial/besocial.css?ver=3.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ic-besocial/besocial.js?ver=3.0"></script>
|
||||
@@ -7947,6 +8067,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/jp-scrollbar/js/jquery.mousewheel.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- jp-students-result-management-system -->
|
||||
<link rel="stylesheet" id="jsrms_fstyle-css" href="http://wp.lab/wp-content/plugins/jp-students-result-management-system/css/style.css?ver=1.5" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/jp-students-result-management-system/js/scripts.js?ver=1.5"></script>
|
||||
|
||||
|
||||
<!-- jps-affiliate -->
|
||||
<link rel="stylesheet" id="jps-affiliate-css" href="http://wp.lab/wp-content/plugins/jps-affiliate/jps-affiliate.css?ver=0.1" type="text/css" media="all">
|
||||
|
||||
@@ -8076,6 +8201,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kanzu-support-desk/assets/js/ksd-public.js?ver=2.4.5"></script>
|
||||
|
||||
|
||||
<!-- kata-plus -->
|
||||
<link rel="stylesheet" id="grid-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/libraries/grid.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="kata-plus-theme-styles-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/theme-styles.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="kata-plus-sticky-box-css" href="http://wp.lab/wp-content/plugins/kata-plus/assets/src/css/frontend/sticky-box.css?ver=1.0.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/sticky-box.js?ver=1.0.3"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/kata-plus/assets/src/js/frontend/kata-plus-inline.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- katalyst-video-plus -->
|
||||
<link rel="stylesheet" id="katalyst-video-plus-css" href="http://wp.lab/wp-content/plugins/katalyst-video-plus/assets/css/kvp.css?ver=3.2.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/katalyst-video-plus/assets/js/kvp.js?ver=3.2.1"></script>
|
||||
@@ -8701,6 +8834,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/livetwitch/public/js/twitch-public.js?ver=0.0.2"></script>
|
||||
|
||||
|
||||
<!-- llc-tax -->
|
||||
<link rel="stylesheet" id="llc_main-css" href="http://wp.lab/wp-content/plugins/llc-tax/assets/css/llc_main.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/llc-tax/assets/js/llc_main.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- lnd-for-wp -->
|
||||
<link rel="stylesheet" id="lnd-for-wp-css" href="http://wp.lab/wp-content/plugins/lnd-for-wp/public/css/lnd-for-wp-public.css?ver=0.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lnd-for-wp/public/js/lnd-for-wp-public.js?ver=0.1.0"></script>
|
||||
@@ -10052,6 +10190,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/my-faves/public/js/myfaves-public.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- my-favorites -->
|
||||
<link rel="stylesheet" id="ccc_my_favorite-select-css-css" href="http://wp.lab/wp-content/plugins/my-favorites/assets/select.css?ver=1.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/my-favorites/assets/select.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- my-idx-home-search -->
|
||||
<link rel="stylesheet" id="homeasap-search-css" href="http://wp.lab/wp-content/plugins/my-idx-home-search/public/css/homeasap-search-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/my-idx-home-search/public/js/homeasap-search-public.js?ver=1.0.1"></script>
|
||||
@@ -10540,6 +10683,7 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-main.min.js?ver=1.9.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/florist-one-flower-delivery-public.min.js?ver=1.9.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-condolences.min.js?ver=1.9.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/obituary-assistant-by-funeral-home-website-solutions/public/js/fhw-solutions-obituaries-photo-gallery.min.js?ver=1.9.1"></script>
|
||||
|
||||
|
||||
<!-- obituary-central-newspaper-obituary-editor -->
|
||||
@@ -11648,6 +11792,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/posts-data-table/assets/js/posts-data-table.min.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- posts-filter -->
|
||||
<link rel="stylesheet" id="ccc_terms_filter_ajax-css-css" href="http://wp.lab/wp-content/plugins/posts-filter/assets/filter.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/posts-filter/assets/filter.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- posts-grid -->
|
||||
<link rel="stylesheet" id="gspostsbootstrap-css-css" href="http://wp.lab/wp-content/plugins/posts-grid/gs-wpposts-files/assets/css/gswpposts_custom_bootstrap.css?ver=1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="gsposts-gswppost-custom-css-css" href="http://wp.lab/wp-content/plugins/posts-grid/gs-wpposts-files/assets/css/gswpposts_custom.css?ver=1.1" type="text/css" media="all">
|
||||
@@ -11657,6 +11806,11 @@
|
||||
<link rel="stylesheet" id="posts-from-category-widget-stylesheet-css" href="http://wp.lab/wp-content/plugins/posts-in-category-widget/style.css?ver=1.2.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- posts-search -->
|
||||
<link rel="stylesheet" id="ccc_search_ajax-found_posts-css-css" href="http://wp.lab/wp-content/plugins/posts-search/assets/found_posts.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/posts-search/assets/found_posts.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- posts-slider-shortcode -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/posts-slider-shortcode/js/owl.carousel.js?ver=1.0"></script>
|
||||
|
||||
@@ -11875,6 +12029,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/private-google-calendars/lib/tippy/tippy-bundle.umd.min.js?ver=20191205"></script>
|
||||
|
||||
|
||||
<!-- privy-crm-integration -->
|
||||
<link rel="stylesheet" id="privyr-cf7-css" href="http://wp.lab/wp-content/plugins/privy-crm-integration/public/css/privyr-crm-public.css?ver=0.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/privy-crm-integration/public/js/privyr-crm-public.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- pro-adblock -->
|
||||
<link rel="stylesheet" id="padb-style-css" href="http://wp.lab/wp-content/plugins/pro-adblock/assets/css/padb-style.css?ver=1.2.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pro-adblock/gads.js?ver=1.2.1"></script>
|
||||
@@ -12145,6 +12304,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/qreatmenu-restaurant-qr-menu-for-woocommerce/public/js/qrm-woocommerce-qr-menu-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- quabads -->
|
||||
<link rel="stylesheet" id="quabads-css" href="http://wp.lab/wp-content/plugins/quabads/admin/css/quabads-admin.css?ver=1.2.1" media="all">
|
||||
|
||||
|
||||
<!-- quadmenu -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quadmenu/assets/frontend/js/quadmenu.min.js?ver=1.1.6"></script>
|
||||
|
||||
@@ -13015,6 +13178,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/rw-elephant-rental-inventory/lib/assets/js/rw-elephant.min.js?ver=2.1.2"></script>
|
||||
|
||||
|
||||
<!-- rw-recent-post -->
|
||||
<link rel="stylesheet" id="rwrpt_style-css" href="http://wp.lab/wp-content/plugins/rw-recent-post/css/rwstyle.css?ver=1.1" media="all">
|
||||
|
||||
|
||||
<!-- ryviu -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ryviu/assets/js/local-ryviu.js?ver=2.2.7"></script>
|
||||
|
||||
@@ -13649,6 +13816,13 @@
|
||||
<link rel="stylesheet" id="atw-posts-style-sheet-css" href="http://wp.lab/wp-content/plugins/show-posts/atw-posts-style.min.css?ver=1.3.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- show-product-variations-for-woocommerce -->
|
||||
<link rel="stylesheet" id="wsv-css" href="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/wsv-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wsv-dataTables-min-css" href="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/css/datatables.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/datatables.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/show-product-variations-for-woocommerce/public/js/wsv-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- show-remote-ip -->
|
||||
<link rel="stylesheet" id="show-remote-ip-css" href="http://wp.lab/wp-content/plugins/show-remote-ip/public/css/show-remote-ip-public.css?ver=0.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/show-remote-ip/public/js/show-remote-ip-public.js?ver=0.0.1"></script>
|
||||
@@ -14692,6 +14866,9 @@
|
||||
<link rel="stylesheet" id="anwp-data-tables-css" href="http://wp.lab/wp-content/plugins/sports-leagues/vendor/datatables/datatables.min.css?ver=0.5.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sports-leagues/vendor/datatables/datatables.min.js?ver=0.5.3"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/sports-leagues/public/js/sl-public.min.js?ver=0.5.3"></script>
|
||||
<link rel="stylesheet" id="sl_styles-css" href="http://wp.lab/wp-content/plugins/sports-leagues/public/css/styles.min.css?ver=0.5.3" media="all">
|
||||
<link rel="stylesheet" id="modaal-css" href="http://wp.lab/wp-content/plugins/sports-leagues/vendor/modaal/modaal.min.css?ver=0.5.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sports-leagues/vendor/modaal/modaal.min.js?ver=0.5.3"></script>
|
||||
|
||||
|
||||
<!-- sportspress -->
|
||||
@@ -14892,6 +15069,9 @@
|
||||
|
||||
<!-- stock-quotes-list -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/stock-quotes-list/assets/stockdio-wp.js?ver=2.7.13"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/stock-quotes-list/assets/Sortable.min.js?ver=2.7.13"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/stock-quotes-list/assets/stockdio_search.js?ver=2.7.13"></script>
|
||||
<link rel="stylesheet" id="customStockdioSearchStyles-css" href="http://wp.lab/wp-content/plugins/stock-quotes-list/assets/stockdio_search.css?v=2.7.13&ver=5.3.1" media="all">
|
||||
|
||||
|
||||
<!-- stock-ticker -->
|
||||
@@ -15162,6 +15342,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/sympose/js/dist/public/sympose.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sync-post-with-other-site -->
|
||||
<link rel="stylesheet" id="sps_front_css-css" href="http://wp.lab/wp-content/plugins/sync-post-with-other-site/assets/css/sps_front_style.css?rand=578&ver=1.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sync-post-with-other-site/assets/js/sps_front_js.js?rand=749&ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- syndication-links -->
|
||||
<link rel="stylesheet" id="syndication-style-css" href="http://wp.lab/wp-content/plugins/syndication-links/css/syn.min.css?ver=3.3.0" type="text/css" media="all">
|
||||
|
||||
@@ -18530,6 +18715,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-dropkick/public/js/wp-dropkick-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-dummy-content-generator -->
|
||||
<link rel="stylesheet" id="wp_dummy_content_generator-css" href="http://wp.lab/wp-content/plugins/wp-dummy-content-generator/public/css/wp_dummy_content_generator-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-dummy-content-generator/public/js/wp_dummy_content_generator-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-easter-egg -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-easter-egg/lib/wp-easter-egg.js?ver=2.0.6"></script>
|
||||
|
||||
@@ -20311,6 +20501,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpcountdown/static/js/countdown.js?ver=1.2"></script>
|
||||
|
||||
|
||||
<!-- wpdirectorykit -->
|
||||
<link rel="stylesheet" id="wpdirectorykit-css" href="http://wp.lab/wp-content/plugins/wpdirectorykit/public/css/wpdirectorykit-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wpdirectorykit/public/js/wpdirectorykit-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpdownload -->
|
||||
<link rel="stylesheet" id="dwpl-data-css" href="http://wp.lab/wp-content/plugins/wpdownload/public/css/dwpl-data-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpdownload/public/js/dwpl-data-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
*** Changelog ***
|
||||
|
||||
= 1.0.0 - 2021-01-12 =
|
||||
* Initial Release
|
||||
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/spatie-ray/change_log/CHANGELOG.md
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/spatie-ray/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to `wordpress-ray` will be documented in this file.
|
||||
|
||||
## 1.1.0 - 2021-01-14
|
||||
|
||||
- upgrade `Ray` to 1.9.1
|
||||
|
||||
## 1.0.3 - 2021-01-13
|
||||
|
||||
- improve production check
|
||||
|
||||
## 1.0.2 - 2021-01-13
|
||||
|
||||
- fix tagging issues
|
||||
|
||||
## 1.0.1 - 2021-01-13
|
||||
|
||||
- fix zip
|
||||
|
||||
## 1.0.0 - 2021-01-13
|
||||
|
||||
- stable release
|
||||
298
spec/fixtures/dynamic_finders/plugin_version/texty/translation_file/languages/texty.pot
vendored
Normal file
298
spec/fixtures/dynamic_finders/plugin_version/texty/translation_file/languages/texty.pot
vendored
Normal file
@@ -0,0 +1,298 @@
|
||||
# Copyright (c) 2021 weDevs Pte. Ltd. All Rights Reserved.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Texty 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/weDevsOfficial/texty/issues\n"
|
||||
"Last-Translator: support@wedevs.com\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-01-22T10:29:12+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: texty\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/Admin/Menu.php:26
|
||||
#: includes/Admin/Menu.php:27
|
||||
msgid "Texty"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/texty/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "SMS Notification for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "weDevs"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wedevs.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Admin/Profile.php:28
|
||||
msgid "Phone Number (Texty)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Send.php:35
|
||||
#: includes/Api/Tools.php:35
|
||||
msgid "The to phone number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Send.php:40
|
||||
msgid "The message to be sent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Api/Settings.php:127
|
||||
msgid "The selected gateway"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Clickatell.php:25
|
||||
msgid "Clickatell"
|
||||
msgstr ""
|
||||
|
||||
#. translators: URL to Twilio settings and help docs
|
||||
#: includes/Gateways/Clickatell.php:36
|
||||
msgid "Send SMS with Clickatell. Follow <a href=\"%1$s\" target=\"_blank\">this link</a> to get the API. Follow <a href=\"%2$s\" target=\"_blank\">these instructions</a> to configure the gateway."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Clickatell.php:64
|
||||
#: includes/Gateways/Vonage.php:64
|
||||
msgid "API Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Fake.php:20
|
||||
msgid "Fake Gateway"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Fake.php:29
|
||||
msgid "This is a fake gateway that logs the messages to <code>debug.log</code> file without sending the actual SMS."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Plivo.php:25
|
||||
msgid "Plivo"
|
||||
msgstr ""
|
||||
|
||||
#. translators: URL to Plivo settings and help docs
|
||||
#: includes/Gateways/Plivo.php:36
|
||||
msgid "Send SMS with Plivo. Follow <a href=\"%1$s\" target=\"_blank\">this link</a> to get the Auth ID and Token from Plivo. Follow <a href=\"%2$s\" target=\"_blank\">these instructions</a> to configure the gateway."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Plivo.php:64
|
||||
msgid "Auth ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Plivo.php:70
|
||||
#: includes/Gateways/Twilio.php:70
|
||||
msgid "Auth Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Plivo.php:76
|
||||
#: includes/Gateways/Twilio.php:76
|
||||
#: includes/Gateways/Vonage.php:76
|
||||
msgid "From Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Plivo.php:79
|
||||
msgid "Must be a valid number associated with your Plivo account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Twilio.php:25
|
||||
msgid "Twilio"
|
||||
msgstr ""
|
||||
|
||||
#. translators: URL to Twilio settings and help docs
|
||||
#: includes/Gateways/Twilio.php:36
|
||||
msgid "Send SMS with Twilio. Follow <a href=\"%1$s\" target=\"_blank\">this link</a> to get the Account SID and Token from Twilio. Follow <a href=\"%2$s\" target=\"_blank\">these instructions</a> to configure the gateway."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Twilio.php:64
|
||||
msgid "Account SID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Twilio.php:79
|
||||
msgid "Must be a valid number associated with your Twilio account"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Vonage.php:25
|
||||
msgid "Vonage (nexmo)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Vonage dashboard settings URL and help docs
|
||||
#: includes/Gateways/Vonage.php:45
|
||||
msgid "Send SMS with Vonage (formerly Nexmo). Follow <a href=\"%1$s\" target=\"_blank\">this link</a> to get the API Key and Secret from Vonage. Follow <a href=\"%2$s\" target=\"_blank\">these instructions</a> to configure the gateway."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Gateways/Vonage.php:70
|
||||
msgid "API Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications.php:83
|
||||
msgid "WordPress"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications.php:88
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications.php:93
|
||||
msgid "Dokan"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/Dokan/CompleteVendor.php:11
|
||||
msgid "Vendor - When Order Status is Complete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/Dokan/ProcessingVendor.php:11
|
||||
msgid "Vendor - When Order Status is Processing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WC/CompleteAdmin.php:11
|
||||
msgid "Admin - When Order Status is Complete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WC/CompleteCustomer.php:11
|
||||
msgid "Customer - When Order Status is Complete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WC/HoldCustomer.php:11
|
||||
msgid "Customer - When Order Status is On Hold"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WC/ProcessingAdmin.php:11
|
||||
msgid "Admin - When Order Status is Processing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WC/ProcessingCustomer.php:11
|
||||
msgid "Customer - When Order Status is Processing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WP/Comment.php:18
|
||||
msgid "New Comment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Notifications/WP/Registration.php:18
|
||||
msgid "New User Registration"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Header.js:35
|
||||
#: src/components/Header.js:38
|
||||
msgid "Gateway Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Header.js:44
|
||||
#: src/components/Header.js:47
|
||||
#: src/pages/Notifications.js:90
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Header.js:53
|
||||
#: src/components/Header.js:56
|
||||
#: src/pages/Tools.js:15
|
||||
msgid "Tools"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:35
|
||||
msgid "active"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:35
|
||||
msgid "inactive"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:41
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:52
|
||||
msgid "Select one or multiple user roles. Users with phone number in their profile will receive the text"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:78
|
||||
#: src/components/QuickSend.js:58
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/NotificationItem.js:86
|
||||
msgid "You may use these variables: "
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:29
|
||||
#: src/components/TestMessage.js:27
|
||||
msgid "Message has been sent."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:32
|
||||
#: src/components/TestMessage.js:30
|
||||
msgid "Error, message could not be sent."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:49
|
||||
msgid "Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:60
|
||||
msgid "Write your message..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:68
|
||||
#: src/components/TestMessage.js:59
|
||||
msgid "Sending..."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/QuickSend.js:68
|
||||
msgid "Send Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Status.js:33
|
||||
msgid "Connected"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/Status.js:33
|
||||
msgid "Not connected"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/TestMessage.js:47
|
||||
msgid "Test Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/components/TestMessage.js:52
|
||||
msgid "Enter a phone number to test the SMS sending."
|
||||
msgstr ""
|
||||
|
||||
#: src/components/TestMessage.js:59
|
||||
msgid "Send Test"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Notifications.js:75
|
||||
msgid "Changes have been saved"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Notifications.js:92
|
||||
msgid "Enable or disable notification based on different events."
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Notifications.js:113
|
||||
msgid "Plugin not installed"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Notifications.js:151
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Notifications.js:151
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Tools.js:22
|
||||
msgid "Test Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/Tools.js:30
|
||||
msgid "Quick Send"
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/the-publisher-desk-ads/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/the-publisher-desk-ads/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "tpd-ads-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.21.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,296 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP-Chatbot Builder 1.0.0\n"
|
||||
"POT-Creation-Date: 2021-01-05 12:35+0530\n"
|
||||
"PO-Revision-Date: 2021-01-05 12:35+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: BotMyWork\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ../wp-chatbot-main\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html;esc_html_e;esc_attr;esc_attr_e;esc_url;"
|
||||
"esc_url_raw\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-wp-chatbot-builder-admin.php:192
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/class-wp-cbb-lead-display.php:44
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/class-wp-cbb-lead-display.php:45
|
||||
msgid "Gender"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/class-wp-cbb-lead-display.php:46
|
||||
msgid "Locale"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/class-wp-cbb-lead-display.php:47
|
||||
msgid "TimeZone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/class-wp-cbb-lead-display.php:48
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:51
|
||||
msgid "Settings Saved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:53
|
||||
msgid "Dismiss this notice"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:62
|
||||
msgid "Messenger Theme Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:67
|
||||
msgid ""
|
||||
"Select Facebook Messenger theme color, Facebook highly recommends to choose "
|
||||
"a color that has a high contrast to white."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:78
|
||||
msgid "Greeting Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:83
|
||||
msgid "For logged in users:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:89
|
||||
msgid "For logged out users:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:94
|
||||
msgid "Enter Facebook Messenger greeting text, leave blank to use default."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:102
|
||||
msgid "Device Behaviour"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:108
|
||||
msgid "Show on desktop and mobile both"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:109
|
||||
msgid "Show on desktop only"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:110
|
||||
msgid "Show on mobile only"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:112
|
||||
msgid ""
|
||||
"Select devices where you want to display Facebook Messenger. Mobile devices "
|
||||
"include both Smartphones and Tablets."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:119
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:125
|
||||
msgid "Show Everywhere"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:126
|
||||
msgid "Show Everywhere except for these Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:127
|
||||
msgid "Only show on these Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:128
|
||||
msgid "Only show on Home Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:134
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:145
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:195
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:239
|
||||
msgid "hidden"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:138
|
||||
msgid "The Facebook Messenger will be displayed on all pages."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:149
|
||||
msgid ""
|
||||
"The Facebook Messenger will be displayed on all pages, except for these "
|
||||
"selected pages."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:163
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:213
|
||||
msgid "Select Pages: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:184
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:229
|
||||
msgid "Sorry No Page found."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:199
|
||||
msgid "The Facebook Messenger will be displayed only on these selected pages."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:243
|
||||
msgid "The Facebook Messenger will be displayed only on the Home Page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:252
|
||||
msgid "Greeting Dialog Delay"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:257
|
||||
msgid ""
|
||||
"Sets the number of seconds of delay before the greeting dialog is shown "
|
||||
"after the plugin is loaded."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-customize-display.php:269
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-not-connected.php:14
|
||||
msgid "Welcome to WP-Chatbot Builder!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-not-connected.php:15
|
||||
msgid "To get started, connect your Facebook page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-not-connected.php:19
|
||||
msgid "Connect Facebook Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-not-connected.php:23
|
||||
msgid "By connecting with Facebook you are agreeing to the "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-not-connected.php:23
|
||||
msgid "WP-Chatbot Builder Terms of Service"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-select-page.php:23
|
||||
msgid "Connect to your Facebook page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-select-page.php:25
|
||||
msgid "Logout WP-Chatbot Builder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-select-page.php:53
|
||||
#: admin/partials/wp-cbb-admin-display.php:47
|
||||
msgid "Disconnect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-select-page.php:57
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-fb-button-select-page.php:68
|
||||
msgid "Sorry, No pages found!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-incomplete-setup.php:20
|
||||
msgid "assets/images/cbb_logo.png"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-incomplete-setup.php:25
|
||||
msgid "WP-Chatbot Builder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-incomplete-setup.php:29
|
||||
msgid "Enjoy ceaseless chatting experience with WP-Chatbot Builder."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-incomplete-setup.php:36
|
||||
msgid "Complete Setup Now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:33
|
||||
msgid "Something went wrong: "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:42
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:45
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:45
|
||||
msgid "Enable WP-Chatbot Builder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:48
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:79
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:110
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:50
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:81
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:112
|
||||
#: admin/partials/wp-cbb-admin-display.php:41
|
||||
msgid "assets/images/loading.gif"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:56
|
||||
msgid "Welcome Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:87
|
||||
msgid "Default Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:118
|
||||
msgid "Q&A"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:122
|
||||
msgid ""
|
||||
"Chatbot will answer questions on your page based on keywords detected in the "
|
||||
"user’s question."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:128
|
||||
msgid "If user says something similar to "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:129
|
||||
msgid "Bot randomly replies with "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:130
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:200
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:225
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/templates/wp-cbb-setup-display.php:237
|
||||
msgid " + Add Q&A"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/wp-cbb-admin-display.php:46
|
||||
msgid "WP-Chatbot Builder Settings"
|
||||
msgstr ""
|
||||
32
spec/fixtures/dynamic_finders/plugin_version/wp-foft-loader/composer_file/package.json
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/wp-foft-loader/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "wp-foft-loader",
|
||||
"version": "2.1.5",
|
||||
"description": "This plugin implements and automates Zach Leatherman’s Critical FOFT with preload, with a polyfill fallback emulating font-display: optional to optimize and speed up webfont loading and improve UX by minimizing Flash of Invisible Text, Flash of Unstyled Text, and DOM Reflow. See [https://github.com/zachleat/web-font-loading-recipes#the-compromise-critical-foft-with-preload-with-a-polyfill-fallback-emulating-font-display-optional](https://github.com/zachleat/web-font-loading-recipes#the-compromise-critical-foft-with-preload-with-a-polyfill-fallback-emulating-font-display-optional).",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/seezee/WP-FOFT-Loader.git"
|
||||
},
|
||||
"keywords": [
|
||||
"font",
|
||||
"wordpress",
|
||||
"performance",
|
||||
"webfont"
|
||||
],
|
||||
"author": "Chris J. Zähller",
|
||||
"license": "GPL-3.0+",
|
||||
"bugs": {
|
||||
"url": "https://github.com/seezee/WP-FOFT-Loader/issues"
|
||||
},
|
||||
"homepage": "https://github.com/seezee/WP-FOFT-Loader#readme",
|
||||
"dependencies": {
|
||||
"htmlpurifier": "ezyang/htmlpurifier",
|
||||
"CSSTidy": "Cerdic/CSSTidy",
|
||||
"Are-you-sure": "codedance/jquery.AreYouSure"
|
||||
},
|
||||
"bundledDependencies": [
|
||||
"htmlpurifier", "CSSTidy", "Are-you-sure"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,191 @@
|
||||
# Copyright (C) 2021 WPClever.net
|
||||
# This file is distributed under the same license as the WPC Product FAQs for WooCommerce plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPC Product FAQs for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpc-product-faqs\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2021-01-28T03:51:39+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.2.0\n"
|
||||
"X-Domain: wpc-product-faqs\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WPC Product FAQs for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wpclever.net/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Ultimate solution to manage WooCommerce product FAQs."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "WPClever.net"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpclever.net"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:79
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Product FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:80
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:81
|
||||
msgid "Add New Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:82
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:83
|
||||
msgid "Edit Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:84
|
||||
msgid "Update Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:85
|
||||
msgid "Search Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:89
|
||||
msgid "Product FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:114
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:129
|
||||
msgid "Select which products you want to add this FAQs automatically. If \"None\" is set, you can still manually choose to add this in the \"FAQs\" tab of each individual product page."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:135
|
||||
msgid "All products"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:136
|
||||
#: wpc-product-faqs.php:144
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:137
|
||||
#: wpc-product-faqs.php:170
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:138
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:152
|
||||
msgid "Search for a category…"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:174
|
||||
msgid "Add some tags, split by a comma..."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:227
|
||||
#: wpc-product-faqs.php:399
|
||||
msgid "How to use?"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:243
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:253
|
||||
#: wpc-product-faqs.php:382
|
||||
msgid "WPC Product FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:253
|
||||
msgid "Product FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:264
|
||||
#: wpc-product-faqs.php:310
|
||||
msgid "FAQ title"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:299
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:302
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:357
|
||||
msgid "Global FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:358
|
||||
msgid "Custom FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:361
|
||||
msgid "+ Add new FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:385
|
||||
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:388
|
||||
msgid "Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:390
|
||||
msgid "Changelog"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:392
|
||||
msgid "Discussion"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:403
|
||||
msgid "Global FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:407
|
||||
msgid "Essential Kit"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:415
|
||||
msgid "1. Global FAQs: Switch to Global FAQs tab to add the FAQs then you can use these FAQs in each product."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:418
|
||||
msgid "2. Product basis FAQs: When adding/editing the product you can choose the FAQs tab then add some global/custom FAQs as you want."
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:451
|
||||
#: wpc-product-faqs.php:657
|
||||
msgid "FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:673
|
||||
msgid "Manage Global FAQs"
|
||||
msgstr ""
|
||||
|
||||
#: wpc-product-faqs.php:676
|
||||
msgid "You can use the shortcode %s to show this product FAQs."
|
||||
msgstr ""
|
||||
@@ -479,3 +479,7 @@ FooBox.ready(function() {
|
||||
|
||||
|
||||
|
||||
<!-- bit-smtp -->
|
||||
<meta name="generator" content="Forms by BitCode 1.0.2">
|
||||
|
||||
|
||||
|
||||
6
spec/fixtures/finders/db_exports/dump.sql
vendored
6
spec/fixtures/finders/db_exports/dump.sql
vendored
@@ -35,3 +35,9 @@ LOCK TABLES `wp_comments` WRITE;
|
||||
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2017-02-17 18:22:27','2017-02-17 18:22:27','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0);
|
||||
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
CREATE DATABASE Sales;
|
||||
|
||||
ALTER DATABASE Test1
|
||||
ADD FILEGROUP Test1FG1;
|
||||
GO
|
||||
|
||||
44
spec/fixtures/finders/interesting_findings/php_disabled/version.php
vendored
Normal file
44
spec/fixtures/finders/interesting_findings/php_disabled/version.php
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
* WordPress Version
|
||||
*
|
||||
* Contains version information for the current WordPress release.
|
||||
*
|
||||
* @package WordPress
|
||||
* @since 1.1.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* The WordPress version string.
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
*
|
||||
* @global int $wp_db_version
|
||||
*/
|
||||
$wp_db_version = 49752;
|
||||
|
||||
/**
|
||||
* Holds the TinyMCE version.
|
||||
*
|
||||
* @global string $tinymce_version
|
||||
*/
|
||||
$tinymce_version = '49110-20201110';
|
||||
|
||||
/**
|
||||
* Holds the required PHP version.
|
||||
*
|
||||
* @global string $required_php_version
|
||||
*/
|
||||
$required_php_version = '5.6.20';
|
||||
|
||||
/**
|
||||
* Holds the required MySQL version.
|
||||
*
|
||||
* @global string $required_mysql_version
|
||||
*/
|
||||
$required_mysql_version = '5.0';
|
||||
@@ -12,7 +12,7 @@ describe WPScan::DB::VulnApi do
|
||||
|
||||
before do
|
||||
# Reset the default_request_params
|
||||
api.instance_variable_set(:'@default_request_params', nil)
|
||||
api.instance_variable_set(:@default_request_params, nil)
|
||||
end
|
||||
|
||||
describe '#uri' do
|
||||
|
||||
@@ -32,7 +32,7 @@ shared_examples 'App::Views::VulnApi' do
|
||||
|
||||
it 'outputs the expected string' do
|
||||
@tpl_vars = tpl_vars.merge(
|
||||
status: { 'success': true, 'plan' => 'free', 'requests_remaining' => 0 },
|
||||
status: { 'success' => true, 'plan' => 'free', 'requests_remaining' => 0 },
|
||||
api_requests: 3
|
||||
)
|
||||
end
|
||||
@@ -43,7 +43,7 @@ shared_examples 'App::Views::VulnApi' do
|
||||
|
||||
it 'outputs the expected string' do
|
||||
@tpl_vars = tpl_vars.merge(
|
||||
status: { 'success': true, 'plan' => 'paid', 'requests_remaining' => 120 },
|
||||
status: { 'success' => true, 'plan' => 'paid', 'requests_remaining' => 120 },
|
||||
api_requests: 3
|
||||
)
|
||||
end
|
||||
@@ -54,7 +54,7 @@ shared_examples 'App::Views::VulnApi' do
|
||||
|
||||
it 'outputs the expected string' do
|
||||
@tpl_vars = tpl_vars.merge(
|
||||
status: { 'success': true, 'plan' => 'enterprise', 'requests_remaining' => 'Unlimited' },
|
||||
status: { 'success' => true, 'plan' => 'enterprise', 'requests_remaining' => 'Unlimited' },
|
||||
api_requests: 3
|
||||
)
|
||||
end
|
||||
|
||||
@@ -21,14 +21,14 @@ Gem::Specification.new do |s|
|
||||
s.executables = ['wpscan']
|
||||
s.require_paths = ['lib']
|
||||
|
||||
s.add_dependency 'cms_scanner', '~> 0.12.2'
|
||||
s.add_dependency 'cms_scanner', '~> 0.13.1'
|
||||
|
||||
s.add_development_dependency 'bundler', '>= 1.6'
|
||||
s.add_development_dependency 'memory_profiler', '~> 1.0.0'
|
||||
s.add_development_dependency 'rake', '~> 13.0'
|
||||
s.add_development_dependency 'rspec', '~> 3.10.0'
|
||||
s.add_development_dependency 'rspec-its', '~> 1.3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.7.0'
|
||||
s.add_development_dependency 'rubocop', '~> 1.9.0'
|
||||
s.add_development_dependency 'rubocop-performance', '~> 1.9.0'
|
||||
s.add_development_dependency 'simplecov', '~> 0.21.0'
|
||||
s.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
|
||||
|
||||
Reference in New Issue
Block a user