Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
abdf285c69 | ||
|
|
fd4da23d4f | ||
|
|
bb8f58c83b | ||
|
|
077da6ae86 | ||
|
|
d5222d7e9a | ||
|
|
01702c127b | ||
|
|
87902cbfb4 | ||
|
|
fcaa393ffe | ||
|
|
18bac6e792 | ||
|
|
9a21efebe3 | ||
|
|
357182ef17 | ||
|
|
5fad540a4c | ||
|
|
c1fc153420 |
@@ -1 +1 @@
|
||||
2.5.3
|
||||
2.6.0
|
||||
|
||||
4
.simplecov
Normal file
4
.simplecov
Normal file
@@ -0,0 +1,4 @@
|
||||
SimpleCov.start do
|
||||
add_filter '/spec/'
|
||||
add_filter 'helper'
|
||||
end
|
||||
@@ -20,10 +20,11 @@ rvm:
|
||||
- 2.5.1
|
||||
- 2.5.2
|
||||
- 2.5.3
|
||||
- 2.6.0
|
||||
- ruby-head
|
||||
before_install:
|
||||
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
||||
- "gem update --system"
|
||||
- gem update --system
|
||||
matrix:
|
||||
allow_failures:
|
||||
- rvm: ruby-head
|
||||
|
||||
6
LICENSE
6
LICENSE
@@ -1,6 +1,6 @@
|
||||
WPScan Public Source License
|
||||
|
||||
The WPScan software (henceforth referred to simply as "WPScan") is dual-licensed - Copyright 2011-2018 WPScan Team.
|
||||
The WPScan software (henceforth referred to simply as "WPScan") is dual-licensed - Copyright 2011-2019 WPScan Team.
|
||||
|
||||
Cases that include commercialization of WPScan require a commercial, non-free license. Otherwise, WPScan can be used without charge under the terms set out below.
|
||||
|
||||
@@ -8,7 +8,7 @@ Cases that include commercialization of WPScan require a commercial, non-free li
|
||||
|
||||
1.1 “License” means this document.
|
||||
1.2 “Contributor” means each individual or legal entity that creates, contributes to the creation of, or owns WPScan.
|
||||
1.3 “WPScan Team” means WPScan’s core developers, an updated list of whom can be found within the CREDITS file.
|
||||
1.3 “WPScan Team” means WPScan’s core developers.
|
||||
|
||||
2. Commercialization
|
||||
|
||||
@@ -29,8 +29,6 @@ Example cases which do not require a commercial license, and thus fall under the
|
||||
|
||||
If you need to purchase a commercial license or are unsure whether you need to purchase a commercial license contact us - team@wpscan.org.
|
||||
|
||||
We may grant commercial licenses at no monetary cost at our own discretion if the commercial usage is deemed by the WPScan Team to significantly benefit WPScan.
|
||||
|
||||
Free-use Terms and Conditions;
|
||||
|
||||
3. Redistribution
|
||||
|
||||
@@ -105,7 +105,7 @@ wpscan --url https://target.tld/ --enumerate u1-100
|
||||
|
||||
## WPScan Public Source License
|
||||
|
||||
The WPScan software (henceforth referred to simply as "WPScan") is dual-licensed - Copyright 2011-2018 WPScan Team.
|
||||
The WPScan software (henceforth referred to simply as "WPScan") is dual-licensed - Copyright 2011-2019 WPScan Team.
|
||||
|
||||
Cases that include commercialization of WPScan require a commercial, non-free license. Otherwise, WPScan can be used without charge under the terms set out below.
|
||||
|
||||
@@ -115,7 +115,7 @@ Cases that include commercialization of WPScan require a commercial, non-free li
|
||||
|
||||
1.2 "Contributor" means each individual or legal entity that creates, contributes to the creation of, or owns WPScan.
|
||||
|
||||
1.3 "WPScan Team" means WPScan’s core developers, an updated list of whom can be found within the CREDITS file.
|
||||
1.3 "WPScan Team" means WPScan’s core developers.
|
||||
|
||||
### 2. Commercialization
|
||||
|
||||
@@ -136,8 +136,6 @@ Example cases which do not require a commercial license, and thus fall under the
|
||||
|
||||
If you need to purchase a commercial license or are unsure whether you need to purchase a commercial license contact us - team@wpscan.org.
|
||||
|
||||
We may grant commercial licenses at no monetary cost at our own discretion if the commercial usage is deemed by the WPScan Team to significantly benefit WPScan.
|
||||
|
||||
Free-use Terms and Conditions;
|
||||
|
||||
### 3. Redistribution
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.4.1'.freeze
|
||||
VERSION = '3.4.3'.freeze
|
||||
end
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Controller::Aliases do
|
||||
subject(:controller) { described_class.new }
|
||||
let(:target_url) { 'http://ex.lo/' }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Controller::Core do
|
||||
subject(:core) { described_class.new }
|
||||
let(:target_url) { 'http://ex.lo/' }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Controller::CustomDirectories do
|
||||
subject(:controller) { described_class.new }
|
||||
let(:target_url) { 'http://ex.lo/' }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Controller::Enumeration do
|
||||
subject(:controller) { described_class.new }
|
||||
let(:target_url) { 'http://wp.lab/' }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Controller::PasswordAttack do
|
||||
subject(:controller) { described_class.new }
|
||||
let(:target_url) { 'http://ex.lo/' }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
def it_calls_the_formatter_with_the_correct_parameter(version)
|
||||
it 'calls the formatter with the correct parameter' do
|
||||
expect(controller.formatter).to receive(:output)
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::ConfigBackups::KnownFilenames do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::ConfigBackups::Base do
|
||||
subject(:config_backups) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::DbExports::KnownLocations do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::DbExports::Base do
|
||||
subject(:db_exports) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::BackupDB do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::DebugLog do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::DuplicatorInstallerLog do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::EmergencyPwdResetScript do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::FullPathDisclosure do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::MuPlugins do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::Multisite do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::Readme do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::Registration do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::TmmDbMigrate do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::UploadDirectoryListing do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::UploadSQLDump do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::InterestingFindings::Base do
|
||||
subject(:files) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::MainTheme::CssStyle do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::MainTheme::UrlsInHomepage do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::MainTheme::WooFrameworkMetaGenerator do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::MainTheme::Base do
|
||||
subject(:main_theme) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Medias::AttachmentBruteForcing do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Medias::Base do
|
||||
subject(:media) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::PluginVersion::Readme do
|
||||
subject(:finder) { described_class.new(plugin) }
|
||||
let(:plugin) { WPScan::Plugin.new('spec', target) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
# If this file is tested alone (rspec path-to-this-file), then there will be an error about
|
||||
# constants not being intilialized. This is due to the Dynamic Finders.
|
||||
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Plugins::BodyPattern do
|
||||
it_behaves_like WPScan::Finders::DynamicFinder::WpItems::Finder do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Plugins::Comment do
|
||||
it_behaves_like WPScan::Finders::DynamicFinder::WpItems::Finder do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Plugins::ConfigParser do
|
||||
xit
|
||||
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Plugins::HeaderPattern do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Plugins::JavascriptVar do
|
||||
it_behaves_like WPScan::Finders::DynamicFinder::WpItems::Finder do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Plugins::KnownLocations do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Plugins::QueryParameter do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Plugins::UrlsInHomepage do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Plugins::Xpath do
|
||||
it_behaves_like WPScan::Finders::DynamicFinder::WpItems::Finder do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Plugins::Base do
|
||||
subject(:plugins) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::ThemeVersion::Style do
|
||||
subject(:finder) { described_class.new(theme) }
|
||||
let(:theme) { WPScan::Theme.new('spec', target) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::ThemeVersion::WooFrameworkMetaGenerator do
|
||||
subject(:finder) { described_class.new(theme) }
|
||||
let(:theme) { WPScan::Theme.new(slug, target) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::ThemeVersion::Base do
|
||||
subject(:theme_version) { described_class.new(theme) }
|
||||
let(:theme) { WPScan::Plugin.new(slug, target) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Themes::KnownLocations do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Themes::UrlsInHomepage do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Themes::Base do
|
||||
subject(:themes) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::TimthumbVersion::BadRequest do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Timthumb.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::TimthumbVersion::Base do
|
||||
subject(:timthumb_version) { described_class.new(target) }
|
||||
let(:target) { WPScan::Timthumb.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Timthumbs::KnownLocations do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Timthumbs::Base do
|
||||
subject(:timthumb) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Users::AuthorIdBruteForcing do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Users::AuthorPosts do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Users::LoginErrorMessages do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Users::OembedApi do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Users::RSSGenerator do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Users::WpJsonApi do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Users::YoastSeoAuthorSitemap do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Users::Base do
|
||||
subject(:user) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::WpVersion::AtomGenerator do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::WpVersion::RDFGenerator do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::WpVersion::Readme do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::WpVersion::RSSGenerator do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::WpVersion::UniqueFingerprinting do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url).extend(CMSScanner::Target::Server::Apache) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
# If this file is tested alone (rspec path-to-this-file), then there will be an error about
|
||||
# constants not being intilialized. This is due to the Dynamic Finders.
|
||||
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::InterestingFinding do
|
||||
it_behaves_like WPScan::References do
|
||||
subject(:finding) { described_class.new('http://e.org/file.php', opts) }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Media do
|
||||
subject(:media) { described_class.new(url) }
|
||||
let(:url) { 'http://e.oeg/?attachment_id=2' }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Plugin do
|
||||
subject(:plugin) { described_class.new(slug, blog, opts) }
|
||||
let(:slug) { 'spec' }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Theme do
|
||||
subject(:theme) { described_class.new(slug, blog, opts) }
|
||||
let(:slug) { 'spec' }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Timthumb do
|
||||
subject(:timthumb) { described_class.new(url, opts) }
|
||||
let(:url) { 'http://wp.lab/wp-content/timthumb.php' }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::WpItem do
|
||||
subject(:wp_item) { described_class.new(slug, blog, opts) }
|
||||
let(:slug) { 'test_item' }
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::WpVersion do
|
||||
describe '#new' do
|
||||
context 'when invalid number' do
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::XMLRPC do
|
||||
subject(:xml_rpc) { described_class.new('http//e.org/xmlrpc.php') }
|
||||
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'App::Views' do
|
||||
let(:target_url) { 'http://ex.lo/' }
|
||||
let(:target) { WPScan::Target.new(target_url) }
|
||||
|
||||
489
spec/fixtures/db/dynamic_finders.yml
vendored
489
spec/fixtures/db/dynamic_finders.yml
vendored
@@ -342,6 +342,12 @@ plugins:
|
||||
files:
|
||||
- assets/css/wp-aas-public.css
|
||||
version: true
|
||||
accordion-faq-block:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
accordion-for-wp:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -1632,6 +1638,16 @@ plugins:
|
||||
path: languages/astra-sites.pot
|
||||
pattern: !ruby/regexp /Project\-Id\-Version:\ Astra Starter Sites (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
astra-widgets:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/css/unminified/style.css
|
||||
version: true
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/astra-widgets.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: Astra Widgets (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
astro-woocommerce-free-gift:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -2012,6 +2028,12 @@ plugins:
|
||||
files:
|
||||
- style.css
|
||||
version: true
|
||||
azw-woocommerce-file-uploads:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/azwwfu-woocommerce-file-uploads-public.css
|
||||
- public/js/azwwfu-woocommerce-file-uploads-public.js
|
||||
version: true
|
||||
b2binpay-payments-for-woocommerce:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -2147,6 +2169,7 @@ plugins:
|
||||
QueryParameter:
|
||||
files:
|
||||
- icons/icons.css
|
||||
- public/js/basepress.js
|
||||
version: true
|
||||
bazz-callback-widget:
|
||||
QueryParameter:
|
||||
@@ -2277,6 +2300,7 @@ plugins:
|
||||
- lib/beepress.css
|
||||
- lib/beepress-pro.js
|
||||
- lib/player.js
|
||||
- lib/beepress-front.js
|
||||
version: true
|
||||
before-after-image-slider-lite:
|
||||
QueryParameter:
|
||||
@@ -2323,6 +2347,22 @@ plugins:
|
||||
files:
|
||||
- bern-badge.css
|
||||
version: true
|
||||
best-testimonial:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/bootstrap.min.css
|
||||
- public/css/owl.carousel.css
|
||||
- public/css/font-awesome.min.css
|
||||
- public/css/style.css
|
||||
- public/js/bootstrap.min.js
|
||||
- public/js/owl.carousel.min.js
|
||||
- public/js/main.js
|
||||
version: true
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/best-testimonial.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: Best Testimonial v(?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
better-archives-widget:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -2590,6 +2630,18 @@ plugins:
|
||||
- blip.js
|
||||
- blip-mootools.js
|
||||
version: true
|
||||
block-fancy-list-item:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/block-fancy-list-item-public.css
|
||||
- public/js/block-fancy-list-item-public.js
|
||||
version: true
|
||||
block-gallery:
|
||||
QueryParameter:
|
||||
files:
|
||||
- dist/js//block-gallery-masonry.min.js
|
||||
- dist/js/vendors/flickity.min.js
|
||||
version: true
|
||||
block-spammers:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -2607,6 +2659,12 @@ plugins:
|
||||
path: locale/blockq.pot
|
||||
pattern: !ruby/regexp /nslation of the WordPress plugin BlockQ (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
blocks-export-import:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
blocks-ultimate:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
@@ -2705,6 +2763,26 @@ plugins:
|
||||
files:
|
||||
- blur-text.js
|
||||
version: true
|
||||
bmlt-tabbed-map:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/leaflet.css
|
||||
- public/css/L.Control.Locate.min.css
|
||||
- public/css/MarkerCluster.css
|
||||
- public/css/MarkerCluster.Default.css
|
||||
- public/css/jquery.badge.css
|
||||
- public/css/fontawesome-5.6.1.css
|
||||
- public/css/datatables-1.10.18.min.css
|
||||
- public/css/bmlt_tabbed_map-public.css
|
||||
- public/js/leaflet.js
|
||||
- public/js/L.Control.Locate.min.js
|
||||
- public/js/leaflet.markercluster.js
|
||||
- public/js/leaflet.spin.js
|
||||
- public/js/spin.min.js
|
||||
- public/js/jquery.badge.js
|
||||
- public/js/datatables-1.10.18.min.js
|
||||
- public/js/bmlt_tabbed_map-public.js
|
||||
version: true
|
||||
bmo-expo:
|
||||
Comment:
|
||||
xpath: //comment()[contains(., "BMo The Gallery")]
|
||||
@@ -2792,6 +2870,12 @@ plugins:
|
||||
files:
|
||||
- css/bnstd-style.css
|
||||
version: true
|
||||
boardea-storyboard-integration:
|
||||
QueryParameter:
|
||||
files:
|
||||
- boardea.min.css
|
||||
- boardea.min.js
|
||||
version: true
|
||||
boast-display:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -3418,6 +3502,11 @@ plugins:
|
||||
path: languages/plugin-name.pot
|
||||
pattern: !ruby/regexp /Project\-Id\-Version:\ TODO (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
builder-blocks:
|
||||
QueryParameter:
|
||||
files:
|
||||
- blocks/dist/main.css
|
||||
version: true
|
||||
bulk-delete:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -3487,6 +3576,12 @@ plugins:
|
||||
path: lang/lbfa-pl_PL.po
|
||||
pattern: !ruby/regexp /n Widget for FontAwesome by LIKE\.agency (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
buttons-block:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
buttons-with-style:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -4893,12 +4988,32 @@ plugins:
|
||||
files:
|
||||
- css/form_style.css
|
||||
version: true
|
||||
contact-form-redux:
|
||||
QueryParameter:
|
||||
files:
|
||||
- includes/css/styles.css
|
||||
- includes/js/scripts.js
|
||||
version: true
|
||||
contact-form-x:
|
||||
QueryParameter:
|
||||
files:
|
||||
- js/cookies.js
|
||||
- js/frontend.js
|
||||
version: true
|
||||
contact-form-z:
|
||||
QueryParameter:
|
||||
files:
|
||||
- css/jquery.datetimepicker.css
|
||||
- css/custom-file-input/normalize.css
|
||||
- css/jquery-confirm.min.css
|
||||
- public/css/contact-form-z-public-preload.css
|
||||
- css/contact-form-z.css
|
||||
- js/jquery.mask.min.js
|
||||
- js/jquery.datetimepicker.full.min.js
|
||||
- js/jquery-confirm.min.js
|
||||
- public/js/contact-form-z-public.js
|
||||
- js/CFileInput.js
|
||||
version: true
|
||||
contact-list:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -5065,6 +5180,12 @@ plugins:
|
||||
path: langs/cookiebot.pot
|
||||
pattern: !ruby/regexp /"(?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
cookiepro:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/wpcookiepro.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: wpcookiepro (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
cool-eform:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -5121,6 +5242,11 @@ plugins:
|
||||
- public/css/cosmic-public.css
|
||||
- public/js/cosmic-public.js
|
||||
version: true
|
||||
cotacao-moedas-hoje:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/cmh-bcb-public.css
|
||||
version: true
|
||||
coupon-reveal-button:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -5332,6 +5458,12 @@ plugins:
|
||||
- css/cff-style.css
|
||||
- js/cff-scripts.js
|
||||
version: true
|
||||
custom-importer-exporter:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/custom-importer-exporter.pot
|
||||
pattern: !ruby/regexp '/\-Id\-Version: Custom Importer & Exporter (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
custom-javascript-editor:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -5583,6 +5715,12 @@ plugins:
|
||||
path: languages/demo-bar.pot
|
||||
pattern: !ruby/regexp /Project\-Id\-Version:\ Demo Bar (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
demoify-blocks:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
depublish-posts:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -7052,6 +7190,12 @@ plugins:
|
||||
- css/etlak-frontend.css
|
||||
- css/etlak-responsive.css
|
||||
version: true
|
||||
everest-toolkit:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/everest-toolkit-public.css
|
||||
- public/js/everest-toolkit-public.js
|
||||
version: true
|
||||
everkinetic:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -7978,6 +8122,12 @@ plugins:
|
||||
files:
|
||||
- frontier-post.css
|
||||
version: true
|
||||
full-width-responsive-slider-wp:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/full-width-responsive-slider-wp.pot
|
||||
pattern: !ruby/regexp '/ersion: Full Width Responsive Slider Wp (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
fullscreen-galleria:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -8116,6 +8266,17 @@ plugins:
|
||||
- public/css/gdpr-personal-data-reports-public.css
|
||||
- public/js/gdpr-personal-data-reports-public.js
|
||||
version: true
|
||||
gdpr-request-form:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/gdpr-request-form-public.css
|
||||
- public/js/gdpr-request-form-public.js
|
||||
version: true
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/gdpr-request-form.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: GDPR Request Form (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
gdpr-tools:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -9331,6 +9492,14 @@ plugins:
|
||||
files:
|
||||
- hlst-extend.min.js
|
||||
version: true
|
||||
highlighting-code-block:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/css/cloring_light.css
|
||||
- assets/css/hcb_style.css
|
||||
- assets/js/prism.js
|
||||
- assets/js/hcb_script.js
|
||||
version: true
|
||||
hijri-calendar-widget:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -9477,6 +9646,12 @@ plugins:
|
||||
files:
|
||||
- assets/js/htevent-widgets-active.js
|
||||
version: true
|
||||
ht-instagram:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assests/css/ht-instagramfeed.css
|
||||
- assests/css/font-awesome.min.css
|
||||
version: true
|
||||
html-forms:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -9637,6 +9812,12 @@ plugins:
|
||||
- assets/css/panel.css
|
||||
- assets/js/iconpress.min.js
|
||||
version: true
|
||||
icons-factory:
|
||||
QueryParameter:
|
||||
files:
|
||||
- css/icons_factory.min.css
|
||||
- js/icons_factory.min.js
|
||||
version: true
|
||||
ics-button:
|
||||
JavascriptVar:
|
||||
class: BodyPattern
|
||||
@@ -10037,6 +10218,12 @@ plugins:
|
||||
files:
|
||||
- public/assets/css/wcis_plugin.css
|
||||
version: true
|
||||
instascaler-get-traffic:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/instawp-public.css
|
||||
- public/js/instawp-public.js
|
||||
version: true
|
||||
instashare:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -10694,6 +10881,12 @@ plugins:
|
||||
- js/jquery.fancybox-1.3.4.pack.js
|
||||
- js/smoothbox.js
|
||||
version: true
|
||||
kenzap-features:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
ketno-lazy-page-loader:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -10979,6 +11172,11 @@ plugins:
|
||||
path: languages/woocommerce-luoc.pot
|
||||
pattern: !ruby/regexp /Last Users Order Column for WooCommerce (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
lastweets:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/css/theme.css
|
||||
version: true
|
||||
latest-custom-post-type-updates:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -11457,6 +11655,12 @@ plugins:
|
||||
- livestream-notice.css
|
||||
- livestream-notice.js
|
||||
version: true
|
||||
livetwitch:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/twitch-public.css
|
||||
- public/js/twitch-public.js
|
||||
version: true
|
||||
loanthru-calculator:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -11735,6 +11939,12 @@ plugins:
|
||||
- assets/css/lsx-testimonials.css
|
||||
- assets/js/lsx-testimonials.min.js
|
||||
version: true
|
||||
lsx-videos:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/css/lsx-videos.css
|
||||
- assets/js/lsx-videos.min.js
|
||||
version: true
|
||||
ltd-tickets:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -12007,6 +12217,12 @@ plugins:
|
||||
- assets/frontend/css/main.css
|
||||
- assets/frontend/js/main.js
|
||||
version: true
|
||||
map-block-leaflet:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
map-for-acf:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
@@ -12162,6 +12378,12 @@ plugins:
|
||||
- assets/css/matador.css
|
||||
- assets/scripts/matador.js
|
||||
version: true
|
||||
material-design-for-contact-form-7:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/css/cf7-material-design.css
|
||||
- assets/js/cf7-material-design-bundle.js
|
||||
version: true
|
||||
material-design-icons:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -12186,6 +12408,12 @@ plugins:
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
mathml-block:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
maven-member:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -12711,6 +12939,12 @@ plugins:
|
||||
- public/js/vendor/element-queries/ElementQueries.js
|
||||
- public/js/molongui-authorship.4995.min.js
|
||||
version: true
|
||||
molongui-bump-offer:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: fw/i18n/molongui-common-framework.pot
|
||||
pattern: !ruby/regexp '/t\-Id\-Version: molongui\-common\-framework (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
momoyoga-integration:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -12931,6 +13165,14 @@ plugins:
|
||||
- assets/css/style.css
|
||||
- assets/js/respond.min.js
|
||||
version: true
|
||||
mtpl-insurance:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/sljar_mtpl_public_css.css
|
||||
- public/css/sljar_mtpl_media.css
|
||||
- public/js/vue.min.js
|
||||
- public/js/sljar_mtpl_public_js.js
|
||||
version: true
|
||||
mudslideshow:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -13127,6 +13369,12 @@ plugins:
|
||||
files:
|
||||
- js/mystickymenu.min.js
|
||||
version: true
|
||||
myticket-events:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
mz-newsticker:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -13627,6 +13875,11 @@ plugins:
|
||||
path: lang/nt-redirect-vi_VN.po
|
||||
pattern: !ruby/regexp /epath:\ D:\\\\projects\\\\nt\-redirect\\\\tags\\\\(?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
numb-facebook-page:
|
||||
QueryParameter:
|
||||
files:
|
||||
- js/numb-main.js
|
||||
version: true
|
||||
numix-post-slider:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -13702,6 +13955,11 @@ plugins:
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
oc-newsletter:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/js/custom.min.js
|
||||
version: true
|
||||
ocr-one:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -13793,6 +14051,16 @@ plugins:
|
||||
path: languages/pt-ocdi.pot
|
||||
pattern: !ruby/regexp /oject\-Id\-Version:\ One Click Demo Import (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
one-page-blocks:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/dist/global.bundle.css
|
||||
version: true
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/coming-soon-blocks.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: Coming Soon Blocks (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
one-thousand-nine-hundred-and-ninety-nineify:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -14387,6 +14655,12 @@ plugins:
|
||||
files:
|
||||
- perfect-pullquotes.css
|
||||
version: true
|
||||
perfectwpthemes-toolkit:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/perfectwpthemes-toolkit-public.css
|
||||
- public/js/perfectwpthemes-toolkit-public.js
|
||||
version: true
|
||||
persian-quote-of-the-day-by-sokhanak:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -15251,6 +15525,12 @@ plugins:
|
||||
xpath: //meta[@name="generator"]/@content[contains(., "Press Events")]
|
||||
version: true
|
||||
pattern: !ruby/regexp /Press Events (?<v>\d+\.[\.\d]+)/i
|
||||
press-release-distribution:
|
||||
QueryParameter:
|
||||
files:
|
||||
- inc/frontend/css/prwirepro-press_release_distribution-frontend.css
|
||||
- inc/frontend/js/prwirepro-press_release_distribution-frontend.js
|
||||
version: true
|
||||
press-tube:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -15307,6 +15587,12 @@ plugins:
|
||||
path: languages/PriceByRoleLite.pot
|
||||
pattern: !ruby/regexp '/ct\-Id\-Version: Prices By User Role Lite (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
pricing-table-block:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
primer-by-chloedigital:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -15344,6 +15630,12 @@ plugins:
|
||||
path: languages/provip-fa_IR.po
|
||||
pattern: !ruby/regexp /"Project\-Id\-Version:\ Pro\-VIP v(?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
probotdev-customer-support-faq-chatbot:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/default.css
|
||||
- public/js/default.js
|
||||
version: true
|
||||
processing-js:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -15768,6 +16060,12 @@ plugins:
|
||||
- quatriceps.css
|
||||
- quatriceps.js
|
||||
version: true
|
||||
quform-mailchimp:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/quform-mailchimp.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: Quform Mailchimp (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
quick-chat:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -16200,6 +16498,12 @@ plugins:
|
||||
- js/jquery.easing.1.3.js
|
||||
- js/cf5.rps.js
|
||||
version: true
|
||||
related-posts-with-slider:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/tm-related-posts-public.css
|
||||
- public/js/bootstrap.min.js
|
||||
version: true
|
||||
related-products-slider-for-woocommerce:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -16875,6 +17179,11 @@ plugins:
|
||||
pattern: !ruby/regexp /\#\. \#\-\#\-\#\-\#\-\# run\-log\-code\.pot \(Run Log
|
||||
(?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
rundiz-downloads:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/css/front/rd-downloads.min.css
|
||||
version: true
|
||||
russian-currency-chart:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -17649,6 +17958,11 @@ plugins:
|
||||
xpath: //comment()[contains(., "Shortn.It")]
|
||||
pattern: !ruby/regexp /Shortn\.It version (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
shortpixel-adaptive-images:
|
||||
QueryParameter:
|
||||
files:
|
||||
- js/ai.js
|
||||
version: true
|
||||
show-active-purchases-for-woocommerce:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -17921,6 +18235,12 @@ plugins:
|
||||
path: languages/simple-fading-testimonials-es_ES.po
|
||||
pattern: !ruby/regexp '/\-Id\-Version: Simple Fading Testimonials (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
simple-fancybox:
|
||||
QueryParameter:
|
||||
files:
|
||||
- css/jquery.fancybox.min.css
|
||||
- js/jquery.fancybox.min.js
|
||||
version: true
|
||||
simple-featured-image-finder:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -18031,6 +18351,11 @@ plugins:
|
||||
- lib/geoxml3.js
|
||||
- inc/ressources/spgm-map.min.js
|
||||
version: true
|
||||
simple-posts-ticker:
|
||||
Comment:
|
||||
xpath: //comment()[contains(., "Simple Posts Ticker")]
|
||||
pattern: !ruby/regexp /te uses the Simple Posts Ticker plugin v(?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
simple-responsive-images:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -18369,6 +18694,15 @@ plugins:
|
||||
- assets/css/slick.css
|
||||
- assets/css/iscwp-public.css
|
||||
version: true
|
||||
slider-by-webxapp:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/css/style.css
|
||||
- assets/css/slick/slick.css
|
||||
- assets/css/slick/slick-theme.css
|
||||
- assets/js/script.js
|
||||
- assets/js/slick.min.js
|
||||
version: true
|
||||
slider-spider:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -18961,6 +19295,13 @@ plugins:
|
||||
- public/css/sponsor-public.css
|
||||
- public/js/sponsor-public.js
|
||||
version: true
|
||||
sponsors-carousel:
|
||||
QueryParameter:
|
||||
files:
|
||||
- js/jquery.jcarousel.min.js
|
||||
- js/jquery.jcarousel-autoscroll.min.js
|
||||
- js/sponsors-carousel.js
|
||||
version: true
|
||||
sponsors-slideshow-widget:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -19018,6 +19359,12 @@ plugins:
|
||||
files:
|
||||
- style.css
|
||||
version: true
|
||||
sql-reporting-services:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/sql-reporting-services-public.css
|
||||
- public/js/sql-reporting-services-public.js
|
||||
version: true
|
||||
square-thumbnails:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -19041,6 +19388,12 @@ plugins:
|
||||
- site/resources/materialize.css
|
||||
- site/resources/app.css
|
||||
version: true
|
||||
ssbd-contact-from:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/ssbd_plugin-public.css
|
||||
- public/js/ssbd_plugin-public.js
|
||||
version: true
|
||||
ssl-insecure-content-fixer:
|
||||
ChangeLog:
|
||||
class: BodyPattern
|
||||
@@ -19204,6 +19557,12 @@ plugins:
|
||||
path: languages/stonehenge-em-maps-styling-nl_NL.po
|
||||
pattern: !ruby/regexp /er %u2013 Google Maps Styling \(Add\-on\) v(?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
stop-automatic-updates:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/stop-automatic-updates-public.css
|
||||
- public/js/stop-automatic-updates-public.js
|
||||
version: true
|
||||
storefront-jetpack:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -19826,6 +20185,12 @@ plugins:
|
||||
- default.css
|
||||
- tooltip.js
|
||||
version: true
|
||||
testimonials-block:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
testimonials-slider-block:
|
||||
ComposerFile:
|
||||
class: ConfigParser
|
||||
@@ -19998,6 +20363,11 @@ plugins:
|
||||
- public/css/themeregion-companion-public.css
|
||||
- public/js/themeregion-companion-public.js
|
||||
version: true
|
||||
themify-builder:
|
||||
QueryParameter:
|
||||
files:
|
||||
- themify/js/main.min.js
|
||||
version: true
|
||||
themify-builder-lite:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -20206,6 +20576,11 @@ plugins:
|
||||
files:
|
||||
- style.css
|
||||
version: true
|
||||
top-cta-bar:
|
||||
QueryParameter:
|
||||
files:
|
||||
- js/front.js
|
||||
version: true
|
||||
top-list:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -20291,6 +20666,12 @@ plugins:
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
tp-piebuilder:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/tp-piebuilder.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: TP Piebuilder (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
tp-recipe:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -20462,6 +20843,17 @@ plugins:
|
||||
- public/css/turbo-widgets-public.css
|
||||
- public/js/turbo-widgets-public.js
|
||||
version: true
|
||||
turitop-booking-system:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/turitop-booking-system.pot
|
||||
pattern: !ruby/regexp '/ject\-Id\-Version: Turitop Booking System (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
tutorial-blocks-gutenberg-blocks-collection:
|
||||
QueryParameter:
|
||||
files:
|
||||
- vendor/codemirror/addon/mode/loadmode.js
|
||||
version: true
|
||||
tv-streaming:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -20713,6 +21105,11 @@ plugins:
|
||||
- assets/css/slick.css
|
||||
- assets/css/ccs-news-style.css
|
||||
version: true
|
||||
ultimate-notice:
|
||||
QueryParameter:
|
||||
files:
|
||||
- "/assets/css/main.css"
|
||||
version: true
|
||||
ultimate-page-builder:
|
||||
MetaTag:
|
||||
class: Xpath
|
||||
@@ -20798,6 +21195,12 @@ plugins:
|
||||
- assets/js/jquery.dataTables.min.js
|
||||
- assets/js/main.js
|
||||
version: true
|
||||
um-custom-tab-builder-lite:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/um-custom-tab-builder-lite-lite.pot
|
||||
pattern: !ruby/regexp '/\-Id\-Version: UM Custom Tab Builder Lite (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
um-events-lite-for-ultimate-member:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -20808,6 +21211,12 @@ plugins:
|
||||
path: languages/um-events.pot
|
||||
pattern: !ruby/regexp '/ion: UM Events Lite for Ultimate Member (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
um-navigation-menu:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/um-navigation-menu.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: UM Navigation Menu (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
um-plug:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -21090,6 +21499,11 @@ plugins:
|
||||
path: languages/utm-dot-codes.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: utm\.codes (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
utm-tracker:
|
||||
QueryParameter:
|
||||
files:
|
||||
- js/utmtracker.min.js
|
||||
version: true
|
||||
utopian-images:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -21304,6 +21718,12 @@ plugins:
|
||||
- public/css/vies-validator-public.css
|
||||
- public/js/vies-validator-public.js
|
||||
version: true
|
||||
vikoder-posts-block:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: i18n/languages/vikoder-posts-block.pot
|
||||
pattern: !ruby/regexp '/ject\-Id\-Version: Posts Block by Vikoder (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
vinteotv-video-ads:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -21998,6 +22418,12 @@ plugins:
|
||||
files:
|
||||
- whats-new.css
|
||||
version: true
|
||||
white-label-branding-elementor:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/elementor-white-label-branding.pot
|
||||
pattern: !ruby/regexp '/Version: Elementor White Label Branding (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
whizz:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -22030,6 +22456,12 @@ plugins:
|
||||
- public/js/bootstrap.min.js
|
||||
- public/js/whoteaches-portal-public.js
|
||||
version: true
|
||||
wide-payer:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/wide-payer-public.css
|
||||
- public/js/wide-payer-public.js
|
||||
version: true
|
||||
widget-alias:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -22329,6 +22761,12 @@ plugins:
|
||||
- public/css/woocommerce-correios-calculo-de-frete-na-pagina-do-produto-public.css
|
||||
- public/js/woocommerce-correios-calculo-de-frete-na-pagina-do-produto-public.js
|
||||
version: true
|
||||
woo-coupon-url:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/woo-coupon-url-public.css
|
||||
- public/js/woo-coupon-url-public.js
|
||||
version: true
|
||||
woo-csv-price:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -22663,6 +23101,12 @@ plugins:
|
||||
path: language/woocod-load-more-post.pot
|
||||
pattern: !ruby/regexp '/oject\-Id\-Version: Woocod load more post (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
woocollections-for-woocommerce:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/woocollections-for-woocommerce.pot
|
||||
pattern: !ruby/regexp '/t\-Id\-Version: WooCommerce \- Collections (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
woocom-cc-invoice:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -22904,6 +23348,12 @@ plugins:
|
||||
path: package.json
|
||||
key: version
|
||||
version: true
|
||||
woocommerce-paypal-here-gateway:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: i18n/languages/woocommerce-gateway-paypal-here.pot
|
||||
pattern: !ruby/regexp '/ersion: WooCommerce PayPal Here Gateway (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
woocommerce-pop-recarga:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
@@ -23627,6 +24077,11 @@ plugins:
|
||||
- styles/default.css
|
||||
- highlight.common.pack.js
|
||||
version: true
|
||||
wp-codemirror-block:
|
||||
QueryParameter:
|
||||
files:
|
||||
- vendor/codemirror/addon/mode/loadmode.js
|
||||
version: true
|
||||
wp-collab-lite:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -23822,6 +24277,12 @@ plugins:
|
||||
path: languages/wp-dev-dashboard.pot
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: WP Dev Dashboard (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
wp-developer-support:
|
||||
QueryParameter:
|
||||
files:
|
||||
- inc/frontend/css/wpdevcs-admin-developer-support-frontend.css
|
||||
- inc/frontend/js/wpdevcs-admin-developer-support-frontend.js
|
||||
version: true
|
||||
wp-dialog:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -24238,6 +24699,11 @@ plugins:
|
||||
- assets/css/web.min.css
|
||||
- assets/js/prism.min.js
|
||||
version: true
|
||||
wp-githuber-md:
|
||||
QueryParameter:
|
||||
files:
|
||||
- assets/css/githuber-md.css
|
||||
version: true
|
||||
wp-glossary-hover:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -24793,6 +25259,12 @@ plugins:
|
||||
files:
|
||||
- assets/styles/main.min.css
|
||||
version: true
|
||||
wp-munich-blocks:
|
||||
QueryParameter:
|
||||
files:
|
||||
- css/filter.min.css
|
||||
- blocks/blocks-frontend.min.js
|
||||
version: true
|
||||
wp-my-admin-bar:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -24895,6 +25367,11 @@ plugins:
|
||||
- public/css/wp-perfect-image-cropper-resizer-public.css
|
||||
- public/js/wp-perfect-image-cropper-resizer-public.js
|
||||
version: true
|
||||
wp-performance:
|
||||
Comment:
|
||||
xpath: //comment()[contains(., "by WP Performance")]
|
||||
pattern: !ruby/regexp /Optimized by WP Performance (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
wp-performance-score-booster:
|
||||
Comment:
|
||||
xpath: //comment()[contains(., "WP Performance Score")]
|
||||
@@ -25667,6 +26144,12 @@ plugins:
|
||||
path: langs/wp-title-case-de_DE.po
|
||||
pattern: !ruby/regexp '/"Project\-Id\-Version: WP Title Case v(?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
wp-to-alexa-flash-briefing:
|
||||
TranslationFile:
|
||||
class: BodyPattern
|
||||
path: languages/wp-to-alexa-flash-briefing.pot
|
||||
pattern: !ruby/regexp '/\-Id\-Version: WP To Alexa Flash Briefing (?<v>\d+\.[\.\d]+)/i'
|
||||
version: true
|
||||
wp-to-steemit:
|
||||
QueryParameter:
|
||||
files:
|
||||
@@ -25971,6 +26454,12 @@ plugins:
|
||||
path: languages/wp247-extension-notification-client-default.po
|
||||
pattern: !ruby/regexp /on:\ WP247 Extension Notification Client (?<v>\d+\.[\.\d]+)/i
|
||||
version: true
|
||||
wp2leads:
|
||||
QueryParameter:
|
||||
files:
|
||||
- public/css/wp2leads-public.css
|
||||
- public/js/wp2leads-public.js
|
||||
version: true
|
||||
wp2newsletter:
|
||||
QueryParameter:
|
||||
files:
|
||||
|
||||
615
spec/fixtures/dynamic_finders/expected.yml
vendored
615
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
19
spec/fixtures/dynamic_finders/plugin_version/accordion-faq-block/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/accordion-faq-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "my-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.12",
|
||||
"@fortawesome/free-brands-svg-icons": "^5.6.3",
|
||||
"@fortawesome/free-regular-svg-icons": "^5.6.3",
|
||||
"@fortawesome/free-solid-svg-icons": "^5.6.3",
|
||||
"@fortawesome/react-fontawesome": "^0.1.3",
|
||||
"cgb-scripts": "1.13.0",
|
||||
"classnames": "^2.2.6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,246 @@
|
||||
# Copyright (C) 2018 Brainstorm Force
|
||||
# This file is distributed under the same license as the Astra Widgets package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Astra Widgets 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/astra-widgets\n"
|
||||
"POT-Creation-Date: 2018-12-24 05:43:50+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: classes/class-astra-widgets-helper.php:109
|
||||
msgid "Choose icon.."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-astra-widgets-helper.php:171
|
||||
msgid "Add more"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-address.php:60
|
||||
msgid "Astra: Address"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-address.php:63
|
||||
msgid "Display Address."
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-address.php:181
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:238
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:249
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-address.php:190
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:432
|
||||
msgid "Inline"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-address.php:191
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:433
|
||||
msgid "Stack"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-address.php:197
|
||||
msgid "Display Icons?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-address.php:203
|
||||
msgid "Address:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-address.php:209
|
||||
msgid "Phone:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-address.php:215
|
||||
msgid "FAX:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-address.php:221
|
||||
msgid "Email:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:70
|
||||
msgid "Astra: List Icons"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:73
|
||||
msgid "Display list icons."
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:244
|
||||
msgid "Add Item:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:255
|
||||
msgid "Link:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:264
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:390
|
||||
msgid "Same Page"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:265
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:391
|
||||
msgid "New Page"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:271
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:397
|
||||
msgid "No Follow"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:274
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:400
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:275
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:401
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:281
|
||||
msgid "Image / Icon"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:284
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:285
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:297
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:407
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:291
|
||||
msgid "Image:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-list-icons.php:308
|
||||
msgid "Image / Icon Width:"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:70
|
||||
msgid "Astra: Social Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:73
|
||||
msgid "Display social profiles."
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:357
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:375
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:365
|
||||
msgid "Social Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:370
|
||||
msgid "Add Profile"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:381
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:418
|
||||
msgid "Styling"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:423
|
||||
msgid "Display profile title?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:429
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:452
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:439
|
||||
msgid "Icon Style"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:442
|
||||
msgid "Simple"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:443
|
||||
msgid "Circle"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:444
|
||||
msgid "Square"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:445
|
||||
msgid "Circle Outline"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:446
|
||||
msgid "Square Outline"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:455
|
||||
msgid "Official Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:456
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:462
|
||||
msgid "Icon Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:468
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:474
|
||||
msgid "Hover Icon Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:480
|
||||
msgid "Hover Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: classes/widgets/class-astra-widget-social-profiles.php:486
|
||||
msgid "Icon Width:"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Astra Widgets"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wpastra.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Brainstorm Force"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.brainstormforce.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,330 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Best Testimonial v1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2018-12-11 17:04:11.0.20\n"
|
||||
"Last-Translator: test <test@test.com>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: CSL v1.x\n"
|
||||
"X-Poedit-Language: English\n"
|
||||
"X-Poedit-Country: UNITED STATES\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Textdomain-Support: yes"
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:144
|
||||
#@ best-testimonial
|
||||
msgctxt "Post Type General Name"
|
||||
msgid "Testimonials"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:145
|
||||
#@ best-testimonial
|
||||
msgctxt "Post Type Singular Name"
|
||||
msgid "Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:146
|
||||
#@ best-testimonial
|
||||
msgid "Testimonials"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:147
|
||||
#@ best-testimonial
|
||||
msgid "Parent Testimonial:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:148
|
||||
#@ best-testimonial
|
||||
msgid "All Testimonials"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:149
|
||||
#@ best-testimonial
|
||||
msgid "View Testimonials"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:150
|
||||
#@ best-testimonial
|
||||
msgid "Add New Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:151
|
||||
#@ best-testimonial
|
||||
msgid "Add Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:152
|
||||
#@ best-testimonial
|
||||
msgid "Edit Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:153
|
||||
#@ best-testimonial
|
||||
msgid "Update Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:154
|
||||
#@ best-testimonial
|
||||
msgid "Search Testimonials"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:155
|
||||
#@ best-testimonial
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:156
|
||||
#@ best-testimonial
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:160
|
||||
#@ best-testimonial
|
||||
msgid "Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:161
|
||||
#@ best-testimonial
|
||||
msgid "Testimonial Display"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:231
|
||||
#: admin/class-best-testimonial-admin.php:328
|
||||
#@ best-testimonial
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:232
|
||||
#@ best-testimonial
|
||||
msgid "Excerpt"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:233
|
||||
#: admin/class-best-testimonial-admin.php:338
|
||||
#@ best-testimonial
|
||||
msgid "Designation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:234
|
||||
#@ best-testimonial
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:260
|
||||
#: admin/class-best-testimonial-admin.php:268
|
||||
#: admin/class-best-testimonial-admin.php:276
|
||||
#@ best-testimonial
|
||||
msgid "n/a"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:293
|
||||
#@ best-testimonial
|
||||
msgid "Client Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:348
|
||||
#@ best-testimonial
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:358
|
||||
#@ best-testimonial
|
||||
msgid "Company Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-best-testimonial-admin.php:368
|
||||
#@ best-testimonial
|
||||
msgid "Company Website"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Name'
|
||||
#: admin/partials/best-testimonial-admin-display-info.php:18
|
||||
#: best-testimonial.php:0
|
||||
#@ best-testimonial
|
||||
msgid "Best Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-display.php:18
|
||||
#: admin/partials/best-testimonial-admin-option.php:71
|
||||
#@ best-testimonial
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-display.php:21
|
||||
#@ best-testimonial
|
||||
msgid "There are two settings for the testimonial, Since we have provided two styles of testimonial as output."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:72
|
||||
#@ best-testimonial
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:100
|
||||
#@ best-testimonial
|
||||
msgid "For Style 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:104
|
||||
#@ best-testimonial
|
||||
msgid "For Style 2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:120
|
||||
#: admin/partials/best-testimonial-admin-option.php:191
|
||||
#@ best-testimonial
|
||||
msgid "Content Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:121
|
||||
#: admin/partials/best-testimonial-admin-option.php:192
|
||||
#@ best-testimonial
|
||||
msgid "Pick a color for review content."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:127
|
||||
#: admin/partials/best-testimonial-admin-option.php:198
|
||||
#@ best-testimonial
|
||||
msgid "Content Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:128
|
||||
#: admin/partials/best-testimonial-admin-option.php:144
|
||||
#: admin/partials/best-testimonial-admin-option.php:160
|
||||
#: admin/partials/best-testimonial-admin-option.php:199
|
||||
#: admin/partials/best-testimonial-admin-option.php:215
|
||||
#: admin/partials/best-testimonial-admin-option.php:224
|
||||
#@ best-testimonial
|
||||
msgid "Input font size value with px."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:129
|
||||
#: admin/partials/best-testimonial-admin-option.php:145
|
||||
#: admin/partials/best-testimonial-admin-option.php:200
|
||||
#: admin/partials/best-testimonial-admin-option.php:216
|
||||
#@ best-testimonial
|
||||
msgid "16px"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:136
|
||||
#@ best-testimonial
|
||||
msgid "Name Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:137
|
||||
#@ best-testimonial
|
||||
msgid "Pick a color for name ."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:143
|
||||
#: admin/partials/best-testimonial-admin-option.php:214
|
||||
#@ best-testimonial
|
||||
msgid "Name Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:152
|
||||
#@ best-testimonial
|
||||
msgid "Designation Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:153
|
||||
#@ best-testimonial
|
||||
msgid "Pick a color for designation."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:159
|
||||
#: admin/partials/best-testimonial-admin-option.php:223
|
||||
#@ best-testimonial
|
||||
msgid "Designation Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:161
|
||||
#: admin/partials/best-testimonial-admin-option.php:225
|
||||
#@ best-testimonial
|
||||
msgid "14px"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:168
|
||||
#@ best-testimonial
|
||||
msgid "Indicator Fill Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:169
|
||||
#@ best-testimonial
|
||||
msgid "Pick a color for indicator."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:175
|
||||
#@ best-testimonial
|
||||
msgid "Indicator Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:176
|
||||
#@ best-testimonial
|
||||
msgid "Pick a color for indicator border."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:184
|
||||
#@ best-testimonial
|
||||
msgid "Box BG Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:185
|
||||
#@ best-testimonial
|
||||
msgid "Pick a color for box background."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:207
|
||||
#@ best-testimonial
|
||||
msgid "Name & Designation Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/best-testimonial-admin-option.php:208
|
||||
#@ best-testimonial
|
||||
msgid "Pick a color for name & designation."
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'PluginURI'
|
||||
#: best-testimonial.php:0
|
||||
#@ best-testimonial
|
||||
msgid "https://digitalcenturysf.com/best-testimonial/"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Description'
|
||||
#: best-testimonial.php:0
|
||||
#@ best-testimonial
|
||||
msgid "Very simple and powerful testimonial system for wordpress website. Customizable & user friendly."
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Author'
|
||||
#: best-testimonial.php:0
|
||||
#@ best-testimonial
|
||||
msgid "DigitalCenturySF"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'AuthorURI'
|
||||
#: best-testimonial.php:0
|
||||
#@ best-testimonial
|
||||
msgid "https://digitalcenturysf.com/"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin header field 'Version'
|
||||
#: best-testimonial.php:0
|
||||
#@ best-testimonial
|
||||
msgid "1.0.2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-best-testimonial-admin-settings.php:371
|
||||
#@ default
|
||||
msgid "Choose File"
|
||||
msgstr ""
|
||||
|
||||
29
spec/fixtures/dynamic_finders/plugin_version/blocks-export-import/composer_file/package.json
vendored
Normal file
29
spec/fixtures/dynamic_finders/plugin_version/blocks-export-import/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "blocks-export-import",
|
||||
"version": "1.0.0",
|
||||
"description": "Export and Import Gutenberg Blocks",
|
||||
"scripts": {
|
||||
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
|
||||
"dev": "cross-env BABEL_ENV=default NODE_ENV=development webpack --watch",
|
||||
"lint": "eslint blocks/*/*.js store/*.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8.0.0",
|
||||
"npm": ">=6.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.1.6",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
|
||||
"@babel/plugin-transform-async-to-generator": "^7.1.0",
|
||||
"@babel/plugin-transform-react-jsx": "^7.1.6",
|
||||
"@babel/preset-env": "^7.1.6",
|
||||
"babel-loader": "^8.0.4",
|
||||
"cross-env": "3.2.4",
|
||||
"eslint": "^5.7.0",
|
||||
"eslint-config-wordpress": "^2.0.0",
|
||||
"eslint-loader": "^2.1.1",
|
||||
"eslint-plugin-react": "^7.11.1",
|
||||
"webpack": "^4.25.1",
|
||||
"webpack-cli": "^3.1.2"
|
||||
}
|
||||
}
|
||||
19
spec/fixtures/dynamic_finders/plugin_version/buttons-block/composer_file/package.json
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/buttons-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "my-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.12",
|
||||
"@fortawesome/free-brands-svg-icons": "^5.6.3",
|
||||
"@fortawesome/free-regular-svg-icons": "^5.6.3",
|
||||
"@fortawesome/free-solid-svg-icons": "^5.6.3",
|
||||
"@fortawesome/react-fontawesome": "^0.1.3",
|
||||
"cgb-scripts": "1.13.0",
|
||||
"classnames": "^2.2.6"
|
||||
}
|
||||
}
|
||||
@@ -961,3 +961,11 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
<!-- Fancybox for WordPress v3.1.5 -->
|
||||
|
||||
|
||||
<!-- simple-posts-ticker -->
|
||||
<!-- This website uses the Simple Posts Ticker plugin v1.0.0 - https://wordpress.org/plugins/simple-posts-ticker/ -->
|
||||
|
||||
|
||||
<!-- wp-performance -->
|
||||
<!-- Optimized by WP Performance 1.0.0 -->
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
# Copyright (C) 2018 OneTrust
|
||||
# This file is distributed under the same license as the wpcookiepro package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: wpcookiepro 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wpcookiepro\n"
|
||||
"POT-Creation-Date: 2018-03-26 11:33:00+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <support@onetrust.com>\n"
|
||||
|
||||
#: _modules/dashboard/dashboard.php:41 views/settings.php:51
|
||||
msgid "Latest from OneTrust"
|
||||
msgstr ""
|
||||
|
||||
#: _modules/dashboard/views/dashboard.php:23
|
||||
msgid "Subscribe with RSS"
|
||||
msgstr ""
|
||||
|
||||
#: _modules/dashboard/views/dashboard.php:24
|
||||
msgid "Subscribe by email"
|
||||
msgstr ""
|
||||
|
||||
|
||||
#: wpcookiepro.php:84
|
||||
msgid "nonce field is missing. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: wpcookiepro.php:87
|
||||
msgid "Invalid nonce specified. Settings NOT saved."
|
||||
msgstr ""
|
||||
|
||||
#: wpcookiepro.php:92
|
||||
msgid "Settings Saved."
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:2 views/settings.php:23
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings.php:28
|
||||
msgid "Scripts in Header"
|
||||
msgstr ""
|
||||
|
||||
|
||||
|
||||
#: views/settings.php:39
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "wpcookiepro"
|
||||
msgstr ""
|
||||
|
||||
#. #-#-#-#-# wpcookiepro.pot (wpcookiepro 1.0.0) #-#-#-#-#
|
||||
#. Plugin URI of the plugin/theme
|
||||
#. #-#-#-#-# wpcookiepro.pot (wpcookiepro 1.0.0) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.OneTrust.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Cookie Banners for your site "
|
||||
"blog"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "OneTrust"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,98 @@
|
||||
# Copyright (C) 2018 Custom Importer & Exporter
|
||||
# This file is distributed under the same license as the Custom Importer & Exporter package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Custom Importer & Exporter 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-importer-"
|
||||
"exporter\n"
|
||||
"POT-Creation-Date: 2018-12-11 03:30:06+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: inc/class-custom-importer-exporter.php:12
|
||||
msgid "Term"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-custom-importer-exporter.php:13
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post-type.php:20 inc/post-type.php:22 inc/term.php:39 inc/term.php:42
|
||||
msgid "Hide the notification"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post-type.php:22 inc/term.php:42
|
||||
msgid " items imported"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post-type.php:28
|
||||
msgid "Post Export"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post-type.php:29
|
||||
msgid "Export post information for each post type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post-type.php:45 inc/term.php:72
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post-type.php:53
|
||||
msgid "Post Import"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post-type.php:54
|
||||
msgid "Import posting information"
|
||||
msgstr ""
|
||||
|
||||
#: inc/post-type.php:59 inc/term.php:86
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: inc/term.php:12
|
||||
msgid "Taxonomy %s is not exists"
|
||||
msgstr ""
|
||||
|
||||
#: inc/term.php:48
|
||||
msgid "Term Export"
|
||||
msgstr ""
|
||||
|
||||
#: inc/term.php:49
|
||||
msgid "Export term information"
|
||||
msgstr ""
|
||||
|
||||
#: inc/term.php:60
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#: inc/term.php:61
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: inc/term.php:80
|
||||
msgid "Term Import"
|
||||
msgstr ""
|
||||
|
||||
#: inc/term.php:81
|
||||
msgid "Import the term information"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Custom Importer & Exporter"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Import & Export Term, Posts"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Protech.Inc"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.pro-tech.co.jp/"
|
||||
msgstr ""
|
||||
56
spec/fixtures/dynamic_finders/plugin_version/demoify-blocks/composer_file/package.json
vendored
Normal file
56
spec/fixtures/dynamic_finders/plugin_version/demoify-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"name": "demoify",
|
||||
"version": "1.0.1",
|
||||
"description": "Demoify is a collection of content blocks for the new block based WordPress editor Gutenberg. Building blocks give you more control to quickly create and launch any kind of site you want.",
|
||||
"main": "block.js",
|
||||
"scripts": {
|
||||
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
|
||||
"dev": "cross-env BABEL_ENV=default webpack --watch"
|
||||
},
|
||||
"keywords": [
|
||||
"Demoify",
|
||||
"Demoify Blocks",
|
||||
"Gutenberg",
|
||||
"WordPress",
|
||||
"Page Builder",
|
||||
"Gutenberg Blocks",
|
||||
"Gutenberg Builder"
|
||||
],
|
||||
"author": "Sandeep Prasad Bhatt <sandeep.bhatt59@gmail.com> (http://sandeepbhatt.com.np)",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Orbit Themes",
|
||||
"email": "<themesorbit@gmail.com>",
|
||||
"url": "https://orbitthemes.com"
|
||||
}
|
||||
],
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^7.2.4",
|
||||
"babel-core": "^6.25.0",
|
||||
"babel-eslint": "^8.2.1",
|
||||
"babel-loader": "^7.1.1",
|
||||
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
||||
"babel-plugin-transform-react-jsx": "^6.24.1",
|
||||
"babel-plugin-transform-runtime": "^6.23.0",
|
||||
"babel-preset-env": "^1.6.0",
|
||||
"cross-env": "^5.0.1",
|
||||
"eslint": "^4.15.0",
|
||||
"eslint-config-wordpress": "^2.0.0",
|
||||
"eslint-plugin-jest": "^21.6.1",
|
||||
"eslint-plugin-jsx-a11y": "^6.0.3",
|
||||
"eslint-plugin-react": "^7.5.1",
|
||||
"eslint-plugin-wordpress": "^0.1.0",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"node-sass": "^4.7.2",
|
||||
"postcss-loader": "^2.0.10",
|
||||
"raw-loader": "^0.5.1",
|
||||
"sass-loader": "^6.0.6",
|
||||
"style-loader": "^0.19.1",
|
||||
"webpack": "^3.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/dom-ready": "^2.0.0",
|
||||
"classnames": "^2.2.6",
|
||||
"md5": "^2.2.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,358 @@
|
||||
# Copyright (C) 2018 Full Width Responsive Slider Wp
|
||||
# This file is distributed under the same license as the Full Width Responsive Slider Wp package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Full Width Responsive Slider Wp 1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/full-width-"
|
||||
"responsive-slider-wp\n"
|
||||
"POT-Creation-Date: 2018-12-22 02:42:33+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: full-width-responsive-slider-wp.php:62
|
||||
msgid ""
|
||||
"Full width Slider plugin is active but does not have write permission on"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:62
|
||||
msgid "directory.Please allow write permission."
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:69
|
||||
msgid ""
|
||||
"Full width Slider plugin is active but plugin does not have permission to "
|
||||
"create directory"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:69
|
||||
msgid ""
|
||||
"Please create directory inside upload directory and allow write permission."
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:186
|
||||
msgid "Full Width Slider"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:187
|
||||
#: full-width-responsive-slider-wp.php:316
|
||||
msgid "Slider Settings"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:188
|
||||
msgid "Manage Images"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:189
|
||||
msgid "Preview Slider"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:260
|
||||
msgid "Settings saved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:322
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:328
|
||||
msgid "Slider Speed"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:338
|
||||
msgid "Slider Height"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:348
|
||||
msgid "Slider Height Tablets"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:358
|
||||
msgid "Slider Height Smartphone"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:369
|
||||
msgid "Ease Effect"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:373
|
||||
#: full-width-responsive-slider-wp.php:393
|
||||
#: full-width-responsive-slider-wp.php:407
|
||||
#: full-width-responsive-slider-wp.php:421
|
||||
#: full-width-responsive-slider-wp.php:435
|
||||
#: full-width-responsive-slider-wp.php:449
|
||||
#: full-width-responsive-slider-wp.php:475
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:374
|
||||
msgid "ease"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:375
|
||||
msgid "linear"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:376
|
||||
msgid "ease-in"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:377
|
||||
msgid "ease-out"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:378
|
||||
msgid "ease-in-out"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:379
|
||||
msgid "cubic-bezier"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:380
|
||||
msgid "fade"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:389
|
||||
msgid "Allow drag in slider"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:394
|
||||
#: full-width-responsive-slider-wp.php:408
|
||||
#: full-width-responsive-slider-wp.php:422
|
||||
#: full-width-responsive-slider-wp.php:436
|
||||
#: full-width-responsive-slider-wp.php:450
|
||||
#: full-width-responsive-slider-wp.php:476
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:395
|
||||
#: full-width-responsive-slider-wp.php:409
|
||||
#: full-width-responsive-slider-wp.php:423
|
||||
#: full-width-responsive-slider-wp.php:437
|
||||
#: full-width-responsive-slider-wp.php:451
|
||||
#: full-width-responsive-slider-wp.php:477
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:403
|
||||
msgid "Show Slider Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:417
|
||||
msgid "Show Preview On Hover Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:431
|
||||
msgid "Show Arrows"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:445
|
||||
msgid "Auto Slide"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:459
|
||||
msgid "Auto Slide Intrval"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:470
|
||||
msgid "Is Show Black Transition"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:488
|
||||
#: full-width-responsive-slider-wp.php:1523
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:608
|
||||
#: full-width-responsive-slider-wp.php:1091
|
||||
#: full-width-responsive-slider-wp.php:1589
|
||||
msgid "Google For Business Coupon"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:813
|
||||
msgid "Images"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:813
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:822
|
||||
#: full-width-responsive-slider-wp.php:1043
|
||||
msgid "Bulk Actions"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:823
|
||||
msgid "delete"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:824
|
||||
#: full-width-responsive-slider-wp.php:1047
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:856
|
||||
msgid "No such full width slider found."
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:899
|
||||
#: full-width-responsive-slider-wp.php:901
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:902
|
||||
msgid "Reset Search"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:932
|
||||
#: full-width-responsive-slider-wp.php:935
|
||||
#: full-width-responsive-slider-wp.php:937
|
||||
#: full-width-responsive-slider-wp.php:1007
|
||||
msgid "Id"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:943
|
||||
#: full-width-responsive-slider-wp.php:946
|
||||
#: full-width-responsive-slider-wp.php:948
|
||||
#: full-width-responsive-slider-wp.php:1008
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:957
|
||||
#: full-width-responsive-slider-wp.php:960
|
||||
#: full-width-responsive-slider-wp.php:962
|
||||
#: full-width-responsive-slider-wp.php:1015
|
||||
msgid "Published On"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:967
|
||||
#: full-width-responsive-slider-wp.php:1016
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:968
|
||||
#: full-width-responsive-slider-wp.php:1017
|
||||
#: full-width-responsive-slider-wp.php:1044
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1025
|
||||
msgid "No Records"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1025
|
||||
msgid "No Images"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1062
|
||||
msgid "Are you sure you want to delete selected image ?"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1071
|
||||
msgid "Are you sure you want to delete this image ?"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1110
|
||||
msgid "To print this full width slider into WordPress Post/Page use below code"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1116
|
||||
msgid ""
|
||||
"To print this full width slider into WordPress theme/template PHP files use "
|
||||
"below code"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1202
|
||||
msgid "Image updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1209
|
||||
#: full-width-responsive-slider-wp.php:1256
|
||||
msgid "Error while adding image"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1250
|
||||
msgid "New image added successfully."
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1325
|
||||
msgid "Update Image"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1335
|
||||
msgid "Add Image"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1347
|
||||
msgid "Image Information"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1352
|
||||
msgid "Current Image"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1372
|
||||
msgid "Click Here to upload Image"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1455
|
||||
msgid "Invalid image selection."
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1490
|
||||
msgid "Image Title"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1505
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1511
|
||||
msgid "Two three lines summary"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1525
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1654
|
||||
msgid "Image deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1661
|
||||
msgid "Error while deleting image."
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1718
|
||||
msgid "selected images deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: full-width-responsive-slider-wp.php:1726
|
||||
msgid "Error while deleting images."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Full Width Responsive Slider Wp"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.i13websolution.com/wordpress-full-width-slider-plugin.html"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"This is beautiful responsive full width slider plugin.Add any number of "
|
||||
"images. your full width slider will be ready within few min."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "I Thirteen Web Solution"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.i13websolution.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,76 @@
|
||||
# Copyright (C) 2017 GDPR Request Form
|
||||
# This file is distributed under the same license as the GDPR Request Form package
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GDPR Request Form 1.0.0\n"
|
||||
"POT-Creation-Date: 2018-12-12 16:13+0500\n"
|
||||
"PO-Revision-Date: 2018-12-13 5:28+0500\n"
|
||||
"Last-Translator: TorontoDigits <torontodigits@gmail.com>\n"
|
||||
"Language-Team: TorontoDigits <torontodigits@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.5.7\n"
|
||||
"X-Poedit-KeywordsList: __;_e;gettext;gettext_noop\n"
|
||||
"X-Poedit-Basepath: /wp-content/plugins/gdpr-request-form/\n"
|
||||
"Language: LANGUAGE\n"
|
||||
|
||||
#: public/class-gdpr-request-form-public.php:86
|
||||
msgid "Your request have been submitted. Check your email to validate your data request."
|
||||
msgstr ""
|
||||
|
||||
#: public/class-gdpr-request-form-public.php:87
|
||||
msgid "Some errors occurred:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-shortocde:64
|
||||
msgid "Select your request:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-shortocde:69
|
||||
msgid "Export Personal Data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-shortocde:74
|
||||
msgid "Remove Personal Data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-shortocde:80
|
||||
msgid "Your email address (required)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-shortocde:87
|
||||
msgid "Human verification (required):"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-shortocde:94
|
||||
msgid "Send request"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-shortocde:101
|
||||
msgid "This plugin requires WordPress 4.9.6."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-ajax:51
|
||||
msgid "Security check failed, please refresh this page and try to submit the form again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-ajax:54
|
||||
msgid "This is not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-ajax:57
|
||||
msgid "Security check failed, invalid human verification field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-ajax:60
|
||||
msgid "Request type invalid, please refresh this page and try to submit the form again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-ajax:64
|
||||
msgid "All fields are required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-gdpr-request-form-ajax:71
|
||||
msgid "Unable to initiate confirmation request. Please contact the administrator."
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/kenzap-features/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/kenzap-features/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "kenzap-feature-list-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.11.0"
|
||||
}
|
||||
}
|
||||
37
spec/fixtures/dynamic_finders/plugin_version/map-block-leaflet/composer_file/package.json
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/map-block-leaflet/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "leaft-map-block",
|
||||
"version": "1.1.0",
|
||||
"private": true,
|
||||
"description": "Leaflet map block for WordPress",
|
||||
"main": "index.php",
|
||||
"author": "Jesús Olazaogoitia <jesus.designer@gmail.com>",
|
||||
"license": "(GPLv2 or later)",
|
||||
"scripts": {
|
||||
"start": "cross-env BABEL_ENV=default webpack --watch",
|
||||
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack -p"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/babel-plugin-makepot": "^2.1.2",
|
||||
"@wordpress/babel-preset-default": "^1.2.0",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-eslint": "^8.2.3",
|
||||
"babel-loader": "^7.1.4",
|
||||
"classnames": "^2.2.6",
|
||||
"cross-env": "^5.1.5",
|
||||
"css-loader": "^0.28.11",
|
||||
"eslint": "^4.19.1",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"node-sass": "^4.9.0",
|
||||
"postcss-loader": "^2.1.5",
|
||||
"raw-loader": "^0.5.1",
|
||||
"sass-loader": "^6.0.7",
|
||||
"style-loader": "^0.19.1",
|
||||
"webpack": "^3.11.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"leaflet": "^1.3.4",
|
||||
"re-resizable": "^4.10.0",
|
||||
"react-algolia-places": "^0.1.2",
|
||||
"react-leaflet": "^2.1.2"
|
||||
}
|
||||
}
|
||||
35
spec/fixtures/dynamic_finders/plugin_version/mathml-block/composer_file/package.json
vendored
Normal file
35
spec/fixtures/dynamic_finders/plugin_version/mathml-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "mathml-block",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "mathml-block.js",
|
||||
"scripts": {
|
||||
"build": "webpack --mode=production ",
|
||||
"build:dev": "webpack --mode=development --debug --devtool cheap-source-map --output-pathinfo",
|
||||
"watch": "webpack --watch --mode=development --debug --devtool cheap-module-eval-source-map --output-pathinfo"
|
||||
},
|
||||
"author": "",
|
||||
"license": "GPL-2.0",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.2.2",
|
||||
"@babel/preset-env": "^7.2.3",
|
||||
"@babel/preset-react": "^7.0.0",
|
||||
"babel": "^6.23.0",
|
||||
"babel-eslint": "^10.0.1",
|
||||
"babel-loader": "^8.0.4",
|
||||
"eslint": "^5.11.0",
|
||||
"eslint-config-wordpress": "^2.0.0",
|
||||
"eslint-loader": "^2.1.1",
|
||||
"eslint-plugin-react": "^7.11.1",
|
||||
"lodash": "^4.17.11",
|
||||
"react": "^16.7.0",
|
||||
"react-dom": "^16.7.0",
|
||||
"uuid": "^3.3.2",
|
||||
"webpack": "^4.28.2",
|
||||
"webpack-cli": "^3.1.2",
|
||||
"webpackbar": "^3.1.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/i18n": "^3.1.0"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
14
spec/fixtures/dynamic_finders/plugin_version/myticket-events/composer_file/package.json
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/myticket-events/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "myticket-events-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.13.0",
|
||||
"po2json": "^1.0.0-alpha"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,194 @@
|
||||
# Copyright (C) 2018 Helder Vilela from Pixelthrone
|
||||
# This file is distributed under the same license as the Coming Soon Blocks plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Coming Soon Blocks 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/one-page-blocks\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2018-12-07T23:10:37+00:00\n"
|
||||
"PO-Revision-Date: 2018-12-07T23:10:37+00:00\n"
|
||||
"X-Generator: WP-CLI 2.0.1\n"
|
||||
"X-Domain: one-page-blocks\n"
|
||||
|
||||
#: one-page-blocks.php:191,
|
||||
#: one-page-blocks.php:204
|
||||
#: __build/one-page-blocks/one-page-blocks.php:191
|
||||
#: __build/one-page-blocks/one-page-blocks.php:204
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:63,
|
||||
#: admin/config.settings.php:65,
|
||||
#: admin/config.settings.php:67
|
||||
#: __build/one-page-blocks/admin/config.settings.php:63
|
||||
#: __build/one-page-blocks/admin/config.settings.php:65
|
||||
#: __build/one-page-blocks/admin/config.settings.php:67
|
||||
msgid "Coming Soon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:66,
|
||||
#: admin/config.settings.php:68
|
||||
#: __build/one-page-blocks/admin/config.settings.php:66
|
||||
#: __build/one-page-blocks/admin/config.settings.php:68
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:69
|
||||
#: __build/one-page-blocks/admin/config.settings.php:69
|
||||
msgid "All Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:70
|
||||
#: __build/one-page-blocks/admin/config.settings.php:70
|
||||
msgid "View Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:71,
|
||||
#: admin/config.settings.php:72
|
||||
#: __build/one-page-blocks/admin/config.settings.php:71
|
||||
#: __build/one-page-blocks/admin/config.settings.php:72
|
||||
msgid "Add new"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:73
|
||||
#: __build/one-page-blocks/admin/config.settings.php:73
|
||||
msgid "Edit Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:74
|
||||
#: __build/one-page-blocks/admin/config.settings.php:74
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:75
|
||||
#: __build/one-page-blocks/admin/config.settings.php:75
|
||||
msgid "Search pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:76
|
||||
#: __build/one-page-blocks/admin/config.settings.php:76
|
||||
msgid "No pages found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:77
|
||||
#: __build/one-page-blocks/admin/config.settings.php:77
|
||||
msgid "No pages found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:105
|
||||
#: __build/one-page-blocks/admin/config.settings.php:105
|
||||
msgid "Coming is active"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:111
|
||||
#: __build/one-page-blocks/admin/config.settings.php:111
|
||||
msgid "%s Add One Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:117
|
||||
#: __build/one-page-blocks/admin/config.settings.php:117
|
||||
msgid "%s Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:123
|
||||
#: __build/one-page-blocks/admin/config.settings.php:123
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:130
|
||||
#: __build/one-page-blocks/admin/config.settings.php:130
|
||||
msgid "Support Forum"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:137
|
||||
#: __build/one-page-blocks/admin/config.settings.php:137
|
||||
msgid "Upgrade"
|
||||
msgstr ""
|
||||
|
||||
#: admin/config.settings.php:137
|
||||
#: __build/one-page-blocks/admin/config.settings.php:137
|
||||
msgid "Pricing"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/init.php:236
|
||||
#: __build/one-page-blocks/frontend/init.php:236
|
||||
msgid "Only authenticated users can access the REST API."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Name of this pluign
|
||||
#: lib/Gutenberg_Checker.php:135
|
||||
#: __build/one-page-blocks/lib/Gutenberg_Checker.php:135
|
||||
msgid "deactivate %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: Required plugin 2: Name of this plugin 3: Activate or Install, from $link above
|
||||
#. translators: 1: Required plugin 2: Name of this pluign 3: Activate or Install, from $link above
|
||||
#: lib/Gutenberg_Checker.php:140,
|
||||
#: lib/Gutenberg_Checker.php:173
|
||||
#: __build/one-page-blocks/lib/Gutenberg_Checker.php:140
|
||||
#: __build/one-page-blocks/lib/Gutenberg_Checker.php:173
|
||||
msgid "%1$s requires the %2$s block editor. %4$s Please %3$s to continue."
|
||||
msgstr ""
|
||||
|
||||
#. translators: Name of this pluign
|
||||
#: lib/Gutenberg_Checker.php:162
|
||||
#: __build/one-page-blocks/lib/Gutenberg_Checker.php:162
|
||||
msgid "activate %1$s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Name of this pluign
|
||||
#: lib/Gutenberg_Checker.php:166
|
||||
#: __build/one-page-blocks/lib/Gutenberg_Checker.php:166
|
||||
msgid "install %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/api/UnlockPage.php:77,
|
||||
#: admin/api/UnlockPage.php:106
|
||||
#: __build/one-page-blocks/admin/api/UnlockPage.php:77
|
||||
#: __build/one-page-blocks/admin/api/UnlockPage.php:106
|
||||
msgid "No naughty business please!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/api/UnlockPage.php:91
|
||||
#: __build/one-page-blocks/admin/api/UnlockPage.php:91
|
||||
msgid "The page will be updated."
|
||||
msgstr ""
|
||||
|
||||
#: admin/api/UnlockPage.php:101
|
||||
#: __build/one-page-blocks/admin/api/UnlockPage.php:101
|
||||
msgid "The password is not correct."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/components/cookie-notice.php:20
|
||||
#: __build/one-page-blocks/frontend/components/cookie-notice.php:20
|
||||
msgid "Got it, Thanks!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/components/unlock-page.php:23
|
||||
#: __build/one-page-blocks/frontend/components/unlock-page.php:23
|
||||
msgid "This site is password protected, view by typing the password."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Coming Soon Blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://pixelthrone.com/one-page-blocks"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Build one-page sites for pretty much anything ( without needing themes )."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Helder Vilela from Pixelthrone"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://heldervilela.com"
|
||||
msgstr ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user