Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
73cd862e83 | ||
|
|
3305e9b74f | ||
|
|
c37ec0e8d0 | ||
|
|
0b005477c1 | ||
|
|
a1467f8dac | ||
|
|
40d2c34347 | ||
|
|
528270e767 | ||
|
|
f4a04b2387 | ||
|
|
14ed6ae109 | ||
|
|
4fd43694ae | ||
|
|
552d731e6a | ||
|
|
49ac3ef528 | ||
|
|
4379313f12 | ||
|
|
3901949f36 | ||
|
|
a3d8593fed | ||
|
|
7c5baeb9c7 | ||
|
|
c692db5f85 | ||
|
|
9130196ffc | ||
|
|
dad4a65118 | ||
|
|
4c34c2feb7 | ||
|
|
23522f7775 | ||
|
|
82c61398ba | ||
|
|
02871050a6 | ||
|
|
7d3b1fea6b | ||
|
|
24917fa2a6 | ||
|
|
de3d8e4a23 | ||
|
|
1502845d65 | ||
|
|
af3f10f74e | ||
|
|
c100372b31 | ||
|
|
72d699b39a | ||
|
|
7d2b8a2a8b | ||
|
|
8729c68e22 | ||
|
|
e2d48bedd9 | ||
|
|
6b241ce9b3 | ||
|
|
1b68bdb36c | ||
|
|
fb82538441 | ||
|
|
2709d0869a | ||
|
|
343f87bbe7 | ||
|
|
ecbfc6004c | ||
|
|
c57eecc81b | ||
|
|
7ea14dc03f |
49
.github/workflows/build.yml
vendored
Normal file
49
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
name: Build
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.4, 2.5, 2.6, 2.7]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v1
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: actions/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
|
||||
- name: Restore GEM cache
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: vendor/bundle
|
||||
key: ${{ runner.os }}-${{ matrix.ruby }}-gem-${{ hashFiles('**/wpscan.gemspec') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-${{ matrix.ruby }}-gem-
|
||||
|
||||
- name: Install GEMs
|
||||
run: |
|
||||
gem install bundler
|
||||
bundle config force_ruby_platform true
|
||||
bundle config path vendor/bundle
|
||||
bundle install --jobs 4 --retry 3
|
||||
|
||||
- name: rubocop
|
||||
run: |
|
||||
bundle exec rubocop
|
||||
|
||||
- name: rspec
|
||||
run: |
|
||||
bundle exec rspec
|
||||
|
||||
- name: Coveralls
|
||||
uses: coverallsapp/github-action@master
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
34
.github/workflows/ruby.yml
vendored
34
.github/workflows/ruby.yml
vendored
@@ -1,34 +0,0 @@
|
||||
name: Ruby
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
- name: Cache gems
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: vendor/bundle
|
||||
key: ${{ runner.os }}-gem-${{ hashFiles('**/wpscan.gemspec') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-gem-
|
||||
- name: Build and test
|
||||
run: |
|
||||
gem install bundler
|
||||
bundle config force_ruby_platform true
|
||||
bundle config path vendor/bundle
|
||||
bundle install --jobs 4 --retry 3
|
||||
- name: test
|
||||
run: |
|
||||
bundle exec rspec
|
||||
- name: rubocop
|
||||
run: |
|
||||
bundle exec rubocop
|
||||
14
.simplecov
14
.simplecov
@@ -1,4 +1,18 @@
|
||||
|
||||
if ENV['GITHUB_ACTION']
|
||||
require 'simplecov-lcov'
|
||||
|
||||
SimpleCov::Formatter::LcovFormatter.config do |c|
|
||||
c.single_report_path = 'coverage/lcov.info'
|
||||
c.report_with_single_file = true
|
||||
end
|
||||
|
||||
SimpleCov.formatter = SimpleCov::Formatter::LcovFormatter
|
||||
end
|
||||
|
||||
SimpleCov.start do
|
||||
enable_coverage :branch # Only supported for Ruby >= 2.5
|
||||
|
||||
add_filter '/spec/'
|
||||
add_filter 'helper'
|
||||
end
|
||||
14
.travis.yml
14
.travis.yml
@@ -1,14 +0,0 @@
|
||||
language: ruby
|
||||
sudo: false
|
||||
cache: bundler
|
||||
rvm:
|
||||
- 2.4.9
|
||||
- 2.5.7
|
||||
- 2.6.5
|
||||
- 2.7.0
|
||||
script:
|
||||
- bundle exec rubocop
|
||||
- bundle exec rspec
|
||||
notifications:
|
||||
email:
|
||||
- team@wpscan.org
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
<p align="center">
|
||||
<a href="https://badge.fury.io/rb/wpscan" target="_blank"><img src="https://badge.fury.io/rb/wpscan.svg"></a>
|
||||
<a href="https://travis-ci.org/wpscanteam/wpscan" target="_blank"><img src="https://travis-ci.org/wpscanteam/wpscan.svg?branch=master"></a>
|
||||
<a href="https://github.com/wpscanteam/wpscan/actions?query=workflow%3ABuild" target="_blank"><img src="https://github.com/wpscanteam/wpscan/workflows/Build/badge.svg"></a>
|
||||
<a href="https://codeclimate.com/github/wpscanteam/wpscan" target="_blank"><img src="https://codeclimate.com/github/wpscanteam/wpscan/badges/gpa.svg"></a>
|
||||
</p>
|
||||
|
||||
@@ -130,6 +130,11 @@ cli_options:
|
||||
api_token: YOUR_API_TOKEN
|
||||
```
|
||||
|
||||
## Load APi Token From ENV
|
||||
|
||||
The API Token will be automatically loaded from the ENV variable `WPSCAN_API_TOKEN` if present. If the `--api-token` CLI option is also provided, the value from the CLI will be used.
|
||||
|
||||
|
||||
## Enumerating usernames
|
||||
|
||||
```shell
|
||||
|
||||
@@ -18,9 +18,7 @@ module WPScan
|
||||
target.content_dir = ParsedCli.wp_content_dir if ParsedCli.wp_content_dir
|
||||
target.plugins_dir = ParsedCli.wp_plugins_dir if ParsedCli.wp_plugins_dir
|
||||
|
||||
return if target.content_dir
|
||||
|
||||
raise Error::WpContentDirNotDetected
|
||||
raise Error::WpContentDirNotDetected unless target.content_dir
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -4,6 +4,8 @@ module WPScan
|
||||
module Controller
|
||||
# Controller to handle the API token
|
||||
class VulnApi < CMSScanner::Controller::Base
|
||||
ENV_KEY = 'WPSCAN_API_TOKEN'
|
||||
|
||||
def cli_options
|
||||
[
|
||||
OptString.new(['--api-token TOKEN', 'The WPVulnDB API Token to display vulnerability data'])
|
||||
@@ -11,9 +13,9 @@ module WPScan
|
||||
end
|
||||
|
||||
def before_scan
|
||||
return unless ParsedCli.api_token
|
||||
return unless ParsedCli.api_token || ENV.key?(ENV_KEY)
|
||||
|
||||
DB::VulnApi.token = ParsedCli.api_token
|
||||
DB::VulnApi.token = ParsedCli.api_token || ENV[ENV_KEY]
|
||||
|
||||
api_status = DB::VulnApi.status
|
||||
|
||||
|
||||
@@ -16,8 +16,7 @@ module WPScan
|
||||
target.url(path),
|
||||
confidence: 70,
|
||||
found_by: DIRECT_ACCESS,
|
||||
interesting_entries: target.directory_listing_entries(path),
|
||||
references: { url: 'https://github.com/wpscanteam/wpscan/issues/422' }
|
||||
interesting_entries: target.directory_listing_entries(path)
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -11,11 +11,7 @@ module WPScan
|
||||
|
||||
return unless target.debug_log?(path)
|
||||
|
||||
Model::DebugLog.new(
|
||||
target.url(path),
|
||||
confidence: 100, found_by: DIRECT_ACCESS,
|
||||
references: { url: 'https://codex.wordpress.org/Debugging_in_WordPress' }
|
||||
)
|
||||
Model::DebugLog.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -11,12 +11,7 @@ module WPScan
|
||||
|
||||
return unless /DUPLICATOR INSTALL-LOG/.match?(target.head_and_get(path).body)
|
||||
|
||||
Model::DuplicatorInstallerLog.new(
|
||||
target.url(path),
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
references: { url: 'https://www.exploit-db.com/ghdb/3981/' }
|
||||
)
|
||||
Model::DuplicatorInstallerLog.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -15,10 +15,7 @@ module WPScan
|
||||
Model::EmergencyPwdResetScript.new(
|
||||
target.url(path),
|
||||
confidence: /password/i.match?(res.body) ? 100 : 40,
|
||||
found_by: DIRECT_ACCESS,
|
||||
references: {
|
||||
url: 'https://codex.wordpress.org/Resetting_Your_Password#Using_the_Emergency_Password_Reset_Script'
|
||||
}
|
||||
found_by: DIRECT_ACCESS
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -16,8 +16,7 @@ module WPScan
|
||||
target.url(path),
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
interesting_entries: fpd_entries,
|
||||
references: { url: 'https://www.owasp.org/index.php/Full_Path_Disclosure' }
|
||||
interesting_entries: fpd_entries
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -9,20 +9,14 @@ module WPScan
|
||||
def passive(_opts = {})
|
||||
pattern = %r{#{target.content_dir}/mu\-plugins/}i
|
||||
|
||||
target.in_scope_uris(target.homepage_res) do |uri|
|
||||
target.in_scope_uris(target.homepage_res, '(//@href|//@src)[contains(., "mu-plugins")]') do |uri|
|
||||
next unless uri.path&.match?(pattern)
|
||||
|
||||
url = target.url('wp-content/mu-plugins/')
|
||||
|
||||
target.mu_plugins = true
|
||||
|
||||
return Model::MuPlugins.new(
|
||||
url,
|
||||
confidence: 70,
|
||||
found_by: 'URLs In Homepage (Passive Detection)',
|
||||
to_s: "This site has 'Must Use Plugins': #{url}",
|
||||
references: { url: 'http://codex.wordpress.org/Must_Use_Plugins' }
|
||||
)
|
||||
return Model::MuPlugins.new(url, confidence: 70, found_by: 'URLs In Homepage (Passive Detection)')
|
||||
end
|
||||
nil
|
||||
end
|
||||
@@ -37,13 +31,7 @@ module WPScan
|
||||
|
||||
target.mu_plugins = true
|
||||
|
||||
Model::MuPlugins.new(
|
||||
url,
|
||||
confidence: 80,
|
||||
found_by: DIRECT_ACCESS,
|
||||
to_s: "This site has 'Must Use Plugins': #{url}",
|
||||
references: { url: 'http://codex.wordpress.org/Must_Use_Plugins' }
|
||||
)
|
||||
Model::MuPlugins.new(url, confidence: 80, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -17,13 +17,7 @@ module WPScan
|
||||
|
||||
target.multisite = true
|
||||
|
||||
Model::Multisite.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
to_s: 'This site seems to be a multisite',
|
||||
references: { url: 'http://codex.wordpress.org/Glossary#Multisite' }
|
||||
)
|
||||
Model::Multisite.new(url, confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -20,12 +20,7 @@ module WPScan
|
||||
|
||||
target.registration_enabled = true
|
||||
|
||||
Model::Registration.new(
|
||||
res.effective_url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
to_s: "Registration is enabled: #{res.effective_url}"
|
||||
)
|
||||
Model::Registration.new(res.effective_url, confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -13,12 +13,7 @@ module WPScan
|
||||
|
||||
return unless res.code == 200 && res.headers['Content-Type'] =~ %r{\Aapplication/zip}i
|
||||
|
||||
Model::TmmDbMigrate.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
references: { packetstorm: 131_957 }
|
||||
)
|
||||
Model::TmmDbMigrate.new(url, confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -13,12 +13,7 @@ module WPScan
|
||||
|
||||
url = target.url(path)
|
||||
|
||||
Model::UploadDirectoryListing.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
to_s: "Upload directory has listing enabled: #{url}"
|
||||
)
|
||||
Model::UploadDirectoryListing.new(url, confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -14,11 +14,7 @@ module WPScan
|
||||
|
||||
return unless SQL_PATTERN.match?(res.body)
|
||||
|
||||
Model::UploadSQLDump.new(
|
||||
target.url(path),
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS
|
||||
)
|
||||
Model::UploadSQLDump.new(target.url(path), confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -11,17 +11,7 @@ module WPScan
|
||||
|
||||
return unless res.code == 200
|
||||
|
||||
Model::WPCron.new(
|
||||
wp_cron_url,
|
||||
confidence: 60,
|
||||
found_by: DIRECT_ACCESS,
|
||||
references: {
|
||||
url: [
|
||||
'https://www.iplocation.net/defend-wordpress-from-ddos',
|
||||
'https://github.com/wpscanteam/wpscan/issues/1299'
|
||||
]
|
||||
}
|
||||
)
|
||||
Model::WPCron.new(wp_cron_url, confidence: 60, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
|
||||
def wp_cron_url
|
||||
|
||||
@@ -20,7 +20,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def passive_from_css_href(res, opts)
|
||||
target.in_scope_uris(res, '//style/@src|//link/@href') do |uri|
|
||||
target.in_scope_uris(res, '//link/@href[contains(., "style.css")]') do |uri|
|
||||
next unless uri.path =~ %r{/themes/([^\/]+)/style.css\z}i
|
||||
|
||||
return create_theme(Regexp.last_match[1], uri.to_s, opts)
|
||||
|
||||
@@ -71,11 +71,13 @@ module WPScan
|
||||
return username, 'Display Name', 50 if username
|
||||
end
|
||||
|
||||
# @param [ String ] url
|
||||
# @param [ String, Addressable::URI ] uri
|
||||
#
|
||||
# @return [ String, nil ]
|
||||
def username_from_author_url(url)
|
||||
url[%r{/author/([^/\b]+)/?}i, 1]
|
||||
def username_from_author_url(uri)
|
||||
uri = Addressable::URI.parse(uri) unless uri.is_a?(Addressable::URI)
|
||||
|
||||
uri.path[%r{/author/([^/\b]+)/?}i, 1]
|
||||
end
|
||||
|
||||
# @param [ Typhoeus::Response ] res
|
||||
@@ -83,12 +85,12 @@ module WPScan
|
||||
# @return [ String, nil ] The username found
|
||||
def username_from_response(res)
|
||||
# Permalink enabled
|
||||
target.in_scope_uris(res, '//link/@href|//a/@href') do |uri|
|
||||
username = username_from_author_url(uri.to_s)
|
||||
target.in_scope_uris(res, '//@href[contains(., "author/")]') do |uri|
|
||||
username = username_from_author_url(uri)
|
||||
return username if username
|
||||
end
|
||||
|
||||
# No permalink
|
||||
# No permalink, TODO Maybe use xpath to extract the classes ?
|
||||
res.body[/<body class="archive author author-([^\s]+)[ "]/i, 1]
|
||||
end
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ module WPScan
|
||||
def potential_usernames(res)
|
||||
usernames = []
|
||||
|
||||
target.in_scope_uris(res, '//a/@href') do |uri, node|
|
||||
target.in_scope_uris(res, '//a/@href[contains(., "author")]') do |uri, node|
|
||||
if uri.path =~ %r{/author/([^/\b]+)/?\z}i
|
||||
usernames << [Regexp.last_match[1], 'Author Pattern', 100]
|
||||
elsif /author=[0-9]+/.match?(uri.query)
|
||||
|
||||
@@ -8,11 +8,15 @@ module WPScan
|
||||
# @param [ String ] type plugins / themes
|
||||
# @param [ Boolean ] uniq Wether or not to apply the #uniq on the results
|
||||
#
|
||||
# @return [Array<String> ] The plugins/themes detected in the href, src attributes of the homepage
|
||||
# @return [ Array<String> ] The plugins/themes detected in the href, src attributes of the page
|
||||
def items_from_links(type, uniq = true)
|
||||
found = []
|
||||
xpath = format(
|
||||
'(//@href|//@src|//@data-src)[contains(., "%s")]',
|
||||
type == 'plugins' ? target.plugins_dir : target.content_dir
|
||||
)
|
||||
|
||||
target.in_scope_uris(page_res) do |uri|
|
||||
target.in_scope_uris(page_res, xpath) do |uri|
|
||||
next unless uri.to_s =~ item_attribute_pattern(type)
|
||||
|
||||
slug = Regexp.last_match[1]&.strip
|
||||
|
||||
@@ -8,45 +8,110 @@ module WPScan
|
||||
end
|
||||
|
||||
#
|
||||
# Empty classes for the #type to be correctly displayed (as taken from the self.class from the parent)
|
||||
# Some classes are empty for the #type to be correctly displayed (as taken from the self.class from the parent)
|
||||
#
|
||||
class BackupDB < InterestingFinding
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['https://github.com/wpscanteam/wpscan/issues/422'] }
|
||||
end
|
||||
end
|
||||
|
||||
class DebugLog < InterestingFinding
|
||||
# @ return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: 'https://codex.wordpress.org/Debugging_in_WordPress' }
|
||||
end
|
||||
end
|
||||
|
||||
class DuplicatorInstallerLog < InterestingFinding
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['https://www.exploit-db.com/ghdb/3981/'] }
|
||||
end
|
||||
end
|
||||
|
||||
class EmergencyPwdResetScript < InterestingFinding
|
||||
def references
|
||||
@references ||= {
|
||||
url: ['https://codex.wordpress.org/Resetting_Your_Password#Using_the_Emergency_Password_Reset_Script']
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
class FullPathDisclosure < InterestingFinding
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['https://www.owasp.org/index.php/Full_Path_Disclosure'] }
|
||||
end
|
||||
end
|
||||
|
||||
class MuPlugins < InterestingFinding
|
||||
# @return [ String ]
|
||||
def to_s
|
||||
@to_s ||= "This site has 'Must Use Plugins': #{url}"
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['http://codex.wordpress.org/Must_Use_Plugins'] }
|
||||
end
|
||||
end
|
||||
|
||||
class Multisite < InterestingFinding
|
||||
# @return [ String ]
|
||||
def to_s
|
||||
@to_s ||= 'This site seems to be a multisite'
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { url: ['http://codex.wordpress.org/Glossary#Multisite'] }
|
||||
end
|
||||
end
|
||||
|
||||
class Readme < InterestingFinding
|
||||
end
|
||||
|
||||
class Registration < InterestingFinding
|
||||
# @return [ String ]
|
||||
def to_s
|
||||
@to_s ||= "Registration is enabled: #{url}"
|
||||
end
|
||||
end
|
||||
|
||||
class TmmDbMigrate < InterestingFinding
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= { packetstorm: [131_957] }
|
||||
end
|
||||
end
|
||||
|
||||
class UploadDirectoryListing < InterestingFinding
|
||||
# @return [ String ]
|
||||
def to_s
|
||||
@to_s ||= "Upload directory has listing enabled: #{url}"
|
||||
end
|
||||
end
|
||||
|
||||
class UploadSQLDump < InterestingFinding
|
||||
end
|
||||
|
||||
class WPCron < InterestingFinding
|
||||
# @return [ String ]
|
||||
def to_s
|
||||
@to_s ||= "The external WP-Cron seems to be enabled: #{url}"
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
@references ||= {
|
||||
url: [
|
||||
'https://www.iplocation.net/defend-wordpress-from-ddos',
|
||||
'https://github.com/wpscanteam/wpscan/issues/1299'
|
||||
]
|
||||
}
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -8,7 +8,7 @@ module WPScan
|
||||
|
||||
# @return [ Hash ]
|
||||
def references
|
||||
{
|
||||
@references ||= {
|
||||
url: ['http://codex.wordpress.org/XML-RPC_Pingback_API'],
|
||||
metasploit: [
|
||||
'auxiliary/scanner/http/wordpress_ghost_scanner',
|
||||
|
||||
@@ -67,13 +67,13 @@ module WPScan
|
||||
# @return [ Hash ] The params for Typhoeus::Request
|
||||
# @note Those params can't be overriden by CLI options
|
||||
def request_params
|
||||
@request_params ||= {
|
||||
@request_params ||= Browser.instance.default_connect_request_params.merge(
|
||||
timeout: 600,
|
||||
connecttimeout: 300,
|
||||
accept_encoding: 'gzip, deflate',
|
||||
cache_ttl: 0,
|
||||
headers: { 'User-Agent' => Browser.instance.default_user_agent, 'Referer' => nil }
|
||||
}
|
||||
headers: { 'User-Agent' => Browser.instance.default_user_agent }
|
||||
)
|
||||
end
|
||||
|
||||
# @return [ String ] The raw file URL associated with the given filename
|
||||
@@ -85,7 +85,7 @@ module WPScan
|
||||
def remote_file_checksum(filename)
|
||||
url = "#{remote_file_url(filename)}.sha512"
|
||||
|
||||
res = Browser.get(url, request_params)
|
||||
res = Typhoeus.get(url, request_params)
|
||||
raise Error::Download, res if res.timed_out? || res.code != 200
|
||||
|
||||
res.body.chomp
|
||||
@@ -126,7 +126,7 @@ module WPScan
|
||||
file_path = local_file_path(filename)
|
||||
file_url = remote_file_url(filename)
|
||||
|
||||
res = Browser.get(file_url, request_params)
|
||||
res = Typhoeus.get(file_url, request_params)
|
||||
raise Error::Download, res if res.timed_out? || res.code != 200
|
||||
|
||||
File.open(file_path, 'wb') { |f| f.write(res.body) }
|
||||
@@ -148,7 +148,7 @@ module WPScan
|
||||
create_backup(filename)
|
||||
dl_checksum = download(filename)
|
||||
|
||||
raise "#{filename}: checksums do not match" unless dl_checksum == db_checksum
|
||||
raise Error::ChecksumsMismatch, filename unless dl_checksum == db_checksum
|
||||
|
||||
updated << filename
|
||||
rescue StandardError => e
|
||||
|
||||
@@ -23,7 +23,8 @@ module WPScan
|
||||
return {} unless token
|
||||
return {} if path.end_with?('/latest') # Remove this when api/v4 is up
|
||||
|
||||
res = Browser.get(uri.join(path), params.merge(request_params))
|
||||
# Typhoeus.get is used rather than Browser.get to avoid merging irrelevant params from the CLI
|
||||
res = Typhoeus.get(uri.join(path), default_request_params.merge(params))
|
||||
|
||||
return {} if res.code == 404 # This is for API inconsistencies when dots in path
|
||||
return JSON.parse(res.body) if NON_ERROR_CODES.include?(res.code)
|
||||
@@ -65,15 +66,14 @@ module WPScan
|
||||
end
|
||||
|
||||
# @return [ Hash ]
|
||||
def self.request_params
|
||||
{
|
||||
# @note Those params can not be overriden by CLI options
|
||||
def self.default_request_params
|
||||
Browser.instance.default_connect_request_params.merge(
|
||||
headers: {
|
||||
'Host' => uri.host, # Reset in case user provided a --vhost for the target
|
||||
'Referer' => nil, # Removes referer set by the cmsscanner to the target url
|
||||
'User-Agent' => Browser.instance.default_user_agent,
|
||||
'Authorization' => "Token token=#{token}"
|
||||
}
|
||||
}
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -8,5 +8,17 @@ module WPScan
|
||||
'Update required, you can not run a scan if a database file is missing.'
|
||||
end
|
||||
end
|
||||
|
||||
class ChecksumsMismatch < Standard
|
||||
attr_reader :db_file
|
||||
|
||||
def initialize(db_file)
|
||||
@db_file = db_file
|
||||
end
|
||||
|
||||
def to_s
|
||||
"#{db_file}: checksums do not match. Please try again in a few minutes."
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -32,8 +32,12 @@ module WPScan
|
||||
|
||||
if %i[mixed aggressive].include?(detection_mode)
|
||||
%w[wp-admin/install.php wp-login.php].each do |path|
|
||||
return true if in_scope_uris(Browser.get_and_follow_location(url(path))).any? do |uri|
|
||||
WORDPRESS_PATTERN.match?(uri.path)
|
||||
res = Browser.get_and_follow_location(url(path))
|
||||
|
||||
next unless res.code == 200
|
||||
|
||||
in_scope_uris(res, '//link/@href|//script/@src') do |uri|
|
||||
return true if WORDPRESS_PATTERN.match?(uri.path)
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -44,7 +48,7 @@ module WPScan
|
||||
# @param [ Typhoeus::Response ] response
|
||||
# @return [ Boolean ]
|
||||
def wordpress_from_meta_comments_or_scripts?(response)
|
||||
in_scope_uris(response) do |uri|
|
||||
in_scope_uris(response, '//link/@href|//script/@src') do |uri|
|
||||
return true if WORDPRESS_PATTERN.match?(uri.path) || WP_JSON_OEMBED_PATTERN.match?(uri.path)
|
||||
end
|
||||
|
||||
@@ -100,8 +104,9 @@ module WPScan
|
||||
|
||||
unless content_dir
|
||||
pattern = %r{https?://s\d\.wp\.com#{WORDPRESS_PATTERN}}i.freeze
|
||||
xpath = '(//@href|//@src)[contains(., "wp.com")]'
|
||||
|
||||
uris_from_page(homepage_res) do |uri|
|
||||
uris_from_page(homepage_res, xpath) do |uri|
|
||||
return true if uri.to_s.match?(pattern)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -105,9 +105,10 @@ module WPScan
|
||||
|
||||
# url_pattern is from CMSScanner::Target
|
||||
pattern = %r{#{url_pattern}(.+?)/(?:xmlrpc\.php|wp\-includes/)}i
|
||||
xpath = '(//@src|//@href|//@data-src)[contains(., "xmlrpc.php") or contains(., "wp-includes/")]'
|
||||
|
||||
[homepage_res, error_404_res].each do |page_res|
|
||||
in_scope_uris(page_res) do |uri|
|
||||
in_scope_uris(page_res, xpath) do |uri|
|
||||
return @sub_dir = Regexp.last_match[1] if uri.to_s.match(pattern)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.7.7'
|
||||
VERSION = '3.7.10'
|
||||
end
|
||||
|
||||
@@ -74,20 +74,40 @@ describe WPScan::Controller::VulnApi do
|
||||
context 'when limited requests' do
|
||||
let(:requests) { 100 }
|
||||
|
||||
it 'does not raise an error' do
|
||||
it 'sets the token and does not raise an error' do
|
||||
expect { controller.before_scan }.to_not raise_error
|
||||
|
||||
expect(WPScan::DB::VulnApi.token).to eql 'token'
|
||||
end
|
||||
|
||||
context 'when unlimited requests' do
|
||||
let(:requests) { 'Unlimited' }
|
||||
|
||||
it 'does not raise an error' do
|
||||
it 'sets the token and does not raise an error' do
|
||||
expect { controller.before_scan }.to_not raise_error
|
||||
|
||||
expect(WPScan::DB::VulnApi.token).to eql 'token'
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when token in ENV' do
|
||||
before do
|
||||
ENV[described_class::ENV_KEY] = 'token-from-env'
|
||||
|
||||
expect(WPScan::DB::VulnApi)
|
||||
.to receive(:status)
|
||||
.and_return('success' => true, 'plan' => 'free', 'requests_remaining' => 'Unlimited')
|
||||
end
|
||||
|
||||
it 'sets the token and does not raise an error' do
|
||||
expect { controller.before_scan }.to_not raise_error
|
||||
|
||||
expect(WPScan::DB::VulnApi.token).to eql 'token-from-env'
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -6,8 +6,55 @@ describe WPScan::Finders::InterestingFindings::MuPlugins do
|
||||
let(:url) { 'http://ex.lo/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('interesting_findings', 'mu_plugins') }
|
||||
|
||||
before do
|
||||
expect(target).to receive(:content_dir).at_least(1).and_return('wp-content')
|
||||
end
|
||||
|
||||
describe '#passive' do
|
||||
xit
|
||||
before { stub_request(:get, url).to_return(body: body) }
|
||||
|
||||
context 'when no uris' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:passive) { should be nil }
|
||||
end
|
||||
|
||||
context 'when a large amount of unrelated uris' do
|
||||
let(:body) do
|
||||
Array.new(250) { |i| "<a href='#{url}#{i}.html'>Some Link</a><img src='#{url}img-#{i}.png'/>" }.join("\n")
|
||||
end
|
||||
|
||||
it 'should not take a while to process the page' do
|
||||
time_start = Time.now
|
||||
result = finder.passive
|
||||
time_end = Time.now
|
||||
|
||||
expect(result).to be nil
|
||||
expect(time_end - time_start).to be < 1
|
||||
end
|
||||
end
|
||||
|
||||
context 'when uris' do
|
||||
let(:body) { File.read(fixtures.join(fixture)) }
|
||||
|
||||
context 'when none matching' do
|
||||
let(:fixture) { 'no_match.html' }
|
||||
|
||||
its(:passive) { should be nil }
|
||||
end
|
||||
|
||||
context 'when matching via href' do
|
||||
let(:fixture) { 'match_href.html' }
|
||||
|
||||
its(:passive) { should be_a WPScan::Model::MuPlugins }
|
||||
end
|
||||
|
||||
context 'when matching from src' do
|
||||
let(:fixture) { 'match_src.html' }
|
||||
|
||||
its(:passive) { should be_a WPScan::Model::MuPlugins }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#aggressive' do
|
||||
|
||||
@@ -19,7 +19,7 @@ describe WPScan::Finders::Users::AuthorIdBruteForcing do
|
||||
end
|
||||
end
|
||||
|
||||
describe '#potential_username' do
|
||||
describe '#username_from_response' do
|
||||
[
|
||||
'4.1.1', '4.1.1-permalink',
|
||||
'3.0', '3.0-permalink',
|
||||
@@ -32,6 +32,19 @@ describe WPScan::Finders::Users::AuthorIdBruteForcing do
|
||||
expect(finder.username_from_response(res)).to eql 'admin'
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a lot of unrelated links' do
|
||||
it 'should not take a while to process the page' do
|
||||
body = Array.new(300) { |i| "<a href='#{url}#{i}.html'>Some Link</a>" }.join("\n")
|
||||
body << '<a href="https://wp.lab/author/test/">Link</a>'
|
||||
|
||||
time_start = Time.now
|
||||
expect(finder.username_from_response(Typhoeus::Response.new(body: body))).to eql 'test'
|
||||
time_end = Time.now
|
||||
|
||||
expect(time_end - time_start).to be < 1
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#display_name_from_body' do
|
||||
|
||||
@@ -16,12 +16,31 @@ describe WPScan::Finders::Users::AuthorPosts do
|
||||
|
||||
results = finder.potential_usernames(res)
|
||||
|
||||
expect(results).to eql([
|
||||
['admin', 'Author Pattern', 100],
|
||||
['admin display_name', 'Display Name', 30],
|
||||
['editor', 'Author Pattern', 100],
|
||||
['editor', 'Display Name', 30]
|
||||
])
|
||||
expect(results).to eql [
|
||||
['admin', 'Author Pattern', 100],
|
||||
['admin display_name', 'Display Name', 30],
|
||||
['editor', 'Author Pattern', 100],
|
||||
['editor', 'Display Name', 30]
|
||||
]
|
||||
end
|
||||
|
||||
context 'when a lot of unrelated uris' do
|
||||
it 'should not take a while to process the page' do
|
||||
body = Array.new(300) { |i| "<a href='#{url}#{i}.html'>Some Link</a>" }.join("\n")
|
||||
body << "<a href='#{url}author/admin/'>Other Link</a>"
|
||||
body << "<a href='#{url}?author=2'>user display name</a>"
|
||||
|
||||
time_start = Time.now
|
||||
results = finder.potential_usernames(Typhoeus::Response.new(body: body))
|
||||
time_end = Time.now
|
||||
|
||||
expect(results).to eql [
|
||||
['admin', 'Author Pattern', 100],
|
||||
['user display name', 'Display Name', 30]
|
||||
]
|
||||
|
||||
expect(time_end - time_start).to be < 1
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
2
spec/cache/.gitignore
vendored
2
spec/cache/.gitignore
vendored
@@ -1,4 +1,4 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
!.gitignore
|
||||
|
||||
2815
spec/fixtures/db/dynamic_finders.yml
vendored
2815
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
1219
spec/fixtures/dynamic_finders/expected.yml
vendored
1219
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,143 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AyeCode Connect 1.0.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-02-22 09:23+0000\n"
|
||||
"PO-Revision-Date: 2020-02-22 09:23+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: AyeCode Ltd <contact@ayecode.io>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;__ngettext:1,2;__ngettext_noop:1,2;_c;_e;_ex:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;_nc:4c,1,2;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;gettext;"
|
||||
"gettext_noop\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: ayecode-connect.php:75
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-remote-actions.php:411
|
||||
msgid "Download source not valid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:201
|
||||
msgid "Plugin and theme update notifications must be enabled first"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:261
|
||||
msgid "Something went wrong, try refreshing the page and trying again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:262
|
||||
msgid "Are you sure you with to disconnect your site?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:300
|
||||
msgid ""
|
||||
"One click addon installs, live documentation search, support right from your "
|
||||
"WordPress Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:308
|
||||
#, php-format
|
||||
msgid "You are connected to AyeCode Connect as user: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:315
|
||||
msgid "Plugin and theme update notifications"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:318
|
||||
#: includes/class-ayecode-connect-settings.php:336
|
||||
#: includes/class-ayecode-connect-settings.php:361
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:333
|
||||
msgid "One click addon installs, no more licence keys"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:366
|
||||
msgid "Disconnect site"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:373
|
||||
msgid ""
|
||||
"By clicking the <b>Connect Site</b> button, you agree to our <a "
|
||||
"href='https://ayecode.io/terms-and-conditions/' target='_blank' class='text-"
|
||||
"muted' ><u>Terms of Service</u></a> and to share details with AyeCode Ltd"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:376
|
||||
msgid "Connect Site"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:384
|
||||
msgid ""
|
||||
"It looks like you might be running on localhost, AyeCode Connect will only "
|
||||
"work on a live website."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect-settings.php:395
|
||||
msgid "AycCode Ltd are the creators of:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:298
|
||||
msgid "Invalid Registration Data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:302
|
||||
msgid "Invalid Secret"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:559
|
||||
#, php-format
|
||||
msgid "Domain `%1$s` just failed is_usable_domain check as it is empty."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:589
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Domain `%1$s` just failed is_usable_domain check as it is in the forbidden "
|
||||
"array."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:604
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Domain `%1$s` just failed is_usable_domain check as it uses an invalid top "
|
||||
"level domain."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:696
|
||||
#: includes/class-ayecode-connect.php:712
|
||||
#: includes/class-ayecode-connect.php:931
|
||||
msgid "Missing Authorization Header."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:718
|
||||
#: includes/class-ayecode-connect.php:937
|
||||
#: includes/class-ayecode-connect.php:943
|
||||
msgid "Invalid Authorization Header."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:725
|
||||
msgid "Missing blog token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:730
|
||||
#: includes/class-ayecode-connect.php:951
|
||||
msgid "You are not authorized to do that."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-ayecode-connect.php:1002
|
||||
msgid "Specify an action"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,5 @@
|
||||
# Changelog
|
||||
All notable changes to the plugin will be documented in this file.
|
||||
|
||||
## 1.0.0 - 2019-10-10
|
||||
### Initial release
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"title": "Best Restaurant Menu by PriceListo",
|
||||
"name": "best-restaurant-menu",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "best-restaurant-menu.php",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@bitbucket.org/MahmoudBasiony/best-restaurant-menu.git"
|
||||
},
|
||||
"keywords": [
|
||||
"wordpress",
|
||||
"menu",
|
||||
"restaurant",
|
||||
"food",
|
||||
"services"
|
||||
],
|
||||
"author": "PriceListo",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"homepage": "https://bitbucket.org/MahmoudBasiony/best-restaurant-menu#readme.md",
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.26.0",
|
||||
"babel-preset-env": "^1.6.1",
|
||||
"cleave.js": "^1.5.0",
|
||||
"del": "^3.0.0",
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-babel": "^7.0.1",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-jshint": "^2.1.0",
|
||||
"gulp-rename": "^1.2.2",
|
||||
"gulp-sass": "^4.0.1",
|
||||
"gulp-uglify": "^3.0.0",
|
||||
"gulp-uglifycss": "^1.0.9",
|
||||
"gulp-util": "^3.0.8",
|
||||
"gulp-wp-pot": "^2.2.0",
|
||||
"jshint": "^2.9.5"
|
||||
},
|
||||
"dependencies": {
|
||||
"font-awesome": "^4.7.0",
|
||||
"select2": "^4.0.10",
|
||||
"sweetalert2": "^8.17.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
# Copyright (C) 2020 Maksim Kuzmin
|
||||
# This file is distributed under the same license as the Bible Online Popup plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Bible Online Popup 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bible-online-popup\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: 2020-02-07T09:28:44+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: BOP\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Bible Online Popup"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Popup Bible's verses with Bible Online"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Maksim Kuzmin"
|
||||
msgstr ""
|
||||
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default translation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update your preferences here."
|
||||
msgstr ""
|
||||
|
||||
msgid "Make a Bible Popup from selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bible Online Popup Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Make a link to BibleOnline.ru from Bible's reference"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
19
spec/fixtures/dynamic_finders/plugin_version/bunnycdnbunnyapi/change_log/changelog.txt
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/bunnycdnbunnyapi/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
== CHANGELOG ==
|
||||
|
||||
=1.0.0=
|
||||
Initial setup
|
||||
bunnyapi ::
|
||||
WP default upload paths
|
||||
setup paths
|
||||
bunnyapi_callback_css
|
||||
bunnyapi_img_shortcode($atts)
|
||||
bunnyapi_dnsprefetch()
|
||||
load classes--
|
||||
inc:: bunnyapiFunctions
|
||||
inc-- bunnyapi_api_key(),bunnyapi_validate_apikey(),bunnyapi_clear_cache(),bunnyapi_delete_all(),bunnyapi_delete_files($files),bunnyapi_copy_all($folder),bunnyapi_force_push($folder),bunnyapi_upload_files($files),bunnyapi_is_gutenberg_active(),bunnyapi_setbunnyhost(),bunnyapi_currenturl(),bunnyapi_api_call(),bunnyhost(),bunnyapi_convert_year_month_url(),bunnyapi_check_https(),bunnyapi_is_200(),bunnyapi_full_validation_apikey()
|
||||
inc:: bunnyapiSettings
|
||||
inc-- getOptions(),getOption($option),validateSettings($data),cleanHostname($hostname),initialize(),bunnyapi_options_page(),js:{deleteall(),clearcache(),copyall(),pushall(),downloadall(),setHost()}
|
||||
inc:: bunnyapiMedia
|
||||
inc-- function($editor_id),bunnyapi_CustomMediaUI(),bunnyapi_media_urls(),bunnyapi_getLabel(),bunnyapi_getUrl(),bunnyapi_render(),__construct(),bunnyapi_submenu(),bunnyapi_adminBar(),bunnyapi_mediaButton(),bunnyapi_mediaButtonScript(),bunnyapi_indexButton(),bunnyapi_h2Button()
|
||||
BunnyAPI auto-detection hostname configuration
|
||||
BunnyAPI Settings screen: Update BunnyAPI Settings, Clear Cache, Download BunnyCDN Media, Push WP Media Library, Copy BunnyCDN Media, and Delete All BunnyCDN Media
|
||||
@@ -0,0 +1,51 @@
|
||||
#Colissimo WooCommerce Changelog
|
||||
|
||||
## 1.1
|
||||
|
||||
### Fonctionnalités
|
||||
|
||||
- Prise en charge de étiquettes au format ZPL et DPL :
|
||||
- Possibilité de générer les étiquettes de livraison au format ZPL ou DPL
|
||||
- Possibilité d'imprimer les étiquettes de livraison au format ZPL ou DPL directement sur une imprimante thermique via USB ou Ethernet.
|
||||
|
||||
- Impression en masse des étiquettes de livraisons de plusieurs commandes depuis le listing des commandes Colissimo
|
||||
|
||||
- Il est désormais possible de trier les commandes du listing Colissimo selon :
|
||||
- Le nom du client
|
||||
- L'adresse de livraison
|
||||
- Le pays de livraison
|
||||
- La méthode de livraison
|
||||
- Le statut de la livraison
|
||||
- Le numéro de bordereau
|
||||
|
||||
- Il est désormais possible de filtrer les commandes du listing Colissimo selon :
|
||||
- Le pays de livraison
|
||||
- La méthode de livraison
|
||||
- Le statut de livraison
|
||||
- Les étiquettes générées ("Aller", "Retour", "Aller et Retour" et "Étiquette non générée")
|
||||
|
||||
- Le nombre de commandes affichées par page sur le listing Colissimo est paramétrable via l'option de WordPress "Options de l'écran"
|
||||
|
||||
### Améliorations
|
||||
|
||||
- Ajout de la référence de la commande sur l'étiquette de livraison
|
||||
|
||||
- Les prix des méthodes de livraisons se basent désormais sur le prix TTC
|
||||
|
||||
- Lors de l'impression d'une étiquette de livraison, la facture n'est plus présente
|
||||
|
||||
### Correctifs
|
||||
|
||||
- Résolution d'un problème qui pouvait se poser au moment de la sauvegarde des prix des méthodes de livraison, s'il y avait la présence de nombres décimaux
|
||||
|
||||
- Résolution d'un problème qui faisait que le prix de la commande pris en compte pour le calcul du prix de la méthode de livraison n'incluait pas les réductions liées à des coupons
|
||||
|
||||
- Résolution d'un problème qui pouvait rendre l'ouverture de la pop-up de choix du point relais impossible pour le client
|
||||
|
||||
- Résolution de la prise en charge du multisite
|
||||
|
||||
- Résolution d'un problème qui pouvait rendre le lien de suivi non-fonctionnel
|
||||
|
||||
- Résolution d'un problème qui pouvait empêcher la sélection d'un point relais si un autre avait été choisi précedemment
|
||||
|
||||
- Résolution d'un problème qui pouvait empêcher la génération du formulaire CN23
|
||||
@@ -107,7 +107,7 @@ Ahalogy wordpress plugin [version 2.1.0] is installed but Client ID not set
|
||||
|
||||
<!-- cc-child-pages -->
|
||||
<!--[if lt IE 8]>
|
||||
<link rel='stylesheet' id='ccchildpagesiecss-css' href='http://wp.local/WpVersionFinder/wordpress/wp-content/plugins/cc-child-pages/includes/css/styles.ie.css?ver=1.36' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='ccchildpagesiecss-css' href='http://wp.lab/wp-content/plugins/cc-child-pages/includes/css/styles.ie.css?ver=1.36' type='text/css' media='all' />
|
||||
<![endif]-->
|
||||
|
||||
|
||||
@@ -619,7 +619,7 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
|
||||
<!-- movingboxes-wp -->
|
||||
<!--[if lte IE 9]>
|
||||
<link rel='stylesheet' id='mb-ie-style-css' href='http://wp.local/WpVersionFinder/wordpress/wp-content/plugins/movingboxes-wp/templates/default/css/movingboxes-ie.css?ver=0.4.2' type='text/css' media='screen' />
|
||||
<link rel='stylesheet' id='mb-ie-style-css' href='http://wp.lab/wp-content/plugins/movingboxes-wp/templates/default/css/movingboxes-ie.css?ver=0.4.2' type='text/css' media='screen' />
|
||||
<![endif]-->
|
||||
|
||||
|
||||
@@ -819,7 +819,7 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
|
||||
<!-- voxpress -->
|
||||
<!--[if lte IE 8]>
|
||||
<link rel='stylesheet' id='ubivox-style-public-ie8-css' href='http://wp.local/WpVersionFinder/wordpress/wp-content/plugins/voxpress/styles/ubivox.public.ie8.css?ver=1.1.5' type='text/css' media='' />
|
||||
<link rel='stylesheet' id='ubivox-style-public-ie8-css' href='http://wp.lab/wp-content/plugins/voxpress/styles/ubivox.public.ie8.css?ver=1.1.5' type='text/css' media='' />
|
||||
<![endif]-->
|
||||
|
||||
|
||||
@@ -850,7 +850,7 @@ If above timestamp is not current time, this page is cached.</p> -->
|
||||
|
||||
<!-- wp-elusive-iconfont -->
|
||||
<!--[if lte IE 7]>
|
||||
<link rel='stylesheet' id='elusive-webfont-ie7-css' href='http://wp.local/WpVersionFinder/wordpress/wp-content/plugins/wp-elusive-iconfont/assets/css/elusive-webfont-ie7.css?ver=1.0' type='text/css' media='all' />
|
||||
<link rel='stylesheet' id='elusive-webfont-ie7-css' href='http://wp.lab/wp-content/plugins/wp-elusive-iconfont/assets/css/elusive-webfont-ie7.css?ver=1.0' type='text/css' media='all' />
|
||||
<![endif]-->
|
||||
|
||||
|
||||
@@ -1169,4 +1169,21 @@ s0.parentNode.insertBefore(s1,s0);
|
||||
<!-- This website uses Linkable Title Html And Php Widget v1.2.6 Wordpress plugin developed by PepLamb (PepLamb.com) -->
|
||||
|
||||
|
||||
<!-- age-okay -->
|
||||
<!--[if lt IE 10]>
|
||||
<link rel='stylesheet' id='age_okay_ie9_css-css' href='http://wp.lab/wp-content/plugins/age-okay/public/css/age-okay-public-ie9-min.css?ver=1.0.0-F' media='all' />
|
||||
<![endif]-->
|
||||
|
||||
|
||||
<!-- google-analytics-dashboard-for-wp -->
|
||||
<!-- This site uses the Google Analytics by ExactMetrics plugin v6.0.1 - Using Analytics tracking - https://www.exactmetrics.com/ -->
|
||||
|
||||
|
||||
<!-- flower-delivery-by-florist-one -->
|
||||
<!--[if lte IE 9]>
|
||||
<link rel='stylesheet' id='old-browser-css' href='http://wp.lab/wp-content/plugins/flower-delivery-by-florist-one/public/css/florist-one-flower-delivery-public-old-browser.css?ver=1.11.1' media='all' />
|
||||
<![endif]-->
|
||||
|
||||
|
||||
<!-- paypal-for-woocommerce -->
|
||||
<!-- This site has installed PayPal for WooCommerce v2.1.12 - https://www.angelleye.com/product/woocommerce-paypal-plugin/ -->
|
||||
|
||||
@@ -0,0 +1,77 @@
|
||||
# Copyright (C) 2020 SomewhereWarm
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Composite Products - Conditional Images for WooCommerce "
|
||||
"1.2.0\n"
|
||||
"Report-Msgid-Bugs-To: https://woocommerce.com/my-account/create-a-ticket/\n"
|
||||
"POT-Creation-Date: 2020-02-12 06:19:29+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:115
|
||||
msgid ""
|
||||
"<strong>Composite Products – Conditional Images</strong> requires "
|
||||
"WooCommerce Composite Products <strong>%s</strong> or higher."
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:198
|
||||
msgid "Choose an Image"
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:199
|
||||
msgid "Save Image"
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:298
|
||||
msgid "Overlay Image"
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:301
|
||||
msgid ""
|
||||
"Enable this option to conditionally overlay an image over the main "
|
||||
"Composite Product image. When using this feature, product image zooming "
|
||||
"will be disabled."
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:306
|
||||
msgid "Select image"
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:310
|
||||
msgid "Choose an image to overlay over the main Composite Product image."
|
||||
msgstr ""
|
||||
|
||||
#: composite-products-conditional-images-for-woocommerce.php:311
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Composite Products - Conditional Images for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://docs.woocommerce.com/document/composite-products/composite-products-"
|
||||
"extensions/#cp-ci"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Free mini-extension for WooCommerce Composite Products that allows you to "
|
||||
"create dynamic, multi-layer Composite Product images that respond to option "
|
||||
"changes."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SomewhereWarm"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://somewherewarm.gr/"
|
||||
msgstr ""
|
||||
18
spec/fixtures/dynamic_finders/plugin_version/cookie-jar/change_log/CHANGELOG.md
vendored
Normal file
18
spec/fixtures/dynamic_finders/plugin_version/cookie-jar/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## Releases
|
||||
|
||||
### 2.0.1 - 2020-02-12
|
||||
- Fixing wpdb issue
|
||||
|
||||
### 2.0.0
|
||||
- Added options to select an image and the position of the cookie div on the front end ( bottom left or bottom right )
|
||||
|
||||
### 1.1.0
|
||||
- Added back-end settings to select Cookie Policy page from the list of all existing pages
|
||||
|
||||
### 1.0.0
|
||||
- Initial release
|
||||
7
spec/fixtures/dynamic_finders/plugin_version/device-detector/change_log/CHANGELOG.md
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/device-detector/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# Changelog
|
||||
All notable changes to **Device Detector** are documented in this *changelog*.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Device Detector** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.0.0] - 2020-01-22
|
||||
### Initial release
|
||||
170
spec/fixtures/dynamic_finders/plugin_version/dodebug/translation_file/lang/dodebug.pot
vendored
Normal file
170
spec/fixtures/dynamic_finders/plugin_version/dodebug/translation_file/lang/dodebug.pot
vendored
Normal file
@@ -0,0 +1,170 @@
|
||||
# Copyright (C) 2020 DoDebug
|
||||
# This file is distributed under the same license as the DoDebug package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: DoDebug 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dodebug\n"
|
||||
"POT-Creation-Date: 2020-01-22 20:55:35+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: src/admin.cls.php:65
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:111
|
||||
msgid "Folder does not exist: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:118
|
||||
msgid "Can not create folder: %1$s. Error: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:124
|
||||
msgid "Folder is not writable: %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:130 src/f.cls.php:134
|
||||
msgid "File %s is not writable."
|
||||
msgstr ""
|
||||
|
||||
#: src/f.cls.php:141
|
||||
msgid "Failed to write to %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/lang.cls.php:37
|
||||
msgid "Test."
|
||||
msgstr ""
|
||||
|
||||
#: src/util.cls.php:216
|
||||
msgid "just now"
|
||||
msgstr ""
|
||||
|
||||
#: src/util.cls.php:216
|
||||
msgid "right now"
|
||||
msgstr ""
|
||||
|
||||
#: src/util.cls.php:218
|
||||
msgid " %s ago"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:32
|
||||
msgid "DoDebug Settings"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:44
|
||||
msgid "Debug"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:46 tpl/settings.tpl.php:104
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:48
|
||||
msgid "Turn this on to start logging."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:51
|
||||
msgid "Advanced Level"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:53
|
||||
msgid "Advanced level is for the usuage of function %s."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:56
|
||||
msgid "Log Cookies"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:61
|
||||
msgid "Log Filesize Limit"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:66
|
||||
msgid "Specify the maximum size of the log file."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:72
|
||||
msgid "URI Includes"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:79
|
||||
msgid ""
|
||||
"Only log listed pages. The URLs will be compared to the REQUEST_URI server "
|
||||
"variable."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:80 tpl/settings.tpl.php:95 tpl/settings.tpl.php:121
|
||||
#: tpl/settings.tpl.php:136
|
||||
msgid "One per line."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:87
|
||||
msgid "URI Excludes"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:94
|
||||
msgid ""
|
||||
"Prevent any log of listed pages. The URLs will be compared to the "
|
||||
"REQUEST_URI server variable."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:102
|
||||
msgid "Log Filters"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:106
|
||||
msgid "Log all WordPress filter hooks."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:107
|
||||
msgid "Enabling this option will cause log file size to grow quickly."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:113
|
||||
msgid "Filter Excludes"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:120
|
||||
msgid "Listed filters will not be logged."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:128
|
||||
msgid "Filter Partial Excludes"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:135
|
||||
msgid "Filters containing these strings will not be logged."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:143
|
||||
msgid "Admin IPs"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:150
|
||||
msgid "Only log the requests from these IPs."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:151
|
||||
msgid "Your IP is %s."
|
||||
msgstr ""
|
||||
|
||||
#: tpl/settings.tpl.php:166
|
||||
msgid "APIs"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "DoDebug"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Just a debug tool for theme/plugin developers."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WPDO"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "elfsight-elementor-wp",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"scripts": {
|
||||
"dev": "webpack --mode=development --watch",
|
||||
"production": "webpack --mode=production"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@bitbucket.org:elfsight/embed-wp-elementor.git"
|
||||
},
|
||||
"author": "Elfsight <info@elfsight.com>",
|
||||
"license": "GPL",
|
||||
"homepage": "",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.7.2",
|
||||
"@babel/polyfill": "^7.7.0",
|
||||
"@babel/preset-env": "^7.7.1",
|
||||
"@babel/runtime": "^7.8.3",
|
||||
"babel-loader": "^8.0.6",
|
||||
"copy-webpack-plugin": "^5.1.1",
|
||||
"webpack": "^4.41.2",
|
||||
"webpack-cli": "^3.3.10",
|
||||
"css-loader": "^0.28.9",
|
||||
"style-loader": "^0.19.0",
|
||||
"stylus": "^0.54.7",
|
||||
"stylus-loader": "^3.0.1",
|
||||
"svg-url-loader": "^3.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@elfsight/embed-sdk": "^0.2.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
# Copyright (C) 2020 Rudy Susanto
|
||||
# This file is distributed under the same license as the Embed Extended plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Embed Extended 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/embed-extended\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: 2020-02-17T07:03:56+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: embed-extended\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Embed Extended"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Add supports for links that cannot be embedded by the built-in WordPress embed feature. It works seamlessly on the Gutenberg editor, the embed shortcode, or even programmatically."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Rudy Susanto"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://profiles.wordpress.org/rsusanto/"
|
||||
msgstr ""
|
||||
11
spec/fixtures/dynamic_finders/plugin_version/embed-salesvu/change_log/changelog.txt
vendored
Normal file
11
spec/fixtures/dynamic_finders/plugin_version/embed-salesvu/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.1 =
|
||||
* Docs: Add installation instructions and changelog to README
|
||||
* Docs: Added Parameters and HTTPS warning to README
|
||||
* Cleanup: Remove unsupported `allowtransparency` tag from parameters
|
||||
* Bugfix: Allow both ID & Classes in same_height_as
|
||||
* Improvements: Increase default height to 800px
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial Release
|
||||
@@ -0,0 +1,349 @@
|
||||
# Copyright (C) 2020 Espresso Plugins
|
||||
# This file is distributed under the same license as the Espresso Diagnostics plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Espresso Diagnostics 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/espresso-diagnostics\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: 2020-02-21T20:41:04+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: espresso-diagnostics\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Espresso Diagnostics"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://espressoplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Plugin that extracts data on WP installation, installed themes, installed plugins and server info for diagnostic purposes"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Espresso Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:57
|
||||
msgid "Site title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:58
|
||||
msgid "Site title (set in Settings > General)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:61
|
||||
msgid "Site tagline"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:62
|
||||
msgid "Site tagline (set in Settings > General)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:65
|
||||
msgid "WP Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:66
|
||||
msgid "The WordPress address (URL) (set in Settings > General)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:69
|
||||
msgid "Site Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:70
|
||||
msgid "The Site address (URL) (set in Settings > General)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:73
|
||||
msgid "Charset"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:74
|
||||
msgid "The Encoding for pages and feeds (set in Settings > Reading)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:77
|
||||
#: admin/class-espresso-diagnostics-admin.php:554
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:78
|
||||
msgid "The current WordPress version"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:81
|
||||
msgid "HTML Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:82
|
||||
msgid "The content-type (default: \"text/html\"). Themes and plugins can override the default value using the 'pre_option_html_type' filter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:85
|
||||
msgid "Text direction"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:86
|
||||
msgid "The text direction determined by the site's is_rtl() function"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:89
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:90
|
||||
msgid "Language code for the current site"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:93
|
||||
msgid "Stylesheet URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:94
|
||||
msgid "URL to the stylesheet for the active theme. An active child theme will take precedence over this value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:97
|
||||
msgid "Stylesheet directory"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:98
|
||||
msgid "Directory path for the active theme. An active child theme will take precedence over this value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:101
|
||||
msgid "Template URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:102
|
||||
msgid "URL of the active theme's directory. An active child theme will NOT take precedence over this value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:105
|
||||
msgid "Template Directory"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:106
|
||||
msgid "Dicrectory of the active theme's directory. An active child theme will NOT take precedence over this value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:109
|
||||
msgid "Pingback URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:110
|
||||
msgid "The pingback XML-RPC file URL (xmlrpc.php)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:113
|
||||
msgid "Atom URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:114
|
||||
msgid "The Atom feed URL (/feed/atom)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:117
|
||||
msgid "RDF URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:118
|
||||
msgid "The RDF/RSS 1.0 feed URL (/feed/rdf)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:121
|
||||
msgid "RSS URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:122
|
||||
msgid "The RSS 0.92 feed URL (/feed/rss)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:125
|
||||
msgid "RSS2 URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:126
|
||||
msgid "The RSS 2.0 feed URL (/feed)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:129
|
||||
msgid "Comments Atom URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:130
|
||||
msgid "The comments Atom feed URL (/comments/feed)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:133
|
||||
msgid "Comments RSS2 URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:134
|
||||
msgid "The comments RSS 2.0 feed URL (/comments/feed)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:137
|
||||
msgid "Home URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:138
|
||||
msgid "Website Home as given by then home_url() function"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:200
|
||||
#: admin/class-espresso-diagnostics-admin.php:201
|
||||
msgid "WP Diagnostics"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:232
|
||||
#: admin/class-espresso-diagnostics-admin.php:415
|
||||
#: admin/class-espresso-diagnostics-admin.php:435
|
||||
msgid "Security check failed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:341
|
||||
msgid "Unknown server"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:344
|
||||
msgid "Apache"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:346
|
||||
msgid "NGINX"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:348
|
||||
msgid "IIS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:350
|
||||
msgid "IIS7"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:509
|
||||
msgid "You need ZipArchive to download the zip with csv files"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:543
|
||||
msgid "Date of export"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:544
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:25
|
||||
msgid "Wordpress Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:551
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:47
|
||||
msgid "Themes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:557
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:71
|
||||
msgid "There are no themes on this Wordpress installation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:560
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:73
|
||||
msgid "Active Wordpress Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:566
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:95
|
||||
msgid "There are no active plugins on this Wordpress installation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:569
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:97
|
||||
msgid "Inactive Wordpress Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:575
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:119
|
||||
msgid "There are no inactive plugins on this Wordpress installation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:583
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:127
|
||||
msgid "%s Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-espresso-diagnostics-admin.php:589
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:148
|
||||
msgid "There is no info regarding '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:22
|
||||
msgid "Download all diagnostics (JSON)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:23
|
||||
msgid "Download all diagnostics (CSV)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:24
|
||||
msgid "Generate text version to copy and paste"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:25
|
||||
msgid "All info on the Wordpress Installation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:30
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:132
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:31
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:133
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:47
|
||||
msgid "All info on the Wordpress Themes that are installed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:52
|
||||
msgid "Theme Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:53
|
||||
msgid "Theme Version"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:54
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:73
|
||||
msgid "All info on the Wordpress plugins that are installed and active"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:78
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:102
|
||||
msgid "Plugin Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:79
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:103
|
||||
msgid "Plugin Version"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:97
|
||||
msgid "All info on the Wordpress plugins that are installed but not inactive"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/espresso-diagnostics-admin-display.php:127
|
||||
msgid "All info on %s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,160 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: File Upload Types 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/file-upload-types\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: 2020-01-07T17:11:46+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.3.0\n"
|
||||
"X-Domain: file-upload-types\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/class-file-upload-types-settings.php:96
|
||||
#: includes/class-file-upload-types-settings.php:111
|
||||
msgid "File Upload Types"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Easily allow WordPress to accept and upload any file type extension or MIME type, including custom file types."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/class-file-upload-types-settings.php:469
|
||||
msgid "WPForms"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpforms.com"
|
||||
msgstr ""
|
||||
|
||||
#: file-upload-types.php:44
|
||||
msgid "The File Upload Types plugin has been deactivated. Your site is running an outdated version of PHP that is no longer supported and is not compatible with the File Upload Types plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:77
|
||||
msgid "Default section can not be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:110
|
||||
#: includes/class-file-upload-types-settings.php:136
|
||||
#: includes/class-file-upload-types.php:75
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:141
|
||||
msgid "Need some help?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:144
|
||||
msgid "View Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:168
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:188
|
||||
msgid "Add File Upload Types"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - URL to WordPress Codex page, %2$s - anchor link.
|
||||
#: includes/class-file-upload-types-settings.php:193
|
||||
msgid "Below is the list of files types that can be enabled, not including the <a href=\"%1$s\" rel=\"noopener\" target=\"_blank\">files WordPress allows by default</a>. <br>Don't see what you need? No problem, <a href=\"%2$s\" rel=\"noopener noreferrer\">add your custom file types</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:210
|
||||
msgid "Search File Types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:217
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:218
|
||||
#: includes/class-file-upload-types-settings.php:305
|
||||
msgid "MIME Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:219
|
||||
#: includes/class-file-upload-types-settings.php:307
|
||||
msgid "Extension"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:239
|
||||
msgid "ENABLED"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:262
|
||||
msgid "AVAILABLE"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:295
|
||||
msgid "ADD CUSTOM FILE TYPES"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:298
|
||||
msgid "Add the custom file types to allow uploads"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:304
|
||||
msgid "File Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:329
|
||||
msgid "You might like our other products"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s - wpforms.com link.
|
||||
#: includes/class-file-upload-types-settings.php:335
|
||||
msgid "File Upload Types is built by the team behind the most popular WordPress form plugin, <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">WPForms</a>. Check out some of our other plugins."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - Plugin URL; %2$s - Plugin Name; %3$s - Image source.
|
||||
#: includes/class-file-upload-types-settings.php:366
|
||||
msgid "<strong><a href=\"%1$s\" class=\"external-link\" target=\"_blank\" rel=\"noopener noreferrer\">Get %2$s</a></strong>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:450
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:470
|
||||
msgid "The most beginner friendly WordPress contact form plugin."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:475
|
||||
msgid "MonsterInsights"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:476
|
||||
msgid "Effortlessly connect your WP site with Google Analytics."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:481
|
||||
msgid "OptinMonster"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:482
|
||||
msgid "Turn your traffic into leads, conversions and sales."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:487
|
||||
msgid "SeedProd"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types-settings.php:488
|
||||
msgid "Create beautiful coming soon pages, skyrocket your email list."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s - WP.org link; %2$s - same WP.org link.
|
||||
#: includes/class-file-upload-types-settings.php:513
|
||||
msgid "Please rate <strong>File Upload Types</strong> <a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">★★★★★</a> on <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress.org</a> to help us spread the word. Thank you from the File Upload Types team!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-file-upload-types.php:75
|
||||
msgid "File Upload Types Settings"
|
||||
msgstr ""
|
||||
23
spec/fixtures/dynamic_finders/plugin_version/formgimp/change_log/CHANGELOG.md
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/formgimp/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## Change Tags
|
||||
|
||||
- Added for new features.
|
||||
- Changed for changes in existing functionality.
|
||||
- Deprecated for soon-to-be removed features.
|
||||
- Removed for now removed features.
|
||||
- Fixed for any bug fixes.
|
||||
- Security in case of vulnerabilities.
|
||||
|
||||
## 1.0.5 - 2020-02-19
|
||||
### Added
|
||||
- Session initialization
|
||||
- Shortcode to form list/edit views
|
||||
|
||||
### Changed
|
||||
- Admin menu to remove the repeated FormGimp submenu item
|
||||
- Path assignment from get_template_xxx to get_stylesheet_xxx for child theme support
|
||||
155
spec/fixtures/dynamic_finders/plugin_version/gf-hcaptcha/translation_file/languages/gf-hcaptcha.pot
vendored
Normal file
155
spec/fixtures/dynamic_finders/plugin_version/gf-hcaptcha/translation_file/languages/gf-hcaptcha.pot
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
# Copyright (C) 2020 Web & App Easy B.V.
|
||||
# This file is distributed under the same license as the Gravity Forms hCaptcha plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gravity Forms hCaptcha 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gf-hcaptcha\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: 2020-01-20T12:33:40+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: gf-hcaptcha\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Gravity Forms hCaptcha"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A new way to monetize your site traffic with the hCaptcha addon for Gravity Forms."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Web & App Easy B.V."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.webandappeasy.com"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:25
|
||||
msgid "Don't have a account?"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:25
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:25
|
||||
msgid "first on the hCaptcha website."
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:29
|
||||
msgid "Secret key hCaptcha"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:29
|
||||
#: class-hcaptchaaddon.php:60
|
||||
msgid "Please insert your"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:29
|
||||
#: class-hcaptchaaddon.php:60
|
||||
#: includes/hcaptcha-field.php:16
|
||||
msgid "hCaptcha"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:29
|
||||
msgid "secret key here. You can find this in your"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:29
|
||||
#: class-hcaptchaaddon.php:60
|
||||
msgid "dashboard under the tab"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:29
|
||||
msgid "settings"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:30
|
||||
msgid "Secret key"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:58
|
||||
msgid "Theme hCaptcha"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:58
|
||||
msgid "Choose for the light or the dark theme."
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:59
|
||||
msgid "Size hCaptcha"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:59
|
||||
msgid "Choose for the standard or the compact size."
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:60
|
||||
msgid "Site key hCaptcha"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:60
|
||||
msgid "site key here. You can find this in your"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:60
|
||||
msgid "sites"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:61
|
||||
msgid "Mode hCaptcha"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:61
|
||||
msgid "Choose for the visible or the invisible hCaptcha."
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:73
|
||||
msgid "Choose theme"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:78
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:81
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:87
|
||||
msgid "Choose size"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:92
|
||||
msgid "Standard"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:95
|
||||
msgid "Compact"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:108
|
||||
msgid "Site key"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:116
|
||||
msgid "Choose mode"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:121
|
||||
msgid "Visible"
|
||||
msgstr ""
|
||||
|
||||
#: class-hcaptchaaddon.php:124
|
||||
msgid "Invisible"
|
||||
msgstr ""
|
||||
|
||||
#: includes/hcaptcha-field.php:160
|
||||
msgid "The hCaptcha is invalid. Please try again."
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "gosign-multi-position-text-with-quote-block",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.0",
|
||||
"classnames": "^2.2.6"
|
||||
}
|
||||
}
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/heraldbee/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/heraldbee/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
*** Heraldbee Changelog ***
|
||||
2019-11-21 - Version 1.0
|
||||
* Initial version
|
||||
@@ -0,0 +1,150 @@
|
||||
# Copyright (C) 2020 HeroThemes
|
||||
# This file is distributed under the same license as the Heroic Glossary plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Heroic Glossary 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ht-glossary\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: 2020-01-24T15:58:46+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: ht-glossary\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/block.js:51
|
||||
msgid "Heroic Glossary"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://herothemes.com/heroic-glossary"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Glossary plugin for WordPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "HeroThemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.herothemes.com/"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/block.js:57
|
||||
msgid "glossary"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/block.js:57
|
||||
msgid "heroic glossary"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/block.js:57
|
||||
msgid "heroic"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/save.js:57
|
||||
msgid "Search the Glossary..."
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/inspector.js:15
|
||||
msgid "Glossary Settings"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/addEntry.js:194
|
||||
#: src/block/glossary.js:183
|
||||
#: src/block/toolbar.js:27
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/glossary.js:183
|
||||
#: src/block/toolbar.js:27
|
||||
msgid "Add Glossary Item"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/toolbar.js:35
|
||||
msgid "Import sample content"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/glossary.js:182
|
||||
msgid "Click"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/glossary.js:188
|
||||
msgid "to add a new Glossary Item"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/glossary.js:195
|
||||
msgid "Delete Glossary Item?"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/glossary.js:204
|
||||
msgid "Delete Item"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/searchBox.js:12
|
||||
msgid "Search the Glossary"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/addEntry.js:123
|
||||
msgid "Glossary Item Added"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/addEntry.js:134
|
||||
msgid "Glossary Item Updated"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/addEntry.js:146
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/addEntry.js:151
|
||||
msgid "Enter Title here..."
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/addEntry.js:163
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/addEntry.js:164
|
||||
msgid "Enter Description here.."
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/addEntry.js:113
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/addEntry.js:115
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
|
||||
#: dist/blocks.build.js:1
|
||||
#: src/block/addEntry.js:186
|
||||
msgid "Insert and add another"
|
||||
msgstr ""
|
||||
@@ -450,6 +450,14 @@ var shiftnav_data = {"shift_body":"off","shift_body_wrapper":"","lock_body":"on"
|
||||
</script>
|
||||
|
||||
|
||||
<!-- shortpixel-adaptive-images -->
|
||||
<script type='text/javascript'>
|
||||
/* <![CDATA[ */
|
||||
var spai_settings = {"api_url":"https:\/\/cdn.shortpixel.ai\/spai\/w_%WIDTH%+q_lossless+ret_img","method":"src","crop":"","debug":"","site_url":"https:\/\/wp.lab","plugin_url":"https:\/\/wp.lab\/wp-content\/plugins\/shortpixel-adaptive-images","version":"1.7.0","excluded_selectors":[],"eager_selectors":["img.fl-logo-img",".fl-logo-img",".fl-page-header-logo"],"noresize_selectors":[],"excluded_paths":["regex:\/\\\/\\\/([^\\\/]*\\.|)gravatar.com\\\/\/"],"active_integrations":{"nextgen":false,"modula":false,"elementor":false,"elementor-addons":false,"viba-portfolio":false,"envira":false,"everest":false,"wp-bakery":false,"woocommerce":false,"foo":false,"oxygen":false,"slider-revolution":false,"smart-slider":false,"wp-grid-builder":false,"wp-rocket":{"lazyload":false,"css-filter":false,"minify-css":false},"theme":"Beaver Builder Child Theme"},"parse_css_files":"","backgrounds_max_width":"","sep":"+","webp":"1","sniper":"https:\/\/wp.lab\/wp-content\/plugins\/shortpixel-adaptive-images\/img\/target.cur","affected_tags":"{\"link\":1}"};
|
||||
/* ]]> */
|
||||
</script>
|
||||
|
||||
|
||||
<!-- slidedeck3 -->
|
||||
<script type="text/javascript">
|
||||
window.slideDeck2Version = "4.5.2";
|
||||
|
||||
105
spec/fixtures/dynamic_finders/plugin_version/json-post-type/composer_file/package-lock.json
generated
vendored
Normal file
105
spec/fixtures/dynamic_finders/plugin_version/json-post-type/composer_file/package-lock.json
generated
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
{
|
||||
"name": "json-configuration-editor",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
"@sphinxxxx/color-conversion": {
|
||||
"version": "2.2.2",
|
||||
"resolved": "https://registry.npmjs.org/@sphinxxxx/color-conversion/-/color-conversion-2.2.2.tgz",
|
||||
"integrity": "sha512-XExJS3cLqgrmNBIP3bBw6+1oQ1ksGjFh0+oClDKFYpCCqx/hlqwWO5KO/S63fzUo67SxI9dMrF0y5T/Ey7h8Zw=="
|
||||
},
|
||||
"ace-builds": {
|
||||
"version": "1.4.8",
|
||||
"resolved": "https://registry.npmjs.org/ace-builds/-/ace-builds-1.4.8.tgz",
|
||||
"integrity": "sha512-8ZVAxwyCGAxQX8mOp9imSXH0hoSPkGfy8igJy+WO/7axL30saRhKgg1XPACSmxxPA7nfHVwM+ShWXT+vKsNuFg=="
|
||||
},
|
||||
"ajv": {
|
||||
"version": "6.11.0",
|
||||
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.11.0.tgz",
|
||||
"integrity": "sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA==",
|
||||
"requires": {
|
||||
"fast-deep-equal": "^3.1.1",
|
||||
"fast-json-stable-stringify": "^2.0.0",
|
||||
"json-schema-traverse": "^0.4.1",
|
||||
"uri-js": "^4.2.2"
|
||||
}
|
||||
},
|
||||
"fast-deep-equal": {
|
||||
"version": "3.1.1",
|
||||
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz",
|
||||
"integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA=="
|
||||
},
|
||||
"fast-json-stable-stringify": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
||||
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
|
||||
},
|
||||
"javascript-natural-sort": {
|
||||
"version": "0.7.1",
|
||||
"resolved": "https://registry.npmjs.org/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz",
|
||||
"integrity": "sha1-+eIwPUUH9tdDVac2ZNFED7Wg71k="
|
||||
},
|
||||
"jmespath": {
|
||||
"version": "0.15.0",
|
||||
"resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz",
|
||||
"integrity": "sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc="
|
||||
},
|
||||
"json-schema-traverse": {
|
||||
"version": "0.4.1",
|
||||
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
||||
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
|
||||
},
|
||||
"json-source-map": {
|
||||
"version": "0.6.1",
|
||||
"resolved": "https://registry.npmjs.org/json-source-map/-/json-source-map-0.6.1.tgz",
|
||||
"integrity": "sha512-1QoztHPsMQqhDq0hlXY5ZqcEdUzxQEIxgFkKl4WUp2pgShObl+9ovi4kRh2TfvAfxAoHOJ9vIMEqk3k4iex7tg=="
|
||||
},
|
||||
"jsoneditor": {
|
||||
"version": "8.4.1",
|
||||
"resolved": "https://registry.npmjs.org/jsoneditor/-/jsoneditor-8.4.1.tgz",
|
||||
"integrity": "sha512-vjeoXBusXLHpTlUmBw+0r4hRgmn/t8C+6WHy6a9ziF7vAxu8Ohtiu/WQ2JCkn1BgrIl6ERkXIIa+T0H+xDO2mQ==",
|
||||
"requires": {
|
||||
"ace-builds": "^1.4.8",
|
||||
"ajv": "^6.11.0",
|
||||
"javascript-natural-sort": "^0.7.1",
|
||||
"jmespath": "^0.15.0",
|
||||
"json-source-map": "^0.6.1",
|
||||
"mobius1-selectr": "^2.4.13",
|
||||
"picomodal": "^3.0.0",
|
||||
"vanilla-picker": "^2.10.1"
|
||||
}
|
||||
},
|
||||
"mobius1-selectr": {
|
||||
"version": "2.4.13",
|
||||
"resolved": "https://registry.npmjs.org/mobius1-selectr/-/mobius1-selectr-2.4.13.tgz",
|
||||
"integrity": "sha512-Mk9qDrvU44UUL0EBhbAA1phfQZ7aMZPjwtL7wkpiBzGh8dETGqfsh50mWoX9EkjDlkONlErWXArHCKfoxVg0Bw=="
|
||||
},
|
||||
"picomodal": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/picomodal/-/picomodal-3.0.0.tgz",
|
||||
"integrity": "sha1-+s0w9PvzSoCcHgTqUl8ATzmcC4I="
|
||||
},
|
||||
"punycode": {
|
||||
"version": "2.1.1",
|
||||
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
|
||||
"integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
|
||||
},
|
||||
"uri-js": {
|
||||
"version": "4.2.2",
|
||||
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
|
||||
"integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
|
||||
"requires": {
|
||||
"punycode": "^2.1.0"
|
||||
}
|
||||
},
|
||||
"vanilla-picker": {
|
||||
"version": "2.10.1",
|
||||
"resolved": "https://registry.npmjs.org/vanilla-picker/-/vanilla-picker-2.10.1.tgz",
|
||||
"integrity": "sha512-Bo4HOKkSorcQoRB08HwDMb8X2jt3SsZw7gzFlbzXbhnaxdUVJBm3LOUudr7M1SCVwPCo8d3nq8ajiAg8lAoqPg==",
|
||||
"requires": {
|
||||
"@sphinxxxx/color-conversion": "^2.2.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
123
spec/fixtures/dynamic_finders/plugin_version/kl-debug/translation_file/languages/kl_debug.pot
vendored
Normal file
123
spec/fixtures/dynamic_finders/plugin_version/kl-debug/translation_file/languages/kl_debug.pot
vendored
Normal file
@@ -0,0 +1,123 @@
|
||||
# Copyright (C) 2020 Krea'Lab
|
||||
# This file is distributed under the GPL3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: KL Debug 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/kl-debug\n"
|
||||
"POT-Creation-Date: 2020-02-10 09:50:54+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: classes/Admin/Settings.php:26 classes/Admin/Settings.php:28
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Admin/Settings.php:31
|
||||
msgid "Display debug toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Admin/Settings.php:40
|
||||
msgid "Display Whoops panel"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Admin/Settings.php:49
|
||||
msgid "Display debug toolbar for specific user"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Core/Debug.php:28
|
||||
msgid "Global variables"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "KL Debug"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Core/Settings.php:56 views/settings/settings-page.php:3
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/queries-interface.php:19 views/front/toolbar.php:20
|
||||
msgid "Queries"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/queries-interface.php:33
|
||||
msgid "Query #%s"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/request-interface.php:32
|
||||
msgid "Variable %s"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/request-interface.php:38
|
||||
msgid "Empty variable"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/toolbar.php:14
|
||||
msgid "Debug variables"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/toolbar.php:29
|
||||
msgid "User ID"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/toolbar.php:33
|
||||
msgid "Logged in as"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/toolbar.php:37
|
||||
msgid "Role(s)"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/toolbar.php:47
|
||||
msgid "Wordpress version"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/toolbar.php:51
|
||||
msgid "PHP Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/toolbar.php:55
|
||||
msgid "MYSQL Version"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/toolbar.php:59
|
||||
msgid "PHP max execution time"
|
||||
msgstr ""
|
||||
|
||||
#: views/front/toolbar.php:63
|
||||
msgid "PHP memory limit"
|
||||
msgstr ""
|
||||
|
||||
#: views/settings/settings-page.php:6
|
||||
msgid "No Settings available at the moment"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Add a Debug Bar to your Wordpress website to debug and develop your themes, "
|
||||
"plugins, etc..."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Krea'Lab"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.krealab.fr"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,11 @@
|
||||
*** Google Ads for WooCommerce Changelog ***
|
||||
|
||||
2019-07-02 - version 1.0.2
|
||||
* Minor bug fixes.
|
||||
|
||||
2019-04-02 - version 1.0.1
|
||||
* Minor UI improvements.
|
||||
* Minor bug fixes.
|
||||
|
||||
2019-02-20 - version 1.0.0
|
||||
* First release.
|
||||
@@ -0,0 +1,193 @@
|
||||
# Copyright (C) 2020 Kliken
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Google Ads for WooCommerce 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: http://www.sitewit.com/contact/\n"
|
||||
"POT-Creation-Date: 2020-02-18 16:30:32+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: SiteWit <wordpress@sitewit.com>\n"
|
||||
"Language-Team: SiteWit <wordpress@sitewit.com>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=n !=\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"
|
||||
|
||||
#. translators: %s: A hyperlink
|
||||
#: classes/class-helper.php:410
|
||||
msgid ""
|
||||
"<strong>Google Ads for WooCommerce plugin is almost ready.</strong> <a href="
|
||||
"\"%s\">Click here</a> to get started."
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-plugin.php:55
|
||||
msgid "Google Ads for WooCommerce plugin can only be called once"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-plugin.php:122
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-plugin.php:125
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-plugin.php:208
|
||||
msgid "This will dismiss the message permanently. Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-plugin.php:273
|
||||
msgid "Google Ads for WooCommerce requires WooCommerce to be activated"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: Version number of WooCommerce required to run plugin. Do
|
||||
#. not translate.
|
||||
#: classes/class-plugin.php:279
|
||||
msgid "Google Ads for WooCommerce requires WooCommerce version %s or greater"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-rest-misc-controller.php:63
|
||||
#: classes/class-rest-misc-controller.php:91
|
||||
msgid "Invalid Data"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-rest-misc-controller.php:128
|
||||
msgid "Sorry, you cannot list resources."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Google Ads for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-integration.php:47
|
||||
msgid "Account Id"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-integration.php:52
|
||||
msgid "Application Token"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-integration.php:57
|
||||
msgid "Google Verification Token"
|
||||
msgstr ""
|
||||
|
||||
#: classes/class-wc-integration.php:63
|
||||
msgid "What are these options?"
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:15
|
||||
msgid "Launch Google Shopping ads and get your products found online easily."
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:26
|
||||
msgid "Your store is connected."
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:28
|
||||
msgid "Your WooCommerce store is connected to your Kliken account."
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:34
|
||||
msgid "Campaign Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:36
|
||||
msgid "Open your dashboard to review your campaign's performance"
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:41
|
||||
msgid "Create a New Google Shopping Campaign"
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:43
|
||||
msgid ""
|
||||
"Build a campaign in a few minutes, and sell to customers as they search for "
|
||||
"your products on Google."
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:48
|
||||
msgid "Manage Campaigns"
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:50
|
||||
msgid ""
|
||||
"Make changes to your active campaigns, purchase one you built, or reinstate "
|
||||
"your cancelled campaigns."
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:56
|
||||
msgid "Advanced Options"
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:67
|
||||
msgid "Enable Edit"
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:68
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: pages/dashboard.php:72
|
||||
msgid "Authorize API Access"
|
||||
msgstr ""
|
||||
|
||||
#: pages/getstarted.php:30
|
||||
msgid "Launch Google Shopping Ads and get your products found online easily."
|
||||
msgstr ""
|
||||
|
||||
#: pages/getstarted.php:41
|
||||
msgid "Increase sales and revenue with Google Shopping Ads"
|
||||
msgstr ""
|
||||
|
||||
#: pages/getstarted.php:43
|
||||
msgid "Use this WooCommerce and Google Ads integration to:"
|
||||
msgstr ""
|
||||
|
||||
#: pages/getstarted.php:45
|
||||
msgid "Find more customers on Google"
|
||||
msgstr ""
|
||||
|
||||
#: pages/getstarted.php:46
|
||||
msgid "Automate bidding to maximize sales for your marketing budget"
|
||||
msgstr ""
|
||||
|
||||
#: pages/getstarted.php:47
|
||||
msgid "Keep your marketing and store in sync"
|
||||
msgstr ""
|
||||
|
||||
#: pages/getstarted.php:48
|
||||
msgid "Create perfect shopping campaigns in minutes"
|
||||
msgstr ""
|
||||
|
||||
#: pages/getstarted.php:51
|
||||
msgid "Get Started"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://woo.kliken.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"The automated Google Shopping solution to get your products found on Google, "
|
||||
"and grow your WooCommerce Store!"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Kliken"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://kliken.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,8 @@
|
||||
# Changelog
|
||||
|
||||
## 1.0.1 - 06/02/2020
|
||||
* Updates the POT file.
|
||||
* Improves the source code files to match the latest WordPress coding standards.
|
||||
|
||||
## 1.0.0 - 24/01/2020
|
||||
* First version.
|
||||
@@ -0,0 +1,278 @@
|
||||
# Copyright (C) 2020 Tree Star Marketing LLC
|
||||
# This file is distributed under the GPL2.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Module for Gravity Forms in Divi Builder 1.00\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/module-for-"
|
||||
"gravity-forms-in-divi-builder\n"
|
||||
"POT-Creation-Date: 2020-01-22 00:09:02+00:00\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\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-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
|
||||
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
|
||||
"esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:15
|
||||
msgid "Gravity Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:21
|
||||
msgid "Admin Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:26
|
||||
msgid "Form ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:31
|
||||
msgid "Select the gravity form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:35
|
||||
msgid "Show Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:38
|
||||
#: includes/modules/GravityForm/GravityForm.php:50
|
||||
#: includes/modules/GravityForm/GravityForm.php:62
|
||||
msgid "Off"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:39
|
||||
#: includes/modules/GravityForm/GravityForm.php:51
|
||||
#: includes/modules/GravityForm/GravityForm.php:63
|
||||
msgid "On"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:43
|
||||
msgid "Select `Yes` to show title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:47
|
||||
msgid "Show Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:55
|
||||
msgid "Select `Yes` to show description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:59
|
||||
msgid "Enable Ajax"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:67
|
||||
msgid "Select `Yes` to submit form via ajax"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:71
|
||||
msgid "Tab Index"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:80
|
||||
msgid "Specify the starting tab index for the fields of this form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:86
|
||||
msgid "Field Values"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:90
|
||||
msgid ""
|
||||
"Specify the default field values. Example: field_values=’check=First Choice,"
|
||||
"Second Choice’."
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:573
|
||||
#: includes/modules/GravityForm/GravityForm.php:668
|
||||
msgid "Form Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:577
|
||||
#: includes/modules/GravityForm/GravityForm.php:669
|
||||
msgid "Form Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:581
|
||||
#: includes/modules/GravityForm/GravityForm.php:671
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:585
|
||||
#: includes/modules/GravityForm/GravityForm.php:672
|
||||
msgid "Sub Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:589
|
||||
#: includes/modules/GravityForm/GravityForm.php:673
|
||||
msgid "Field Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:593
|
||||
msgid "Text Field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:597
|
||||
msgid "Textarea Field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:601
|
||||
msgid "Select Field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:605
|
||||
msgid "Checkbox/Radio Field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:609
|
||||
msgid "Checkbox Radio Options Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:613
|
||||
msgid "Consent Checkbox Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:617
|
||||
#: includes/modules/GravityForm/GravityForm.php:684
|
||||
msgid "Consent Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:621
|
||||
#: includes/modules/GravityForm/GravityForm.php:685
|
||||
msgid "Validation Error Heading"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:625
|
||||
msgid "Field Validation Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:629
|
||||
msgid "Next Button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:633
|
||||
msgid "Previous Button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:637
|
||||
msgid "Submit Button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:641
|
||||
msgid "Submitted Form Confirmation Wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:645
|
||||
msgid "Submitted Form Confirmation Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:649
|
||||
#: includes/modules/GravityForm/GravityForm.php:688
|
||||
msgid "Progress Bar Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:653
|
||||
msgid "Progress Bar Percentage"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:663
|
||||
msgid "Shortcode Parameters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:670
|
||||
msgid "Field Wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:674
|
||||
msgid "Input Wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:675
|
||||
msgid "Input General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:676
|
||||
msgid "Text/Textarea"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:677
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:678
|
||||
msgid "Checkbox/Radio"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:679
|
||||
msgid "Input Placeholder Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:680
|
||||
msgid "Section Field Wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:681
|
||||
msgid "Section Field Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:682
|
||||
msgid "Section Field Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:683
|
||||
msgid "Consent Checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:686
|
||||
msgid "Field Validation Error"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:687
|
||||
msgid "Footer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:689
|
||||
msgid "Progress Bar"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:690
|
||||
msgid "Validation Error Field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:691
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/modules/GravityForm/GravityForm.php:692
|
||||
msgid "Confirmation Message"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Module for Gravity Forms in Divi Builder"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Module for Gravity Forms in Divi Builder allows you to use and style Gravity "
|
||||
"Forms in the Divi Visual Builder."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Tree Star Marketing LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://treestarmarketing.com/"
|
||||
msgstr ""
|
||||
760
spec/fixtures/dynamic_finders/plugin_version/mon-laboratoire/change_log/changelog.txt
vendored
Normal file
760
spec/fixtures/dynamic_finders/plugin_version/mon-laboratoire/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,760 @@
|
||||
Voici un fichier avec les TODO et les changelog complets.
|
||||
|
||||
== TODO ==
|
||||
|
||||
* EVOL : Renforcer l'obfuscation des emails https://www.olybop.fr/comment-proteger-et-afficher-son-email-et-telephone-sur-son-site-internet/
|
||||
* EVOL: (suggestion utilisateur) traiter les requêtes https://hal.archives-ouvertes.fr/IRT-SYSTEMX/search/?qa[localReference_t][]=SVA
|
||||
==> Demande en cours à haltools pour utiliser leur interface en ce sens
|
||||
* ÉVOL: (suggestion utilisateur) Proposer l'option de traduire automatiquement la page en fonction de la langue de l'utilisateur
|
||||
* NLLE FONC: Ajoute l'affichage des champs personnalisés (dans [perso_panel], [member/alunmi_list] et dans [member/alumni_table] en tant que nouvelle colonne si ce n'est pas vide)
|
||||
* ÉVOL: (suggestion utilisateur) pouvoir faire [publications_list publication_type="xxxx"] pour HAL
|
||||
* ÉVOL: (suggestion utilisateur) Pas de possibilité d'avoir une page perso en français et en anglais
|
||||
* ÉVOL: (suggestion utilisateur) Pas de lien vers les pages des thématiques dans le team_panel
|
||||
* ÉVOL: (suggestion utilisateur) Obligé de mettre <br /> pour avoir deux numéros de téléphones dans la structure => Interpréter les sauts de ligne et mettre champs comme adresse
|
||||
* ÉVOL: (demande utilisateur) Pouvoir rajouter plusieurs tuteurs extérieurs au laboratoire (champs Prénom, nom, email).
|
||||
* ÉVOL: Ajout d'un bouton créer la page d'un utilisateur
|
||||
* ÉVOL: Rendre universel le uid_ENT_parisdescartes limité à Descartes.
|
||||
* NLLE FONC: Permettre de changer la taille des images des personnels => 1h30
|
||||
* ÉVOL: Publier sur git WordPress (supprimer les codes de migration entre vielles versions)
|
||||
* TEST: Tester en multisite WordPress (en cours)
|
||||
* VEILLE TECHNO: Regarder les fonctionnalités et usages intéressants des plugins techpress, Ultimatemember et labtools
|
||||
* ÉVOL: Exporte et importe les personnels, équipes et structure.
|
||||
* BUG: Interdire personnel dans aucune équipe
|
||||
* BUG (minueur) : Retour de ligne excessif au niveau du logo du PDF d'une publication de HAL au format hal (pas présent au format apa et ieee)
|
||||
* ÉVOL: Forcer la migration sans passer par une page configuration.
|
||||
* ÉVOL: Pouvoir avec HAL faire des requêtes avec des idHal et des struct en même temps (ou consécutivement et fusionnées)
|
||||
* ÉVOL: Ajouter l'option unit à [teams_list]
|
||||
* ÉVOL: Ajout des dispositions légales: https://annuaire.cnrs.fr/l3c/owa/annuaire.recherche/index.html
|
||||
* ÉVOL: introduire _unit_of_curent_page
|
||||
* BUG: Timeout durant le traitement de retour HAL trop gros: https://haltools.archives-ouvertes.fr/Public/afficheRequetePubli.php?annee_publideb=2015&annee_publifin=2015&tri_exp=typdoc&tri_exp2=annee_publi&tri_exp3=auteur_exp&CB_ref_biblio=oui&ordre_aff=TA&Fen=Aff&langue=Francais [custom_publications_list equipe=46 annee=2015] qui renvoie un fichier de 4,6Mo
|
||||
* ÉVOL: Améliorer team_panel
|
||||
* ÉVOL: Adapter l'interface de MonLabo à gérer plus d'utilisateurs
|
||||
* ÉVOL: Suggestion: interface avec Reseda
|
||||
* ÉVOL: Créer page d'équipe à la création de l'équipe
|
||||
* ÉVOL: Ajout d'un mode debug
|
||||
* BUG: si Team groups enable est non défini, les champs de nom des groupes apparaissent.
|
||||
* CODE: Pour publication sur WordPress.org (https://codex.wordpress.org/Writing_a_Plugin)
|
||||
* Gérer l'accès à la BD de façon standard: https://codex.wordpress.org/Creating_Tables_with_Plugins
|
||||
* DONE: Add Database Table Prefix
|
||||
* Use dbDelta for Creating or Updating the Table
|
||||
* DONE: éviter $wpdb->query (sinon rajouter $wpdb->prepare), préférer $wpdb->insert
|
||||
* DONE: Add db version Option
|
||||
* DONE: register_activation_hook( __FILE__, 'jal_install' );
|
||||
* DONE: add_action( 'plugins_loaded', 'myplugin_update_db_check' );
|
||||
* https://codex.wordpress.org/Creating_Tables_with_Plugins
|
||||
* Utiliser les codings standards https://make.wordpress.org/core/handbook/best-practices/coding-standards/
|
||||
* php : reste doc: https://make.wordpress.org/core/handbook/best-practices/inline-documentation-standards/php/
|
||||
* https://make.wordpress.org/core/handbook/best-practices/inline-documentation-standards/php/
|
||||
* DONE: JS
|
||||
* DONE: css
|
||||
* DONE: HTML
|
||||
* installer JSHINT https://make.wordpress.org/core/handbook/best-practices/coding-standards/javascript/#jshint
|
||||
* Plugins should follow the Accessibility Handbook https://make.wordpress.org/accessibility/handbook/
|
||||
* https://make.wordpress.org/core/handbook/best-practices/coding-standards/accessibility-coding-standards/
|
||||
* test avec PHP 5.2.3
|
||||
* DONE : Vérifier chaque data in ou out https://codex.wordpress.org/Data_Validation
|
||||
* sécuriser \$_(POST|GET|REQUEST) sanitize, validate, and escape all POST/GET/REQUEST
|
||||
* Using stripslashes or strip_tags is rarely enough. The ultimate goal is that invalid and unsafe data is never processed, saved, or displayed. Clean everything, check everything, escape everything, and never trust the users to always have input sane data.
|
||||
* Nonces #Nonces All actions that accept POST data should be secured with a nonce to prevent unauthorized access.
|
||||
* https://codex.wordpress.org/WordPress_Nonces
|
||||
* Change le nom de MonLabo, c'est une marque déposée en 2018! EasyLabo / Monlabb /MyEasyLab
|
||||
* Plugin Handbook : https://developer.wordpress.org/plugins/
|
||||
|
||||
Remember, check_admin_referer alone is not bulletproof security. Do not rely on nonces for authorization purposes. Use current_user_can() in order to prevent users without the right permissions from accessing things.
|
||||
* CODE: Se séparer des fonctions dépendantes des extensions php-mbstring et php-curl.
|
||||
|
||||
|
||||
== TODO abandonnés ==
|
||||
|
||||
* ÉVOL: (suggestion utilisateur) Mettre en gras la partie interne des numéros perso (+33 (0)2 32 95 <strong>36 90</strong>)
|
||||
==> C'est très moche
|
||||
* ÉVOL: Quand on modifie un profil, ne pas retomber sur nouvel utilisateur
|
||||
==> Semble compliqué pour un apport faible
|
||||
* ÉVOL: Créer les pages des utilisateurs par défaut
|
||||
==> Cela va mettre du désordre dans un site qui ne fait qu'essayer le plugin
|
||||
* ÉVOL: A l'initialisation créer la page mère plus les pages des membres pour l'exemple
|
||||
==> Cela va mettre du désordre dans un site qui ne fait qu'essayer le plugin
|
||||
* ÉVOL: (suggestion utilisateur) Possibilité d'avoir la [members_table] par équipe plutôt que par statuts.
|
||||
==> Complique pas mal le code pour une fonctionnalité qui est faisable "à la main" exemple:
|
||||
<h1>team1</h1>[members_table team="1"] <h2>team1</h2>[members_table team="2"]
|
||||
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 3.0 =
|
||||
(GIT tag v3.0)
|
||||
* EVOL : The plugin is changing its name from "MonLabo" to "Mon Laboratoire"
|
||||
* EVOL : The plugin is now in WordPress plugin repository
|
||||
* EVOL : Remove backward compatibility for following obsolete shortcodes :
|
||||
- [members_list_automatic], [get_members_list]
|
||||
- [custom_publications_list], [publications_automatic]
|
||||
- [perso_panel_automatic]
|
||||
- [alumni]
|
||||
* CODE : Suppress dead codes.
|
||||
|
||||
= 2.8.1 =
|
||||
(GIT tag v2.8.1)
|
||||
* BUG: Dans certains cas, quand la base est mal initialisée, génère une erreur PHP.
|
||||
|
||||
= 2.8 =
|
||||
(GIT tag v2.8)
|
||||
|
||||
* NLLE FONC: Affichage "responsive" (adapté sur téléphone) de [perso_panel], [members_list], [members_table], [alumni_list], [alumni_table]
|
||||
* NLLE FONC: Permet d'utiliser sur le même site HAL sur certaines pages et Descartes Publi sur d'autres.
|
||||
* DEV / SECURITE : Réecriture / reprise profonde d'une partie importante du code en vue de la publication sur le dépot WordPress
|
||||
* CODE: Applique les codings standards PHP,JS, CSS et HTML de WordPress : https://make.wordpress.org/core/handbook/best-practices/coding-standards/
|
||||
* SQL: Add Database Table Prefix
|
||||
* CODE: Renforce la sécurité des accès à la BDD par deux action :
|
||||
* 1) obliger à fournir le format de données à toute action modificatrice de la bases
|
||||
* 2) écriture de fonction plus directe d'accès à la base
|
||||
* CODE : Remplace l'utilisation des fonctions du paquet php_cul par wp_remote_get()
|
||||
* BUG-POTENTIEL: Redéfinit les conditions d'initialisation des tables et des options
|
||||
* CODE: Sanitize shorcode parameters and $_(POST|GET) datas
|
||||
|
||||
Évolutions mineures ou peu visibles :
|
||||
|
||||
* NLLE FONC: Permet de personnaliser d'autres titres (Membres, Direction).
|
||||
* BUG: [almni_table], Quand l'année de départ n'était pas fournie, affichage parfois maladroit.
|
||||
* BUG: [members_list team="X"] pouvait indiquer un team leader erroné si une personne était team leader de deux équipes
|
||||
* BUG: [publications_list lang="xx'] : La langue des publications n'était pas toujours respectée
|
||||
* BUG: Supprime des warnings dans l'interface de création des équipes
|
||||
* DEV: Crée un script de distribution d'archive du plugin
|
||||
* DEV: Reformate readme.txt en Markdown
|
||||
|
||||
= 2.7 =
|
||||
(GIT tag v2.7)
|
||||
|
||||
* NLLE FONC: Ajoute la fonctionnalité optionnelle "Personnaliser les textes dans les shortcodes".
|
||||
Permet de personnaliser nombre de textes dont les catégories de personnes, les titres...
|
||||
* NLLE FONC: [team_panel] : Ajoute l'option "team" à ce shortcode.
|
||||
* EVOL/BUG : [members_chart], [members_table], [alumi_chart] et [alumni_table] :
|
||||
Ne plus faire de lien vers la page perso d'un membre alumni (seulement un lien vers son site exterieur s'il existe)
|
||||
Les listes de personnes fonctionnent déjà comme cela.
|
||||
* EVOL: [members_list] : Suppression du titre lorsque l'option uniquelist="YES" est activée. C'est plus logique car il est difficile d'imaginer l'usage.
|
||||
* BUG/EVOL: Arrête le support du plugin Polylang, utilisé dans un seul cas (le lien vers la page d'une équipe), bugué et non maintenu dans MonLabo.
|
||||
* EVOL: [almni_table], affiche l'ancienne fonction plutôt que l'ancienne catégorie. C'est plus précis et plus logique.
|
||||
|
||||
Évolutions mineures ou peu visibles :
|
||||
|
||||
* BUG: Parfois décalages involontaires de textes suite à l'affichage d'une liste de personnes.
|
||||
* BUG: Sur certaines installations, des liens entre pages sont invalides. Passage de liens relatifs à des liens absolus.
|
||||
* BUG: [team_panel] : Les noms des leaders faisaient apparaître du code HTML.
|
||||
* BUG: Supprime quelques warning php sur des nouvelles installations
|
||||
* BUG/EVOL: [members_list] et [alumni_list] n'affichent plus de puce par défaut devant chaque personne.
|
||||
|
||||
= 2.6 =
|
||||
(GIT tag v2.6)
|
||||
|
||||
* NLLE FONC: Permettre de limiter le nombre de publications affichées (ajout des options "limit" et "offset" au shortcode [publications_list])
|
||||
* NLLE FONC: Ajoute l'option "person" au shortcode [perso_panel]
|
||||
|
||||
Évolutions mineures ou peu visibles :
|
||||
|
||||
* BUG: Édition de personnels: Il était possible de rentrer des fonctions vides ce qui empêchait le formulaire d'être validé.
|
||||
* EVOL: Perso panel : le bouton "View my site" est renommé en "Personal website" (meilleure traduction)
|
||||
|
||||
|
||||
= 2.5.1 =
|
||||
(GIT tag v2.5)
|
||||
|
||||
* BUG: Le changement de catégorie d'une personne ne fonctionnait plus dans certaines conditions
|
||||
* BUG: Les nouvelles options avec des majuscules de [publications_list] n'étaient pas reconnues.
|
||||
* BUG: Le bouton 'Édite cette personne' ne fonctionnait plus
|
||||
* BUG: Correction de nombreuses erreurs HTML qui, sur certains navigateurs, pouvaient créer des soucis d'affichage
|
||||
* BUG: Un panneau personnel comportant un bouton "voir mon site" était affiché avec trop d'espace vertical.
|
||||
|
||||
Évolutions mineures ou peu visibles :
|
||||
|
||||
* ÉVOL: Édition de personnels: Cacher "date de départ de l'unité"" si la personne est au statut "actif"
|
||||
* BUG: Quand on désactive la fonctionnalité "Personnels et équipes" :
|
||||
* la configuration des serveurs de publication n'étaient plus accessible
|
||||
* warning inutile "Veuillez renseigner une page de rattachement des pages personnelles" en interface privée
|
||||
* désactivation non nécessaire du bouton d'aide [publications_list] dans la Documentation
|
||||
* BUG: Régression de la fonctionnalité champs personnalisés qui ne pouvaient plus être configurés
|
||||
|
||||
|
||||
|
||||
= 2.4 =
|
||||
(GIT tag v2.4)
|
||||
|
||||
* Shortcodes:
|
||||
* ÉVOL: [custom_publications_list] est devenu obsolète (Incorporation de ses paramètres dans [publications_list])
|
||||
Nouveaux paramètres dans [publications_list] : hal_struct, Hal_idHal, Descartes_alias, Descartes_auteurid,
|
||||
Descartes_unite, Descartes_equipe, Descartes_typePub, Descartes_nohighlight, Descartes_orga_types,
|
||||
escartes_format, Descartes_debug
|
||||
* ÉVOL: Ajout pour [alumni_list], [alumni_table] et [alumni_chart] du paramètre years
|
||||
* BUG: Les personnes marquées comme non visibles apparaissaient quand même dans certains tableaux ou organigrammes.
|
||||
* Édition de personnels:
|
||||
* ÉVOL: Ajout de pouvoir choisir ses étudiants directement la page d'édition d'une personne (plutôt que de devoir la désigner mentor dans la page de l'étudiant)
|
||||
* ÉVOL: Possibilité d'éditer l'adresse de la page d'une personne (il faut aussi fournir alors l'adresse de l'image)
|
||||
* BUG: Quand il n'y a pas d'unité multiple, il était impossible de désigner un directeur en passant par la page d'édition de membre
|
||||
* BUG: Permettre d'afficher la bonne édition d'une personne ou structure y compris si l'on recharge la page.
|
||||
|
||||
Évolutions mineures ou peu visibles :
|
||||
|
||||
* Shortcodes:
|
||||
* BUG: Les publications d'une structure principale étaient montrées comme vides (serveur Descartes Publi)
|
||||
* Apparence:
|
||||
* BUG: Parfois les panneaux personnels ou les listes d'utilisateurs avaient des textes non alignés verticalement
|
||||
* CODE: Simplifie code en supprimant le paramètre d'affichage fond_en_surveillance
|
||||
|
||||
|
||||
= 2.3 =
|
||||
(GIT tag v2.3)
|
||||
|
||||
* Options:
|
||||
* ÉVOL: Les thématiques sont désormais des groupe d'équipe au nom redéfinissable.
|
||||
Le nom est par défaut "Thématique" mais peut être changé en "Axe", "projet", "groupe de recherche" ou tout autre.
|
||||
* ÉVOL: Simplifier le choix des serveurs de publication et les menus en n'autorisant pas les bases HAL et DESCARTES en même temps
|
||||
* ÉVOL: Supprime l'option peu utilisée "Activer les fonctions avancées"
|
||||
|
||||
Evolutions mineures ou peu visibles :
|
||||
|
||||
* Édition de personnels:
|
||||
* NLLE FONC: Ajout d'un raccourci dans la barre d'admin pour accéder à la page d'édition du personnel, de l'équipe ou de l'unité à laquelle appartient cette page.
|
||||
* Shortcodes:
|
||||
* BUG: Une liste de publication où l'on précise title="" n'avait pas toujours le titre vide.
|
||||
* NLLE FONC: Ajout de l'option "lang" au shortcode [publications_list]
|
||||
* Documentation:* ÉVOL: (suggestion utilisateur) Possibilité d'avoir la [members_table] par équipe plutôt que par statuts.
|
||||
|
||||
* ÉVOL: Transfert du site du plugin vers http://monlabo.org
|
||||
|
||||
|
||||
= 2.2 =
|
||||
(GIT tag v2.2)
|
||||
|
||||
* Apparence:
|
||||
* ÉVOL: La couleur des liens est centralisée dans une option dans l'onglet "Apparence"
|
||||
* Options:
|
||||
* ÉVOL: Ajout d'une option pour "Activer les fonctions et outils avancés"
|
||||
* BUG: Quand on désactivait certaines options, elle se réactivaient toute seules
|
||||
* Édition de personnels:
|
||||
* ÉVOL: Lier catégorie et fonction pour plus de clarté (la liste de fonction dépend désormais de la catégorie)
|
||||
* BUG: Signaler quand on ne peut pas rajouter une image à une personne car elle n'a pas de page WordPress
|
||||
* EVOL/BUG: Trie l'ordre des pages WordPress et les membres.
|
||||
* NLLE FONC : Ajout d'un onglet "outils avancés" : Bouton pour créer les pages manquantes des utilisateurs
|
||||
*
|
||||
Evolutions mineures ou peu visibles :
|
||||
|
||||
* CODE: Rend le code plus robuste en utilisant des comparaisons plus strictes ("===" au lieu de "==")
|
||||
* BUG: Pour les grosses migrations de plusieurs version à la fois: Possibilité de perdre certaines versions intermédiaires
|
||||
|
||||
|
||||
= 2.1 =
|
||||
(GIT tag v2.1)
|
||||
|
||||
* Shortcodes:
|
||||
* NLLE FONC: ajout du shortcode [alumni_chart]
|
||||
* NLLE FONC: Affichage des couleurs des équipes ([members_chart], [members_table] et [team_panel])
|
||||
* ÉVOL: Quand une structure n'a pas rempli d'identifiant HAL, MonLabo utilisera les idHal de chaque membre de la structure.
|
||||
* Remise en forme de l'interface d'administration:
|
||||
* NLLE FONC: Possibilité de changer l'image d'une personne directement dans l'interface d'édition des personnels
|
||||
* NLLE FONC: Possibilité d'ajouter les photos des personnes dès la création de la personne
|
||||
* ÉVOL: Utilisation du menu media pour le choix d'images ou logo plutôt que d'entrer l'URL de l'image à la main
|
||||
* ÉVOL: Aide réorganisée
|
||||
* ÉVOL: La page de rattachement des pages personnelles se règle plus facilement et est signalée quand non configurée.
|
||||
* ÉVOL: Cache par défaut les champs d'édition des fonctions d'une personne dans l'interface d'édition des personnels
|
||||
|
||||
Evolutions mineures ou peu visibles :
|
||||
|
||||
* Allègement du plugin :
|
||||
* CODE: Suppression des Glyphicons
|
||||
* CODE: Recompression des images d'aide
|
||||
* CODE: Supprime Boostrap modals et utilise à la place les thickbox WordPress
|
||||
* Édition de personnels :
|
||||
* BUG: Un directeur d'unité n'avait pas toujours la case cochée "(co)directeur ou (co)directrice de l'unité"
|
||||
* BUG: Une apostrophe dans un nom était affichée précédée d'un slash
|
||||
* BUG: Les majuscules accentuées produites dans les shortcodes n'étaient pas toujours correctes.
|
||||
|
||||
|
||||
= 2.0 =
|
||||
(GIT tag v2.0)
|
||||
|
||||
Révision profonde des shortcodes de publication:
|
||||
|
||||
* ÉVOL: Le shortcode [custom_publications_list] peut désormais utiliser des publications issues de HAL
|
||||
* ÉVOL: nouvelles options persons, teams et units pour le shortcode [publications_list]
|
||||
* ÉVOL: nom des paramètres des shortcodes :
|
||||
* deviennent en anglais par défaut (les anciens noms français restent valides)
|
||||
* deviennent insensibles au changement de case (minuscule ou majuscules)
|
||||
* BUG: Ajout de robustesse à des valeurs invalides dans le traitement des publications extraites de HAL
|
||||
et résolution de quelques bugs d'interprétation de fichiers bibtex
|
||||
|
||||
Distinction entre les unités et la structure principale:* ÉVOL: (suggestion utilisateur) Possibilité d'avoir la [members_table] par équipe plutôt que par statuts.
|
||||
|
||||
|
||||
* ÉVOL: Des pages WordPress peuvent désormais être attribuées aux unités et thématiques (seulement les personnes et équipes auparavant)
|
||||
* ÉVOL: Les unités peuvent avoir des coordonnées alternatives pour éventuellement différer de celles de la structure principale
|
||||
|
||||
Evolutions mineures ou peu visibles :
|
||||
|
||||
* ÉVOL: L'option "MonLabo_fax_ou_contact" est renommée en "MonLabo_contact"
|
||||
* BUG: Passe certains champs de la base de donnée en UTF8 pour éviter des bugs en cas de caractères complexes.
|
||||
* BUG: Lorsque demandés, les alumni n'étaient pas correctement affichés dans [members_table]
|
||||
* CODE: Amélioration interne du code:
|
||||
* Réecriture profonde du code gérant les shortcodes de publication
|
||||
* Conversion en classe de tous les Shortcodes (permet un code coverage plus précis)
|
||||
* Séparation des webservices pour faciliter les tests unitaires
|
||||
* Plus que doublement du nombre de tests unitaires (>4000 aujourd'hui).
|
||||
* ÉVOL: Publications depuis HAL au format APA et IEEE :
|
||||
* Ajout de la prise en charge des publications de type @proceedings et @patents
|
||||
* Utiliser le champs URL pour faire les liens plutôt que de le reconstruire à partir de HAL_ID
|
||||
* Ajustement des titres des types de publications pour se rapprocher des pages web générées par HAL
|
||||
* BUG/CODE: Résout un problème d'accès dans certains chemins : Corrige une mauvaise utilisation de plugins_url(), remplacement de dirname(__FILE__ ) par __DIR__
|
||||
|
||||
|
||||
= 1.5 =
|
||||
(GIT tag v1.5)
|
||||
|
||||
* ÉVOL: Fonction de recensement des utilisateurs du plugin
|
||||
|
||||
Mineur:
|
||||
|
||||
* BUG: Les valeurs par défaut des options n'étaient pas toujours prises en compte quand la valeur n'existait pas.
|
||||
* BUG: Une activation du plugin générait un warning à cause d'un saut de ligne affiché.
|
||||
* DOC: Ajout du lien du site et des logos des tutelles des auteurs.
|
||||
* ÉVOL: dans [alumni_list] le paramètre "categories" devient facultatif
|
||||
|
||||
|
||||
= 1.6 =
|
||||
(GIT tag v1.6)
|
||||
|
||||
* ÉVOL: Unification des options des shortcodes [member_list], [member_table], [member_chart], [alumni_list] et [alumni_table]
|
||||
qui sont désormais tous dotés des options "categories", "unit" et "team" (de plus à choix multiple).
|
||||
* ÉVOL: Désormais une "structure principale" rassemble les unités et permet d'y attribuer des directeurs/directrices
|
||||
et est paramétrable dans un nouvel onglet remplaçant "coordonnées"
|
||||
* ÉVOL: La catégorie de personnel "Direction" est supprimée. L'ajout d'un directeur à une unité suffit.
|
||||
|
||||
Mineur:
|
||||
|
||||
* CODE: Crée une classe MonLabo_persons et réecrit et refactorise le code de MonLabo_shortcode.php
|
||||
* BUG: [alumni_table] n'affichait ni le statut ni la date de départ
|
||||
* BUG: Formulaire d'édition des équipes : Le changement d'unité d'une équipe ne fonctionnait pas.
|
||||
* ÉVOL: Met en gras les chefs d'équipe dans les organigrammes [member_chart]
|
||||
* BUG: Dans le formulaire d'édition de personnel, l'indication du champs "Numéro d'auteur Descartes Publi" n'apparaissait pas.
|
||||
* ÉVOL: Quelques formulations de texte plus explicites
|
||||
* BUG: Supprime quelques warnings apparus lors de Tests et quelques balises html non fermées ou en trop.
|
||||
* BUG: Les personnels sous forme de liste ou tableau n'étaient pas toujours dans l'ordre alphabétique
|
||||
|
||||
|
||||
= 1.4 =
|
||||
(SVN r.643 et GIT tag v1.4)
|
||||
|
||||
* NLLE FONC: Ajout du shortcode team_panel
|
||||
* ÉVOL: person_panel affiche désormais les Informations relatives aux tuteurs et étudiants
|
||||
|
||||
Mineur:
|
||||
|
||||
* ÉVOL: idHAL permet désormais de mettre plusieur id séparés par des virgules.
|
||||
* BUG : Corrige le mauvais affichage de perso_panel dans une langue autre que par défaut
|
||||
* DEV : - Transfert de SVN vers git https://sourcesup.renater.fr
|
||||
- Déplacement des tests unitaires dans un repo séparé MonLabo_tests
|
||||
|
||||
|
||||
= 1.3 =
|
||||
(SVN r.634 )
|
||||
|
||||
* BUG : Résolution de bugs :
|
||||
* Impossible de modifier l'unité à laquelle apartient une équipe
|
||||
* Impossible d'avoir des équipes sans page WordPress
|
||||
* ÉVOL: Amélioration de la vue en tableaux dans l'interface privée
|
||||
* NLLE FONC : Ajout de logos et ID descartes publi pour les unités
|
||||
|
||||
|
||||
= 1.2 =
|
||||
(SVN r.631)
|
||||
|
||||
Majeur:
|
||||
|
||||
* NLLE FONC: L'extraction des publications de HAL fonctionne en production et est une option séparée
|
||||
* NLLE FONC: L'interface d'administration est désormais multilingue
|
||||
|
||||
Mineur:
|
||||
|
||||
* CODE: Réduction de 30% de la taille du code de MonLabo_access_data.php
|
||||
* ÉVOL: Dans la page édition de membre: Ajouter comme choix (par défaut) de page WordPress "Pas de page".
|
||||
* BUG : Résolution de bugs :
|
||||
* compatibilité avec la version 5.2 de PHP,
|
||||
* formulaires qui ne permettait pas de vider les listes de sélection
|
||||
* les champs de formulaires publication étaient effacés si le serveur ParisDescartes était désactivé
|
||||
* les valeurs des options binaires étaient parfois ignorées. Uniformisation de leurs valeurs ("0" ou "1")
|
||||
* erreurs à l'activation sur une base vide
|
||||
|
||||
|
||||
= 1.1 =
|
||||
(SVN r.601)
|
||||
|
||||
Majeur:
|
||||
|
||||
* NLLE FONC: Ajout de la possibilité d'extraire les publications de HAL
|
||||
* NLLE FONC: Ajout d'une vue des sous forme de tableau dans l'interface admin
|
||||
|
||||
Mineur:
|
||||
|
||||
* ÉVOL: Amélioration cosmétique des formulaire d'édition de personnels, équipes...
|
||||
* CODE: Compatibilité avec la version PHP 5.2
|
||||
|
||||
|
||||
= 1.0 =
|
||||
(SVN r.590)
|
||||
|
||||
* EVOL / CODE: Réécriture de la base de donnée et de toutes les couches basses
|
||||
d'accès à cette base. Abandon des migrations antérieures à 0.93.
|
||||
Réorganisation profonde d'une partie importante du code. Ajout de
|
||||
nombreux tests unitaires.
|
||||
|
||||
|
||||
= 0.93 =
|
||||
(SVN r.469)
|
||||
|
||||
* ÉVOL: Ajout de l'option d'affichage des publications
|
||||
|
||||
|
||||
= 0.92 =
|
||||
|
||||
* CODE: Remplace tous les echo par des retour de variable (plus propres) dans inc-lib-forms.php et MonLabo_edit_members.php.
|
||||
* BUG: Corrections d'effets de bord dans les formulaires d'édition de membres, équipes...
|
||||
* BUG: Le formulaire d'édition des équipes ne se mettait plus à jour quand on sélectionnait une équipe.
|
||||
* ÉVOL: Formulaire d'édition de membres: Séparer l'affichage des membres entre actif et alumni dans les sélecteurs
|
||||
* BUG: Repair [alumni_list] shortcode
|
||||
* CODE: Refactoring de nombreuses fonctions
|
||||
|
||||
|
||||
= 0.91 =
|
||||
|
||||
* CODE: Corriger orthographe pannel => panel
|
||||
* ÉVOL: Ajout d'un champs color dans la table des équipes
|
||||
* ÉVOL: Ajout d'une classe correspondant à la catégorie dans chaque colonne des compact tables
|
||||
* ÉVOL: Ajout d'une classe correspondant à l'équipe' dans chaque colonne des chart tables
|
||||
|
||||
|
||||
= 0.90 =
|
||||
|
||||
* CODE: Refactoring of all shortcode and access to database
|
||||
|
||||
|
||||
= 0.70 =
|
||||
|
||||
* CODE: Refactoring complet de l'accès à la base de donnée
|
||||
* CODE: Ajouts de tests unitaires pour toutes les couches bases
|
||||
|
||||
|
||||
= 0.68 =
|
||||
|
||||
* CODE: Création d'un environement de tests unitaires
|
||||
* BUG: La fonction activate_MonLabo ne mettait pas les valeurs par défaut des options si la base était vide
|
||||
* BUG: Supprime le cache d'accès à certaines requêtes car il donnait des mauvais résultats lors de mises à jour intermédiaires.
|
||||
* BUG: Supprime de nombreux caches de requete qui posaient problèmes en cas de mise à jour de la base entre deux requêtes.
|
||||
* CODE: Ajout d'une classe MonLabo_db et son test unitaire
|
||||
|
||||
|
||||
= 0.67 =
|
||||
|
||||
* DOC: Improve readme.txt
|
||||
* DOC: Corrige quelques fautes d'orthographe et imprécisions de la documentation
|
||||
* CODE: Renomme MonLabo_help_lib.php en MonLabo_doc.php (nom plus logique)
|
||||
* CODE: Supprimer fichiers et dossiers inutiles: admin/includes/images et Database.class.php
|
||||
* ADMIN: Supprime MonLabo_help.php après avoir autorisé les simples utilisateurs à accéder à la documentation
|
||||
* CODE: Rajouter index.php dans les dossiers manquants
|
||||
* DOC: Allège documentation (Met les onglets de la documentation en popup)
|
||||
|
||||
|
||||
= 0.66 =
|
||||
|
||||
* ÉVOL: Amélioration de la page d'ajout/modification des membres
|
||||
* Quand on supprime la personne, passer sa page en brouillon
|
||||
* Adapater les champs et boutons en cas d'ajout de membre plutôt que modification
|
||||
* DOC: Ajout d'un dossier documentation
|
||||
|
||||
|
||||
= 0.65 =
|
||||
|
||||
* CODE: Conversion de tous les tabs en espaces et reprise de la forme du code
|
||||
* CODE: Suppression des librairies inutiles: Boostrap, Parsley, Select2
|
||||
* ÉVOL: Delphine rajoutée dans les crédits
|
||||
|
||||
|
||||
= 0.64 =
|
||||
|
||||
* ÉVOL: Suppression de phpMyEdit pour l'édition des membres, équipes, thématiques, unités
|
||||
|
||||
|
||||
= 0.63 =
|
||||
|
||||
* BUG: Les pages des nouveaux membres utilisaients des anciens tags
|
||||
|
||||
|
||||
= 0.62 =
|
||||
|
||||
* BUG: MonLabo_teams et MonLabo_members ne sont pas remplies à l'activation du plugin
|
||||
* NLLE FONC: Ajout du shortcode organigrame
|
||||
* ÉVOL: Permet d'afficher une liste d'alumni
|
||||
* ÉVOL: Ajoute l'aide des nouveaux shortcodes (alumni_*, members_table et members_chart)
|
||||
|
||||
|
||||
= 0.61 =
|
||||
|
||||
* BUG: Adresse de l'équipe mauvaise quand la page est traduite par polylang
|
||||
* BUG: Nouvel auteur crée: Si titre vide remplacé par erreur par "0".
|
||||
* ÉVOL: Plus besoin de désactiver et réactiver le plugin pour mettre à jour les paramètres en cas d'évolution.
|
||||
|
||||
|
||||
= 0.60 =
|
||||
|
||||
* NLLE FONC: Rajout du shortcode Alumni_table
|
||||
* BUG: Débugge affichage des équipes en tableaux
|
||||
* TABLE CHANGE: Ajout des champs statuts et tuteur dans la table des personnels
|
||||
* ÉVOL: Organise tous ajouts de fonctionnalités du plugins en cochant (plus de décochage pour ajouter)
|
||||
* ÉVOL: Check version number to ask deactivate plugin
|
||||
* BUG: Le calcul du nombre de chef d'équipe est mauvais, 1 au lieu de 0 quand il n'y a personne
|
||||
* ÉVOL: Unifie le nom des shortcodes
|
||||
* members_table
|
||||
* members_list (au lieu de members_list_automatic)
|
||||
* members_chart (futur)
|
||||
* alumni_table (futur)
|
||||
* alumni_list
|
||||
* publications_list (au lieu de publications_automatic)
|
||||
* custom_publications_list (au lieu de get_publications)
|
||||
* perso_panel (au lieu de perso_panel_automatic)
|
||||
* NLLE FONC: Ajout de custom fields pour les Personnels
|
||||
* NLLE FONC: Personnels: Ajout de la date de départ (utile pour les alumni)
|
||||
* BUG: Second titre décalé dans la liste des utilisateurs
|
||||
* ÉVOL: Mise sous forme d'onglets de l'aide.
|
||||
* NLLE FONC: Rajout de l'option code css custom
|
||||
* ÉVOL: Permet de désactiver les fonctions de publications
|
||||
* BUG: MonLabo_thematiques et MonLabo_unites ne sont pas remplies à l'activation du plugin
|
||||
* ÉVOL: Affichage correct des listes d'équipes d'une thématique
|
||||
|
||||
|
||||
= 0.50 =
|
||||
|
||||
* NLLE FONC: Permet de configurer et de changer l'adresse du serveur de publications
|
||||
* NLLE FONC: Ajoute la liste de thématiques
|
||||
* NLLE FONC: Béta shortcode get_thematic_teams_list
|
||||
|
||||
|
||||
= 0.49 =
|
||||
|
||||
* NLLE FONC: Possibilité d'utiliser une adresse alternative pour un utilisateur
|
||||
|
||||
|
||||
= 0.48 =
|
||||
|
||||
* NLLE FONC: Add shortcode get_members_table
|
||||
* NLLE FONC: Add "Visitors" category
|
||||
* ÉVOL: Manage language en-GB
|
||||
|
||||
|
||||
= 0.47 =
|
||||
|
||||
* ÉVOL: Sépare les options Fonctionnalités et Coordonnées
|
||||
|
||||
|
||||
= 0.45 =
|
||||
|
||||
* ÉVOL: Table MonLabo_teams : La colone page_id devient page_id_or_url
|
||||
|
||||
|
||||
= 0.44 =
|
||||
|
||||
* BUG (regression): Ne peut cas créer une nouvelle fonction pour un nouvel utilisateur
|
||||
* ÉVOL: Permet d'indiquer si un utilisateur est responsable d'équipe à sa création
|
||||
* BUG: Lien invalide vers les équipes d'un membre
|
||||
|
||||
|
||||
= 0.43 =
|
||||
|
||||
* ÉVOL: Les responsables des équipes sont désormais stoqués dans les équipes
|
||||
|
||||
|
||||
= 0.42 =
|
||||
|
||||
* ÉVOL: New CSS for user list
|
||||
|
||||
|
||||
= 0.41 =
|
||||
|
||||
* ÉVOL: Utilise la nouvelle API "annee=-[durée]"
|
||||
|
||||
|
||||
= 0.40 =
|
||||
|
||||
* ÉVOL: Le tag [perso_publications_automatic] devient [publications_automatic] (car il peut désormais être utilisé aussi sur les pages des équipes)
|
||||
* ÉVOL: Le tag [get_members_list] devient [members_list_automatic] (pour une question d'uniformité)
|
||||
* NLLE FONC: [members_list_automatic] peut être mis sur les pages des équipes (nouvelle colonne "Descartes pubmed equipe ID" dans la liste des équipes)
|
||||
|
||||
|
||||
= 0.33 =
|
||||
|
||||
* BUG: Mauvaise sélection des membres des équipes si le champs "Team leader" n'était pas renseigné
|
||||
|
||||
|
||||
= 0.32 =
|
||||
|
||||
* BUG: Création d'un tilisateur inversait nom et prenom.
|
||||
|
||||
|
||||
= 0.31 =
|
||||
|
||||
* IMPROVE: Ajoute un lien vers la liste consultable des auteurs dans la base Descartes PubMed
|
||||
* BUG: Corrige la base d'ajout d'un membre du personnel qui ne fonctionnait pas
|
||||
|
||||
|
||||
= 0.30 =
|
||||
|
||||
* IMPROVE NLLE FONC: Amélioration du formulaire d'ajout d'un membre du personnel
|
||||
|
||||
|
||||
= 0.29 =
|
||||
|
||||
* NLLE FONC: Formulaire d'ajout d'un membre du personnel
|
||||
|
||||
|
||||
= 0.28 =
|
||||
|
||||
* ÉVOL: Si un utilisateur ne fourni pas d'image, mettre une silouette
|
||||
* NLLE FONC: Permettre de choisir la silouhette par défaut
|
||||
|
||||
|
||||
= 0.27 =
|
||||
|
||||
* NLLE FONC: Ajoute une colone "visible" à MonLabo_members pour éventuellement une personne n'apparaisse pas sur le site.
|
||||
|
||||
|
||||
= 0.26 =
|
||||
|
||||
* NLLE FONC: Permet de désactiver la gestions des membres et des groupes
|
||||
|
||||
|
||||
= 0.25 =
|
||||
|
||||
* BUG: Hote de la base de donnée n'est pas forcément localhost! (Remplacé par DB_HOST)
|
||||
|
||||
|
||||
= 0.24 =
|
||||
|
||||
* NLLE FONC: Config - Permit to chose width of Bandeau Personnel and wdth of address block
|
||||
|
||||
|
||||
= 0.23 =
|
||||
|
||||
* NLLE FONC: Separate options into tabs.
|
||||
* ÉVOL: Options settings storage name in database change name
|
||||
* DEV: Reorganize option functions
|
||||
|
||||
|
||||
= 0.22 =
|
||||
|
||||
* NLLE FONC: Permit to fix radius of members image.
|
||||
* NLLE FONC: Permit to zoom name of people in perso pannel.
|
||||
* NLLE FONC: Permit to fix size of address in perso pannel.
|
||||
|
||||
|
||||
= 0.21 =
|
||||
|
||||
* BUG: Suppress AUTO_INCREMENT of id for table MonLabo_teams in order to chose the Number
|
||||
* BUG: Prevent use of polylang function when this plugin is not activated
|
||||
|
||||
|
||||
= 0.20 =
|
||||
|
||||
* ÉVOL: Ajust alumni display and permit parameter "external_link"
|
||||
* BUG: Version of CSS is now appliy
|
||||
|
||||
|
||||
= 0.19 =
|
||||
|
||||
* ÉVOL: Rempli avec des valeurs par défaut les paramètres et les tables si ils sont vides
|
||||
|
||||
|
||||
= 0.18 =
|
||||
|
||||
* ÉVOL: Update CSS of MonLabo in order to fix sise of bandeau-personnel
|
||||
* ÉVOL: Suppress unecessary shortcode [end_perso_panel]
|
||||
* BUG: Display again "Titre" (Dr. Pr....) in perso_panel
|
||||
|
||||
|
||||
= 0.17.1 =
|
||||
|
||||
* ÉVOL: unactivate Add members forms
|
||||
|
||||
|
||||
= 0.17 =
|
||||
|
||||
* NLLE FONC (PRE ALPHA): Add members forms
|
||||
* BUG: Suppress reference of obsolete shotcode fin_perso_panel
|
||||
* NLLE FONC: When a full phone number (begining with +) is entered, do not write prefix
|
||||
* BUG: Correct Alter table when reactivate plugin
|
||||
|
||||
|
||||
= 0.16 =
|
||||
|
||||
* ADMIN BUG: Correct absence of display of first line of tables
|
||||
* NLLE FONC : Permit the use of several Page_ID numbers separated by ,
|
||||
* TABLE CHANGE: page_id field of table MonLabo_teams is now type varchar
|
||||
|
||||
|
||||
= 0.15.2 =
|
||||
|
||||
* BUG: Correct bug that crash site on old version of PHP
|
||||
|
||||
|
||||
= 0.15 =
|
||||
|
||||
* NLLE FONC: [get_members_list] finds automatically the team of the current page
|
||||
* FEAT: Translate into english all name of shortcodes and option
|
||||
|
||||
|
||||
= 0.14 =
|
||||
|
||||
* NEW ADMIN FEAT: Add color picker when chosing color
|
||||
* ADMIN: Optimize display of help for members and team tables.
|
||||
* BUG: Correct alphabetic order of list of members
|
||||
|
||||
|
||||
= 0.13 =
|
||||
|
||||
* NLLE FONC: Can change colors of members list
|
||||
|
||||
|
||||
= 0.12 =
|
||||
|
||||
* DEV: Reorganize options page calls
|
||||
* INTERFACE: uses tabs in config pages
|
||||
* BUG: Correct bad display of members tables in old version of PHP
|
||||
|
||||
|
||||
= 0.11 =
|
||||
|
||||
* DEV: Change architechture of files (add includes dir)
|
||||
* NLLE FONC: Add shortcode [ancien_membre]
|
||||
|
||||
|
||||
= 0.10 =
|
||||
|
||||
* DEV: Manage activation hooks
|
||||
* ÉVOL: rename tag get_team_members into get_members__list
|
||||
* NEW EARLY FEAT: Add possibility to use several labs
|
||||
* BUG: Support UTF8 for phpmyedit.
|
||||
* DEV: Autoincrement new tables.
|
||||
|
||||
|
||||
= 0.9 =
|
||||
|
||||
* NLLE FONC: Incorporate management of publications
|
||||
* NLLE FONC: Embed edition of tables
|
||||
|
||||
|
||||
= 0.8 =
|
||||
|
||||
* NLLE FONC: Rename in MonLabo. Add admin menu.
|
||||
|
||||
|
||||
= 0.1 =
|
||||
|
||||
* Initial release.
|
||||
|
||||
|
||||
== Upgrade Notice ==
|
||||
|
||||
= 2.8 =
|
||||
@@ -0,0 +1,12 @@
|
||||
Version 1.0.2
|
||||
------------------------------------------------------------
|
||||
Improvement – Get plugin updates from wordpress.org
|
||||
|
||||
Version 1.0.1
|
||||
------------------------------------------------------------
|
||||
FIX - %bookingid% template tag is not being rendered.
|
||||
FIX - Profit share is not being paid out due to incorrect event id.
|
||||
|
||||
Version 1.0
|
||||
------------------------------------------------------------
|
||||
Initial release
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/next-feed-builder/change_log/changelog.txt
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/next-feed-builder/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.1 - 29 Feb 2020 =
|
||||
|
||||
* Blog Builder - 10 Widgets release for Elementor / Gutenberg Page Builder.
|
||||
* Build Template - Single Blog and Archive Blog by Elementor / Gutenberg Page Builder
|
||||
|
||||
= 1.0.0 - 03 Jan 2020 =
|
||||
|
||||
* Blog Builder - 4 Widgets release for Elementor
|
||||
|
||||
= 0.0.1 - 02 January 2020 =
|
||||
|
||||
* Initial release
|
||||
31
spec/fixtures/dynamic_finders/plugin_version/nextaddons/change_log/changelog.txt
vendored
Normal file
31
spec/fixtures/dynamic_finders/plugin_version/nextaddons/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
== Changelog ==
|
||||
|
||||
= 2.0.2 - 25 Jan 2020 =
|
||||
|
||||
* Css modify
|
||||
|
||||
= 2.0.1 - 25 Jan 2020 =
|
||||
|
||||
* New widget Image Slider added
|
||||
* Team, Testimonial Update
|
||||
|
||||
= 2.0.0 - 23 Jan 2020 =
|
||||
|
||||
* New Widgets: Accordion, Image Slider
|
||||
* Team, Testimonial, Blog, Blog Feed, Slider Gallery: Slider control modify
|
||||
|
||||
= 1.0.2 - 22 Jan 2020 =
|
||||
* New Widgets: Pie Chart, Image Accordion
|
||||
* Team: Added new styles
|
||||
* Testimonial: control modify
|
||||
|
||||
= 1.0.1 - 21 Jan 2020 =
|
||||
* Issues fixed
|
||||
|
||||
= 1.0.0 - 19 Jan 2020 =
|
||||
|
||||
* New: Icon Box, Image Box, Flip Box, Blog, Blog Feed, Button, Dual Button, FunFact, Comparison, Hotspots, Heading, Pricing Table, Gallery, Tab Gallery, Slider Gallery, Skill Bar / Progress, Team, Testimonial / Client Review
|
||||
|
||||
= 0.0.1 - 18 January 2020 =
|
||||
|
||||
* Initial release
|
||||
@@ -0,0 +1,547 @@
|
||||
# This file was generated by WPML
|
||||
# WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
|
||||
# https://wpml.org
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Project-Id-Version:WPML_EXPORT_password-protect-page\n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language:en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
||||
# wpml-name: 99dea78007133396a7b8ed70578ac6ae
|
||||
msgctxt "SWP Lite"
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: dc647eb65e6711e155375218212b3964
|
||||
msgctxt "SWP Lite"
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 027d8cfba3321ecc6cb1ec2b79916d1e
|
||||
msgid "Remove all your data created by Password Protect WordPress upon uninstall. You should <b>NOT</b> remove our Free when upgrading to our Pro version."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 9b935359a7130bbf515d581d4e0157fa
|
||||
msgid "Remove Data Upon Uninstall"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: d153a92e27c562deeb93ac2328ebaeb8
|
||||
msgid "Master Passwords"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 1059f1dfa98614d231b8479200e6495e
|
||||
msgid "Shortcodes"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: dfc040135a7220c0de02b27e8b55169e
|
||||
msgid "Sitewide"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 0db377921f4ce762c62526131097968f
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 49922833779f05322710909c033ee3e7
|
||||
msgctxt "PPF"
|
||||
msgid "Please enter the correct password!"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: c0988e2ce3f0876747b53f093a508e78
|
||||
msgctxt "PPF"
|
||||
msgid "This content is password protected. To view it please enter your password below:"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: b341a59d5636ed3d6a819137495b08a0
|
||||
msgctxt "PPF"
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: f1851d5600eae616ee802a31ac74701b
|
||||
msgctxt "PPF"
|
||||
msgid "Enter"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: f1851d5600eae616ee802a31ac74701b
|
||||
msgctxt "PCP"
|
||||
msgid "Enter"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: ce7701462ad18c320da043152c8a6a55
|
||||
msgctxt "PCP"
|
||||
msgid "To view this protected content, enter the password below:"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: cead506b0c44133e6286d3493a9fef0c
|
||||
msgctxt "PCP"
|
||||
msgid "Restricted Content"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 9e6f982c3d3c6dc1c884227d4f0c0329
|
||||
msgid "You’ve set a password to protect your site."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 2c46b3f646cb73dcdbadc50f205138a8
|
||||
msgid "Set a password to protect your entire WordPress site"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 17933489fe9b76c76f8609ec6bd16e91
|
||||
msgid "Password Protect Entire Site"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: c49739d19954009d992e10c102b9df20
|
||||
msgid "%s instead if you're using popular page builders, e.g. Elementor and Beaver Builder."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 7d4e834f8eee4bb5d9dc421ba954c39a
|
||||
msgid "Use the following shortcode to %s. Set as many passwords as you’d like to."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: f57de9cde7f4ce436322553fe912151d
|
||||
msgid "Our plugin's already working correctly with WP Fastest Cache without any other configurations"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 98c9d170b0c88943d57e59a632e10baa
|
||||
msgid "WP Fastest Cache"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: a2a1a453489504069ec850b8dae12b7b
|
||||
msgid "Protected Content Visibility"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 706b37e20c3e3695eb16a4111fcf719f
|
||||
msgid "%s your password protected content."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 73316b4f98afa7ec3935e9f06c62613a
|
||||
msgid "Customize the error message when users enter wrong passwords.<em> Available in Pro version only.</em>"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: eff3d253a81e17d249b12c1e40d53953
|
||||
msgid "ADVANCED OPTIONS"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: a1b659dd8e7eabe5d015fcca8f6fe63e
|
||||
msgid "Customize the default %1$s including its headline, description and button under %2$s."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 928834d91c23ad8bc46773a720585fbf
|
||||
msgid "PASSWORD FORM CUSTOMIZATION"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 308fc1da5d15496a3c4eec17e54a7941
|
||||
msgid "PASSWORD PROTECTION"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 002081c905506c5456e5954566022532
|
||||
msgid "Set the same password to protect the following pages and posts.<em> Available in Pro version only.</em>"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: cc940bf2667209e4d71ddc12d8f2e5ed
|
||||
msgid "Set a password"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: e13dad46268daeee6005c724aed021d4
|
||||
msgid "Select your private pages or posts"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 377ee60cb1c8f5dd5a31bff0d24b4884
|
||||
msgid "Password Protect Private Pages"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 177ecc90c968e2ff8bebe9530a36c7cc
|
||||
msgid "If you’re using a caching plugin or server-side caching, you’ll need to <a rel=\"noopener noreferrer\" target=\"_blank\" href=\"https://passwordprotectwp.com/docs/caching-plugins-cache-servers-integration/\">update your caching configurations</a> for our Password Protect Wordpress plugin to work properly."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: d7ac53d492ffdbd7dd30fc8875a628c0
|
||||
msgid "Caching Plugins & Server-side Caching"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 14bdee98d3ce133dc46aff4a131607d6
|
||||
msgid "Select user roles who can access all protected content without having to enter passwords.<em> Available in Pro version only.</em>"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 369b437008ddc83281725ff9df14da56
|
||||
msgid "Grant access to these user roles only"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 7e9adb030f9f13da10de12542792553d
|
||||
msgid "Choose custom roles"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: e027a9a1bc6644e13097c3e8549c8cb2
|
||||
msgid "Logged-in users"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 5a91a8320922aa0059a7db06d2ae6cf1
|
||||
msgid "The post's author"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 3832dee32fb5053c64441a629488b42a
|
||||
msgid "Admin users"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 7e35fe311599550f01a42b6caa3556be
|
||||
msgid "No one"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: f670ea66cfb0e90bd6090472ad692694
|
||||
msgid "Minutes"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 6a7e73161603d87b26a8eac49dab0a9c
|
||||
msgid "Hours"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: e807d3ccf8d24c8c1a3d86db5da78da8
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: a27bf1e1cb174b0d908141192ca6b51e
|
||||
msgid "After this expiration time, you have to re-enter your password to access password protected content"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: c7413ae75dad3d8f8753a5d6a5751e97
|
||||
msgid "Cookie Expiration Time"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 9f8acc1bce0c416ec289d77152559e17
|
||||
msgid "<a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://passwordprotectwp.com/docs/settings/#cpt\">Select which custom post types</a> you want to password protect. Default: Pages & Posts.<em> Available in Pro version only.</em>"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 1cafafed28034890704176b3eaff020d
|
||||
msgid "Post Type Protection"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 6ce031a17bab4818369236b873300138
|
||||
msgid "Our plugin's working correctly with W3 Total Cache now"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 368b7bb57bca44491ae8753fa03c167f
|
||||
msgid "Please <a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://preventdirectaccess.com/docs/password-protect-wordpress-caching-plugins/#w3-total-cache\">refer to this guide</a> on how to integrate our plugin with W3 Total Cache"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 3fd92ddd8f1cb50ee5c2e05fd6c68f18
|
||||
msgid "W3 Total Cache"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 0cb694e166db3dd557624018120892a0
|
||||
msgid "Our plugin's already working correctly with WP Super Cache without any other configurations"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 3be82d58b566185e60ef290e4a7b923d
|
||||
msgid "WP Super Cache"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 4dd3995ec49e25506f67e75801db879c
|
||||
msgid "Customize the message which displays above the password field.<em> Available in Pro version only.</em>"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 20b15c41710884a634bc430985983011
|
||||
msgid "Form Message"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 01277a77cbcf848e65c0ae80663b8c25
|
||||
msgid "<a target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://passwordprotectwp.com/docs/settings/#block-indexing\">Prevent search engines from indexing</a> your password protected content.<em> Available in Pro version only.</em>"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 5761e5d5aa0f2f7f38654dd5896c65b5
|
||||
msgid "Block Search Indexing"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 3e63086cc0d51f6e71928fb844718a0d
|
||||
msgid "Automatically protect all child pages once their parent is protected.<em> Available in Pro version only.</em>"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: a709c000d0e01b9f79437c4fc4877c45
|
||||
msgid "Password Protect Child Pages"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 0a8d2e8c9f6d556711c1fb1b8791dc4f
|
||||
msgid "Password Protect WordPress requires WordPress version %s+. Because you are using an earlier version, the plugin cannot be activated."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: a2e5e2614d1ca87f0b4927039c68c3a0
|
||||
msgid "Password Protect WordPress requires PHP version %s+, plugin cannot be activated."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: a07265a202db125a2d996385d70ee11d
|
||||
msgid "You need to <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://passwordprotectwp.com/docs/ppwp-pro-free/\">update our Pro to its latest version</a> for our Password Protect WordPress plugins to work properly. You <b>must NOT delete</b> the current Free version. Otherwise, you’ll lose all your current settings data."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 188ceae54386f2f130560ac5003caf18
|
||||
msgid "This content is your protected content"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 199157d9d13854442ec32ca79b99f9d4
|
||||
msgid "Select whitelisted roles"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 63f412544bcd3fa03089f2e90270132f
|
||||
msgid "PPWP Shortcode"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: a8b276147f9af9ca31199efc90a222fe
|
||||
msgid "Password Protection (PPWP)"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 83f1d9ca1a0c4c2fc51a371c0d773f76
|
||||
msgid "Protection"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 6feadb455c64759731e453380c52fbd9
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 68753d36ec0c4d7768b20993268d68d1
|
||||
msgid "Placeholder"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 984a2e31b48abb9fb7ec6f51ad956201
|
||||
msgid "This is your protected content."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 112ecb3dc3214342c6692711141db343
|
||||
msgid "Protected Content"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 10f78469999f6538097513a1433ec905
|
||||
msgid "Whitelisted Roles"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 6f88560eae49d8b9055b3b012bd46917
|
||||
msgid "Enter your password, e.g. password1 password2"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: e18ee67232545172093ce053ae9d2c73
|
||||
msgid "Passwords"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: c1c10cdf8c8a69776ebf8ce52d4796fb
|
||||
msgid "Partial Content Protection"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 9f91cf4465184a0539a5b146374fc61d
|
||||
msgid "Password protected content"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 69a06f809218041ee3159851af1d6aa0
|
||||
msgid "Password Protect WordPress (PPWP)"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: b341a59d5636ed3d6a819137495b08a0
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 85a245235128dc3e04b3525d853cb39d
|
||||
msgid "[%s] Empty content, invalid attributes or values"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 56e01b8a56c72eee80f1c1ef7cf4367b
|
||||
msgid "Our Free version [%s] shortcode doesn't support Custom Post Type"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 053e4a0c0b621c288fdf2aaa93251d95
|
||||
msgid "Background Color (Hover)"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 73b7a3b2ee0a872efa3f010cd5d8d325
|
||||
msgid "Text Color (Hover)"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: eb7f929fae900d3f139398b2403823cd
|
||||
msgid "Button Label"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 87b7760f14fbff78d8819291f36ab9a0
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 75e7422f2fe253fc69d3f6c148d197ee
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 8903861290617267b361478ab7f16f31
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 6184141f3ad2584cff257e2bfbbb8d0b
|
||||
msgid "Font Weight"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 45f0d4fa9a30e9c5571dbaa9ad1be931
|
||||
msgid "Font Size"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: c02034b1cff4fde56cb3eadc40466f8f
|
||||
msgid "Error Message"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 8170c86af51cfb99d5fac6fe83b57361
|
||||
msgid "Password Reveal Button"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: cd8992dbc3906554694cf3bbbfb094f6
|
||||
msgid "Password Label"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 1f027158effbccb1890ca8a75a4960ee
|
||||
msgid "Description Text Color"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 466b9799d73ed82f03d89c4bc8188c65
|
||||
msgid "Description Font Weight"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: cea898cab350684b66276afb58c7f347
|
||||
msgid "Description Font Size"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: b5a7adde1af5c87d7fd797b6245c2a39
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: b5653af848f30601397f1e5d2dd0f029
|
||||
msgid "Placholder"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: e9f8f493647b54a09964af881c7b141e
|
||||
msgid "Headline Color"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: a16119f46b06c4e03f8269f06509020c
|
||||
msgid "Headline Font Weight"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: b415443d8894b7973e3dceae561d9dd3
|
||||
msgid "Font size in px"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 336d4ec845e5c06cb382bbe3bde2dff8
|
||||
msgid "Headline Font Size"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: c6568e77f61109390e82d035aaacaef0
|
||||
msgid "Headline"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 8f5db4adfb1f3527fba349092d013c6c
|
||||
msgid "Password Form"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 93569f6b011bcf7342e684fc8e3d5640
|
||||
msgid "%s The <a href=\"https://passwordprotectwp.com/password-migration/\" target=\"_blank\" rel=\"noopener noreferrer\">password migration process</a> is now complete. Thank you for your patience!"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 7c10a94e5877821ff781e3d8a6383a43
|
||||
msgid "PPWP Data Migration"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 2bb0145c6e3d6f60a36dba95f49b7367
|
||||
msgid "Password Protect WordPress"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: a3beed8a3c5c0a1d0a476d6a08b003ff
|
||||
msgid "%s To keep password protecting your private content, we have to <a href=\"https://passwordprotectwp.com/password-migration/\" target=\"_blank\" rel=\"noopener noreferrer\">migrate your passwords</a> to our plugin. The migration process is running in the background."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: bf1981220040a8ac147698c85d55334f
|
||||
msgid "RSS"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 39fd7f2ac3aad9fd0896bfeeb02fb267
|
||||
msgid "Recent posts"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 1542474cb334bce7d9d33230f6d8e270
|
||||
msgid "Next & Previous"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 178fde647037235223ac2a188a7106b1
|
||||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 3e6db6f1a98f77b574d43f91f6609a26
|
||||
msgid "Author pages"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 4cba9c325762c6d424de003e2d42802e
|
||||
msgid "Tag pages"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 138e54532ba071f0046271304e6c1359
|
||||
msgid "Category pages"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: eb6b06cab0dd72e04c4da68d511facf2
|
||||
msgid "Search results"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 6acb772f671c5ef2d1e8a14fa1d6eef6
|
||||
msgid "Everywhere pages are listed"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 078e284882180480913621ba1ba08914
|
||||
msgid "Front page"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: dfeac4a693b9f5c4c1bf5ed6e27df6a1
|
||||
msgid "XML sitemaps"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 3c4a5dc9bad481e36807d7273a2a083f
|
||||
msgid "Exclude the password protected %s from the following views"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: a1cc7ba89ca3016cf59d7c31506a9681
|
||||
msgid "Show password"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: e3fd60a3deec4a512e07893959dab2b8
|
||||
msgid "Password Protect WordPress requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT WORKING."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 383d9f330d29ebef6931580eeba6111a
|
||||
msgid "Password Protect WordPress requires PHP version %s+, plugin is currently NOT WORKING."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 1e6dbfaaa068a191cfd257c013ddd699
|
||||
msgid "1.4.1"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 063f98cbea6e64f0cf493ccd138fd8d0
|
||||
msgid "https://passwordprotectwp.com.com?utm_source=user-website&utm_medium=pluginsite_link&utm_campaign=ppwp"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: c23221187bfb15f0f1f0bf0e29d03339
|
||||
msgid "BWPS"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 83a31b38bdd6de3da41fb47628211e95
|
||||
msgid "Password protect the entire WordPress site, unlimited pages and posts by user roles. This plugin is required for our Pro version to work properly."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: b112a7e20ddfbab3c5ed71bef9be0c59
|
||||
msgid "https://passwordprotectwp.com?utm_source=user-website&utm_medium=pluginsite_link&utm_campaign=ppwp"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 44f418288d0b73d212c37188bbc52b91
|
||||
msgid "Password Protect WordPress Lite"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 1158687b6e1022c76fd594985a098e3c
|
||||
msgid "Every %d minutes"
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: 8524de963f07201e5c086830d370797f
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,60 @@
|
||||
# Copyright (C) 2020 Pluginsify Social Share
|
||||
# This file is distributed under the same license as the Pluginsify Social Share package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Pluginsify Social Share 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/tpl-social-share\n"
|
||||
"POT-Creation-Date: 2020-01-20 14:17:18+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: includes/class-tpl-share-settings.php:37
|
||||
msgid "Pluginsify Social Share Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tpl-share-settings.php:38
|
||||
msgid "Pluginsify Social Share"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tpl-share-settings.php:52
|
||||
msgid "Settings Saved"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-tpl-share-settings.php:56
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: templates/social-bar.php:20
|
||||
msgid "Share:"
|
||||
msgstr ""
|
||||
|
||||
#: tpl-social-share.php:294
|
||||
msgid "The Pluginsify Social Share plugin requires <a href=\"%1$s\">WordPress</a> %2$s or greater to be installed and active."
|
||||
msgstr ""
|
||||
|
||||
#: tpl-social-share.php:302
|
||||
msgid "The Pluginsify Social Share plugin requires php version %1$s or greater. Please upgrate your server php version."
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Pluginsify Social Share"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://toptal.com/plugins/tpl-social-share"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Share WordPress posts, pages, custom pages in social media"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Pluginsify"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://pluginsify.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "wpsass",
|
||||
"version": "1.0.0",
|
||||
"description": "Use Sass with WordPress, Node Script in SCSS flavour.",
|
||||
"scripts": {
|
||||
"css": "node-sass --output-style compressed --include-path scss assets/css/source.scss assets/css/elementor-portfolio.css",
|
||||
"watch": "nodemon -e scss -x \"npm run css\""
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ahmadawais/WPSass.git"
|
||||
},
|
||||
"author": "Ahmad Awais",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ahmadawais/WPSass/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ahmadawais/WPSass#readme",
|
||||
"devDependencies": {
|
||||
"node-sass": "^4.5.3",
|
||||
"nodemon": "^1.11.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,729 @@
|
||||
# Copyright (C) 2020 Posterno
|
||||
# This file is distributed under the same license as the Posterno Elementor package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Posterno Elementor 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/posterno-elementor\n"
|
||||
"POT-Creation-Date: 2020-01-28 13:12:16+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.3\n"
|
||||
|
||||
#: includes/actions.php:32 includes/classes/Conditions/Listings.php:48
|
||||
#: includes/theme-builder-tags.php:40
|
||||
msgid "Listings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/actions.php:40 includes/classes/Conditions/ListingsArchive.php:89
|
||||
#: includes/classes/Documents/ListingsArchive.php:66
|
||||
msgid "Listings archive"
|
||||
msgstr ""
|
||||
|
||||
#: includes/actions.php:48
|
||||
msgid "Listings single"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Cache.php:107 includes/classes/Elements/TermsList.php:195
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Conditions/ListingsArchive.php:98
|
||||
msgid "All listings archives"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Documents/Listing.php:66
|
||||
msgid "Single listing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Documents/ListingsArchive.php:130
|
||||
#: includes/classes/Documents/ListingsArchive.php:143
|
||||
#: includes/classes/Documents/ListingsArchive.php:154
|
||||
msgid "Archive"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Documents/ListingsArchive.php:147
|
||||
msgid "Search results"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Archive/ArchiveFeaturedImage.php:45
|
||||
msgid "Archive featured image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Archive/ArchiveFeaturedImage.php:83
|
||||
#: includes/classes/Elements/Archive/ArchiveMap.php:83
|
||||
#: includes/classes/Elements/Archive/ArchiveSorter.php:83
|
||||
#: includes/classes/Elements/FacetAmount.php:83
|
||||
#: includes/classes/Elements/FacetFakeQuery.php:83
|
||||
#: includes/classes/Elements/FacetPagination.php:83
|
||||
#: includes/classes/Elements/FacetResultsNumber.php:83
|
||||
#: includes/classes/Elements/FacetSearchSubmit.php:83
|
||||
#: includes/classes/Elements/FacetSorter.php:83
|
||||
#: includes/classes/Elements/ListingAddToFavouritesButton.php:83
|
||||
#: includes/classes/Elements/ListingClaimButton.php:83
|
||||
#: includes/classes/Elements/RatingStars.php:83
|
||||
#: includes/classes/Elements/Single/ListingCustomField.php:86
|
||||
#: includes/classes/Elements/Single/ListingGallery.php:83
|
||||
#: includes/classes/Elements/Single/ListingMap.php:84
|
||||
#: includes/classes/Elements/Single/ListingReviewsBars.php:84
|
||||
#: includes/classes/Elements/Single/ListingReviewsFilter.php:84
|
||||
#: includes/classes/Elements/Single/ListingReviewsForm.php:84
|
||||
#: includes/classes/Elements/Single/ListingReviewsList.php:84
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:85
|
||||
#: includes/classes/Elements/SocialLoginButtons.php:83
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Archive/ArchiveFeaturedImage.php:93
|
||||
#: includes/classes/Elements/Archive/ArchiveMap.php:93
|
||||
#: includes/classes/Elements/Archive/ArchiveSorter.php:93
|
||||
#: includes/classes/Elements/FacetAmount.php:93
|
||||
#: includes/classes/Elements/FacetPagination.php:93
|
||||
#: includes/classes/Elements/FacetResultsNumber.php:93
|
||||
#: includes/classes/Elements/FacetSorter.php:93
|
||||
#: includes/classes/Elements/Single/ListingGallery.php:93
|
||||
#: includes/classes/Elements/Single/ListingMap.php:94
|
||||
#: includes/classes/Elements/Single/ListingReviewsBars.php:94
|
||||
#: includes/classes/Elements/Single/ListingReviewsFilter.php:94
|
||||
#: includes/classes/Elements/Single/ListingReviewsForm.php:94
|
||||
#: includes/classes/Elements/Single/ListingReviewsList.php:94
|
||||
msgid "This element does not have any settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Archive/ArchiveMap.php:45
|
||||
msgid "Archive map"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Archive/ArchiveSorter.php:45
|
||||
msgid "Archive sorter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetAmount.php:45
|
||||
msgid "Faceted Amount"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetFakeQuery.php:45
|
||||
msgid "Faceted fake query"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetFakeQuery.php:93
|
||||
msgid ""
|
||||
"This element does not have any settings. Please refer to the documentation "
|
||||
"of the search forms plugin for more information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetPagination.php:45
|
||||
msgid "Faceted Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetResultsNumber.php:45
|
||||
msgid "Faceted results number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetSearchSubmit.php:45
|
||||
msgid "Faceted Search Submit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetSearchSubmit.php:91
|
||||
msgid "Button label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetSearchSubmit.php:93
|
||||
#: includes/classes/Elements/FacetSearchSubmit.php:120
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetSearchSubmit.php:100
|
||||
msgid "Redirect URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetSearchSubmit.php:102
|
||||
msgid "https://example.com/page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetSearchSubmit.php:136
|
||||
msgid "Please enter a redirect url."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/FacetSorter.php:45
|
||||
msgid "Faceted Sorter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingAddToFavouritesButton.php:45
|
||||
msgid "Listing add to favourites button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingAddToFavouritesButton.php:91
|
||||
#: includes/classes/Elements/ListingClaimButton.php:91
|
||||
#: includes/classes/Elements/RatingStars.php:91
|
||||
msgid "Specific listing ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingAddToFavouritesButton.php:95
|
||||
#: includes/classes/Elements/ListingClaimButton.php:95
|
||||
msgid ""
|
||||
"Enter the ID number of the listing for which you wish to display the "
|
||||
"button. Leave empty to automatically detect the current listing. Leaving it "
|
||||
"empty may not work in all situations."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingCard.php:46 includes/theme-locations.php:60
|
||||
msgid "Listing card"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingCard.php:84
|
||||
msgid "Listing settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingCard.php:92
|
||||
msgid "Listing ID Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingCard.php:107
|
||||
#: includes/classes/Elements/ListingsQuery.php:250
|
||||
msgid "List"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingCard.php:108
|
||||
#: includes/classes/Elements/ListingsQuery.php:249
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingCard.php:115
|
||||
#: includes/classes/Elements/ListingsQuery.php:257
|
||||
#: includes/classes/Elements/TermsList.php:202
|
||||
msgid "Layout style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingCard.php:185
|
||||
msgid "No listing was found with that ID."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingClaimButton.php:45
|
||||
msgid "Listing claim button"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:48
|
||||
msgid "Listings query"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:86
|
||||
msgid "Query settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:94
|
||||
msgid "Use current query"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:97
|
||||
#: includes/classes/Elements/ListingsQuery.php:128
|
||||
#: includes/classes/Elements/ListingsQuery.php:156
|
||||
#: includes/classes/Elements/RatingStars.php:104
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:135
|
||||
#: includes/classes/Elements/TermsList.php:104
|
||||
#: includes/classes/Elements/TermsList.php:128
|
||||
#: includes/classes/Visibility.php:88
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:98
|
||||
#: includes/classes/Elements/ListingsQuery.php:129
|
||||
#: includes/classes/Elements/ListingsQuery.php:157
|
||||
#: includes/classes/Elements/RatingStars.php:105
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:136
|
||||
#: includes/classes/Elements/TermsList.php:105
|
||||
#: includes/classes/Elements/TermsList.php:129
|
||||
#: includes/classes/Visibility.php:89
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:101
|
||||
msgid "Enable this option only when creating custom archive layouts."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:114
|
||||
msgid "Select one or more term to adjust the query."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:126
|
||||
msgid "Featured listings only"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:141
|
||||
msgid "Listings per page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:154
|
||||
msgid "Limit query to specific listings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:169
|
||||
msgid "Listings IDs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:171
|
||||
msgid "Example: 55, 98"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:184
|
||||
msgid "Enter one or more listing id number separated by a comma."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:191
|
||||
msgid "Authors"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:193
|
||||
msgid "ID numbers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:194
|
||||
msgid ""
|
||||
"Enter one or more users ID numbers separated by a comma to limit listings "
|
||||
"by specific authors only."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:204
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:208
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:209
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:213
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:218
|
||||
msgid "Query ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:220
|
||||
msgid "Optional string if you wish to filter the query arguments programmatically."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/ListingsQuery.php:235
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:184
|
||||
#: includes/classes/Elements/TermsList.php:181
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/RatingStars.php:45
|
||||
msgid "Rating stars"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/RatingStars.php:95
|
||||
msgid ""
|
||||
"Enter the ID number of the listing for which you wish to display rating "
|
||||
"stars. Leave empty to automatically detect the current listing. Leaving it "
|
||||
"empty may not work in all situations."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/RatingStars.php:102
|
||||
msgid "Hide total"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/SearchFacet.php:45
|
||||
msgid "Search Facet"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/SearchFacet.php:83
|
||||
msgid "Facet settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/SearchFacet.php:91
|
||||
msgid "Search facet"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingCustomField.php:48
|
||||
#: includes/classes/Tags/ListingCustomField.php:39
|
||||
msgid "Listing custom field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingCustomField.php:96
|
||||
#: includes/classes/Tags/ListingCustomField.php:65
|
||||
msgid "Select custom field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingGallery.php:45
|
||||
msgid "Listing Gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingMap.php:46
|
||||
msgid "Listing Map"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingReviewsBars.php:46
|
||||
msgid "Listing reviews bars summary"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingReviewsFilter.php:46
|
||||
msgid "Listing reviews filter"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingReviewsForm.php:46
|
||||
msgid "Listing reviews form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingReviewsList.php:46
|
||||
msgid "Listing reviews list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:47
|
||||
msgid "Listing terms list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:93
|
||||
#: includes/classes/Elements/TermsList.php:93
|
||||
msgid "Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:102
|
||||
#: includes/classes/Elements/TermsList.php:148
|
||||
msgid "Order by"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:120
|
||||
#: includes/classes/Elements/TermsList.php:166
|
||||
msgid "Order"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:133
|
||||
#: includes/classes/Elements/TermsList.php:126
|
||||
msgid "Hide empty terms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:145
|
||||
#: includes/classes/Elements/TermsList.php:138
|
||||
msgid "Number of terms"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:155
|
||||
msgid "Include"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:157
|
||||
msgid "Comma-separated string of term ids to include."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:164
|
||||
msgid "Exclude"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:166
|
||||
msgid ""
|
||||
"Comma-separated string of term ids to exclude. If the \"include\" option is "
|
||||
"not empty, the exclude option will be ignored."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:173
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:175
|
||||
msgid "Parent term ID to retrieve direct-child terms of."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:192
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:193
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:200
|
||||
msgid "List layout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:210
|
||||
msgid "Icon layout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:214
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:224
|
||||
msgid "Custom icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/Single/ListingTerms.php:215
|
||||
msgid "Term icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/SocialLoginButtons.php:45
|
||||
msgid "Social login buttons"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/SocialLoginButtons.php:91
|
||||
msgid "Redirect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/SocialLoginButtons.php:93
|
||||
msgid ""
|
||||
"Optionally specify a custom redirect URL. Leave blank to use the redirect "
|
||||
"configured in your Posterno settings panel."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/TermsList.php:47
|
||||
msgid "Terms List"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/TermsList.php:85
|
||||
msgid "Taxonomy settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Elements/TermsList.php:102
|
||||
msgid "Show subcategories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Plugin.php:84 includes/classes/Plugin.php:95
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingAddress.php:36
|
||||
#: includes/classes/Tags/ListingAddress.php:62
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingAddress.php:58
|
||||
msgid "Output control"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingAddress.php:63
|
||||
msgid "Latitude"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingAddress.php:64
|
||||
msgid "Longitude"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingAddress.php:65
|
||||
msgid "Combined coordinates"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingClaimed.php:36
|
||||
msgid "Claimed status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingClaimed.php:48
|
||||
#: includes/classes/Tags/ListingFeatured.php:48
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingClaimed.php:50
|
||||
msgid "Verified"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingExpiryDate.php:36
|
||||
msgid "Expiry date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingFeatured.php:36
|
||||
msgid "Featured status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingFeatured.php:50
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingFeaturedImage.php:37
|
||||
msgid "Listing featured image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsListUrl.php:36
|
||||
msgid "Reviews list URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsOverallRating.php:36
|
||||
msgid "Overall rating number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsOverallRating.php:61
|
||||
msgid "Fallback text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsTotal.php:36
|
||||
msgid "Total number of reviews"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsTotal.php:61
|
||||
msgid "No reviews format"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsTotal.php:62
|
||||
msgid "No reviews"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsTotal.php:69
|
||||
msgid "One review format"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsTotal.php:70
|
||||
msgid "One review"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsTotal.php:77
|
||||
msgid "Many reviews format"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsTotal.php:78
|
||||
msgid "{number} reviews"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsTotal.php:85
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsTotal.php:89
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/ListingReviewsTotal.php:90
|
||||
msgid "Reviews Link"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/LoginUrl.php:36
|
||||
msgid "Login URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/LoginUrl.php:58 includes/classes/Tags/LogoutUrl.php:58
|
||||
#: includes/classes/Tags/RegistrationUrl.php:58
|
||||
msgid "Redirect url"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/LoginUrl.php:60 includes/classes/Tags/LogoutUrl.php:60
|
||||
#: includes/classes/Tags/RegistrationUrl.php:60
|
||||
msgid "Leave blank to use the default settings set in Posterno."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/LogoutUrl.php:36
|
||||
msgid "Logout URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Tags/RegistrationUrl.php:36
|
||||
msgid "Registration URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:72
|
||||
msgid "Visibility control"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:85
|
||||
msgid "Enable visibility conditions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:98
|
||||
msgid "Visible when:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:114
|
||||
msgid "Hidden when:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:133
|
||||
msgid "Listing ID:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:134
|
||||
msgid ""
|
||||
"Some visibility conditions are reserved for listings. Here you can specific "
|
||||
"to which listing it should apply. Select \"Post ID\" from the the dynamic "
|
||||
"menu to automatically retrieve the ID number of the current listing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:142
|
||||
msgid "Listing types"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:160
|
||||
msgid "User is logged in"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:161
|
||||
msgid "User is logged out"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:162
|
||||
msgid "User has submitted listings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:163
|
||||
msgid "User is owner of listing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:164
|
||||
msgid "Listing is featured"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:165
|
||||
msgid "Listing is expired"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:166
|
||||
msgid "Listing is of type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:167
|
||||
msgid "Listing has featured image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:171
|
||||
msgid "Listing is claimed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:175
|
||||
msgid "User has bookmarked listing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:179
|
||||
msgid "User has reviewed listing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Visibility.php:180
|
||||
msgid "Listing has reviews"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings.php:24
|
||||
msgid "Cards layout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/settings.php:32
|
||||
msgid "Listing card layout for the \"%1$s\" type [%2$s]"
|
||||
msgstr ""
|
||||
|
||||
#: includes/theme-locations.php:33
|
||||
msgid "Listings dashboard page: %s (before)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/theme-locations.php:40
|
||||
msgid "Listings dashboard page: %s (after)"
|
||||
msgstr ""
|
||||
|
||||
#: templates/terms-list-listings-types.php:63
|
||||
msgid "Browse listings"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Posterno Elementor"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://posterno.com/extensions/elementor"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Visually build your listings directory website with Posterno and Elementor."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Posterno"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://posterno.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,111 @@
|
||||
# Copyright (C) 2020 Posterno
|
||||
# This file is distributed under the same license as the Posterno Favourites package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Posterno Favourites 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/posterno-favourites\n"
|
||||
"POT-Creation-Date: 2020-01-13 17:43:25+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.3\n"
|
||||
|
||||
#: includes/actions.php:32 includes/actions.php:58
|
||||
msgid "Something went wrong while bookmarking this listing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/actions.php:97 templates/added-notice.php:20
|
||||
msgid "Listing successfully added to your favourites."
|
||||
msgstr ""
|
||||
|
||||
#: includes/actions.php:132
|
||||
msgid "Something went wrong while removing this listing from your favourites."
|
||||
msgstr ""
|
||||
|
||||
#: includes/actions.php:166 templates/dashboard-list.php:37
|
||||
#: templates/removed-notice.php:20
|
||||
msgid "Listing successfully removed from your favourites."
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/FavouritesList.php:106
|
||||
#: includes/classes/FavouritesList.php:147
|
||||
msgid "Untitled list"
|
||||
msgstr ""
|
||||
|
||||
#: includes/classes/Plugin.php:94 includes/classes/Plugin.php:105
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:83 templates/dashboard-list.php:28
|
||||
msgid "Favourites"
|
||||
msgstr ""
|
||||
|
||||
#: templates/action.php:28
|
||||
msgid "Toggle from favourites"
|
||||
msgstr ""
|
||||
|
||||
#: templates/action.php:34 templates/button-shortcode.php:39
|
||||
#: templates/button-shortcode.php:46 templates/button.php:35
|
||||
#: templates/button.php:42
|
||||
msgid "Add to favourites"
|
||||
msgstr ""
|
||||
|
||||
#: templates/button-shortcode.php:32 templates/button.php:28
|
||||
msgid "Remove from favourites"
|
||||
msgstr ""
|
||||
|
||||
#: templates/dashboard-list.php:22
|
||||
msgid "Your favourites list is currently empty."
|
||||
msgstr ""
|
||||
|
||||
#: templates/dashboard-list.php:49
|
||||
msgid "Listing"
|
||||
msgstr ""
|
||||
|
||||
#: templates/dashboard-list.php:50
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: templates/dashboard-list.php:60
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: templates/dashboard-list.php:73
|
||||
msgid "Are you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/dashboard-list.php:79
|
||||
msgid ""
|
||||
"Are you sure you want to remove the listing <strong>\"%s\"</strong> from "
|
||||
"your favourites?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/dashboard-list.php:82
|
||||
msgid "Remove listing"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Posterno Favourites"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://posterno.com/extensions/favourites"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Allows users to keep a list of favorite listings. This is a Posterno "
|
||||
"extension."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Posterno"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://posterno.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,144 @@
|
||||
# Copyright (C) 2020 Posterno
|
||||
# This file is distributed under the same license as the Posterno Restaurants Menu package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Posterno Restaurants Menu 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/posterno-restaurants-menu\n"
|
||||
"POT-Creation-Date: 2020-02-16 14:06:56+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: node-wp-i18n 1.2.3\n"
|
||||
|
||||
#: includes/classes/Plugin.php:80 includes/classes/Plugin.php:91
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:23 includes/filters.php:88
|
||||
#: templates/dashboard-action-link.php:26
|
||||
msgid "Restaurant menu"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:60
|
||||
msgid "Menu group title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:60
|
||||
msgid "Example: lunch"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:61
|
||||
msgid "Menu items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:64
|
||||
msgid "Menu item name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:65
|
||||
msgid "Menu item price"
|
||||
msgstr ""
|
||||
|
||||
#: includes/filters.php:66
|
||||
msgid "Menu item description"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:37
|
||||
msgid "Setup restaurant menu"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:38
|
||||
msgid "You are setting up the food menu for the \"%s\" listing."
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:45
|
||||
msgid "Menu successfully updated."
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:59
|
||||
msgid "Menus"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:62
|
||||
msgid "Create menus then add items."
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:65
|
||||
msgid "Press the \"Add menu\" button to create your first menu."
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:71
|
||||
msgid "Menu name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:75
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:80
|
||||
msgid "Example: lunch, dinner, etc."
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:86
|
||||
msgid "Add menu"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:92
|
||||
msgid "Save menus"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:101
|
||||
msgid "Menu items setup"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:150
|
||||
msgid "Press the \"Add item\" button to add items to your menus."
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:158
|
||||
msgid "Dish name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:160
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:163
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:172
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:180
|
||||
msgid "Add item"
|
||||
msgstr ""
|
||||
|
||||
#: templates/restaurant-setup-page.php:193
|
||||
msgid "Save items"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Posterno Restaurants Menu"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://posterno.com/extensions/restaurants-menu"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Allows listings owners to create a restaurant menu for their listings."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Posterno"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://posterno.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,92 @@
|
||||
# Copyright (C) 2020 SomewhereWarm
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Product Bundles - Bulk Discounts for WooCommerce 1.3.0\n"
|
||||
"Report-Msgid-Bugs-To: support@somewherewarm.gr\n"
|
||||
"POT-Creation-Date: 2020-01-28 15:54:01+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:243
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:256
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:348
|
||||
msgid "Line <strong> %s </strong> not saved. Invalid format."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:290
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:299
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:307
|
||||
msgid "Line <strong> %s </strong> not saved. Overlapping data."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:319
|
||||
msgid "Line <strong> %s </strong> not saved. Invalid discount."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:386
|
||||
msgid ""
|
||||
"<strong>Product Bundles – Bulk Discounts</strong> requires "
|
||||
"WooCommerce Product Bundles <strong>%s</strong> or higher."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:403
|
||||
msgid "Bulk Discounts"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:404
|
||||
msgid ""
|
||||
"Define bulk discounts by adding one discount rule per line in either: i) "
|
||||
"quantity range format, e.g. <strong>1 - 5 | 5</strong>, ii) single quantity "
|
||||
"format, e.g. <strong>6 | 10</strong>, or iii) \"equal to or higher\" "
|
||||
"format, e.g. <strong>7+ | 15</strong>.<br>Note: Discount amounts are "
|
||||
"expressed in % only."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:735
|
||||
msgid "%s <small>(before discount)</small>"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:805
|
||||
msgid "Subtotal: "
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:806
|
||||
msgid "Discount: "
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:807
|
||||
msgid "%s%%"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Product Bundles - Bulk Discounts for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://docs.woocommerce.com/document/bundles/bundles-extensions/#bulk-"
|
||||
"discounts"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Bulk quantity discounts for WooCommerce Product Bundles."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SomewhereWarm"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://somewherewarm.gr/"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-bulk-discounts-for-woocommerce.php:808
|
||||
msgctxt "\"Discount\" string followed by value"
|
||||
msgid "%1$s%2$s"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,143 @@
|
||||
# Copyright (C) 2020 SomewhereWarm
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Product Bundles - Min/Max Items for WooCommerce 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: https://support.woothemes.com/hc/en-us\n"
|
||||
"POT-Creation-Date: 2020-01-28 13:49:39+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:125
|
||||
msgid ""
|
||||
"<strong>Product Bundles – Min/Max Items</strong> requires WooCommerce "
|
||||
"Product Bundles <strong>%s</strong> or higher."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:137
|
||||
msgid "Items Required (≥)"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:139
|
||||
msgid "Minimum required quantity of bundled items."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:146
|
||||
msgid "Items Allowed (≤)"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:148
|
||||
msgid "Maximum allowed quantity of bundled items."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:188
|
||||
msgid "Please choose an item."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:189
|
||||
msgid "Please choose 1 item.%s"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:190
|
||||
msgid "Please choose at least 1 item.%s"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:191
|
||||
msgid "Please choose up to 1 item.%s"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:192
|
||||
msgid "Please choose at least %1$s items.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:193
|
||||
msgid "Please choose up to %1$s items.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:194
|
||||
msgid "Please choose %1$s items.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:195
|
||||
msgid "%s items selected"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:196
|
||||
msgid "1 item selected"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:264
|
||||
msgid ""%s" cannot be purchased"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:267
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:328
|
||||
msgid "please choose 1 item"
|
||||
msgid_plural "please choose %s items"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:269
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:330
|
||||
msgid "please choose at least 1 item"
|
||||
msgid_plural "please choose at least %s items"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:271
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:332
|
||||
msgid "please limit your selection to 1 item"
|
||||
msgid_plural "please choose up to %s items"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:325
|
||||
msgid ""%s" cannot be added to the cart"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:336
|
||||
msgid " (you have chosen 1)"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:338
|
||||
msgid " (you have chosen %s)"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Product Bundles - Min/Max Items for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://somewherewarm.gr/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Free mini-extension for WooCommerce Product Bundles that allows you to "
|
||||
"control the minimum or maximum quantity of bundled products that customers "
|
||||
"must choose in order to purchase a Product Bundle."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SomewhereWarm"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:197
|
||||
msgctxt "validation error status format"
|
||||
msgid "<span class=\"bundled_items_selection_status\">%s</span>"
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:274
|
||||
msgctxt "cart validation error: action, resolution"
|
||||
msgid "%1$s – %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: product-bundles-min-max-items-for-woocommerce.php:341
|
||||
msgctxt "add-to-cart validation error: action, resolution, status"
|
||||
msgid "%1$s – %2$s%3$s."
|
||||
msgstr ""
|
||||
@@ -141,6 +141,10 @@
|
||||
<link rel="stylesheet" id="absolute-reviews-css" href="http://wp.lab/wp-content/plugins/absolute-reviews/public/css/absolute-reviews-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- abtesting-ai -->
|
||||
<link rel="stylesheet" id="abtesting-ai-css" href="http://wp.lab/wp-content/plugins/abtesting-ai/public/css/abtesting-ai-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- academic-bloggers-toolkit -->
|
||||
<link rel="stylesheet" id="abt-css-css" href="http://wp.lab/wp-content/plugins/academic-bloggers-toolkit/css/frontend.css?ver=4.11.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/academic-bloggers-toolkit/js/frontend.js?ver=4.11.3"></script>
|
||||
@@ -388,6 +392,10 @@
|
||||
<link rel="stylesheet" id="wpb-apt-grid-css" href="http://wp.lab/wp-content/plugins/advance-pricing-table/assets/css/main.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- advance-social-icons -->
|
||||
<link rel="stylesheet" id="frontviewstyle-css" href="http://wp.lab/wp-content/plugins/advance-social-icons/css/asi-frontend.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- advanced-ads -->
|
||||
<script type='text/javascript' src='http://wp.lab/wp-content/plugins/advanced-ads/public/assets/js/advanced.js?ver=1.10.4'></script>
|
||||
|
||||
@@ -408,6 +416,15 @@
|
||||
<script type='text/javascript' src='http://wp.lab/wp-content/plugins/advanced-ads-slider/public/assets/js/jquery.event.swipe.js?ver=1.4.4'></script>
|
||||
|
||||
|
||||
<!-- advanced-ads-sticky-ads -->
|
||||
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/advanced-ads-sticky-ads/public/assets/js/sticky.js?ver=1.7.7"></script>
|
||||
|
||||
|
||||
<!-- advanced-ads-tracking -->
|
||||
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/advanced-ads-tracking/public/assets/js/ga-tracking.js?ver=1.8.13"></script>
|
||||
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/advanced-ads-tracking/public/assets/js/script.js?ver=1.8.13"></script>
|
||||
|
||||
|
||||
<!-- advanced-backgrounds -->
|
||||
<link rel="stylesheet" id="nk-awb-css" href="http://wp.lab/wp-content/plugins/advanced-backgrounds/assets/awb/awb.css?ver=1.3.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="nk-awb-css" href="http://wp.lab/wp-content/plugins/advanced-backgrounds/assets/awb/awb.min.css?ver=1.3.2" type="text/css" media="all">
|
||||
@@ -557,6 +574,11 @@
|
||||
<link rel="stylesheet" id="age-gate-css" href="http://wp.lab/wp-content/plugins/age-gate/public/css/age-gate-public.css?ver=1.5.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- age-okay -->
|
||||
<link rel="stylesheet" id="age_okay_public_css-css" href="http://wp.lab/wp-content/plugins/age-okay/public/css/age-okay-public-min.css?ver=1.0.0-F" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/age-okay/public/js/age-okay-public-min.js?ver=1.0.0-F"></script>
|
||||
|
||||
|
||||
<!-- agile-store-locator -->
|
||||
<link rel="stylesheet" id="agile-store-locator-all-css-css" href="http://wp.lab/wp-content/plugins/agile-store-locator/public/css/all-css.min.css?ver=1.1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="agile-store-locator-asl-responsive-css" href="http://wp.lab/wp-content/plugins/agile-store-locator/public/css/asl_responsive.css?ver=1.1.1" type="text/css" media="all">
|
||||
@@ -681,6 +703,10 @@
|
||||
<link rel="stylesheet" id="ai1ec_style-css" href="//wp.lab/wp-content/plugins/all-in-one-event-calendar/public/themes-ai1ec/vortex/css/ai1ec_parsed_css.css?ver=2.5.28" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- all-in-one-invite-codes -->
|
||||
<script src="http://wp.lab/wp-content/plugins/all-in-one-invite-codes/assets/js/front.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- alligator-popup -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/alligator-popup/js/popup.js?ver=1.2.0"></script>
|
||||
|
||||
@@ -712,6 +738,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/alt-tags-for-images/public/js/cnc-image-alt-tags-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- altered-reality -->
|
||||
<link rel="stylesheet" id="altered-reality-style-css" href="http://wp.lab/wp-content/plugins/altered-reality/build/style.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- altruly-simple-diy-fundraising-for-charities-and-nonprofits -->
|
||||
<link rel="stylesheet" id="altruly-simple-diy-fundraising-for-charities-and-nonprofits-css" href="http://wp.lab/wp-content/plugins/altruly-simple-diy-fundraising-for-charities-and-nonprofits/public/css/altruly-simple-diy-fundraising-for-charities-and-nonprofits-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/altruly-simple-diy-fundraising-for-charities-and-nonprofits/public/js/altruly-simple-diy-fundraising-for-charities-and-nonprofits-public.js?ver=1.0.0"></script>
|
||||
@@ -827,6 +857,11 @@
|
||||
<link rel="stylesheet" id="ap-overrides-css" href="http://wp.lab/wp-content/plugins/anspress-question-answer/templates/css/overrides.css?v=4.1.4&ver=4.1.4" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- aotomot-gallery -->
|
||||
<link rel="stylesheet" id="aotomot-gallery-css" href="http://wp.lab/wp-content/plugins/aotomot-gallery/public/css/aotomot-gallery-style3.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/aotomot-gallery/public/js/aotomot-gallery-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ap-contact-form -->
|
||||
<link rel="stylesheet" id="ap-contact-frontend-style-css" href="http://wp.lab/wp-content/plugins/ap-contact-form//css/frontend.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ap-contact-form//js/frontend.js?ver=1.0.2"></script>
|
||||
@@ -1302,6 +1337,20 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/az-product-slider-for-woocommerce/assets/main.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- azexo-store-locator -->
|
||||
<link rel="stylesheet" id="ion-range-slider-css" href="http://wp.lab/wp-content/plugins/azexo-store-locator/css/ion.rangeSlider.css?ver=1.1" media="all">
|
||||
<link rel="stylesheet" id="air-datepicker-css" href="http://wp.lab/wp-content/plugins/azexo-store-locator/css/air-datepicker.css?ver=1.1" media="all">
|
||||
<link rel="stylesheet" id="azh_frontend-css" href="http://wp.lab/wp-content/plugins/azexo-store-locator/css/frontend.css?ver=1.1" media="all">
|
||||
<link rel="stylesheet" id="azt_frontend-css" href="http://wp.lab/wp-content/plugins/azexo-store-locator/css/templates.css?ver=1.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/azexo-store-locator/js/ion.rangeSlider.js?ver=1.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/azexo-store-locator/js/air-datepicker.js?ver=1.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/azexo-store-locator/js/frontend.js?ver=1.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/azexo-store-locator/js/templates.js?ver=1.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/azexo-store-locator/js/infobox.js?ver=1.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/azexo-store-locator/js/markerclusterer.js?ver=1.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/azexo-store-locator/js/richmarker.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- azurecurve-display-after-post-content -->
|
||||
<link rel="stylesheet" id="azurecurve-display-after-post-content-css" href="http://wp.lab/wp-content/plugins/azurecurve-display-after-post-content/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -1799,6 +1848,26 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/blur-text/blur-text.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- bma-lite-appointment-booking-and-scheduling -->
|
||||
<link rel="stylesheet" id="rtwbmal-book-my-appointment-css" href="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/public/css/rtwbmal-book-my-appointment-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="googleapis-css" href="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/public/css/googleapis.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="datepicker-css" href="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/assets/jquery-ui.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="modal-css" href="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/assets/jquery-modal/jquery.modal.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="font-awesome-css" href="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/assets/fontawesome/css/all.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="select2-css" href="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/assets/select2/select2.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="rtwbmal-template-css" href="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/public/partials/template/rtwbmal-template-public.css?ver=1.0.0" media="">
|
||||
<link rel="stylesheet" id="rtwbmal-template-first-css" href="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/public/partials/template/template-css/template-first.css?ver=1.0.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/public/js/rtwbmal-book-my-appointment-public.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/assets/select2/select2.full.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/assets/blockUI/jquery.blockUI.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/assets/jquery.validate/jquery.validate.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/assets/jquery.notify.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/public/partials/template/rtwbmal-template-public.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/public/partials/template/template-js/template-first.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/assets/jquery-ui.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/bma-lite-appointment-booking-and-scheduling/public/js/jquery.maskedinput.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- bmlt-tabbed-map -->
|
||||
<link rel="stylesheet" id="leaflet_css-css" href="http://wp.lab/wp-content/plugins/bmlt-tabbed-map/public/css/leaflet.css?ver=1.0.4" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="L_control-css" href="http://wp.lab/wp-content/plugins/bmlt-tabbed-map/public/css/L.Control.Locate.min.css?ver=1.0.4" type="text/css" media="all">
|
||||
@@ -2011,6 +2080,12 @@
|
||||
<link rel="stylesheet" id="bookwize-integrated-css" href="http://wp.lab/wp-content/plugins/bookwize-integrated-cinnamon/public/css/bookwize-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- boostify-header-footer-builder -->
|
||||
<link rel="stylesheet" id="boostify-hf-nav-menu-css-css" href="http://wp.lab/wp-content/plugins/boostify-header-footer-builder/assets/css/elementor/nav-menu.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="boostify-hf-search-css" href="http://wp.lab/wp-content/plugins/boostify-header-footer-builder/assets/css/elementor/search.css?ver=1.0.3" media="all">
|
||||
<link rel="stylesheet" id="ionicons-css" href="http://wp.lab/wp-content/plugins/boostify-header-footer-builder//assets/css/ionicons.css?ver=1.0.3" media="all">
|
||||
|
||||
|
||||
<!-- boot-slider -->
|
||||
<link rel="stylesheet" id="bt-main-style-css" href="http://wp.lab/wp-content/plugins/boot-slider/css/bt-slider.css?ver=1.0.0" type="text/css" media="">
|
||||
|
||||
@@ -2117,6 +2192,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/brewpress/assets/js/brewpress.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- bridgerpay -->
|
||||
<link rel="stylesheet" id="bridgerpay-css" href="http://wp.lab/wp-content/plugins/bridgerpay/public/css/bridgerpay-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/bridgerpay/public/js/bridgerpay-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- brikshya-map -->
|
||||
<link rel="stylesheet" id="brikshya-map-css" href="http://wp.lab/wp-content/plugins/brikshya-map/public/css/brikshya-map-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/brikshya-map/public/js/brikshya-map-public.js?ver=1.0.0"></script>
|
||||
@@ -2549,6 +2629,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cbxpetition/assets/js/cbxpetition-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cbxtakeatour -->
|
||||
<link rel="stylesheet" id="bootstrap-tour-standalone-css" href="http://wp.lab/wp-content/plugins/cbxtakeatour/assets/vendor/bootstrap-tour/bootstrap-tour-standalone.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="cbxtakeatour-public-css" href="http://wp.lab/wp-content/plugins/cbxtakeatour/assets/css/cbxtakeatour-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/cbxtakeatour/assets/vendor/bootstrap-tour/bootstrap-tour-standalone.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/cbxtakeatour/assets/js/cbxtakeatour-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cbxwpreadymix -->
|
||||
<link rel="stylesheet" id="cbxwpreadymix_owlcarousel-css" href="http://wp.lab/wp-content/plugins/cbxwpreadymix/public/vendor/owl-carousel/assets/owl.carousel.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="cbxwpreadymix_owlcarousel_theme-css" href="http://wp.lab/wp-content/plugins/cbxwpreadymix/public/vendor/owl-carousel/assets/owl.theme.default.min.css?ver=1.0.2" type="text/css" media="all">
|
||||
@@ -2705,6 +2792,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-shortcode-finder/public/js/contact-form-shortcode-finder-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cf7-to-bitrix24-integration -->
|
||||
<link rel="stylesheet" id="cf7-birtix-lead-css" href="http://wp.lab/wp-content/plugins/cf7-to-bitrix24-integration/public/css/cf7-birtix-lead-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/cf7-to-bitrix24-integration/public/js/cf7-birtix-lead-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- cf7-utm-tracking -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cf7-utm-tracking/assets/traffic_source2.min.js?ver=1.1"></script>
|
||||
|
||||
@@ -2739,6 +2831,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/change-buddypress-user-display-name-and-slug/public/js/mf-change-bp-user-display-slug-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- change-font-size-and-color -->
|
||||
<link rel="stylesheet" id="change-font-size-color-css" href="http://wp.lab/wp-content/plugins/change-font-size-and-color/public/css/change-font-size-color-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/change-font-size-and-color/public/js/change-font-size-color-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- change-wc-price-title -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/change-wc-price-title/assets/js/cwpt-price-title.js?ver=1.1"></script>
|
||||
|
||||
@@ -2956,6 +3053,11 @@
|
||||
<link rel="stylesheet" id="ct-css-css" href="http://wp.lab/wp-content/plugins/clients/public/css/ct.css?ver=1.1.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- climate-dashboard -->
|
||||
<link rel="stylesheet" id="climate-dashboard-css" href="http://wp.lab/wp-content/plugins/climate-dashboard/public/css/climate-dashboard-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/climate-dashboard/public/js/climate-dashboard-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- clio-grow-form -->
|
||||
<link rel="stylesheet" id="Grow_Form-frontend-css" href="http://wp.lab/wp-content/plugins/clio-grow-form/assets/css/frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/clio-grow-form/assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
@@ -3488,6 +3590,19 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/create-payment-stripe-gateway/includes/frontend/assets/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- creative-progress-bar -->
|
||||
<link rel="stylesheet" id="creative_progress_bar-css" href="http://wp.lab/wp-content/plugins/creative-progress-bar/public/css/creative_progress_bar-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="bootstrapcss-css" href="http://wp.lab/wp-content/plugins/creative-progress-bar/public/css/bootstrap.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/creative-progress-bar/public/js/creative_progress_bar-public.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/creative-progress-bar/public/js/bootstrap.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- creative-tag-cloud -->
|
||||
<link rel="stylesheet" id="creative-tag-cloud-css" href="http://wp.lab/wp-content/plugins/creative-tag-cloud/public/css/creative-tag-cloud.css?ver=0.1.0" media="all">
|
||||
<link rel="stylesheet" id="creative-tag-cloud-color-css" href="http://wp.lab/wp-content/plugins/creative-tag-cloud/public/css/creative-tag-cloud-color.css?ver=0.1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/creative-tag-cloud/public/js/creative-tag-cloud.min.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- crelly-slider -->
|
||||
<link rel="stylesheet" id="crellyslider-css" href="http://wp.lab/wp-content/plugins/crelly-slider/css/crellyslider.css?ver=1.2.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/crelly-slider/js/jquery.crellyslider.min.js?ver=1.2.3"></script>
|
||||
@@ -4333,6 +4448,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/em-purchase-code-validator/public/assets/js/em-puchase-code-validator-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- email-capture-lead-generation -->
|
||||
<link rel="stylesheet" id="eclg-style-css" href="http://wp.lab/wp-content/plugins/email-capture-lead-generation//css/eclg-style.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/email-capture-lead-generation//js/eclg-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- email-form-under-post -->
|
||||
<link rel="stylesheet" id="post-email-front-bootstrap-css" href="http://wp.lab/wp-content/plugins/email-form-under-post/css/bootstrap.css?ver=1.0.5" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="post-email-front-style-css" href="http://wp.lab/wp-content/plugins/email-form-under-post/css/post-form.css?ver=1.0.5" type="text/css" media="all">
|
||||
@@ -4644,6 +4764,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/exit-popup-free/assets/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- expandable-paywall -->
|
||||
<link rel="stylesheet" id="expandable-paywall-styles-css" href="http://wp.lab/wp-content/plugins/expandable-paywall/public/css/expandable-paywall-public.css?ver=1.1.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/expandable-paywall/public/js/expandable-paywall-public.js?ver=1.1.2"></script>
|
||||
|
||||
|
||||
<!-- explanatory-dictionary -->
|
||||
<link rel="stylesheet" id="explanatory_dictionary-plugin-styles-css" href="http://wp.lab/wp-content/plugins/explanatory-dictionary/public/classes/../assets/css/public.css?ver=4.1.5" type="text/css" media="all">
|
||||
|
||||
@@ -5003,6 +5128,13 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/flexi/public/js/flexi-public.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flexi/public/js/jquery.fancybox.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flexi/public/js/flexi_load_more_scroll.js?ver=1.0.0"></script>
|
||||
<link rel="stylesheet" id="flexi_purecss_base-css" href="http://wp.lab/wp-content/plugins/flexi/public/css/purecss/base-min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="flexi_purecss_grids-css" href="http://wp.lab/wp-content/plugins/flexi/public/css/purecss/grids-min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="flexi_purecss_responsive-css" href="http://wp.lab/wp-content/plugins/flexi/public/css/purecss/grids-responsive-min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/flexi/public/js/jquery.tagsinput.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flexi/public/js/filter-tags.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flexi/public/js/flexi_ajax_post.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flexi/public/js/flexi_ajax_delete.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- flexi-instagram-feed-lite-instagram-gallery -->
|
||||
@@ -5088,6 +5220,17 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/flow-flow-social-streams/js/require-utils.js?ver=3.0.10"></script>
|
||||
|
||||
|
||||
<!-- flower-delivery-by-florist-one -->
|
||||
<link rel="stylesheet" id="jquery-slick-nav-css" href="http://wp.lab/wp-content/plugins/flower-delivery-by-florist-one/public/css/slicknav.css?ver=1.11.1" media="all">
|
||||
<link rel="stylesheet" id="florist-one-flower-delivery-css" href="http://wp.lab/wp-content/plugins/flower-delivery-by-florist-one/public/css/florist-one-flower-delivery-public.css?ver=1.11.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/flower-delivery-by-florist-one/public/js/jquery.validate.js?ver=1.11.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flower-delivery-by-florist-one/public/js/jquery.slicknav.min.js?ver=1.11.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flower-delivery-by-florist-one/public/js/jquery.history.js?ver=1.11.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flower-delivery-by-florist-one/public/js/resizeSensor.js?ver=1.11.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flower-delivery-by-florist-one/public/js/elementQueries.js?ver=1.11.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/flower-delivery-by-florist-one/public/js/florist-one-flower-delivery-public.js?ver=1.11.1"></script>
|
||||
|
||||
|
||||
<!-- fluid-responsive-slideshow -->
|
||||
<link rel="stylesheet" id="frs-css-css" href="http://wp.lab/wp-content/plugins/fluid-responsive-slideshow/css/frs.css?ver=2.3.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="frs-position-css" href="http://wp.lab/wp-content/plugins/fluid-responsive-slideshow/css/frs-position.css?ver=2.3.1" type="text/css" media="all">
|
||||
@@ -5598,6 +5741,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/geotargeting/public/js/ddslick.js?ver=1.3.1"></script>
|
||||
|
||||
|
||||
<!-- get-a-quote-button-for-woocommerce -->
|
||||
<link rel="stylesheet" id="wpb-get-a-quote-button-sweetalert2-css" href="http://wp.lab/wp-content/plugins/get-a-quote-button-for-woocommerce/assets/css/sweetalert2.min.css?ver=1.0" media="all">
|
||||
<link rel="stylesheet" id="wpb-get-a-quote-button-styles-css" href="http://wp.lab/wp-content/plugins/get-a-quote-button-for-woocommerce/assets/css/frontend.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/get-a-quote-button-for-woocommerce/assets/js/sweetalert2.all.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/get-a-quote-button-for-woocommerce/assets/js/frontend.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- get-affiliate-link -->
|
||||
<link rel="stylesheet" id="get_affiliate_link-frontend-css" href="http://wp.lab/wp-content/plugins/get-affiliate-link/css/frontend.css?ver=1.5.13" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/get-affiliate-link/js/price-display-helpers.js?ver=1.5.13"></script>
|
||||
@@ -5618,6 +5768,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/get-price-comparison/js/main.gpc.js?ver=1.5.5"></script>
|
||||
|
||||
|
||||
<!-- get-your-quote -->
|
||||
<link rel="stylesheet" id="services-css" href="http://wp.lab/wp-content/plugins/get-your-quote/public/css/services-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/get-your-quote/public/js/swiper.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/get-your-quote/public/js/services-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- getdeals -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/getdeals/public/js/unserialize.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/getdeals/public/js/getdeals.js?ver=1.0.0"></script>
|
||||
@@ -6040,6 +6196,11 @@
|
||||
<link rel="stylesheet" id="h7tabs_animate.min-css" href="http://wp.lab/wp-content/plugins/h7-tabs/assets/css/animate.min.css?ver=7.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- habu -->
|
||||
<link rel="stylesheet" id="habu-css" href="http://wp.lab/wp-content/plugins/habu/public/css/habu-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/habu/public/js/habu-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- halloween-woocommerce -->
|
||||
<link rel="stylesheet" id="halloweenstyles-css" href="http://wp.lab/wp-content/plugins/halloween-woocommerce/styles.css?ver=0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/cookie.js?ver=0.2"></script>
|
||||
@@ -6172,6 +6333,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hide-show-comment/assets/js/hsc.js?ver=1.1.5"></script>
|
||||
|
||||
|
||||
<!-- hide-sub-categories-products -->
|
||||
<link rel="stylesheet" id="hide-sub-categories-products-css" href="http://wp.lab/wp-content/plugins/hide-sub-categories-products/public/css/hide-sub-categories-products-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/hide-sub-categories-products/public/js/hide-sub-categories-products-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- hide-wp-toolbar -->
|
||||
<link rel="stylesheet" id="hide-wp-toolbar-style-css" href="http://wp.lab/wp-content/plugins/hide-wp-toolbar/style.css?ver=2.4.2" type="text/css" media="all">
|
||||
|
||||
@@ -6222,6 +6388,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hm-product-catalog/assets/js/wphpc-front-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- hm-resume-manager -->
|
||||
<link rel="stylesheet" id="hmrm-front-style-css" href="http://wp.lab/wp-content/plugins/hm-resume-manager/assets/css/hmrm-front-style.css?ver=1.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/hm-resume-manager/assets/js/hmrm-front-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- hmh-footer-builder-for-elementor -->
|
||||
<link rel="stylesheet" id="bbfb-css" href="http://wp.lab/wp-content/plugins/hmh-footer-builder-for-elementor//assets/css/bbfb.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hmh-footer-builder-for-elementor//assets/js/script.js?ver=1.0"></script>
|
||||
@@ -6344,6 +6515,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/i-chat/js/jquery.cookie.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- i-like -->
|
||||
<script src="http://wp.lab/wp-content/plugins/i-like/assets/js/i-like-ajax.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/i-like/assets/js/main.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- i-search -->
|
||||
<link rel="stylesheet" id="isrc_frontend-css" href="http://wp.lab/wp-content/plugins/i-search/front/css/i-search.min.css?ver=1.2.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/i-search/front/js/isrc-autocomplete.min.js?ver=1.2.0"></script>
|
||||
@@ -6747,6 +6923,16 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/invitations-for-slack/invitations-for-slack/scripts/script.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- invoice-creator -->
|
||||
<link rel="stylesheet" id="pravel_invoice_stylesheet-css" href="http://wp.lab/wp-content/plugins/invoice-creator/assets/css/style.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="pravel_invoice_style_datatable-css" href="http://wp.lab/wp-content/plugins/invoice-creator/assets/css/jquery.dataTables.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/invoice-creator/assets/js/pravel-repeater.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/invoice-creator/assets/js/pravel-verification-code.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/invoice-creator/assets/js/pravel_sweetalert.min.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/invoice-creator/assets/js/jquery.dataTables.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/invoice-creator/assets/js/main.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- invoicing -->
|
||||
<link rel="stylesheet" id="wpinv_front_style-css" href="http://wp.lab/wp-content/plugins/invoicing/assets/css/invoice-front.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/invoicing/assets/js/jsvat.js?ver=1.0.2"></script>
|
||||
@@ -7289,6 +7475,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/lazy-images-without-jetpack/lazy-images/js/lazy-images.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- lazy-lists -->
|
||||
<link rel="stylesheet" id="lazy-lists-style-css" href="http://wp.lab/wp-content/plugins/lazy-lists/build/css/style.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- lazy-load -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lazy-load/js/jquery.sonar.min.js?ver=0.6.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lazy-load/js/lazy-load.js?ver=0.6.1"></script>
|
||||
@@ -8054,6 +8244,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mask-elementor-form/js/maskelementor.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- mask-form-elementor -->
|
||||
<script src="http://wp.lab/wp-content/plugins/mask-form-elementor/js/jquery.mask.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/mask-form-elementor/js/maskformelementor.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- massive-visual-builder-page-layout-builder -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/massive-visual-builder-page-layout-builder/assets/rating/rating.js?ver=1.0"></script>
|
||||
|
||||
@@ -8403,6 +8598,21 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mingrana-wp-to-blockchain/public/js/mingrana-wp-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- minitek-slider -->
|
||||
<link rel="stylesheet" id="minitek-slider_flickity-css" href="http://wp.lab/wp-content/plugins/minitek-slider/public/css/flickity.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="minitek-slider_flickity-fade-css" href="http://wp.lab/wp-content/plugins/minitek-slider/public/css/flickity.fade.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="minitek-slider_flickity-fullscreen-css" href="http://wp.lab/wp-content/plugins/minitek-slider/public/css/flickity.fullscreen.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="minitek-slider-css" href="http://wp.lab/wp-content/plugins/minitek-slider/public/css/minitek-slider-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/minitek-slider/public/js/flickity.pkgd.min.js?ver=1.0.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/minitek-slider/public/js/flickity.fade.js?ver=1.0.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/minitek-slider/public/js/flickity.fullscreen.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- minnit-chat -->
|
||||
<link rel="stylesheet" id="minnitchatstyle-css" href="http://wp.lab/wp-content/plugins/minnit-chat/minnit.css?minnitversion=2.0.1&ver=5.3.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/minnit-chat/minnit.js?minnitversion=2.0.1&ver=5.3.1"></script>
|
||||
|
||||
|
||||
<!-- mino-flatsome-title-with-category -->
|
||||
<link rel="stylesheet" id="flatsome-title-category-css" href="http://wp.lab/wp-content/plugins/mino-flatsome-title-with-category/assets/css/mino-flatsome-title-with-category.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -8433,6 +8643,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mobile-action-bar/public/js/mobi-actionbar-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- mobile-builder -->
|
||||
<link rel="stylesheet" id="mobile-builder-css" href="http://wp.lab/wp-content/plugins/mobile-builder/public/css/mobile-builder-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/mobile-builder/public/js/mobile-builder-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- mobile-dj-manager -->
|
||||
<link rel="stylesheet" id="mdjm-styles-css" href="http://wp.lab/wp-content/plugins/mobile-dj-manager/templates/mdjm.min.css?ver=1.4.7.7" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="mobile-dj-manager-css" href="http://wp.lab/wp-content/plugins/mobile-dj-manager/assets/css/mdjm-styles.css?ver=1.4.7.7" type="text/css" media="all">
|
||||
@@ -8444,6 +8659,11 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/mobile-login-woocommerce/assets/js/xoo-ml-phone-js.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- mobile-megamax-menu -->
|
||||
<link rel="stylesheet" id="megamaxmenu-css" href="http://wp.lab/wp-content/plugins/mobile-megamax-menu/pro/assets/css/megamaxmenu.min.css?ver=0.9" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/mobile-megamax-menu/assets/js/megamaxmenu.min.js?ver=0.9"></script>
|
||||
|
||||
|
||||
<!-- mobile-menu -->
|
||||
<link rel="stylesheet" id="cssmobmenu-icons-css" href="http://wp.lab/wp-content/plugins/mobile-menu/includes/css/mobmenu-icons.css?ver=2.7.4.4" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="cssmobmenu-css" href="http://wp.lab/wp-content/plugins/mobile-menu/includes/css/mobmenu.css?ver=2.7.4.4" type="text/css" media="all">
|
||||
@@ -8521,6 +8741,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/momoyoga-integration/js/schedule.js?ver=2.0"></script>
|
||||
|
||||
|
||||
<!-- mon-laboratoire -->
|
||||
<link rel="stylesheet" id="MonLabo-css" href="http://wp.lab/wp-content/plugins/mon-laboratoire/MonLabo.css?ver=3.0" media="all">
|
||||
|
||||
|
||||
<!-- monk -->
|
||||
<link rel="stylesheet" id="Monk-css" href="http://wp.lab/wp-content/plugins/monk/public/css/monk-public.css?ver=0.7.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="public-monk-language-switcher-style-css" href="http://wp.lab/wp-content/plugins/monk/public/css/monk-widget.css?ver=0.7.0" type="text/css" media="all">
|
||||
@@ -8593,6 +8817,10 @@
|
||||
<script src="http://wp.lab/wp-content/plugins/mowomo-google-reviews/build/assets/scripts.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- mowomo-variable-fonts -->
|
||||
<script src="http://wp.lab/wp-content/plugins/mowomo-variable-fonts/assets/js/scripts.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- mp-restaurant-menu -->
|
||||
<link rel="stylesheet" id="mp-restaurant-menu-font-css" href="http://wp.lab/wp-content/plugins/mp-restaurant-menu/media/css/lib/mp-restaurant-menu-font.min.css?ver=2.2.8" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="mprm-style-css" href="http://wp.lab/wp-content/plugins/mp-restaurant-menu/media/css/style.css?ver=2.2.8" type="text/css" media="all">
|
||||
@@ -8921,6 +9149,13 @@
|
||||
<link rel="stylesheet" id="custom-style-css-css" href="http://wp.lab/wp-content/plugins/newsletter-email-subscribe/css/style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- next-feed-builder -->
|
||||
<link rel="stylesheet" id="nextaddons-icon-nx-css" href="http://wp.lab/wp-content/plugins/next-feed-builder/assets/css/icon/nx-icon.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="nextfeed-social-css" href="http://wp.lab/wp-content/plugins/next-feed-builder/assets/css/icon/nx-social.css?ver=1.0.1" media="all">
|
||||
<link rel="stylesheet" id="nextfeed-public-css" href="http://wp.lab/wp-content/plugins/next-feed-builder/assets/css/public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/next-feed-builder/assets/script/public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- next-mail-chimp -->
|
||||
<link rel="stylesheet" id="themedev_mail_settings_css_public-css" href="http://wp.lab/wp-content/plugins/next-mail-chimp/assets/public/css/public-style.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/next-mail-chimp/assets/public/script/subscribe.js?ver=1.0.1"></script>
|
||||
@@ -8949,6 +9184,7 @@
|
||||
|
||||
<!-- ng-lazyload -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ng-lazyload//plugin.js?ver=1.1"></script>
|
||||
<link rel="stylesheet" id="nglazyloadcss-css" href="http://wp.lab/wp-content/plugins/ng-lazyload//nglazyload.css?ver=1.1" media="all">
|
||||
|
||||
|
||||
<!-- nggimagerotation -->
|
||||
@@ -9066,6 +9302,15 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/notifyme/js/notifyme.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- notikumi-ticketing -->
|
||||
<link rel="stylesheet" id="notikumi-bootstrap-css" href="http://wp.lab/wp-content/plugins/notikumi-ticketing/public/css/bootstrap/bootstrap.css?ver=1.2.7" media="all">
|
||||
<link rel="stylesheet" id="notikumi-bootstrap-theme-css" href="http://wp.lab/wp-content/plugins/notikumi-ticketing/public/css/bootstrap/bootstrap-theme.css?ver=1.2.7" media="all">
|
||||
<link rel="stylesheet" id="notikumi-color-custom-css" href="http://wp.lab/wp-content/plugins/notikumi-ticketing/templates/original/css/color-custom.css?ver=1.2.7" media="all">
|
||||
<link rel="stylesheet" id="notikumi-custom-styles-css" href="http://wp.lab/wp-content/plugins/notikumi-ticketing/templates/original/css/custom-styles.css?ver=1.2.7" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/notikumi-ticketing/public/js/ntk-px-tracking.js?ver=1.2.7"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/notikumi-ticketing/public/js/notikumi-public.js?ver=1.2.7"></script>
|
||||
|
||||
|
||||
<!-- noto-font-loader -->
|
||||
<link rel="stylesheet" id="noto-font-loader-css" href="http://wp.lab/wp-content/plugins/noto-font-loader/public/css/noto-font-loader-sans.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/noto-font-loader/public/js/noto-font-loader-public.js?ver=1.0.2"></script>
|
||||
@@ -9348,6 +9593,15 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/orcsnet-from-inditip/assets/js/frontend.min.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- order-on-mobile-for-woocommerce -->
|
||||
<link rel="stylesheet" id="woocommerce-order-on-whatsapp-css" href="http://wp.lab/wp-content/plugins/order-on-mobile-for-woocommerce/public/css/woocommerce-order-on-whatsapp-public.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/order-on-mobile-for-woocommerce/public/js/woocommerce-order-on-whatsapp-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- orens-unsplash-widget -->
|
||||
<link rel="stylesheet" id="unsplash-widget-css" href="http://wp.lab/wp-content/plugins/orens-unsplash-widget/css/style.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- organic-customizer-widgets -->
|
||||
<link rel="stylesheet" id="organic-widgets-css" href="http://wp.lab/wp-content/plugins/organic-customizer-widgets/public/css/organic-widgets-public.css?ver=1.1.10" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/organic-customizer-widgets/public/js/organic-widgets-public.js?ver=1.1.10"></script>
|
||||
@@ -9473,6 +9727,14 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-map/js/script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- page-popup -->
|
||||
<link rel="stylesheet" id="wordpress_popup_plugin-component-css-css" href="http://wp.lab/wp-content/plugins/page-popup/assets/css/component.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="wordpress_popup_plugin-frontend-css" href="http://wp.lab/wp-content/plugins/page-popup/assets/css/frontend.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/page-popup/assets/js/modernizr.custom.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/page-popup/assets/js/classie.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/page-popup/assets/js/modalEffects.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- page-scroll-to-id -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-scroll-to-id/js/page-scroll-to-id.min.js?ver=1.6.2"></script>
|
||||
|
||||
@@ -9736,6 +9998,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/photo-gallery-with-responsive/assets/js/catfilter.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- photo-roll -->
|
||||
<link rel="stylesheet" id="instantgram-public-css" href="http://wp.lab/wp-content/plugins/photo-roll/public/css/instantgram-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/photo-roll/public/js/instantgram-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- photo-swipe -->
|
||||
<link rel="stylesheet" id="photoswipe-lib-css" href="http://wp.lab/wp-content/plugins/photo-swipe/lib/photoswipe.css?ver=4.1.1.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="photoswipe-default-skin-css" href="http://wp.lab/wp-content/plugins/photo-swipe/lib/default-skin/default-skin.css?ver=4.1.1.1" type="text/css" media="all">
|
||||
@@ -9945,6 +10212,13 @@
|
||||
<link rel="stylesheet" id="popup-maker-site-css" href="http://wp.lab/wp-content/plugins/popup-maker/deprecated/assets/css/site.min.css?ver=1.6.6" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- popup-notification-news-alert -->
|
||||
<link rel="stylesheet" id="popup-alert-plugin-css" href="http://wp.lab/wp-content/plugins/popup-notification-news-alert/public/css/popup-alert-plugin-public.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="popup-alert-plugin-toast-css" href="http://wp.lab/wp-content/plugins/popup-notification-news-alert/public//css/toastr.min.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/popup-notification-news-alert/public/js/popup-alert-plugin-public.js?ver=1.0.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/popup-notification-news-alert/public//js/toastr.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- popup-on-click -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/popup-on-click/public/js/popup-on-click-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -9973,6 +10247,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/popups-for-divi/js/front.js?ver=1.2.1-1524303966"></script>
|
||||
|
||||
|
||||
<!-- popupsmart -->
|
||||
<link rel="stylesheet" id="pop-css" href="http://wp.lab/wp-content/plugins/popupsmart/public/css/pop-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/popupsmart/public/js/pop-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- portfolio-and-projects -->
|
||||
<link rel="stylesheet" id="wpos-slick-style-css" href="http://wp.lab/wp-content/plugins/portfolio-and-projects/assets/css/slick.css?ver=1.0.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wp-pap-public-css-css" href="http://wp.lab/wp-content/plugins/portfolio-and-projects/assets/css/wp-pap-public.css?ver=1.0.3" type="text/css" media="all">
|
||||
@@ -10220,6 +10499,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pppt/public/js/pppt-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- practicepulse-tools -->
|
||||
<link rel="stylesheet" id="practicepulse-tools-css" href="http://wp.lab/wp-content/plugins/practicepulse-tools/public/css/practicepulse-tools-public-min.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- pramadillo-activecampaign-email-preference-center -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pramadillo-activecampaign-email-preference-center/public/js/public.js?ver=1.0.5"></script>
|
||||
|
||||
@@ -10263,6 +10546,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-release-newsroom/inc/frontend/js/prwirepro-press_release_newsroom-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- press-release-reviews -->
|
||||
<link rel="stylesheet" id="prwirepro-press_release_reviews-css" href="http://wp.lab/wp-content/plugins/press-release-reviews/inc/frontend/css/prwirepro-press_release_reviews-frontend.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/press-release-reviews/inc/frontend/js/prwirepro-press_release_reviews-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- press-release-services -->
|
||||
<link rel="stylesheet" id="prwirepro-press_release_services-css" href="http://wp.lab/wp-content/plugins/press-release-services/inc/frontend/css/prwirepro-press_release_services-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/press-release-services/inc/frontend/js/prwirepro-press_release_services-frontend.js?ver=1.0.0"></script>
|
||||
@@ -10523,6 +10811,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pud-generator/public/js/pud-generator-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- puredevs-gdpr-compliance -->
|
||||
<link rel="stylesheet" id="icofont-css" href="http://wp.lab/wp-content/plugins/puredevs-gdpr-compliance/public/css/icofont.min.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="pd_gdpr-css" href="http://wp.lab/wp-content/plugins/puredevs-gdpr-compliance/public/css/pd_gdpr-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/puredevs-gdpr-compliance/public/js/pd_gdpr-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- push-notification -->
|
||||
<script src="http://wp.lab/wp-content/plugins/push-notification//assets/public/application.min.js?ver=1.0"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/push-notification//assets/public/messaging.min.js?ver=1.0"></script>
|
||||
@@ -10668,6 +10962,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/radar-shortcodes/public/js/radar-shortcodes-plugins.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- raileo -->
|
||||
<link rel="stylesheet" id="options-css" href="http://wp.lab/wp-content/plugins/raileo/public/css/raileo-public.css?ver=1.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/raileo/public/js/raileo-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- random-banner -->
|
||||
<link rel="stylesheet" id="bc_rb_global_style-css" href="http://wp.lab/wp-content/plugins/random-banner/assets/style/bc_rb_global.css?ver=4.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="bc_rb_animate-css" href="http://wp.lab/wp-content/plugins/random-banner/assets/style/animate.css?ver=4.0" type="text/css" media="all">
|
||||
@@ -11007,6 +11306,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/responsive-attention-box/js/alert.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- responsive-block-control -->
|
||||
<script src="http://wp.lab/wp-content/plugins/responsive-block-control/public/js/responsive-block-control-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- responsive-embed-videos -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/responsive-embed-videos/js/rev.js?ver=0.0.1"></script>
|
||||
|
||||
@@ -11421,6 +11724,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/say-it/public/js/say-it-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sayonara -->
|
||||
<script src="http://wp.lab/wp-content/plugins/sayonara/public/js/sayonara-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- schemaninja -->
|
||||
<link rel="stylesheet" id="schema-ninja-style-css" href="http://wp.lab/wp-content/plugins/schemaninja/style.css?ver=2.2.1" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="fontawesome-css" href="http://wp.lab/wp-content/plugins/schemaninja/assets/font-awesome/css/font-awesome.min.css?ver=2.2.1" type="text/css" media="all">
|
||||
@@ -11929,6 +12236,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sidebar-widget-collapser/SidebarCollapserScript.js?ver=1.4"></script>
|
||||
|
||||
|
||||
<!-- sidemenu -->
|
||||
<link rel="stylesheet" id="sidemenu-css-css" href="http://wp.lab/wp-content/plugins/sidemenu/css/sidemenu.css?ver=1.1.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/sidemenu/js/sidemenu.js?ver=1.1.3"></script>
|
||||
|
||||
|
||||
<!-- sideposts -->
|
||||
<link rel="stylesheet" id="ak_sideposts-css" href="http://wp.lab/wp-content/plugins/sideposts/style.css?ver=3.0.2" type="text/css" media="all">
|
||||
|
||||
@@ -12175,6 +12487,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-social-sharing-buttons/public/js/wp-scsb-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- simple-social-shout-for-givewp -->
|
||||
<link rel="stylesheet" id="sss4givewp-css" href="http://wp.lab/wp-content/plugins/simple-social-shout-for-givewp/assets/sss4givewp-frontend.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- simple-sponsorships -->
|
||||
<link rel="stylesheet" id="ss-style-css" href="http://wp.lab/wp-content/plugins/simple-sponsorships/assets/dist/css/public.css?ver=0.1.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-sponsorships/assets/dist/js/public.js?ver=0.1.2"></script>
|
||||
@@ -12185,6 +12501,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-staff-list/public/js/simple-staff-list-public.js?ver=2.0.1"></script>
|
||||
|
||||
|
||||
<!-- simple-stopwatch -->
|
||||
<link rel="stylesheet" id="simple-stopwatch-css" href="http://wp.lab/wp-content/plugins/simple-stopwatch/public/css/simple-stopwatch-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/simple-stopwatch/public/js/simple-stopwatch-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- simple-student-result -->
|
||||
<link rel="stylesheet" id="ssr_v_result_st-css" href="http://wp.lab/wp-content/plugins/simple-student-result/css/ssr_style.css?ver=1.6.4" type="text/css" media="all">
|
||||
|
||||
@@ -12763,6 +13084,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/splash-popup-for-woocommerce/js/frontend.js?ver=1.0.9"></script>
|
||||
|
||||
|
||||
<!-- spoken-search -->
|
||||
<link rel="stylesheet" id="ss2t-css-css" href="http://wp.lab/wp-content/plugins/spoken-search/assets/css/ss2t.min.css?ver=1.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/spoken-search/assets/js/ss2t-bundle.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- spoken-word -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/spoken-word/dist/spoken-word.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -12925,6 +13251,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-add-to-cart-for-woo/public/js/satcwoo-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- sticky-block -->
|
||||
<script src="http://wp.lab/wp-content/plugins/sticky-block/dist/sticky-block.min.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- sticky-menu-or-anything-on-scroll -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-menu-or-anything-on-scroll/assets/js/jq-sticky-anything.min.js?ver=2.1.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sticky-menu-or-anything-on-scroll/assets/js/stickThis.js?ver=2.1.1"></script>
|
||||
@@ -13212,6 +13542,13 @@
|
||||
<link rel="stylesheet" id="table-addons-for-elementor-css" href="http://wp.lab/wp-content/plugins/table-addons-for-elementor/public/css/table-addons-for-elementor-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- table-builder -->
|
||||
<link rel="stylesheet" id="icdb_infocaptor_css_public-css" href="http://wp.lab/wp-content/plugins/table-builder/admin/css/ic-datatable-builder-public.css?v=1.0.0&ver=5.3.1" media="screen">
|
||||
<link rel="stylesheet" id="icdb_infocaptor_datatables_css_public-css" href="http://wp.lab/wp-content/plugins/table-builder/admin/js/datatables/datatables.min.css?v=1.0.0&ver=5.3.1" media="screen">
|
||||
<script src="http://wp.lab/wp-content/plugins/table-builder/admin/js/datatables/datatables.min.js?v=1.0.0&ver=5.3.1"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/table-builder/admin/js/ic-datatable-builder-public.js?v=1.0.0&ver=5.3.1"></script>
|
||||
|
||||
|
||||
<!-- table-builder-for-csv -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/table-builder-for-csv/js/script.js?ver=1.0"></script>
|
||||
|
||||
@@ -13671,6 +14008,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/to-top/public/js/to-top-public.js?ver=1.5.4"></script>
|
||||
|
||||
|
||||
<!-- tochat-be -->
|
||||
<link rel="stylesheet" id="public-tochatbe-css" href="http://wp.lab/wp-content/plugins/tochat-be/assets/css/public-tochatbe-style.css?ver=1.0.1" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/tochat-be/assets/js/public-tochatbe-script.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- toggle-list -->
|
||||
<link rel="stylesheet" id="toggle-list-css" href="http://wp.lab/wp-content/plugins/toggle-list/css/style.min.css?ver=0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/toggle-list/js/toggle-list.min.js?ver=0.1"></script>
|
||||
@@ -13861,6 +14203,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/turbo-widgets/public/js/turbo-widgets-public.js?ver=2.0.0"></script>
|
||||
|
||||
|
||||
<!-- turbocharged-testimonial-block -->
|
||||
<link rel="stylesheet" id="turbocharged-testimonial-block-tailwind-style-css" href="http://wp.lab/wp-content/plugins/turbocharged-testimonial-block/build/tailwind.css?ver=1.0.0" media="all">
|
||||
<link rel="stylesheet" id="turbocharged-testimonial-block-style-css" href="http://wp.lab/wp-content/plugins/turbocharged-testimonial-block/build/style.build.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- tutorial-blocks-gutenberg-blocks-collection -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/tutorial-blocks-gutenberg-blocks-collection/vendor/codemirror/addon/mode/loadmode.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -14331,6 +14678,11 @@
|
||||
<link rel="stylesheet" id="ck_updated_today_css-css" href="http://wp.lab/wp-content/plugins/updated-today-plugin/styles.css?ver=2.6" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- upfiv-complete-all-in-one-seo-wizard -->
|
||||
<link rel="stylesheet" id="upfiv-css" href="http://wp.lab/wp-content/plugins/upfiv-complete-all-in-one-seo-wizard/public/css/upfiv-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/upfiv-complete-all-in-one-seo-wizard/public/js/upfiv-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- upunzipper -->
|
||||
<link rel="stylesheet" id="upunzipper-css" href="http://wp.lab/wp-content/plugins/upunzipper/public/css/upunzipper-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/upunzipper/public/js/upunzipper-public.js?ver=1.0.0"></script>
|
||||
@@ -14612,6 +14964,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/visideign-login/js/blockui.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- visitors-details -->
|
||||
<link rel="stylesheet" id="wp-visitors-details-css" href="http://wp.lab/wp-content/plugins/visitors-details/public/css/wp-visitors-details-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/visitors-details/public/js/wp-visitors-details-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- visual-link-preview -->
|
||||
<link rel="stylesheet" id="vlp-public-css" href="http://wp.lab/wp-content/plugins/visual-link-preview/dist/public.css?ver=1.2.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="vlp-template-default-css" href="http://wp.lab/wp-content/plugins/visual-link-preview/templates/link/default/default.min.css?ver=1.2.0" type="text/css" media="all">
|
||||
@@ -14652,6 +15009,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/void-woo-cart-restrictor/public/js/void-woo-cart-restrictor-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- voimada-rest-api -->
|
||||
<link rel="stylesheet" id="voimadarestapi-css" href="http://wp.lab/wp-content/plugins/voimada-rest-api/public/css/voimadarestapi-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/voimada-rest-api/public/js/voimadarestapi-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- voting-for-a-photo -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/voting-for-a-photo/assets/frontend/js/voting-for-photo.js?ver=1.1"></script>
|
||||
|
||||
@@ -14798,6 +15160,15 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wc-product-videos/public/js/woocommerce-product-videos-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wc-products-slider -->
|
||||
<link rel="stylesheet" id="wcps_wcps-slider-3d-gallery-demo-css" href="http://wp.lab/wp-content/plugins/wc-products-slider/public/css/wcps-slider-3d-gallery-demo.css?ver=1.0.3" media="">
|
||||
<link rel="stylesheet" id="wcps_wcps-slider-3d-gallery-style-css" href="http://wp.lab/wp-content/plugins/wc-products-slider/public/css/wcps-slider-3d-gallery-style.css?ver=1.0.3" media="">
|
||||
<link rel="stylesheet" id="wcps-css" href="http://wp.lab/wp-content/plugins/wc-products-slider/public/css/wcps-public.css?ver=1.0.3" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wc-products-slider/public/js/wcps-public.js?ver=1.0.3"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wc-products-slider/public/js/wcps-slider-3d-gallery-modernizr.custom.js?ver=1.0.3"></script>
|
||||
<script src="http://wp.lab/wp-content/plugins/wc-products-slider/public/js/wcps-slider-3d-gallery.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- wc-responsive-video -->
|
||||
<link rel="stylesheet" id="wc-responsive-video-scripts-css" href="http://wp.lab/wp-content/plugins/wc-responsive-video/includes/css/style.css?ver=1.11" type="text/css" media="all">
|
||||
|
||||
@@ -14918,6 +15289,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/weaver-themes-shortcode-compatibility/includes/wvr.compatibility.min.js?ver=1.0.3"></script>
|
||||
|
||||
|
||||
<!-- webamps-remove-double-menu -->
|
||||
<script src="http://wp.lab/wp-content/plugins/webamps-remove-double-menu/js/doublemenuscript.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- webappick-pdf-invoice-for-woocommerce -->
|
||||
<link rel="stylesheet" id="webappick-pdf-invoice-for-woocommerce-css" href="http://wp.lab/wp-content/plugins/webappick-pdf-invoice-for-woocommerce/public/css/webappick-pdf-invoice-for-woocommerce-public.css?ver=1.1.7" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/webappick-pdf-invoice-for-woocommerce/public/js/webappick-pdf-invoice-for-woocommerce-public.js?ver=1.1.7"></script>
|
||||
@@ -15147,6 +15522,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/windows-azure-end-user-analytics-unofficial/js/windows-azure-end-user-analytics.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- winterlock -->
|
||||
<link rel="stylesheet" id="winter-activity-log-css" href="http://wp.lab/wp-content/plugins/winterlock/public/css/winter-activity-log-public.css?ver=1.0.2" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/winterlock/public/js/winter-activity-log-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- wired-impact-volunteer-management -->
|
||||
<link rel="stylesheet" id="wired-impact-volunteer-management-css" href="http://wp.lab/wp-content/plugins/wired-impact-volunteer-management/frontend/css/wi-volunteer-management-public.css?ver=1.3.8" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wired-impact-volunteer-management/frontend/js/wi-volunteer-management-public.js?ver=1.3.8"></script>
|
||||
@@ -15774,6 +16154,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-all-in-one-admin-bar/public/assets/js/jquery.cookie.js?ver=1.1"></script>
|
||||
|
||||
|
||||
<!-- wp-amazon-shop -->
|
||||
<link rel="stylesheet" id="acl_wpas-frontend-css" href="http://wp.lab/wp-content/plugins/wp-amazon-shop/assets/css/wpas-style.css?ver=2.0.8" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-amazon-shop/assets/js/frontend.js?ver=2.0.8"></script>
|
||||
|
||||
|
||||
<!-- wp-and-divi-icons -->
|
||||
<link rel="stylesheet" id="ags-divi-icons-css" href="http://wp.lab/wp-content/plugins/wp-and-divi-icons/css/icons.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-and-divi-icons/js/icons.js?ver=1.0.1"></script>
|
||||
@@ -16002,6 +16387,10 @@
|
||||
<link rel="stylesheet" id="commerce7-for-wordpress-css" href="http://wp.lab/wp-content/plugins/wp-commerce7/assets/css/commerce7-for-wordpress.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- wp-consent-api -->
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-consent-api/assets/js/wp-consent-api.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-console -->
|
||||
<link rel="stylesheet" id="wp-console-css" href="http://wp.lab/wp-content/plugins/wp-console/assets/css/wp-console.css?ver=1.3.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-console/assets/js/wp-console.js?ver=1.3.0"></script>
|
||||
@@ -16583,6 +16972,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-license-manager/public/js/wp-license-manager-public.js?ver=0.5.5"></script>
|
||||
|
||||
|
||||
<!-- wp-light-heatmap -->
|
||||
<link rel="stylesheet" id="wp_light_heatmap-css" href="http://wp.lab/wp-content/plugins/wp-light-heatmap/public/css/wp_light_heatmap-public.css?ver=1.0.0" media="all">
|
||||
|
||||
|
||||
<!-- wp-like-box -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-like-box/public/assets/jquery.magnific-popup.min.js?ver=1.0"></script>
|
||||
|
||||
@@ -16996,6 +17389,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-product-gallery-lite/js/wppg-frontend.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-product-selector -->
|
||||
<link rel="stylesheet" id="product-selector-style-css" href="http://wp.lab/wp-content/plugins/wp-product-selector/assets/css/style.css?ver=1.0" media="all">
|
||||
|
||||
|
||||
<!-- wp-property -->
|
||||
<link rel="stylesheet" id="wp-property-frontend-css" href="http://wp.lab/wp-content/plugins/wp-property/static/styles/wp_properties.css?ver=2.2.0.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-property/static/scripts/wpp.global.js?ver=2.2.0.3"></script>
|
||||
@@ -17201,6 +17598,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-rs-team/public/js/custom.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-s3-smart-upload -->
|
||||
<link rel="stylesheet" id="s3-smart-upload-css" href="http://wp.lab/wp-content/plugins/wp-s3-smart-upload/public/css/s3-smart-upload-public.css?ver=1.0.0" media="all">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-s3-smart-upload/public/js/s3-smart-upload-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-scap -->
|
||||
<link rel="stylesheet" id="scap-plugin-styles-css" href="http://wp.lab/wp-content/plugins/wp-scap/public/assets/css/public.css?ver=1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-scap/public/assets/js/public.js?ver=1.0"></script>
|
||||
@@ -17383,6 +17785,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-stripe/js/wp-stripe.js?ver=1.5"></script>
|
||||
|
||||
|
||||
<!-- wp-stripe-donation -->
|
||||
<link rel="stylesheet" id="wpsd-front-style-css" href="http://wp.lab/wp-content/plugins/wp-stripe-donation/assets/css/wpsd-front-style.css?ver=1.0" media="">
|
||||
<script src="http://wp.lab/wp-content/plugins/wp-stripe-donation/assets/js/wpsd-front-script.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- wp-stripe-kit-lite -->
|
||||
<link rel="stylesheet" id="alh-wp-stripe-kit-lite-public-css-css" href="http://wp.lab/wp-content/plugins/wp-stripe-kit-lite/public/css/wp-stripe-kit-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-stripe-kit-lite/public/js/wp-stripe-kit-public.js?ver=1.0.1"></script>
|
||||
@@ -17826,6 +18233,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpideaforge/js/frontend.js?ver=0.5.0"></script>
|
||||
|
||||
|
||||
<!-- wpjobboard -->
|
||||
<link rel="stylesheet" id="wpjb-glyphs-css" href="https://wp.lab/wp-content/plugins/wpjobboard/public/css/wpjb-glyphs.css?ver=5.5.3" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpjb-css-css" href="https://wp.lab/wp-content/plugins/wpjobboard/public/css/frontend.css?ver=5.5.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="https://wp.lab/wp-content/plugins/wpjobboard/public/js/frontend.js?ver=5.5.3"></script>
|
||||
|
||||
|
||||
<!-- wplauncher -->
|
||||
<link rel="stylesheet" id="wplauncher-css" href="http://wp.lab/wp-content/plugins/wplauncher/public/css/wplauncher-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wplauncher/public/js/wplauncher-public.js?ver=1.0.0"></script>
|
||||
|
||||
775
spec/fixtures/dynamic_finders/plugin_version/real-media-library-lite/change_log/CHANGELOG.md
vendored
Normal file
775
spec/fixtures/dynamic_finders/plugin_version/real-media-library-lite/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,775 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## 4.7.2 (2020-02-27)
|
||||
|
||||
|
||||
### build
|
||||
|
||||
* optimize wordpress.org plugin description (#3wgvmg)
|
||||
|
||||
|
||||
### docs
|
||||
|
||||
* CHANGELOG and README
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 4.7.1 (2020-02-26)
|
||||
|
||||
|
||||
### fix
|
||||
|
||||
* compatibility running Real Media Library and Real Thumbnail Generator together (hotfix)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# 4.7.0 (2020-02-26)
|
||||
|
||||
|
||||
### build
|
||||
|
||||
* abstract freemium package (#3rmkfh)
|
||||
* migrate real-thumbnail-generator to monorepo
|
||||
|
||||
|
||||
### ci
|
||||
|
||||
* automatic wp.org SVN deploy (#1aemay)
|
||||
|
||||
|
||||
### feat
|
||||
|
||||
* added swedish language (#3uhd4j)
|
||||
* prepare for free / lite version (#1aemay)
|
||||
|
||||
|
||||
### fix
|
||||
|
||||
* folder selector in compat view / insert media dialog (#3rfbaw)
|
||||
* import from FileBird works now as expected
|
||||
* import from other plugins is now more intuitive (#3pf4jb)
|
||||
* make importing categories only available in PRO version (#1aemay)
|
||||
* make importing categories only available in PRO version (#1aemay)
|
||||
* use correct library for cover image media picker (#3mjrrc)
|
||||
* use own wp_set_script_translations to make it compatible with deferred scripts (#3mjh0e)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 4.6.1 (2020-02-13)
|
||||
|
||||
|
||||
### fix
|
||||
|
||||
* compatibility with Justified Image Grid
|
||||
* no longer use lodash in frontend coding (#3mjrrc)
|
||||
* old PHP versions (7.1) reported a bug related to namespaces
|
||||
* use correct pathes without whitespaces together with Real Physical Media
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# 4.6.0 (2020-02-11)
|
||||
|
||||
* the plugin is now available in following langauges: English, German, Dutch, Spanish, French, Indian, Chinese, Russian
|
||||
* add feature to set default startup folder
|
||||
* fix bug with Divi Page Builder
|
||||
* fix bug with subfolder ordering by name
|
||||
* fix bug with multiple MobX usage (developers only)
|
||||
* fix bug with ReactJS v17 warnings in your console
|
||||
* refactor partly JavaScript object rmlOpts to rmlOpts.others (developers only)
|
||||
|
||||
## 4.5.4 (2019-09-07)
|
||||
|
||||
* fix bug with PHP 7.2.7
|
||||
|
||||
## 4.5.3 (2019-09-07)
|
||||
|
||||
* fix bug with WP 5.2.2 when uploading a file directly to a folder
|
||||
* fix bug with custom order when used a "orderby" clause before
|
||||
* extend core WP REST API /wp-json/wp/v2/media to fetch RML specific data (developers only)
|
||||
* add RML/Item/DragDrop and RML/Folder/OrderBy action (developers only)
|
||||
|
||||
## 4.5.2 (2019-08-09)
|
||||
|
||||
* improve compatibility with Beaver Builder
|
||||
* fix bug with Flatsome UX Page builder when the folder dropdown shows no content
|
||||
* fix bug with SuperPWA wordpress plugin (cache)
|
||||
* fix bug with Avada 6.0 and Fusion Builder Live
|
||||
* fix bug with search box height in some cases that it needed too much space
|
||||
* add filter RML/Tree/Parsed so you can for example hide folders (developers only)
|
||||
* add filter RML/Scripts/Skip to skip assets loading for given pages (developers only)
|
||||
* fix bug when uploading a file to a specific folder which is generated through filter (developers only)
|
||||
* fix bug with logged Notice in folder shortcode (developers only)
|
||||
|
||||
## 4.5.1 (2019-06-10)
|
||||
|
||||
* fix bug with Gutenberg "Gallery" block and the folder sidebar
|
||||
* fix bug with folder selector, use modal dialog instead
|
||||
* fix bug with snax plugin frontend submission uploader
|
||||
* improve "Add new" button with preselection in uploader
|
||||
|
||||
# 4.5.0 (2019-05-07)
|
||||
|
||||
* add multi toolbar action "Delete" when multiple folders are checked
|
||||
* add compatibility with "Export Media Library" plugin: Download a folder as .zip
|
||||
* fix bug with limited image amount in Gutenberg block
|
||||
* now you can add multi toolbar actions (when multiple nodes are selected) (developers only)
|
||||
|
||||
## 4.4.1 (2019-04-27)
|
||||
|
||||
* add feature to show SVG images in media library as image and not a generic icon
|
||||
* fix count cache in list mode
|
||||
* fix bug with Real Physical Media when queue is not filled in automatic mode when tree node is relocated
|
||||
* improve API function wp_rml_create_all_children_sql() with MySQL UDF and legacy fallback (developers only)
|
||||
|
||||
# 4.4.0 (2019-04-13)
|
||||
|
||||
* add sort menu for subfolders so you can order subfolders alphabetically
|
||||
* add "title" attribute to tree node for accessibility
|
||||
* add ability to cancel uploads
|
||||
* fix bug with uploader showing more then one upload message (with spinner)
|
||||
* fix bug with item click on touch devices does not open links / dialogs
|
||||
* fix bug in "Replace image" dialog
|
||||
* fix bug in custom content order when navigating back to All files
|
||||
|
||||
# 4.3.0 (2019-03-19)
|
||||
|
||||
* add button to expand/collapse all node items
|
||||
* add option while holding CTRL while creating a new folder you can bulk insert folders
|
||||
* add option to rearrange a folder manually by selecting the parent folder and next sibling
|
||||
* improve user settings / folder details dialog
|
||||
* improve dropdown when selecting a folder (e. g. Media > Add new) with searchbar
|
||||
* improve dark mode
|
||||
* fix bug with edit dialog in portfolio image gallery in Glazov theme
|
||||
* fix bug with domains with umlauts
|
||||
* fix bug with Divi Builder (wrong dependency registered for script)
|
||||
* add API function wp_rml_selector() for a dropdown (developers only)
|
||||
|
||||
# 4.2.0 (2018-02-02)
|
||||
|
||||
* add Gutenberg block to create a dynamic gallery (shortcode still works)
|
||||
* fix bug with Gutenberg edit dialog
|
||||
* fix bug with Ninja Table Pro and edit "Add media" dialog
|
||||
* fix bug with admin notice when using PHP version < 5.4
|
||||
* fix bug with frontend loading and "Upload to folder" dropdown (e.g. Marketplace vendor plugins)
|
||||
|
||||
## 4.1.1 (2019-01-23)
|
||||
|
||||
* add Material WP compatibility
|
||||
* add new order: Order by date (ascending, descending)
|
||||
* add Polish translation
|
||||
* fix bug with custom order when editing a detail in the media dialog
|
||||
* fix bug with ACF when editing an image field
|
||||
* fix bug with PHP 5.4 and autoupdater
|
||||
* fix bug with PHP 7.3 (deprecation notice in error log)
|
||||
* improve compatibility with Trive Quiz Builder
|
||||
|
||||
# 4.1.0 (2018-12-10)
|
||||
|
||||
* add auto update functionality
|
||||
* fix bug with german translations
|
||||
* fix bug with with Thrive Architect page builder
|
||||
* reduced installable .zip file size
|
||||
* improve performance for JS and CSS resources / assets (developers only)
|
||||
|
||||
## 4.0.10 (2018-12-07)
|
||||
|
||||
* fix bug with hierarchical SQL queries and MariaDB database system
|
||||
* fix bug with wp_attachment_get_shortcuts() API function (developers only)
|
||||
|
||||
## 4.0.9 (2018-11-27)
|
||||
|
||||
* fix bug with option to hide shortcuts in All files view
|
||||
* fix bug with slow environments / pcs and big admin pages
|
||||
* fix bug with bulk select in grid mode and unnecessary server requests
|
||||
|
||||
## 4.0.8 (2018-11-04)
|
||||
|
||||
* add option to hide shortcuts in All files view
|
||||
* add compatibility with Slick slider plugin and other gallery shortcodes which use the standard gallery shortcode
|
||||
* improve load time when opening a custom ordered folder
|
||||
* PHP 5.4 is now minimum required PHP version (legacy version 4.0.7 for PHP 5.3 support add to download package)
|
||||
* fix bug with "Edit gallery" dialog when entering in an ordered folder
|
||||
* fix bug with ordered images when switching back to "All files"
|
||||
* fix bug with bulk select and delete when using the grid view (performance)
|
||||
* fix bug with wrong breadcrumb in media details dialog
|
||||
* fix bug with The Grid and RML modal dialog (folders not visible)
|
||||
* fix bug with WPML and custom order content
|
||||
* fix bug with last queried folder (HTTP header error)
|
||||
* fix bug with picu Plugin
|
||||
|
||||
## 4.0.7 (2018-09-08)
|
||||
|
||||
* add russian translation (thanks to Антон)
|
||||
* add compatibility for Tailor page builder
|
||||
* fix bug with WPML: WPML Media translation add-on is no longer needed
|
||||
* fix bug with Divi Builder in frontend-editing
|
||||
* fix bug with debugging the plugin with debug option in media settings
|
||||
* fix bug with ACF edit screen
|
||||
* fix bug with new created folders and droppable attachment
|
||||
* add a few new PHP actions / hooks (see API documentation) (developers only)
|
||||
|
||||
## 4.0.6 (2018-08-11)
|
||||
|
||||
* improve cover image metabox (removable with preview)
|
||||
* improve german translation
|
||||
* fix bug with Divi Page builder and the gallery module
|
||||
* fix bug with folder sorting (error handling)
|
||||
* fix bug with missing resources when developer tools are opened (source maps)
|
||||
|
||||
## 4.0.5 (2018-08-03)
|
||||
|
||||
* fix save bug with last queried folder on NGINX envs
|
||||
* fix bug with "Plain" permalink structure
|
||||
* fix bug with non-multiple browser uploader and media assignment to folder
|
||||
* fix bug with floating sidebar when scrolling and the first three folders are invisible
|
||||
* fix bug with collapsable/expandable folders
|
||||
|
||||
## 4.0.4 (2018-07-20)
|
||||
|
||||
* improve dark mode compatibility (meta box)
|
||||
* improve error handling with plugins like Clearfy
|
||||
* fix bug in media modal when changing the tab to "Upload"
|
||||
* fix bug with X Pro Theme / Cornerstone
|
||||
* fix bug with PHP 5.3
|
||||
* fix bug with WPML v4 "All files" counter
|
||||
* fix bug with non-SSL API root urls
|
||||
* fix bug with pagination in list mode after switching folder
|
||||
* fix bug with cover image in list mode
|
||||
* fix bug with Gutenberg 3.1.x (https://git.io/f4SXU) (developers only)
|
||||
* removed unnecessary server request at startup (developers only)
|
||||
|
||||
## 4.0.3 (2018-06-15)
|
||||
|
||||
* add compatibility with WP Dark Mode plugin
|
||||
* fix bug with XML/RPC requests when using WP/LR extension
|
||||
* removed one unusued script (immer) (developers only)
|
||||
* use global WP REST API parameters instead of DELETE / PUT (developers only)
|
||||
|
||||
## 4.0.2 (2018-06-11)
|
||||
|
||||
* add help message if WP REST API is not reachable through HTTP verbs
|
||||
* fix bug with scroll container in media modal in IE/Edge/Firefox
|
||||
* fix bug with custom content ordering
|
||||
* fix bug with older MySQL systems or non-InnoDB engines
|
||||
* fix bug with count cache when using REST API
|
||||
* improve scroll behavior in main media library page
|
||||
* improve mass delete process of attachments to avoid too many requests
|
||||
* prepared the plugin for the new WP/LR extension (Adobe Lightroom sync)
|
||||
* add action RML/Creatable/Register (developers only)
|
||||
* fix bug with RML/Active filter (developers only)
|
||||
* fix bug with creatables which are no longer registered (developers only)
|
||||
* improve debug mode in media settings (developers only)
|
||||
|
||||
## 4.0.1 (2018-06-04)
|
||||
|
||||
* fix bug with spinning loader when permalink structure is "Plain"
|
||||
* fix bug with WPML when using another language within WP admin as default
|
||||
* fix bug with german translation
|
||||
* fix bug with modal in Avada Theme options
|
||||
* fix bug with IE11/Edge browser
|
||||
|
||||
# 4.0.0 (2018-05-31)
|
||||
|
||||
* complete code rewrite, same functionality with improve performance, with an eye on smooth user interface and experience
|
||||
* improve performance when opening the media library in grid mode
|
||||
* removed option in media settings to reset a single folder attachment order
|
||||
* removed API function wp_rml_select_tree (developers only)
|
||||
* removed filters RML/Folder/TreeNodeLi/Class, RML/Folder/TreeNode/Class, RML/Folder/TreeNode/Content, RML/Folder/TreeNode/Href (developers only)
|
||||
* rewrite the plugin to WP REST API, ReactJS, Mobx-State-Tree (developers only)
|
||||
* changed IUserSettings/IMetadata interface method save() (developers only)
|
||||
|
||||
## 3.4.8 (2018-05-03)
|
||||
|
||||
* add Right-to-left support (RTL)
|
||||
|
||||
## 3.4.7 (2018-04-12)
|
||||
|
||||
* improve performance when opening the media library with lots of folders
|
||||
* add lazy loading of folders in attachment details folder dropdown
|
||||
* fix bug with WPML languages like Portuguese (Brazil) and Portuguese (Portugal)
|
||||
|
||||
## 3.4.6 (2018-04-07)
|
||||
|
||||
* improve shortcut generation: Caption and description are also copied (Alt text if image)
|
||||
* fix bug with lost selection when opening the media modal dialog
|
||||
|
||||
## 3.4.5 (2018-03-05)
|
||||
|
||||
* fix bug with WPML multisite usage regarding folder count
|
||||
|
||||
## 3.4.4 (2018-03-02)
|
||||
|
||||
* improve delete dialog with selected folder name
|
||||
* fix bug with folder counter when WPML is active
|
||||
* fix bug when moving a file to "/ Unorganized" the list is updated now correctly
|
||||
* fix bug with bulk select deletion and switching folder in grid mode
|
||||
* fix bug with PHP 7.2.2
|
||||
|
||||
## 3.4.3 (2018-01-16)
|
||||
|
||||
* improve uploading process / performance
|
||||
* fix bug with uploader when uploading to "All files"
|
||||
* fix bug when moving files from "All files" to another target
|
||||
|
||||
## 3.4.2 (2017-12-17)
|
||||
|
||||
* fix bug with F&O theme
|
||||
* fix bug with new PHP version 7.2 (developers only)
|
||||
|
||||
## 3.4.1 (2017-12-06)
|
||||
|
||||
* fix bug while installation process when creating database tables (developers only)
|
||||
|
||||
# 3.4.0 (2017-12-05)
|
||||
|
||||
* add functionality to Import / Export folder hierarchy
|
||||
* add functionality to Import an registered taxonomy with attachment relations
|
||||
* improve touch experience, add scrollbar in media picker to avoid drag&drop attachments
|
||||
* fix bug with search bar when folders were not found
|
||||
* fix bug with query links
|
||||
* fix bug with Database updates caused by dbDelta (developers only)
|
||||
|
||||
## 3.3.2 (2017-10-31)
|
||||
|
||||
* fix bug after creating a new post the nodes are not clickable
|
||||
|
||||
## 3.3.1 (2017-10-27)
|
||||
|
||||
* fix bug with Unorganized folder in attachments dialog
|
||||
* fix bug with toolbar buttons
|
||||
* fix bug with touch devices (no dropdown was touchable)
|
||||
* add filters for structure operations, and created Interface for structure classes (developers only)
|
||||
* fix bug for all parents getter API function (developers only)
|
||||
* improve code quality (developers only)
|
||||
* removed filters RML/Tree/QueryCount (developers only)
|
||||
|
||||
# 3.3.0 (2017-10-22)
|
||||
|
||||
* add ability to expand/collapse the complete sidebar by doubleclick the resize button
|
||||
* add option to allow automatically order a folder by a given criterium
|
||||
* add "General" tabs in folder details settings (developers are now able to add own tabs)
|
||||
* improve: Update the columns width in grid mode while resizing the sidebar
|
||||
* fix bug with wrong characters in gallery shortcode generator dialog
|
||||
* fix bug with Inbound Now PRO plugin dialogs
|
||||
* fix style bug with uploader in modal window
|
||||
* fix bug with ESC key in rename mode
|
||||
* fix bug with creating a new folder and switch back to previous
|
||||
* add owner/creator field for a folder (developers only)
|
||||
* add option to reset the folder names, slugs and absolute pathes (developers only)
|
||||
* add API functions to get all parents of a folder (additionally add metadata condition) (developers only)
|
||||
* add API functions to get all children of a folder (additionally add metadata condition) (developers only)
|
||||
* add hooks to allow "Apply to subfolder" mechanism after moving files to a folder (developers only)
|
||||
* improve the save of localStorage items within one row per tree instance (developers only)
|
||||
* improve the way of generating unique slugs (developers only)
|
||||
* fix bug with font awesome handler in wordpress style enqueue logic (developers only)
|
||||
|
||||
## 3.2.2 (2017-08-23)
|
||||
|
||||
* fix bug with IE 11 when folder structure does not show up
|
||||
* updated icon font (Font Awesome 4.3 to 4.7)
|
||||
|
||||
## 3.2.1 (2017-08-11)
|
||||
|
||||
* fix bug with refresh button in folder tree
|
||||
|
||||
# 3.2.0 (2017-08-11)
|
||||
|
||||
* new free Add-On "Default Startup Folder for Real Media Library"
|
||||
* add external link to "Browse Add-Ons"
|
||||
* add ability to add user options (for Add-ons)
|
||||
* add compatibility for Cornerstone page builder plugin
|
||||
* fix bug with modal window when opening the same again
|
||||
* add new filters to support the default wordpress media library extension plugin (developers only)
|
||||
* add PHPDoc for API (developers only)
|
||||
* add Hooks (Filter & Actions) Documentation (developers only)
|
||||
* improve and renamed/refactored the events of JS hooks (developers only)
|
||||
* improve the debug log (developers only)
|
||||
* improve the generation and registration of minified scripts (developers only)
|
||||
* fix bug with localized Javascript object (developers only)
|
||||
* fix bug with slug regeneration when folder is moved (developers only)
|
||||
* fix bug with meta data for Unorganized folder (developers only)
|
||||
|
||||
## 3.1.3 (2017-July-04)
|
||||
|
||||
* fix bug with gallery shortcode when the message occurs "Headers already sent[...]"
|
||||
* fix bug with sticky header in insert media dialog
|
||||
|
||||
## 3.1.2 (2017-06-24)
|
||||
|
||||
* improve the "Add new" in media library to preselect the last queried folder
|
||||
* fix bug with some browsers when local storage is disabled
|
||||
* improve the wp_rml_dropdown() function to support multiple selected folders (developers only)
|
||||
|
||||
## 3.1.1 (2017-06-10)
|
||||
|
||||
* add full compatibility with WordPress 4.8
|
||||
* improve english / german localization
|
||||
* fix bug with search field in IE
|
||||
|
||||
# 3.1.0 (2017-06-08)
|
||||
|
||||
* add ESC to close the rename folder action
|
||||
* add F2 handler to rename a folder
|
||||
* add double click event to open folder
|
||||
* add search input field for folders
|
||||
* add full compatibility with Elementor page builder
|
||||
* improve rearrange mode
|
||||
* improve performance on media library initial startup / load screen
|
||||
* improve uploader for large amount of uploads
|
||||
* fix bug with icons in BeaverBuilder
|
||||
* fix bug with multiple media modal dialogs (improve user experience) and expander
|
||||
* fix bug with ACF media picker and duplicate shortcut info
|
||||
* fix bug with rearrange mode in media modal view
|
||||
* fix bug with Enhanced Media Library representation
|
||||
|
||||
## 3.0.2 (2017-05-09)
|
||||
|
||||
* add title attribute on folder hover (for long names)
|
||||
* fix bug in customizer while folder structure is not displayed
|
||||
* fix bug with multiple media modal's after switching the folder
|
||||
* fix bug with Advanced Custom Fields when using the image picker modal
|
||||
* add compatibility for Tatsu Page Builder (Oshine Theme)
|
||||
|
||||
## 3.0.1 (2017-04-22)
|
||||
|
||||
* fix bug with attachment details, on some browsers the dropdowns were not clickable
|
||||
* add a message strip to the plugins page to show MatthiasWeb plugins
|
||||
|
||||
# 3.0.0 (2017-04-20)
|
||||
|
||||
* add feature to create shortcuts and put images in multiple folders, like you already know from your operating system
|
||||
* removed popups
|
||||
* fix bug with changing the folder location in grid view attachment details dialog
|
||||
* fix bug with Polylang while moving a translation file
|
||||
* fix bug with WPML while moving a translation file
|
||||
* fix bug with count cache after uploading a new file
|
||||
* fix performance bug with the count cache
|
||||
* add API function wp_rml_create_shortcuts() (developers only)
|
||||
* add API function wp_rml_created_shortcuts_last_ids() (developers only)
|
||||
* add API function wp_attachment_ensure_source_file() (developers only)
|
||||
* add API function wp_attachment_has_shortcuts() (developers only)
|
||||
* add API function wp_attachment_get_shortcuts() (developers only)
|
||||
* add API function wp_attachment_is_shortcut() (developers only)
|
||||
|
||||
## 2.8.6 (2017-03-25)
|
||||
|
||||
* fix bug with PHP < 5.6
|
||||
|
||||
## 2.8.5 (2017-03-24)
|
||||
|
||||
* fix bug with styles and scripts
|
||||
* fix bug with rearrange
|
||||
* minify scripts / css for prepared shortcut functionality (developers only)
|
||||
|
||||
## 2.8.4 (2017-03-22)
|
||||
|
||||
* add https://matthias-web.com as author url
|
||||
* improve the way of rearrange mode, the folders gets expand after 700ms of hover
|
||||
* fix bugs with absolute pathes and slugs of folders, if you have problems, please rename the first level folders to regenerate
|
||||
* add getPlain() method to IFolder interface to get a normal array for the folder properties (developers only)
|
||||
* prepared readable REST API for folders (developers only)
|
||||
|
||||
## 2.8.3 (2017-02-14)
|
||||
|
||||
* add new permission "par" to restrict the change of parent folder
|
||||
* fix bug with korean characters in folder names
|
||||
* removed icon when a folder has a restriction (WP/LR)
|
||||
* add api/IFolder.interface.php and more API functions (developers only)
|
||||
* improve the OOP: getters/setters (developers only)
|
||||
* improve code quality by using own API functions (developers only)
|
||||
|
||||
## 2.8.2 (2017-02-03)
|
||||
|
||||
* fix bug with migration in multisite installations
|
||||
* fix bug with Facebook hint in plugins site
|
||||
* fix XSS vulnerability (this bug can only be used by folder creators, no visitors) (developers only)
|
||||
* fix bug with MLA class dependency (developers only)
|
||||
|
||||
## 2.8.1 (2017-01-20)
|
||||
|
||||
* add v2.7.2 stable for older PHP versions to the codecanyon download files
|
||||
* fix bug with permission system for WP/LR extension
|
||||
* fix bug with the migration system for WP multisite
|
||||
|
||||
# 2.8.0 (2017-01-15)
|
||||
|
||||
* add more useful error messages when changing the hierarchical order of the folders
|
||||
* add confirm dialog when you sort the files inside the folder
|
||||
* improve the performance
|
||||
* improve the way of relocating the folder tree (immediatly saved after relocating)
|
||||
* improve the way of sortable folder content (galleries), now it is possible to reorder files in every folder
|
||||
* improve naming of folders, every character is now allowed, the folder name is sanitized
|
||||
* improve the folder metadata dialog and refresh the view if needed (button click in dialog)
|
||||
* fix bug while uploading a new plugin .zip file
|
||||
* add autoloading for php classes (developers only)
|
||||
* add namespaces for php classes (developers only)
|
||||
* add new abstract class for Creatable's (folders, collections, galleries, ...) (developers only)
|
||||
* add new abstract class for Sortable's (folders, collections, galleries, ...) extends Creatable's (developers only)
|
||||
* add folder\Root as own class (developers only)
|
||||
* add debug mode, define('WP_DEBUG', true); and define('SCRIPT_DEBUG', true); in wp-config.php (developers only)
|
||||
* add visible debug mode in options panel (developers only)
|
||||
* add API function wp_rml_create_or_return_existing_id() (developers only)
|
||||
* add API function wp_rml_structure_reset() (developers only)
|
||||
* add admin notice for when you have PHP Version < 5.3.0 (developers only)
|
||||
* improve the whole API and Advanced wp_rml_get_object_by_id() to get folder object (developers only)
|
||||
* improve the split between Structure and CountCache (php classes) (developers only)
|
||||
* improve the php code quality (developers only)
|
||||
* removed the database table wp_realmedialibrary_order, merged with wp_realmedialibrary_posts (developers only)
|
||||
* removed unnecessary sql query in pre_get_posts (developers only)
|
||||
* removed bid columns in database tables and add new index (developers only)
|
||||
|
||||
## 2.7.2 (2016-12-10)
|
||||
|
||||
* add option to reset the count cache
|
||||
* fix bug with upload in modal window
|
||||
* fix count cache when moving from Unorganized to folder
|
||||
|
||||
## 2.7.1 (2016-12-05)
|
||||
|
||||
* add the MatthiasWeb promotion dialog
|
||||
* fix bug with IE8
|
||||
* fix bug with TinyMCE editor shortcode dialog
|
||||
|
||||
# 2.7.0 (2016-11-24)
|
||||
|
||||
* add natural filename sort of folders (thanks to KorbinianT)
|
||||
* add lazy loading to folder tree, now it is only loaded from server when needed
|
||||
* add: You can now directly upload files to a folder with a dropdown selection in media modal and "Add Media" page
|
||||
* fix bug with migration on multisite installation
|
||||
* fix bug with modal views, now it also supports lazy loading
|
||||
* fix bug with attachment movement helper (Move x file)
|
||||
* fxied bug with plugin "Visual Composer Extensions All In One" and the tooltips
|
||||
* improve the changelog file
|
||||
* improve the actions RML/Folder/Deleted|Renamed|Moved (developers only)
|
||||
* fix bug with jQuery AIO tree version when RCM is enabled (developers only)
|
||||
* fix bug with api method wp_attachment_folder and the default value (developers only)
|
||||
* fix bug with creating a new folder with new order number (developers only)
|
||||
* prepare RML for Physical Press plugin and avoid folder names "." and ".." (developers only)
|
||||
|
||||
## 2.6.5 (2016-10-26)
|
||||
|
||||
* fix bug with Justified Image Grid
|
||||
* fix bug with migration system, no image relationships were imported
|
||||
|
||||
## 2.6.4 (2016-10-21)
|
||||
|
||||
* fix bug while wipe of folders in multisite installation
|
||||
* fix bug after save in attachment details
|
||||
* fix problem with negative -1 count
|
||||
* fix bug when switching folder when on page 2 in table mode
|
||||
* improve tabs in options panel of RML media options
|
||||
* improve the delete behaviour of folder (files will be moved to unorganized)
|
||||
* add a migration system for further updates (developers only)
|
||||
* add filter for parent root folder id (Default -1) (developers only)
|
||||
* fix the usage of switch_to_blog together with api functions (developers only)
|
||||
* improve some CSS experiences (loader) (developers only)
|
||||
* improve the save point of relationship between folder and post (own database table for relationships) (developers only)
|
||||
|
||||
## 2.6.3 (2016-09-25)
|
||||
|
||||
* improve some CSS
|
||||
* fix bug while bulk select and moving files
|
||||
* fix bug with reopening a media select dialog
|
||||
* fix bug with Avia / Enfold page builder
|
||||
* fix bug with reordering the gallery data folder
|
||||
* removed deprecated ressource files
|
||||
|
||||
## 2.6.2 (2016-09-16)
|
||||
|
||||
* fix database tables are not generated, now they are
|
||||
|
||||
## 2.6.1 (2016-09-16)
|
||||
|
||||
* fix options bug while accessing other pages (developers only)
|
||||
|
||||
# 2.6.0 (2016-09-15)
|
||||
|
||||
* add full compatibility with WP/LR Lightroom plugin
|
||||
* add minified scripts / styles
|
||||
* add option to apply an order by title, filename, ID to gallery data folders
|
||||
* add option to disable scripts/styles on frontend viewing
|
||||
* add finnish translation (Thanks to Antti!)
|
||||
* fix Enfold / Avia media picker bug (Thanks to Josh!)
|
||||
* fix Thickbox bug while logged out
|
||||
* improve load performance
|
||||
* improve the order for gallery data folders
|
||||
* add option for folders "restrict" (developers only)
|
||||
* add a minified permission system so 3rd party plugins can restrict folders interactions (developers only)
|
||||
|
||||
## 2.5.5 (2016-08-19)
|
||||
|
||||
* fix capability bug while logged out
|
||||
* add Javascript polyfill's to avoid browser incompatibility (developers only)
|
||||
* fix bug for crashed safari browser (developers only)
|
||||
|
||||
## 2.5.4 (2016-08-08)
|
||||
|
||||
* add option to remove advertisement links
|
||||
* fix "Edit selection" bug while inserting media to post
|
||||
|
||||
## 2.5.3 (2016-07-21)
|
||||
|
||||
* fix media.comparator bug (developers only)
|
||||
* fix bugs with Easy Digital Downloads plugin (developers only)
|
||||
* fix String.prototype problems (developers only)
|
||||
|
||||
## 2.5.2 (2016-07-11)
|
||||
|
||||
* fix toolbar while scrolling in media library
|
||||
* fix problems with plugin "Formidable Forms"
|
||||
* fix resize bug
|
||||
* fix WP query database notices in error log (developers only)
|
||||
* fix count bug when many folders exist (performed SQL statement) (developers only)
|
||||
* improve API, wp_rml_create() now returns false or a string error array, on success it return an int (ID) (developers only)
|
||||
|
||||
## 2.5.1 (2016-07-10)
|
||||
|
||||
* fix shortcode builder [folder-gallery] did not work
|
||||
|
||||
# 2.5.0 (2016-07-03)
|
||||
|
||||
* add folder tree to insert media dialog
|
||||
* complete recoding of javascript code (developers only)
|
||||
|
||||
## 2.4.2 (2016-06-20)
|
||||
|
||||
* fix TinyMCE bug when not admin
|
||||
* fix style issues
|
||||
* fix PHP < 5.3 Bug with func_get_args (developers only)
|
||||
|
||||
## 2.4.1 (2016-03-20)
|
||||
|
||||
* fix website is empty because javascript occurs an error
|
||||
|
||||
# 2.4.0 (2016-03-10)
|
||||
|
||||
* add "Reamining time" and bytes/s in uploader
|
||||
* add order mode in galleries
|
||||
* add warning when moving files from "All Files"
|
||||
* improve move in table list mode (no page refresh)
|
||||
* improve ux styling (uploader, tree, tree in upload media dialog)
|
||||
* improve options panel in Settings > Media
|
||||
* fix theme preview when plugin is active
|
||||
* fix hidden folder nodes on safari browser
|
||||
* fix usage of front-end editor in BeaverBuilder and Visual Composer
|
||||
* add custom fields (meta data) for folders (see inc/api/meta.php) (developers only)
|
||||
* add custom field: cover image + description (not activated as standard, used in JIG) (developers only)
|
||||
* fix admin_footer problem when a plugin removes styles and javascript of RML (developers only)
|
||||
* fix database queries to avoid long load time on dashboard (developers only)
|
||||
* fix bug pre_get_posts (developers only)
|
||||
|
||||
# 2.3.0 (2016-03-10)
|
||||
|
||||
* add compatibility with JUSTIFIED IMAGE GRID
|
||||
* add resizable container width
|
||||
* add option to wipe all settings and releations
|
||||
* add spanish translation - by Ana Ayelén Martínez. http://caribdisweb.com/
|
||||
* fix edit mode when creating a new folder
|
||||
* fix default order in folder gallery
|
||||
* fix UX bugs (draggable, droppable, sortable)
|
||||
* fix sticky sidebar
|
||||
* add "slug" and "absolute" to database table (developers only)
|
||||
* add / updated api (developers only)
|
||||
|
||||
## 2.2.3 (2016-Feburary-26)
|
||||
|
||||
* add Finnish translation (thanks to palvelu)
|
||||
* add more attractive alerts and prompt windows
|
||||
* fix visual bugs
|
||||
* fix delete bug => when folder is deleted, switch view to root
|
||||
* fix upload percentage issue
|
||||
* fix live update of folder count
|
||||
* fix upload in "Insert media" dialog => file is now in correct folder
|
||||
* fix drag and drop experience
|
||||
* moved folder gallery button above visual editor into visual editor
|
||||
* add more actions and filters (developers only)
|
||||
* add javascript actions (window.rml.hooks) (developers only)
|
||||
* changed javascript function names (developers only)
|
||||
* changed localize javascript variables (developers only)
|
||||
|
||||
## 2.2.2 (2016-01-20)
|
||||
|
||||
* bugfix error in creating a folder gallery
|
||||
|
||||
## 2.2.1 (2016-01-17)
|
||||
|
||||
* add facebook advert on plugin activation
|
||||
* improve restyled upload window
|
||||
* fix font awesome bug
|
||||
* add filters and actions (developers only)
|
||||
* add three more api functions (developers only)
|
||||
|
||||
# 2.2.0 (2015-12-29)
|
||||
|
||||
* add sticky container when scrolling
|
||||
* add collection and galleries folder types
|
||||
* add collapsable folders
|
||||
* add left infos about folder structure
|
||||
* add option to hide upload preview (for slow loading pc's)
|
||||
* fix conditional tag to create / sort items
|
||||
* fix count bug (WPML)
|
||||
* fix duplicate name
|
||||
* add API functions (look inc/api/) (developers only)
|
||||
* outsourced javascript functions (developers only)
|
||||
* fix AJAX bug (developers only)
|
||||
* PHP Code rewritten (better split in view and structure) (developers only)
|
||||
* PHP Code documentation improve (developers only)
|
||||
|
||||
## 2.1.2 (2015-11-22)
|
||||
|
||||
* add french translation (thanks to Youpain)
|
||||
* fix rename bug
|
||||
* fix count bug when WPML in usage
|
||||
|
||||
## 2.1.1 (2015-11-13)
|
||||
|
||||
* removed unnecessary code (developers only)
|
||||
* fix jquery conflict (developers only)
|
||||
|
||||
# 2.1.0 (2015-11-07)
|
||||
|
||||
* add multisite compatibility
|
||||
* fix correct sorting (not alphabetic)
|
||||
|
||||
# 2.0.0 (15-11-03)
|
||||
|
||||
* support PHP version < 5.4 (developers only)
|
||||
|
||||
# 1.3.0 (15-11-02)
|
||||
|
||||
* add nice uploading to folder
|
||||
|
||||
# 1.2.0 (15-10-29)
|
||||
|
||||
* add notice about the alphabetic sorting
|
||||
* fix problems with RevSlider >= 5.0 (developers only)
|
||||
* fix body class for grid mode (add Javascript methode) (developers only)
|
||||
|
||||
# 1.1.0 (15-10-21)
|
||||
|
||||
* fix moving in list table
|
||||
* fix style (drag and drop helper)
|
||||
* removed limit of folder gallery images
|
||||
* fix pre_get_posts appending meta_query (developers only)
|
||||
* add pre_get_posts capability check (developers only)
|
||||
|
||||
## 1.0.1 (15-10-16)
|
||||
|
||||
* improve rename without window reload
|
||||
* improve delete without window reload
|
||||
* fix https:// resources for css and js files
|
||||
|
||||
# 1.0.0 (2015-10-9)
|
||||
|
||||
* initial Release
|
||||
144
spec/fixtures/dynamic_finders/plugin_version/real-thumbnail-generator-lite/change_log/CHANGELOG.md
vendored
Normal file
144
spec/fixtures/dynamic_finders/plugin_version/real-thumbnail-generator-lite/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,144 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## 2.0.8 (2020-02-27)
|
||||
|
||||
|
||||
### docs
|
||||
|
||||
* CHANGELOG and README
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 2.0.7 (2020-02-26)
|
||||
|
||||
|
||||
### fix
|
||||
|
||||
* compatibility running Real Media Library and Real Thumbnail Generator together (hotfix)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 2.0.6 (2020-02-26)
|
||||
|
||||
|
||||
### build
|
||||
|
||||
* add exclude-from-classmap for freemium package (#3rgyt1)
|
||||
* asset is not correctly enqueued (#3rgyt1)
|
||||
* migrate real-thumbnail-generator to monorepo
|
||||
* prepare lite version for further usage (#3rgyt1)
|
||||
|
||||
|
||||
### docs
|
||||
|
||||
* exclude-from-classmap (#3rgyt1)
|
||||
|
||||
|
||||
### fix
|
||||
|
||||
* make more compatible with WP 5.3 (#3upazm)
|
||||
* only this sizes works now as expected (#3upazm)
|
||||
* thumbnails are now correctly deleted in wp-content/uploads (#3upazm)
|
||||
* update urls to devowl.io (#3rgyt1)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 2.0.5 (2019-10-07)
|
||||
|
||||
* fix bug with thumbnails path when using %size-identifier%
|
||||
* fix bug with 503er server errors and retry regenerate again
|
||||
|
||||
## 2.0.4 (2019-08-21)
|
||||
|
||||
* add search by filename in Analyse / Regenerate tab
|
||||
* fix bug with WooCommerce thumbnails and custom cropping
|
||||
* improve error handling so the process does not stop when an error occurs
|
||||
* improve performance by only loading images when hovering in analyse item
|
||||
* improve performance by list virtualization
|
||||
* improve height of opened analyse dialog
|
||||
|
||||
## 2.0.3 (2019-08-09)
|
||||
|
||||
* fix bug with page reload in "Edit attachment" page
|
||||
* fix bug while error is logged when opening an attachment in the dialog
|
||||
* fix bug when attachment is deleted and shows still as "Unused"
|
||||
* improve regeneration list that now all items are clickable
|
||||
* released lite version
|
||||
|
||||
## 2.0.2 (2019-03-19)
|
||||
|
||||
* fix bug with style/script dependencies
|
||||
|
||||
## 2.0.1 (2019-02-21)
|
||||
|
||||
* the plugin is now fully compatible with Crop-Thumbnails plugin
|
||||
* fix bug with Internet Explorer
|
||||
* fix bug with icons
|
||||
* fix bug with PDFs
|
||||
|
||||
# 2.0.0 (2019-02-15)
|
||||
|
||||
* complete code rewrite, same functionality with improve performance, with an eye on smooth user interface and experience
|
||||
* add option to skip existing thumbnail files
|
||||
* add autoupdater functionality in Plugins > "License settings"
|
||||
* add checbox to select / deselect all registered thumbnail sizes
|
||||
* fix bug with generation of single thumbnail sizes
|
||||
* fix compatibility with Simple Matted Thumbnails
|
||||
* fix compatibility with EWWW Image Optimizer
|
||||
* improve performance and usability
|
||||
|
||||
## 1.1.7 (2018-03-23)
|
||||
|
||||
* add "Regenerate" button to PDF files in list view
|
||||
* fix bug with PDF thumbnails while getting "-1" prefix
|
||||
|
||||
## 1.1.6 (2018-03-22)
|
||||
|
||||
* fix bug with PDF generation in thumbnail folders
|
||||
* fix bug with deletion of old thumbnails when changing the thumbnails schema
|
||||
* fix bug with deletion of empty thumbnail folders
|
||||
|
||||
## 1.1.5 (2017-10-10)
|
||||
|
||||
* fix bug with duplicate info containers about thumbnails
|
||||
|
||||
## 1.1.4 (2017-05-25)
|
||||
|
||||
* add option to set a chunk size for regeneration
|
||||
|
||||
## 1.1.3 (2017-04-14)
|
||||
|
||||
* fix bug with SVG images
|
||||
|
||||
## 1.1.2 (2017-03-17) #
|
||||
|
||||
* fix bug with AJAX Search Pro
|
||||
* fix bug with Facebook hint in plugins site
|
||||
|
||||
## 1.1.1 (2017-01-04)
|
||||
|
||||
* fix bug with failed thumbnail sizes
|
||||
* fix bug with .txt upload
|
||||
* fix bug with regenerating only a set of sizes
|
||||
|
||||
# 1.1.0 (2016-12-09)
|
||||
|
||||
* add ability to regenerate only specific image sizes
|
||||
* fix bug with copped image sizes
|
||||
|
||||
## 1.0.1 (2016-11-29)
|
||||
|
||||
* add the MatthiasWeb promotion dialog
|
||||
|
||||
# 1.0 (2016-11-10)
|
||||
|
||||
* initial review
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/rosariosis-rest-api/composer_file/package.json
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/rosariosis-rest-api/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "wordpress-plugin-template",
|
||||
"title": "WordPress Plugin Template",
|
||||
"version": "1.0.0",
|
||||
"homepage": "https://github.com/hlashbrooke/WordPress-Plugin-Template",
|
||||
"main": "Gruntfile.js",
|
||||
"devDependencies": {
|
||||
"grunt": "~1.0.1",
|
||||
"grunt-contrib-uglify": "~3.2.1",
|
||||
"grunt-contrib-less": "~1.4.1",
|
||||
"grunt-contrib-cssmin": "~2.2.1",
|
||||
"grunt-contrib-watch": "~1.0.0"
|
||||
}
|
||||
}
|
||||
17001
spec/fixtures/dynamic_finders/plugin_version/sfwd-lms/translation_file/languages/learndash.pot
vendored
Normal file
17001
spec/fixtures/dynamic_finders/plugin_version/sfwd-lms/translation_file/languages/learndash.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,3 @@
|
||||
Version 1.0
|
||||
- First Release
|
||||
- A new version of shipping by city WooCommerce plug-in.
|
||||
535
spec/fixtures/dynamic_finders/plugin_version/shp-icon/translation_file/languages/shp-icon.pot
vendored
Normal file
535
spec/fixtures/dynamic_finders/plugin_version/shp-icon/translation_file/languages/shp-icon.pot
vendored
Normal file
@@ -0,0 +1,535 @@
|
||||
# Copyright (C) 2020 Joel Stüdle (joel@sayhello.ch)
|
||||
# This file is distributed under the same license as the SVG Icons plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SVG Icons 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/shp-icon\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: 2020-01-29T10:55:08+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: shp-icon\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "SVG Icons"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/joel-st/shp-icon"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "This plugin allows you to use SVG icons within WordPress as shortcodes and/or as Gutenberg block."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Joel Stüdle (joel@sayhello.ch)"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://joelstuedle.ch"
|
||||
msgstr ""
|
||||
|
||||
#. translators: Compatibility-Check failed Warning
|
||||
#: shp-icon.php:44
|
||||
msgctxt "Compatibility-Check failed Warning"
|
||||
msgid "%1$s requires PHP %2$s (or newer) and WordPress %3$s (or newer) to function properly. Your Site is using PHP %4$s and WordPress %5$s. Please upgrade. The Plugin has been deactivated automatically. Don’t hesitate to ask for Help @%6$s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Block/Icon.php:80
|
||||
msgctxt "Block rendering notice"
|
||||
msgid "Choose Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/Delete.php:44
|
||||
msgctxt "Delete without filename"
|
||||
msgid "No filename provided"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/Delete.php:52
|
||||
msgctxt "Delete no icon found"
|
||||
msgid "Icon not found"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/Delete.php:70
|
||||
msgctxt "Delete icon failed"
|
||||
msgid "Deletion failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:28
|
||||
msgctxt "Options page tab title"
|
||||
msgid "Icon Collection"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:29
|
||||
msgctxt "Options page tab title"
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:30
|
||||
msgctxt "Options page tab title"
|
||||
msgid "Information & Help"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:37
|
||||
msgctxt "Options page setting label"
|
||||
msgid "em (default top shift of inline icons)."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:38
|
||||
msgctxt "Options page setting label"
|
||||
msgid "Top Shift"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:43
|
||||
msgctxt "Options page setting label"
|
||||
msgid "Default scale factor for inline icons related to font-size of parent element."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:44
|
||||
msgctxt "Options page setting label"
|
||||
msgid "Scale Factor"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:70
|
||||
msgctxt "Plugins option page title"
|
||||
msgid "SVG Icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:71
|
||||
msgctxt "Plugins option menu title"
|
||||
msgid "SVG Icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:131
|
||||
msgctxt "Options page heading"
|
||||
msgid "Icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:133
|
||||
msgctxt "Options page title action"
|
||||
msgid "Add Icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:145
|
||||
msgctxt "Options page tab-nav aria-label"
|
||||
msgid "Second menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:174
|
||||
msgctxt "Options page media-toolbar title"
|
||||
msgid "Icon Collection"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:178
|
||||
msgctxt "Options page media-toolbar action input label"
|
||||
msgid "Search by name"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:201
|
||||
msgctxt "Options page no results"
|
||||
msgid "No results"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:230
|
||||
msgctxt "Options page icon action"
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:269
|
||||
msgctxt "Options page settings title"
|
||||
msgid "Display Options for inline icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:272
|
||||
msgctxt "Options page settings description"
|
||||
msgid "This options only adapts to inline icons without the <code>block</code> attribute. Example <code>[shp-icon icon=\"heart\"]</code>.<br/> This options takes no effect for icons insertet with the Gutenberg block."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s = plugin name
|
||||
#: src/Package/OptionsPage.php:364
|
||||
msgctxt "Options page help title. %1$s = plugin name."
|
||||
msgid "Thank you for using %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:368
|
||||
msgctxt "Options page help introduction"
|
||||
msgid "Feel free to upload any SVG file to the plugin. To use SVG’s on websites is always a pain. But hey – good news – this plugin tries to support a proper use of SVG icons on your website. Any SVG uploaded to the plugin can be used with a shortcode or with a Gutenberg block."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:377
|
||||
msgctxt "Options page help how to use title"
|
||||
msgid "Use Icons as a Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:380
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "It is best to use the shortcode in text elements. The icon will adapt to the font size to give an excellent combination."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:388
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "Shortcode Options"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s = 'Required' (other translation), %2$s = 'icon collection' (other translation)
|
||||
#: src/Package/OptionsPage.php:399
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "%1$s. Use the <i>icon</i> attribute to define which icon to display. You will find the icon name in your %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s = 'Required' (other translation), %2$s = 'icon collection' (other translation)
|
||||
#: src/Package/OptionsPage.php:399
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s = 'Required' (other translation), %2$s = 'icon collection' (other translation)
|
||||
#: src/Package/OptionsPage.php:399
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "icon collection"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:408
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "Use the <i>block</i> attribute to let a shortcode icon act like a block icon."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = Link to settings tab (other translation)
|
||||
#: src/Package/OptionsPage.php:418
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "Use the <i>top-shift</i> attribute to fine tune the vertical align of an inline icon. This is useful if the visual align of an inline icon isn’t perfect. Set the attribute to a number, the number uses then the <i>em</i> unit. You can also set a default top shift for all inline icons under the %s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = Link to settings tab (other translation)
|
||||
#: src/Package/OptionsPage.php:418
|
||||
#: src/Package/OptionsPage.php:428
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "settings tab"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = Link to settings tab (other translation)
|
||||
#: src/Package/OptionsPage.php:428
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "Use the <i>scale-factor</i> attribute to fine tune the rendered size of an inline icon. Set the attribute to a number, the number uses then the <i>em</i> unit. You can also set a default scale factor for all inline icons under the %s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = fill="currentColor" (other translation)
|
||||
#: src/Package/OptionsPage.php:438
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "Use the <i>color</i> attribute to colorize an icon. The coloration only works, if your SVG is using %s."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = fill="currentColor" (other translation)
|
||||
#: src/Package/OptionsPage.php:438
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "fill=\"currentColor\""
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:447
|
||||
msgctxt "Options page help use as shortcode"
|
||||
msgid "Use the <i>background-color</i> attribute to colorize the icons parent background. Should work everywhere."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:458
|
||||
msgctxt "Options page help how to use title"
|
||||
msgid "Use Icons as a Gutenberg Block"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:461
|
||||
msgctxt "Options page help use as Gutenberg block"
|
||||
msgid "Icons inserted with the Gutenberg block will fill the available space. Find the block in the Gutenberg editor in the <b>common</b> section as <b>SVG Icon</b>."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:468
|
||||
msgctxt "Options page help FAQ"
|
||||
msgid "FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:474
|
||||
msgctxt "Options page help FAQ"
|
||||
msgid "What can I do to optimize my SVG’s before uploading to the plugin?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:478
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "SVGO is sick! Props to all the developers of SVGO!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = SVGO (SVG Optimizer) (other translation)
|
||||
#: src/Package/OptionsPage.php:480
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "According to SVGO, SVG files, especially those exported from various editors, usually contain a lot of redundant and useless information. This can include editor metadata, comments, hidden elements, default or non-optimal values and other stuff that can be safely removed or converted without affecting the SVG rendering result. To do so you can use the %s which perfectly optimises your SVG’s. "
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = SVGO (SVG Optimizer) (other translation)
|
||||
#: src/Package/OptionsPage.php:480
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "SVGO (SVG Optimizer)"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = SVGOMG (other translation)
|
||||
#: src/Package/OptionsPage.php:484
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "Use SVGO as a web app – %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = SVGOMG (other translation)
|
||||
#: src/Package/OptionsPage.php:484
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "SVGOMG"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = svgo-compressor (other translation)
|
||||
#: src/Package/OptionsPage.php:488
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "Use SVGO as a Sketch plugin – %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = svgo-compressor (other translation)
|
||||
#: src/Package/OptionsPage.php:488
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "svgo-compressor"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = Image Shrinker (other translation)
|
||||
#: src/Package/OptionsPage.php:492
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "Use SVGO as macOS app – %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = Image Shrinker (other translation)
|
||||
#: src/Package/OptionsPage.php:492
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "Image Shrinker"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = svgo-osx-folder-action (other translation)
|
||||
#: src/Package/OptionsPage.php:496
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "Use SVGO as an OSX Folder Action – %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = svgo-osx-folder-action (other translation)
|
||||
#: src/Package/OptionsPage.php:496
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "svgo-osx-folder-action"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:499
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "Further you can read the following articles to optimize your SVG’s manually."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:502
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "A Guide to Getting Sharp and Crisp SVG Images on Screen."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:505
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "I set out to create pixel perfect icons. Here’s what I discovered along the way."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:512
|
||||
msgctxt "Options page help FAQ"
|
||||
msgid "Is there any change on my files trough the upload?"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = a PHP SVG/XML Sanitizer (other translation)
|
||||
#: src/Package/OptionsPage.php:517
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "While uploading an SVG, it will be sanitised by %s and renamed based on the filename. Other changes to the SVG won’t happen."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = a PHP SVG/XML Sanitizer (other translation)
|
||||
#: src/Package/OptionsPage.php:517
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "a PHP SVG/XML Sanitizer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:522
|
||||
msgctxt "Options page help FAQ"
|
||||
msgid "Where can I use the shortcode?"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$ss = link to wp ref add_filter(), %2$s = link to wp ref do_shortcode()
|
||||
#: src/Package/OptionsPage.php:527
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "The shortcode works within the content section (editor). By default there is no additional shortcode support. You can add shortcode support via WordPress %1$s or do the shortcode directly in your template files with %2$s. Read the following article for further information."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:530
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "Using Shortcodes everywhere."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:537
|
||||
msgctxt "Options page help FAQ"
|
||||
msgid "SVG support for Internet Explorer?"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:541
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "Yes there is a small script watching out for Internet Explorer users to fix a few problems with IE11. If you discover any problems displaying your icons in other browsers too, submit the issue in the plugin repository!"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:546
|
||||
msgctxt "Options page help FAQ"
|
||||
msgid "What do I have to consider when migrating the website?"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = plugin textomain
|
||||
#: src/Package/OptionsPage.php:551
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "The uploaded SVG’s are saved in <code>/wp-content/uploads/%s</code>. Migrate this folder too to keep the your icons working."
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:559
|
||||
msgctxt "Options page help title"
|
||||
msgid "That’s it, peace."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = Plugin Repository (other translation)
|
||||
#: src/Package/OptionsPage.php:561
|
||||
msgctxt "Options page help"
|
||||
msgid "Contribute or get help: %s"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = Plugin Repository (other translation)
|
||||
#: src/Package/OptionsPage.php:561
|
||||
#: src/Package/OptionsPage.php:563
|
||||
msgctxt "Options page help FAQ answer"
|
||||
msgid "Plugin Repository"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s = Plugin Repository (other translation)
|
||||
#: src/Package/OptionsPage.php:563
|
||||
msgctxt "Options page help"
|
||||
msgid "Report issues: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/OptionsPage.php:564
|
||||
msgctxt "Options page help title"
|
||||
msgid "Say Thank You With A Donation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/Upload.php:72
|
||||
msgctxt "Upload without id"
|
||||
msgid "No upload ID specified"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/Upload.php:85
|
||||
msgctxt "Upload without nonce"
|
||||
msgid "No _wpnonce provided"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/Upload.php:98
|
||||
msgctxt "Upload without files"
|
||||
msgid "No files provided"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/Upload.php:111
|
||||
msgctxt "Upload false amount of files"
|
||||
msgid "Invalid amount of files"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/Upload.php:129
|
||||
msgctxt "Upload fals amount of files"
|
||||
msgid "Invalid file"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/Upload.php:142
|
||||
msgctxt "Upload fals amount of files"
|
||||
msgid "Invalid file type"
|
||||
msgstr ""
|
||||
|
||||
#: src/Package/Upload.php:157
|
||||
msgctxt "Upload sanitation failed"
|
||||
msgid "Sanitation failed"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s = already used class name, %2$s = plugin class
|
||||
#: src/Plugin.php:134
|
||||
msgctxt "Theme instance loadClasses() error message"
|
||||
msgid "There was a problem with the Plugin. Only one class with name “%1$s” can be use used in “%2$s”."
|
||||
msgstr ""
|
||||
|
||||
#: src/Plugin.php:227
|
||||
msgctxt "Settings link in WordPress plugin list"
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: .build/assets/scripts/admin/delete.js:15
|
||||
#: assets/scripts/admin.js:253
|
||||
msgctxt "Confirm deletion. Confirm deletion of [IconName]"
|
||||
msgid "Confirm Deletion of"
|
||||
msgstr ""
|
||||
|
||||
#: .build/assets/scripts/admin/delete.js:42
|
||||
#: assets/scripts/admin.js:278
|
||||
msgctxt "Admin notice delete file sucessfully"
|
||||
msgid "deleted"
|
||||
msgstr ""
|
||||
|
||||
#: .build/assets/scripts/admin/upload.js:19
|
||||
#: assets/scripts/admin.js:170
|
||||
msgctxt "Admin notice processing [Filename] if file is selected for upload"
|
||||
msgid "processing"
|
||||
msgstr ""
|
||||
|
||||
#: .build/assets/scripts/admin/upload.js:43
|
||||
#: assets/scripts/admin.js:192
|
||||
msgctxt "Admin notice response.upload.error returns true"
|
||||
msgid "Something went wrong while processing the file."
|
||||
msgstr ""
|
||||
|
||||
#: .build/assets/scripts/admin/upload.js:46
|
||||
#: assets/scripts/admin.js:195
|
||||
msgctxt "Admin notice [Icon] added successfully"
|
||||
msgid "Added successfully!"
|
||||
msgstr ""
|
||||
|
||||
#: .build/assets/scripts/admin/upload.js:57
|
||||
#: assets/scripts/admin.js:204
|
||||
msgctxt "Admin notice upload failed"
|
||||
msgid "Upload failed!"
|
||||
msgstr ""
|
||||
|
||||
#: assets/gutenberg/blocks.js:156
|
||||
msgctxt "SVG icon block title"
|
||||
msgid "SVG Icon"
|
||||
msgstr ""
|
||||
|
||||
#: assets/gutenberg/blocks.js:157
|
||||
msgid "Use your SVG icons as Gutenberg block"
|
||||
msgstr ""
|
||||
|
||||
#: assets/gutenberg/blocks.js:237
|
||||
msgctxt "SVG icon block panel title"
|
||||
msgid "Icon Collection"
|
||||
msgstr ""
|
||||
|
||||
#: assets/gutenberg/blocks.js:260
|
||||
msgctxt "SVG icon block PanelColorSettings label"
|
||||
msgid "Color Settings"
|
||||
msgstr ""
|
||||
|
||||
#: assets/gutenberg/blocks.js:276
|
||||
msgctxt "SVG icon block colorSettings label"
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: assets/gutenberg/blocks.js:292
|
||||
msgctxt "SVG icon block colorSettings label"
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: assets/gutenberg/blocks.js:298
|
||||
msgctxt "SVG icon block colorSettings notice"
|
||||
msgid "The color feature only works with SVG’s using currentColor. No currentColor value found in the selected SVG."
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/sinatra-core/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/sinatra-core/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.0 =
|
||||
* Initial release 🚀
|
||||
36
spec/fixtures/dynamic_finders/plugin_version/swedbank-pay-checkout/change_log/changelog.txt
vendored
Normal file
36
spec/fixtures/dynamic_finders/plugin_version/swedbank-pay-checkout/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
Version 3.0.0
|
||||
* Updates for Swedbank Pay
|
||||
* Disallow some special characters in product reference
|
||||
* Update styles
|
||||
* Implemented filters sb_checkout_order_items, sb_checkout_order_vat, sb_checkout_order_amount
|
||||
* Implemented sb_get_payee_reference filter to obtain the payeeReference
|
||||
* Implemented country switcher for checkin
|
||||
* Add support of sequential order no
|
||||
* Implemented UI to set Product Classes
|
||||
* Implemented subsite option
|
||||
* Checkout UI improvements
|
||||
* Add minification suffix for css and js
|
||||
* Allow 3D Secure 2
|
||||
|
||||
Version 2.1.1
|
||||
* Checkout UI improvements
|
||||
|
||||
Version 2.1.0
|
||||
* Add "Change shipping information" button
|
||||
* Add Terms & Conditions Url option
|
||||
* Implemented Consumer Billing Details
|
||||
* Hide customer fields before checkin
|
||||
* Lock fields if payex consumer logged off
|
||||
* Use site name for payeeName
|
||||
* Prefilled address save
|
||||
* Fixed bug with customer reference
|
||||
* Fixed: Don't init customer if reference already exists
|
||||
* Fixed checkout problem on old version of woocommerce
|
||||
* Improved PayEx Checkout
|
||||
* Fixes for Invoice capture
|
||||
* Changed api endpoint urls
|
||||
* Translations update
|
||||
* Bugfixes
|
||||
|
||||
Version 2.0.0
|
||||
* First public release
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/swedbank-pay-checkout/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/swedbank-pay-checkout/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "payex-woocommerce-checkout",
|
||||
"version": "3.0.0",
|
||||
"description": "",
|
||||
"main": "gulpfile.js",
|
||||
"dependencies": {
|
||||
"gulp-clean-css": "^4.2.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"node-sass": "^4.12.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"gulp": "^4.0.1",
|
||||
"gulp-clean-css": "^4.2.0",
|
||||
"gulp-rename": "^1.4.0",
|
||||
"gulp-sourcemaps": "^2.6.5",
|
||||
"gulp-uglify-es": "^1.0.4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/SwedbankPay/swedbank-pay-woocommerce-checkout"
|
||||
},
|
||||
"author": "Swedbank Pay",
|
||||
"license": "Apache-2.0",
|
||||
"homepage": "https://github.com/SwedbankPay/swedbank-pay-woocommerce-checkout"
|
||||
}
|
||||
43
spec/fixtures/dynamic_finders/plugin_version/swedbank-pay-payments/change_log/changelog.txt
vendored
Normal file
43
spec/fixtures/dynamic_finders/plugin_version/swedbank-pay-payments/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
Version 2.0.0
|
||||
* Updates for Swedbank Pay
|
||||
* Implemented filters sb_get_payee_reference and sb_get_payee_reference_order
|
||||
* Improved errors handling. Problem Details for HTTP APIs (RFC 7807)
|
||||
* HTTPS: CA failback for Client
|
||||
* Add support of sequential order no
|
||||
* Invoice: add payeeInfo.payeeName
|
||||
* Add subsite option
|
||||
* Add payment action to Order view in admin backend
|
||||
* Show "payment method was updated" when change payment method
|
||||
* Implemented riskIndicator feature
|
||||
* Add minification suffix for css and js
|
||||
* Add ecom_only option in admin
|
||||
* Add order_id in metadata
|
||||
* Implemented Recurrence tokens feature
|
||||
* Use calculated vatAmount value instead of zero
|
||||
* Implemented "Reject cards" options
|
||||
* Add orderReference parameter
|
||||
* Add cardholder parameter
|
||||
* Remove no3DSecure parameter
|
||||
* Vipps: Remove direct method
|
||||
* Custom checkout icons in admin backend
|
||||
|
||||
Version 1.3.0
|
||||
* Changed plugin slug
|
||||
* Changed plugin license
|
||||
* Improved code format
|
||||
* Fixed validate_payment_meta
|
||||
|
||||
Version 1.2.0
|
||||
* Transactions processing in Background process
|
||||
* Add Terms & Conditions Url option
|
||||
* Update Swedish translations
|
||||
* Updates of PayEx Transaction Callback
|
||||
|
||||
Version 1.1.0
|
||||
* Implemented: Tokenization
|
||||
* Implemented: WC Subscriptions support
|
||||
* Settings: AutoCapture mode
|
||||
* Integrated PayEx Client library
|
||||
|
||||
Version 1.0.0
|
||||
* First release
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/swedbank-pay-payments/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/swedbank-pay-payments/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "swedbank-pay-woocommerce-payments",
|
||||
"version": "2.0.0",
|
||||
"description": "",
|
||||
"main": "gulpfile.js",
|
||||
"dependencies": {
|
||||
"gulp-clean-css": "^4.2.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"node-sass": "^4.12.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"gulp": "^4.0.1",
|
||||
"gulp-clean-css": "^4.2.0",
|
||||
"gulp-rename": "^1.4.0",
|
||||
"gulp-sourcemaps": "^2.6.5",
|
||||
"gulp-uglify-es": "^1.0.4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/SwedbankPay/swedbank-pay-woocommerce-payments"
|
||||
},
|
||||
"author": "Swedbank Pay",
|
||||
"license": "Apache-2.0",
|
||||
"homepage": "https://github.com/SwedbankPay/swedbank-pay-woocommerce-payments"
|
||||
}
|
||||
@@ -0,0 +1,373 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sync Post With Other Site v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2020-01-21 06:39:08+0000\n"
|
||||
"Last-Translator: admin <info@richard.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"
|
||||
|
||||
#. translators: plugin header field 'Name'
|
||||
#: SyncPostWithOtherSite.php:0
|
||||
#@ sps_text_domain
|
||||
msgid "Sync Post With Other Site"
|
||||
msgstr "Sync Post With Other Site"
|
||||
|
||||
#. translators: plugin header field 'PluginURI'
|
||||
#. translators: plugin header field 'AuthorURI'
|
||||
#: SyncPostWithOtherSite.php:0
|
||||
#@ sps_text_domain
|
||||
msgid "https://kp4coder.com/"
|
||||
msgstr "https://kp4coder.com/"
|
||||
|
||||
#. translators: plugin header field 'Description'
|
||||
#: SyncPostWithOtherSite.php:0
|
||||
#@ sps_text_domain
|
||||
msgid "Allows user to sync post with multiple websites."
|
||||
msgstr "Allows user to sync post with multiple websites."
|
||||
|
||||
#. translators: plugin header field 'Author'
|
||||
#: SyncPostWithOtherSite.php:0
|
||||
#@ sps_text_domain
|
||||
msgid "KP Dev"
|
||||
msgstr "KP Dev"
|
||||
|
||||
#. translators: plugin header field 'Version'
|
||||
#: SyncPostWithOtherSite.php:0
|
||||
#@ sps_text_domain
|
||||
msgid "1.0.0"
|
||||
msgstr "1.0.0"
|
||||
|
||||
#: SyncPostWithOtherSite.php:103
|
||||
#@ sps_text_domain
|
||||
msgid "Setting"
|
||||
msgstr "Setting"
|
||||
|
||||
#: SyncPostWithOtherSite.php:113
|
||||
#@ sps_text_domain
|
||||
msgid "Sync Post"
|
||||
msgstr "Sync Post"
|
||||
|
||||
#: SyncPostWithOtherSite.php:158
|
||||
#@ sps_text_domain
|
||||
msgid "No matching tax rates found."
|
||||
msgstr "No matching tax rates found."
|
||||
|
||||
#: SyncPostWithOtherSite.php:230
|
||||
#@ sps_text_domain
|
||||
msgid "Product Listing will be here"
|
||||
msgstr "Product Listing will be here"
|
||||
|
||||
#: includes/sps_post_meta.class.php:18
|
||||
#@ SPS_txt_domain
|
||||
msgid "Select Websites"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_post_meta.class.php:46
|
||||
#@ SPS_txt_domain
|
||||
msgid "Please add website in <b>Sync Post</b>. So you can select the website for sync post."
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_post_meta.class.php:51
|
||||
#@ SPS_txt_domain
|
||||
msgid "select which website you want to add/edit post with this post."
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_settings.view.php:14
|
||||
#@ sps_text_domain
|
||||
msgid "Dismiss this notice."
|
||||
msgstr "Dismiss this notice."
|
||||
|
||||
#: includes/sps_settings.view.php:31
|
||||
#@ sps_text_domain
|
||||
msgid "General options"
|
||||
msgstr "General options"
|
||||
|
||||
#: includes/sps_settings.view.php:48
|
||||
#: includes/sps_settings.view.php:134
|
||||
#@ sps_text_domain
|
||||
msgid "Host Name of Target"
|
||||
msgstr "Host Name of Target"
|
||||
|
||||
#: includes/sps_settings.view.php:54
|
||||
#: includes/sps_settings.view.php:138
|
||||
#@ sps_text_domain
|
||||
msgid "https://example.com - This is the URL that your Content will be Pushed to. If WordPress is installed in a subdirectory, include the subdirectory."
|
||||
msgstr "https://example.com - This is the URL that your Content will be Pushed to. If WordPress is installed in a subdirectory, include the subdirectory."
|
||||
|
||||
#: includes/sps_settings.view.php:58
|
||||
#: includes/sps_settings.view.php:61
|
||||
#: includes/sps_settings.view.php:142
|
||||
#: includes/sps_settings.view.php:145
|
||||
#@ sps_text_domain
|
||||
msgid "Username"
|
||||
msgstr "Username"
|
||||
|
||||
#: includes/sps_settings.view.php:65
|
||||
#: includes/sps_settings.view.php:68
|
||||
#: includes/sps_settings.view.php:149
|
||||
#: includes/sps_settings.view.php:152
|
||||
#@ sps_text_domain
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: includes/sps_settings.view.php:72
|
||||
#: includes/sps_settings.view.php:156
|
||||
#@ sps_text_domain
|
||||
msgid "Strict Mode"
|
||||
msgstr "Strict Mode"
|
||||
|
||||
#: includes/sps_settings.view.php:75
|
||||
#: includes/sps_settings.view.php:159
|
||||
#@ sps_text_domain
|
||||
msgid "On - WordPress and SyncPostWithOtherSite for Content versions must match on Source and Target in order to perform operations."
|
||||
msgstr "On - WordPress and SyncPostWithOtherSite for Content versions must match on Source and Target in order to perform operations."
|
||||
|
||||
#: includes/sps_settings.view.php:80
|
||||
#: includes/sps_settings.view.php:163
|
||||
#@ sps_text_domain
|
||||
msgid "Off - WordPress and SyncPostWithOtherSite for Content versions do not need to match."
|
||||
msgstr "Off - WordPress and SyncPostWithOtherSite for Content versions do not need to match."
|
||||
|
||||
#: includes/sps_settings.view.php:84
|
||||
#: includes/sps_settings.view.php:167
|
||||
#@ sps_text_domain
|
||||
msgid "Content Match Mode"
|
||||
msgstr "Content Match Mode"
|
||||
|
||||
#: includes/sps_settings.view.php:92
|
||||
#@ sps_text_domain
|
||||
msgid "Post slug - Search for matching Content on Target by Post Slug only."
|
||||
msgstr "Post slug - Search for matching Content on Target by Post Slug only."
|
||||
|
||||
#: includes/sps_settings.view.php:96
|
||||
#: includes/sps_settings.view.php:179
|
||||
#@ sps_text_domain
|
||||
msgid "Roles Allowed to use"
|
||||
msgstr "Roles Allowed to use"
|
||||
|
||||
#: includes/sps_settings.view.php:99
|
||||
#: includes/sps_settings.view.php:182
|
||||
#@ sps_text_domain
|
||||
msgid "Contributor"
|
||||
msgstr "Contributor"
|
||||
|
||||
#: includes/sps_settings.view.php:102
|
||||
#: includes/sps_settings.view.php:184
|
||||
#@ sps_text_domain
|
||||
msgid "Author"
|
||||
msgstr "Author"
|
||||
|
||||
#: includes/sps_settings.view.php:105
|
||||
#: includes/sps_settings.view.php:186
|
||||
#@ sps_text_domain
|
||||
msgid "Editor"
|
||||
msgstr "Editor"
|
||||
|
||||
#: includes/sps_settings.view.php:108
|
||||
#: includes/sps_settings.view.php:188
|
||||
#@ sps_text_domain
|
||||
msgid "Administrator"
|
||||
msgstr "Administrator"
|
||||
|
||||
#: includes/sps_settings.view.php:110
|
||||
#: includes/sps_settings.view.php:190
|
||||
#@ sps_text_domain
|
||||
msgid "Select the Roles you wish to have access to the SyncPostWithOtherSite User Interface. Only these Roles will be allowed to perform Syncing operations."
|
||||
msgstr "Select the Roles you wish to have access to the SyncPostWithOtherSite User Interface. Only these Roles will be allowed to perform Syncing operations."
|
||||
|
||||
#: includes/sps_settings.view.php:137
|
||||
#@ sps_text_domain
|
||||
msgid " Remove Site "
|
||||
msgstr " Remove Site "
|
||||
|
||||
#: includes/sps_settings.view.php:170
|
||||
#@ sps_text_domain
|
||||
msgid "Post Slug"
|
||||
msgstr "Post Slug"
|
||||
|
||||
#: includes/sps_settings.view.php:175
|
||||
#@ sps_text_domain
|
||||
msgid "Post slug - Search for matching Content on Target by Post slug only."
|
||||
msgstr "Post slug - Search for matching Content on Target by Post slug only."
|
||||
|
||||
#: includes/sps_sync.class.php:255
|
||||
#@ sps_text_domain
|
||||
msgid "success"
|
||||
msgstr "success"
|
||||
|
||||
#: includes/sps_sync.class.php:256
|
||||
#@ sps_text_domain
|
||||
msgid "data proccessed successfully"
|
||||
msgstr "data proccessed successfully"
|
||||
|
||||
#: includes/sps_sync.class.php:261
|
||||
#: includes/sps_sync.class.php:265
|
||||
#@ sps_text_domain
|
||||
msgid "failed"
|
||||
msgstr "failed"
|
||||
|
||||
#: includes/sps_sync.class.php:262
|
||||
#@ sps_text_domain
|
||||
msgid "Authenitcate failed."
|
||||
msgstr "Authenitcate failed."
|
||||
|
||||
#: includes/sps_sync.class.php:266
|
||||
#@ sps_text_domain
|
||||
msgid "Username or Password is null."
|
||||
msgstr "Username or Password is null."
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:151
|
||||
#@ default
|
||||
msgid "List View"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:152
|
||||
#@ default
|
||||
msgid "Excerpt View"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:312
|
||||
#@ default
|
||||
msgid "No items found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:434
|
||||
#@ default
|
||||
msgid "Select bulk action"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:436
|
||||
#@ default
|
||||
msgid "Bulk Actions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:446
|
||||
#@ default
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:494
|
||||
#: includes/sps_wp_list_table.class.php:1272
|
||||
#@ default
|
||||
msgid "Show more details"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:556
|
||||
#@ default
|
||||
msgid "Filter by date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:558
|
||||
#@ default
|
||||
msgid "All dates"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: month name, 2: 4-digit year
|
||||
#: includes/sps_wp_list_table.class.php:571
|
||||
#, php-format
|
||||
#@ default
|
||||
msgid "%1$s %2$d"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:621
|
||||
#, php-format
|
||||
#@ default
|
||||
msgid "%s comment"
|
||||
msgid_plural "%s comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:622
|
||||
#, php-format
|
||||
#@ default
|
||||
msgid "%s approved comment"
|
||||
msgid_plural "%s approved comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:623
|
||||
#, php-format
|
||||
#@ default
|
||||
msgid "%s pending comment"
|
||||
msgid_plural "%s pending comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:628
|
||||
#: includes/sps_wp_list_table.class.php:640
|
||||
#: includes/sps_wp_list_table.class.php:653
|
||||
#@ default
|
||||
msgid "No comments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:640
|
||||
#@ default
|
||||
msgid "No approved comments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:653
|
||||
#@ default
|
||||
msgid "No pending comments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:727
|
||||
#: includes/sps_wp_list_table.class.php:1296
|
||||
#, php-format
|
||||
#@ default
|
||||
msgid "%s item"
|
||||
msgid_plural "%s items"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:763
|
||||
#@ default
|
||||
msgid "First page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:773
|
||||
#@ default
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:780
|
||||
#: includes/sps_wp_list_table.class.php:783
|
||||
#@ default
|
||||
msgid "Current Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:789
|
||||
#, php-format
|
||||
#@ default
|
||||
msgctxt "paging"
|
||||
msgid "%1$s of %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:796
|
||||
#@ default
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:806
|
||||
#@ default
|
||||
msgid "Last page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/sps_wp_list_table.class.php:1026
|
||||
#@ default
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
@@ -0,0 +1,183 @@
|
||||
# Copyright (C) 2020 Block Handbook
|
||||
# This file is distributed under the same license as the Turbocharged Testimonial Block plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Turbocharged Testimonial Block 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/turbocharged-testimonial-block\n"
|
||||
"Last-Translator: Lee Shadle <lee@blockhandbook.com>\n"
|
||||
"Language-Team: BlockHandbook <lee@blockhandbook.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2020-02-12T00:12:17+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: turbocharged-testimonial-block\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Turbocharged Testimonial Block"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://blockhandbook.com/plugins/turbocharged-testimonial-block"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A turbocharged <strong>testimonial block</strong> with 10 superb styles for sharing positive things people have to say about your products and services."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Block Handbook"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://blockhandbook.com"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3113
|
||||
msgid "Edit Image"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3119
|
||||
msgid "Background Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3130
|
||||
msgid "Select Testimonial Image"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3133
|
||||
msgid "Custom image sizing"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3209
|
||||
msgid "Image background color"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3220
|
||||
msgid "Content background color"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3230
|
||||
msgid "Content Background Opacity"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3252
|
||||
msgid "Quotation Mark Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3270
|
||||
msgid "Quotation Mark Color"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3303
|
||||
msgid "Border Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3307
|
||||
msgid "Border Radius"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3340
|
||||
msgid "Border Width"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3367
|
||||
msgid "Border Style"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3392
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3402
|
||||
msgid "Shadow Settings"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3406
|
||||
msgid "Shadow Size"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3440
|
||||
msgid "Shadow Color"
|
||||
msgstr ""
|
||||
|
||||
#. translators: content placeholder
|
||||
#: build/index.build.js:3673
|
||||
#: build/index.build.js:3955
|
||||
msgid "Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#. translators: content placeholder
|
||||
#: build/index.build.js:3676
|
||||
msgid "I am obsessed with learning how to build blocks!"
|
||||
msgstr ""
|
||||
|
||||
#. translators: content placeholder
|
||||
#: build/index.build.js:3681
|
||||
msgid "Author's name"
|
||||
msgstr ""
|
||||
|
||||
#. translators: content placeholder
|
||||
#: build/index.build.js:3684
|
||||
msgid "Lee Shadle"
|
||||
msgstr ""
|
||||
|
||||
#. translators: content placeholder
|
||||
#: build/index.build.js:3689
|
||||
msgid "Author's position"
|
||||
msgstr ""
|
||||
|
||||
#. translators: content placeholder
|
||||
#: build/index.build.js:3692
|
||||
msgid "Teacher @ blockhandbook.com"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3801
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3802
|
||||
msgid "Upload an image file or pick one from your media library."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:3956
|
||||
msgid "A turbocharged testimonial block with 10 superb styles for sharing positive things people have to say about your products and services."
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:4415
|
||||
msgid "1/3"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:4418
|
||||
#: build/index.build.js:4424
|
||||
msgid "1/2 Flipped"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:4421
|
||||
msgid "1/2"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:4427
|
||||
msgid "Stacked"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:4430
|
||||
msgid "Stacked Flipped"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:4433
|
||||
msgid "Full"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:4436
|
||||
msgid "Circle"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:4439
|
||||
msgid "Circle Left"
|
||||
msgstr ""
|
||||
|
||||
#: build/index.build.js:4442
|
||||
msgid "Circle Right"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,38 @@
|
||||
# Copyright (c) 2020
|
||||
# This file is distributed under the same license as the Ubiquitous Blocks package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ubiquitous Blocks 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://github.com/seb86/ubiquitous-blocks/issues\n"
|
||||
"POT-Creation-Date: 2020-01-21 03:14:30+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Sébastien Dumont <mailme@sebastiendumont.com>\n"
|
||||
"Language: en_US\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: includes/admin/class-ubiquitous-blocks-admin.php:37
|
||||
#: includes/admin/class-ubiquitous-blocks-admin.php:38
|
||||
msgid "Reusable Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: ubiquitous-blocks.php:67
|
||||
msgid "Cloning this object is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: ubiquitous-blocks.php:77
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
@@ -0,0 +1,246 @@
|
||||
# Copyright (C) 2019 Weblizar
|
||||
# This file is distributed under the same license as the Ultimate Image Slider Pro plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ultimate Timeline 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ultimate-timeline-v1.4\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2019-07-01T08:18:30+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.1.0\n"
|
||||
"X-Domain: ultimate-timeline\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: public\WCT_ShortCode.php:48
|
||||
msgid "Ultimate Timeline"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://weblizar.com/plugins"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "A Weblizar Project For Building a Great Story Timeline UI."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Weblizar"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://weblizar.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin\includes\meta_boxes\image-meta-box.php:30
|
||||
msgid "The image uploaded will be rendered inside the box below."
|
||||
msgstr ""
|
||||
|
||||
#: public/views/timeline_view.php:168
|
||||
msgid "Sorry,You have not added any story yet"
|
||||
msgstr ""
|
||||
|
||||
#: admin\includes\meta_boxes\image-meta-box.php:23
|
||||
#: admin\includes\meta_boxes\image-meta-box.php:25
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#: admin\includes\meta_boxes\image-meta-box.php:158
|
||||
msgid "END"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:63
|
||||
msgid "Story Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:64
|
||||
msgid "Story Year"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:65
|
||||
msgid "Story Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:66
|
||||
msgid "Story Icon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:67
|
||||
msgid "Published Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:98
|
||||
msgid "Not Matched"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:98
|
||||
msgid "*Please select story Date / Year from settings below the story content."
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:107
|
||||
msgid "Timeline Story Settings (Date/Year)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:26
|
||||
msgid "Parent Item:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:27
|
||||
msgid "All Stories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:28
|
||||
msgid "Add New Story"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:30
|
||||
msgid "New Story"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:31
|
||||
msgid "Edit Story"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:32
|
||||
msgid "Update Story"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:33
|
||||
msgid "View Story"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:34
|
||||
msgid "Search Story"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:35
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:36
|
||||
msgid "Not found in Trash"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-post-type.php:40
|
||||
msgid "Timeline Post Type Description"
|
||||
msgstr ""
|
||||
|
||||
#: public/views/timeline_view.php:79
|
||||
msgid "Not Available"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/WC_Timeline_Options.php:33
|
||||
msgid "Timeline Options Updated Successfully !"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/WC_Timeline_Options.php:31
|
||||
msgid "An unexpected error occurred."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/WC_Timeline_Options.php:20
|
||||
msgid "Please Select a Date format for your story."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/WC_Timeline_Options.php:16
|
||||
msgid "Please Select a layout For your story."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/meta_boxes/settings-meta-box.php:72
|
||||
msgid "Select Yes/No option to show/hide Image inside Story."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/meta_boxes/settings-meta-box.php:100
|
||||
msgid "Select Full/Small Screen option to Show Image Full Or Small inside Story."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/meta_boxes/settings-meta-box.php:79
|
||||
msgid "Full Screen"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/meta_boxes/settings-meta-box.php:113
|
||||
msgid "Small Screen"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/meta_boxes/settings-meta-box.php:125
|
||||
msgid "Story Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/meta_boxes/settings-meta-box.php:131
|
||||
msgid "Choose color for your Story."
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/meta_boxes/settings-meta-box.php:142
|
||||
msgid "Story Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/meta_boxes/settings-meta-box.php:149
|
||||
msgid "Please select story Story Date / Year / Time using datepicker only. Date Format( mm/dd/yy hh:mm )"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/meta_boxes/settings-meta-box.php:159
|
||||
msgid "Back to top"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-options.php:21
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-options.php:36
|
||||
msgid "Timeline Layout"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-options.php:42
|
||||
msgid "Select Vertical/Horizontal option to set your Timeline Story Layout."
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-options.php:48
|
||||
msgid "Vertical Layout"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-options.php:55
|
||||
msgid "Horizontal Layout"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-options.php:65
|
||||
msgid "Story Date Format"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-options.php:71
|
||||
msgid "Select Date Format that you want for your Story."
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-options.php:86
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fa-icons/fa-icons-class.php:62
|
||||
msgid "Select Story Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fa-icons/fa-icons-class.php:93
|
||||
msgid "Add Icon"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fa-icons/fa-icons-class.php:97
|
||||
#: admin/includes/meta_boxes/fa-icon-meta-box.php:39
|
||||
msgid "Select Font Awesome Icon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/includes/meta_boxes/fa-icon-meta-box.php:41
|
||||
msgid "Search Icon.."
|
||||
msgstr ""
|
||||
|
||||
#: includes/fa-icons/fa-icons-class.php:99
|
||||
msgid "Search Icon.."
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-options.php:118
|
||||
msgid "Copy below shortcode in any Page to publish your Timeline"
|
||||
msgstr ""
|
||||
|
||||
#: admin/weblizar-timeline-options.php:119
|
||||
msgid "[weblizar_timeline]"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "karneaud/wc-upackage_sys-shipping",
|
||||
"description": "Universal Package System local delivery shipping extension plugin for WooCommerce",
|
||||
"keywords": ["woocommerce", "extension"],
|
||||
"homepage": "http://www.universalpackagesys.com",
|
||||
"license": "GPL-2.0+",
|
||||
"version": "1.0.0",
|
||||
"repositories":[
|
||||
|
||||
{
|
||||
"type": "path",
|
||||
"url": "../universal_package_system",
|
||||
"options": {
|
||||
"symlink": false
|
||||
}
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"karneaud/universal_package_system":"dev-master"
|
||||
},
|
||||
"require-dev": {
|
||||
"php": ">=7.0.0",
|
||||
"composer/installers": "~1.0",
|
||||
"woocommerce/woocommerce":"*",
|
||||
"wp-cli/wp-cli":"^2.4@dev",
|
||||
"psy/psysh":"*",
|
||||
"php-http/guzzle6-adapter":"*",
|
||||
"php-http/message": "^1.0",
|
||||
"guzzlehttp/psr7": "^1.0",
|
||||
"fzaninotto/faker": "^1.9@dev",
|
||||
"jdgrimes/wp-http-testcase": "dev-master"
|
||||
},
|
||||
"scripts" : {
|
||||
"post-install-cmd" : [
|
||||
"/bin/bash -c \"[[ -f /usr/bin/wp ]] || ln -s /var/www/html/vendor/wp-cli/wp-cli/bin/wp /usr/bin/wp\"",
|
||||
"/bin/bash -c \"source /var/www/html/vendor/wp-cli/wp-cli/utils/wp-completion.bash\"",
|
||||
"/bin/bash -c \"[[ -f ~/.bash_profile ]] || touch ~/.bash_profile\"",
|
||||
"/bin/bash -c \"source ~/.bash_profile\"",
|
||||
"/var/www/html/wp-content/plugins/woocommerce/tests/bin/install.sh wordpress_tests root rootmysql db 5.2.2 true",
|
||||
"/bin/bash -c \"phpunit --config ./tests/phpunit.xml\""
|
||||
]
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "Kendall Arneaud",
|
||||
"homepage": "http://www.kendallarneaud.me"
|
||||
}
|
||||
],
|
||||
"type": "woocommerce-extension-plugin",
|
||||
"minimum-stability": "dev"
|
||||
}
|
||||
@@ -0,0 +1,218 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: UsersWP - ReCaptcha 1.3.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-02-05 17:28+0530\n"
|
||||
"PO-Revision-Date: 2020-02-05 17:28+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: AyeCode <info@userswp.io>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;_n_noop:1,2;"
|
||||
"_nx:1,2;_x;_ex;esc_attr_e;esc_attr__\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Generator: Poedit 2.2.1\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/settings.php:6
|
||||
msgid "ReCaptcha"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:19
|
||||
msgid "ReCaptcha Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:27
|
||||
msgid "ReCaptcha version"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:28
|
||||
msgid ""
|
||||
"Select the ReCaptcha version. <b style=\"color: red;\">Heads Up! V2, V3 and "
|
||||
"invisible recaptcha has different keys. So use keys based on version you "
|
||||
"select here.</b>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:32
|
||||
msgid "Select Option"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:38
|
||||
msgid "Google ReCaptcha API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:39
|
||||
msgid ""
|
||||
"Enter Re-Captcha site key that you get after site registration at <a target="
|
||||
"\"_blank\" href=\"https://www.google.com/recaptcha/admin#list\">here</a>. "
|
||||
"Recaptcha V2 and V3 has different API key."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:42
|
||||
msgid "Enter Google ReCaptcha API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:47
|
||||
msgid "Google ReCaptcha API Secret"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:48
|
||||
msgid ""
|
||||
"Enter Re-Captcha secret key that you get after site registration at <a "
|
||||
"target=\"_blank\" href=\"https://www.google.com/recaptcha/admin#list\">here</"
|
||||
"a>. Recaptcha V2 and V3 has different API secret"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:51
|
||||
msgid "Enter Google ReCaptcha API Secret"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:56
|
||||
msgid "Minimum verification score"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:57
|
||||
msgid ""
|
||||
"Set the minimum verification score from 0 to 1 (for Recaptcha V3 only). See "
|
||||
"more <a target=\"_blank\" href=\"https://developers.google.com/recaptcha/"
|
||||
"docs/v3#score\">here</a>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:70
|
||||
msgid "Enable ReCaptcha in"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:71
|
||||
msgid "UsersWP Register Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:79
|
||||
msgid "UsersWP Login Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:87
|
||||
msgid "UsersWP Forgot Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:95
|
||||
msgid "UsersWP Account Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:103
|
||||
msgid "WordPress Login Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:111
|
||||
msgid "WordPress Registeration Form"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:132
|
||||
msgid "Disable reCAPTCHA for"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:133
|
||||
msgid "Select the roles to disable ReCaptcha for."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:137
|
||||
msgid "Select Roles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:145
|
||||
msgid "Captcha Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:146
|
||||
msgid "Captcha title to be displayed above captcha code, leave blank to hide."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:154
|
||||
msgid "ReCaptcha Theme"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:155
|
||||
#, php-format
|
||||
msgid "Select color theme of captcha widget. %sLearn more%s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:159
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:160
|
||||
msgid "Dark"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:177
|
||||
msgid "UsersWP - Recaptcha"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:178
|
||||
msgid "Remove all data when deleted?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:189
|
||||
msgid "ReCaptcha V3"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:190
|
||||
msgid "ReCaptcha V2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings.php:191
|
||||
msgid "Invisible ReCaptcha"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-uwp-recaptcha.php:166
|
||||
#, php-format
|
||||
msgid ""
|
||||
"UsersWP ReCaptcha addon: API Key and API Secret not set. %sclick here%s to "
|
||||
"set one."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-uwp-recaptcha.php:168
|
||||
#, php-format
|
||||
msgid "UsersWP ReCaptcha addon: API Key not set. %sclick here%s to set one."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-uwp-recaptcha.php:170
|
||||
#, php-format
|
||||
msgid "UsersWP ReCaptcha addon: API Secret not set. %sclick here%s to set one."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:214
|
||||
msgid ""
|
||||
"<strong>ERROR</strong>: reCAPTCHA verification failed. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:231
|
||||
msgid ""
|
||||
"<strong>reCAPTCHA ERROR</strong>: The secret parameter is missing or "
|
||||
"invalid. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:235
|
||||
msgid ""
|
||||
"<strong>reCAPTCHA ERROR</strong>: The response parameter is missing or "
|
||||
"invalid. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:238
|
||||
msgid ""
|
||||
"<strong>reCAPTCHA ERROR</strong>: The request is invalid. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions.php:241
|
||||
msgid ""
|
||||
"<strong>reCAPTCHA ERROR</strong>: The response is no longer valid: either is "
|
||||
"too old or has been used previously. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: uwp-recaptcha.php:34
|
||||
#, php-format
|
||||
msgid "%s requires %sUsersWP%s plugin to be installed and active."
|
||||
msgstr ""
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/watchful/change_log/CHANGELOG.txt
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/watchful/change_log/CHANGELOG.txt
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
=== Changelog ===
|
||||
|
||||
== v1.2.5 ==
|
||||
|
||||
* fix warning about missing inclusion
|
||||
* fix Akeeba settings detection
|
||||
|
||||
== v1.2.4 ==
|
||||
|
||||
* catch PHP max execution time errors
|
||||
|
||||
== v1.2.3 ==
|
||||
|
||||
* minor code style changes to adapt to WordPress Plugin Repository
|
||||
|
||||
== v1.2.2 ==
|
||||
|
||||
* minor code style changes to adapt to WordPress Plugin Repository
|
||||
|
||||
== v1.2.1 ==
|
||||
|
||||
* add response delimiters to avoid errors due to additional noise text
|
||||
|
||||
== v1.2.0 ==
|
||||
|
||||
* review includes and requires to increase WP compatibility
|
||||
* extend All-in-One backup parameters handling and response data
|
||||
|
||||
@@ -0,0 +1,189 @@
|
||||
# Copyright (C) 2020 Piotr Włoch
|
||||
# This file is distributed under the same license as the WC Download Products from AWS S3 plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WC Download Products from AWS S3 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-download-products-from-aws-s3\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: 2020-01-31T16:36:03+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.4.0\n"
|
||||
"X-Domain: wc-download-products-from-aws-s3\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "WC Download Products from AWS S3"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/Bragi26/wc-download-products-from-aws-s3"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Download Woocommerce Products from AWS S3 storage"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Piotr Włoch"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "pwloch.eu"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3AdminView.php:22
|
||||
msgid "Download prodcts from AWS S3"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3AdminView.php:28
|
||||
msgid "Amazon AWS S3 Access Key ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3AdminView.php:30
|
||||
msgid "Enter Amazon Access Key ID you created in \"My Security Credentials\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3AdminView.php:34
|
||||
msgid "Amazon AWS S3 Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3AdminView.php:36
|
||||
msgid "Enter Amazon Secret Key you created in \"My Security Credentials\"."
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3AdminView.php:40
|
||||
msgid "Select Amazon Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3AdminView.php:42
|
||||
msgid "Select the region you choose when creating a bucket."
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3AdminView.php:66
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3AdminView.php:70
|
||||
msgid "Amazon Endpoint"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3AdminView.php:72
|
||||
msgid "Enter the region you choose."
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Controler.php:86
|
||||
msgid "Download Products from AWS S3"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Controler.php:158
|
||||
msgid "Browse Amazon AWS S3 Buckets"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Controler.php:159
|
||||
msgid "Upload to Amazon AWS S3"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:60
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:62
|
||||
msgid "There is a problem with getting a list of Amazon buckets."
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:95
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:97
|
||||
msgid "There is a problem with taking bucket content."
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:132
|
||||
msgid "Please select a file to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:132
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:151
|
||||
msgid "Something went wrong with upload process"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:186
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:188
|
||||
msgid "There is a problem with uploading a file at this moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:219
|
||||
msgid "File not found. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:223
|
||||
msgid "An error occurred during the download process, please try later."
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:255
|
||||
msgid "Go to homepage"
|
||||
msgstr ""
|
||||
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:293
|
||||
#: src/Woocommerce/Extension/Amazon/AmazonS3Model.php:295
|
||||
msgid "Cant download file at this moment."
|
||||
msgstr ""
|
||||
|
||||
#: templates/bucketsAllIframeContent.php:15
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bucketsAllIframeContent.php:19
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bucketsAllIframeContent.php:20
|
||||
msgid "File Size"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bucketsAllIframeContent.php:21
|
||||
msgid "Upload Date"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bucketsAllIframeContent.php:22
|
||||
#: templates/bucketsListIframeContent.php:6
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bucketsAllIframeContent.php:33
|
||||
msgid "Use File"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bucketsListIframeContent.php:2
|
||||
msgid "Select Amazon Bucket"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bucketsListIframeContent.php:5
|
||||
msgid "Bucket"
|
||||
msgstr ""
|
||||
|
||||
#: templates/bucketsListIframeContent.php:14
|
||||
msgid "Browse"
|
||||
msgstr ""
|
||||
|
||||
#: templates/uploadIframeContent.php:13
|
||||
#: templates/uploadIframeContent.php:16
|
||||
msgid "Select a Bucket"
|
||||
msgstr ""
|
||||
|
||||
#: templates/uploadIframeContent.php:22
|
||||
msgid "Chose File to Upload:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/uploadIframeContent.php:30
|
||||
msgid "Upload To Amazon"
|
||||
msgstr ""
|
||||
|
||||
#: templates/uploadIframeContent.php:36
|
||||
msgid "Success!"
|
||||
msgstr ""
|
||||
|
||||
#: templates/uploadIframeContent.php:40
|
||||
msgid "Insert uploaded file"
|
||||
msgstr ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user